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, 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.Identity.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.Api20230131.Identity.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 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 UserAssignedIdentitiesCreateOrUpdate_Validate(string subscriptionId, string resourceGroupName, string resourceName, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity 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); + } + } + + /// Deletes the 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. + /// 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 UserAssignedIdentitiesDelete(string subscriptionId, string resourceGroupName, string resourceName, 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) + + "?" + + "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.UserAssignedIdentitiesDelete_Call(request,onOk,onNoContent,onDefault,eventListener,sender); + } + } + + /// Deletes the 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. + /// 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 UserAssignedIdentitiesDelete1(string subscriptionId, string resourceGroupName, string resourceName, 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) + + "?" + + "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.UserAssignedIdentitiesDelete1_Call(request,onOk,onNoContent,onDefault,eventListener,sender); + } + } + + /// Deletes the identity. + /// /// 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. @@ -643,7 +2604,7 @@ public partial class ManagedServiceIdentityClient /// /// 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) + public async global::System.Threading.Tasks.Task UserAssignedIdentitiesDelete1ViaIdentity(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 @@ -651,10 +2612,141 @@ public partial class ManagedServiceIdentityClient { // 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); + 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}/federatedIdentityCredentials'"); + 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.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.UserAssignedIdentitiesDelete1_Call(request,onOk,onNoContent,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 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 UserAssignedIdentitiesDelete1_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.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. + /// 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 UserAssignedIdentitiesDelete1_Validate(string subscriptionId, string resourceGroupName, string resourceName, 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); + } + } + + /// Deletes the identity. + /// + /// 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 UserAssignedIdentitiesDeleteViaIdentity(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 = @"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 @@ -669,12 +2761,7 @@ public partial class ManagedServiceIdentityClient + 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"); @@ -682,18 +2769,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.FederatedIdentityCredentialsList_Call(request,onOk,onDefault,eventListener,sender); + await this.UserAssignedIdentitiesDelete_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. @@ -701,7 +2789,7 @@ public partial class ManagedServiceIdentityClient /// /// 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) + internal async global::System.Threading.Tasks.Task UserAssignedIdentitiesDelete_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 ) { @@ -719,13 +2807,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.FederatedIdentityCredentialsListResult.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.Api20230131.CloudError.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -741,33 +2835,73 @@ 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 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) + internal async global::System.Threading.Tasks.Task UserAssignedIdentitiesDelete_Validate(string subscriptionId, string resourceGroupName, string resourceName, 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 available operations for the Microsoft.ManagedIdentity provider + /// Gets the 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. + /// 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 UserAssignedIdentitiesGet(string subscriptionId, string resourceGroupName, string resourceName, 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) + + "?" + + "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.UserAssignedIdentitiesGet_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Gets the 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. /// 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). @@ -776,7 +2910,7 @@ public partial class ManagedServiceIdentityClient /// /// 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) + public async global::System.Threading.Tasks.Task UserAssignedIdentitiesGet1(string subscriptionId, string resourceGroupName, string resourceName, 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 @@ -784,7 +2918,12 @@ public partial class ManagedServiceIdentityClient { // construct URL var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( - "/providers/Microsoft.ManagedIdentity/operations" + "/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"); @@ -798,11 +2937,11 @@ public partial class ManagedServiceIdentityClient 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); + await this.UserAssignedIdentitiesGet1_Call(request,onOk,onDefault,eventListener,sender); } } - /// Lists available operations for the Microsoft.ManagedIdentity provider + /// Gets the identity. /// /// 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 @@ -812,7 +2951,7 @@ public partial class ManagedServiceIdentityClient /// /// 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) + public async global::System.Threading.Tasks.Task UserAssignedIdentitiesGet1ViaIdentity(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 @@ -820,16 +2959,24 @@ public partial class ManagedServiceIdentityClient { // 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); + 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 '/providers/Microsoft.ManagedIdentity/operations'"); + 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( - "/providers/Microsoft.ManagedIdentity/operations" + "/subscriptions/" + + subscriptionId + + "/resourceGroups/" + + resourceGroupName + + "/providers/Microsoft.ManagedIdentity/userAssignedIdentities/" + + resourceName + "?" + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); @@ -843,11 +2990,11 @@ public partial class ManagedServiceIdentityClient 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); + await this.UserAssignedIdentitiesGet1_Call(request,onOk,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 default (any response code not handled @@ -857,7 +3004,7 @@ public partial class ManagedServiceIdentityClient /// /// 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) + internal async global::System.Threading.Tasks.Task UserAssignedIdentitiesGet1_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 ) { @@ -875,13 +3022,13 @@ 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.OperationListResult.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.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.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; } } @@ -897,60 +3044,27 @@ 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 identity 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 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) + internal async global::System.Threading.Tasks.Task UserAssignedIdentitiesGet1_Validate(string subscriptionId, string resourceGroupName, string resourceName, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener) { - 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.SystemAssignedIdentitiesGetByScope_Call(request,onOk,onDefault,eventListener,sender); + await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); + await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); + await eventListener.AssertNotNull(nameof(resourceName),resourceName); } } - /// Gets the systemAssignedIdentity available under the specified RP scope. + /// Gets the identity. /// /// 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 @@ -960,27 +3074,32 @@ public partial class ManagedServiceIdentityClient /// /// 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) + public async global::System.Threading.Tasks.Task UserAssignedIdentitiesGetViaIdentity(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"; + 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); + 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 '/{scope}/providers/Microsoft.ManagedIdentity/identities/default'"); + 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 scope = _match.Groups["scope"].Value; + 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( - "/" - + scope - + "/providers/Microsoft.ManagedIdentity/identities/default" + "/subscriptions/" + + subscriptionId + + "/resourceGroups/" + + resourceGroupName + + "/providers/Microsoft.ManagedIdentity/userAssignedIdentities/" + + resourceName + "?" + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); @@ -994,11 +3113,11 @@ public partial class ManagedServiceIdentityClient 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); + await this.UserAssignedIdentitiesGet_Call(request,onOk,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 default (any response code not handled @@ -1008,7 +3127,7 @@ public partial class ManagedServiceIdentityClient /// /// 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) + internal async global::System.Threading.Tasks.Task UserAssignedIdentitiesGet_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 ) { @@ -1026,13 +3145,13 @@ 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.SystemAssignedIdentity.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.Api20230131.Identity.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; } } @@ -1048,29 +3167,38 @@ 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 resource provider scope of the resource. Parent resource being extended by Managed Identities. + /// 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. /// 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) + internal async global::System.Threading.Tasks.Task UserAssignedIdentitiesGet_Validate(string subscriptionId, string resourceGroupName, string resourceName, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { - await eventListener.AssertNotNull(nameof(scope),scope); + await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); + await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); + await eventListener.AssertNotNull(nameof(resourceName),resourceName); } } - /// Create or update an identity in the specified subscription and resource group. + /// Lists the associated resources for this 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. - /// Parameters to create or update the identity + /// OData filter expression to apply to the query. + /// OData orderBy expression to apply to the query. + /// Number of records to return. + /// Number of records to skip. + /// 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 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. @@ -1078,7 +3206,7 @@ public partial class ManagedServiceIdentityClient /// /// 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.Api20220131Preview.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) + public async global::System.Threading.Tasks.Task UserAssignedIdentitiesListAssociatedResources(string subscriptionId, string resourceGroupName, string resourceName, string Filter, string Orderby, int? Top, int? Skip, 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 @@ -1092,7 +3220,18 @@ public partial class ManagedServiceIdentityClient + global::System.Uri.EscapeDataString(resourceGroupName) + "/providers/Microsoft.ManagedIdentity/userAssignedIdentities/" + global::System.Uri.EscapeDataString(resourceName) + + "/listAssociatedResources" + "?" + + (string.IsNullOrEmpty(Filter) ? global::System.String.Empty : "$filter=" + global::System.Uri.EscapeDataString(Filter)) + + "&" + + (string.IsNullOrEmpty(Orderby) ? global::System.String.Empty : "$orderby=" + global::System.Uri.EscapeDataString(Orderby)) + + "&" + + (null == Top ? global::System.String.Empty : "$top=" + global::System.Uri.EscapeDataString(Top.ToString())) + + "&" + + (null == Skip ? global::System.String.Empty : "$skip=" + global::System.Uri.EscapeDataString(Skip.ToString())) + + "&" + + (string.IsNullOrEmpty(Skiptoken) ? global::System.String.Empty : "$skiptoken=" + global::System.Uri.EscapeDataString(Skiptoken)) + + "&" + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); @@ -1100,24 +3239,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.Put, _url); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Method.Post, _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); + await this.UserAssignedIdentitiesListAssociatedResources_Call(request,onOk,onDefault,eventListener,sender); } } - /// Create or update an identity in the specified subscription and resource group. + /// Lists the associated resources for this identity. /// - /// Parameters to create or update the identity + /// OData filter expression to apply to the query. + /// OData orderBy expression to apply to the query. + /// Number of records to return. + /// Number of records to skip. + /// 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 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. @@ -1125,7 +3265,7 @@ public partial class ManagedServiceIdentityClient /// /// 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.Api20220131Preview.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) + public async global::System.Threading.Tasks.Task UserAssignedIdentitiesListAssociatedResourcesViaIdentity(global::System.String viaIdentity, string Filter, string Orderby, int? Top, int? Skip, 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 @@ -1136,7 +3276,7 @@ public partial class ManagedServiceIdentityClient 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}'"); + throw new global::System.Exception("Invalid identity for URI '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{resourceName}/listAssociatedResources'"); } // replace URI parameters with values from identity @@ -1151,7 +3291,18 @@ public partial class ManagedServiceIdentityClient + resourceGroupName + "/providers/Microsoft.ManagedIdentity/userAssignedIdentities/" + resourceName + + "/listAssociatedResources" + "?" + + (string.IsNullOrEmpty(Filter) ? global::System.String.Empty : "$filter=" + global::System.Uri.EscapeDataString(Filter)) + + "&" + + (string.IsNullOrEmpty(Orderby) ? global::System.String.Empty : "$orderby=" + global::System.Uri.EscapeDataString(Orderby)) + + "&" + + (null == Top ? global::System.String.Empty : "$top=" + global::System.Uri.EscapeDataString(Top.ToString())) + + "&" + + (null == Skip ? global::System.String.Empty : "$skip=" + global::System.Uri.EscapeDataString(Skip.ToString())) + + "&" + + (string.IsNullOrEmpty(Skiptoken) ? global::System.String.Empty : "$skiptoken=" + global::System.Uri.EscapeDataString(Skiptoken)) + + "&" + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); @@ -1159,25 +3310,20 @@ 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.Put, _url); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Method.Post, _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); + await this.UserAssignedIdentitiesListAssociatedResources_Call(request,onOk,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 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. @@ -1185,7 +3331,7 @@ public partial class ManagedServiceIdentityClient /// /// 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, 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 UserAssignedIdentitiesListAssociatedResources_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 ) { @@ -1203,19 +3349,13 @@ 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.Identity.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.Identity.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.AssociatedResourcesListResult.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; } } @@ -1231,35 +3371,87 @@ 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 identity resource. - /// Parameters to create or update the identity + /// OData filter expression to apply to the query. + /// OData orderBy expression to apply to the query. + /// Number of records to return. + /// Number of records to skip. + /// 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 UserAssignedIdentitiesCreateOrUpdate_Validate(string subscriptionId, string resourceGroupName, string resourceName, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity body, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task UserAssignedIdentitiesListAssociatedResources_Validate(string subscriptionId, string resourceGroupName, string resourceName, string Filter, string Orderby, int? Top, int? Skip, 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.AssertNotNull(nameof(body), body); - await eventListener.AssertObjectIsValid(nameof(body), body); + await eventListener.AssertNotNull(nameof(Filter),Filter); + await eventListener.AssertNotNull(nameof(Orderby),Orderby); + await eventListener.AssertIsGreaterThanOrEqual(nameof(Top),Top,1); + await eventListener.AssertIsGreaterThanOrEqual(nameof(Skip),Skip,1); + await eventListener.AssertNotNull(nameof(Skiptoken),Skiptoken); } } - /// Deletes the identity. + /// + /// Lists all the userAssignedIdentities available under the specified ResourceGroup. + /// + /// The Id of the Subscription to which the identity belongs. + /// The name of the Resource Group to which the identity belongs. + /// 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 UserAssignedIdentitiesListByResourceGroup(string subscriptionId, string resourceGroupName, 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" + + "?" + + "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.UserAssignedIdentitiesListByResourceGroup_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// + /// Lists all the userAssignedIdentities available under the specified ResourceGroup. + /// /// 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. /// 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. @@ -1267,7 +3459,7 @@ public partial class ManagedServiceIdentityClient /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task UserAssignedIdentitiesDelete(string subscriptionId, string resourceGroupName, string resourceName, 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 UserAssignedIdentitiesListByResourceGroup1(string subscriptionId, string resourceGroupName, 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 @@ -1279,8 +3471,7 @@ public partial class ManagedServiceIdentityClient + global::System.Uri.EscapeDataString(subscriptionId) + "/resourceGroups/" + global::System.Uri.EscapeDataString(resourceGroupName) - + "/providers/Microsoft.ManagedIdentity/userAssignedIdentities/" - + global::System.Uri.EscapeDataString(resourceName) + + "/providers/Microsoft.ManagedIdentity/userAssignedIdentities" + "?" + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); @@ -1289,19 +3480,20 @@ 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.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.UserAssignedIdentitiesDelete_Call(request,onOk,onNoContent,onDefault,eventListener,sender); + await this.UserAssignedIdentitiesListByResourceGroup1_Call(request,onOk,onDefault,eventListener,sender); } } - /// Deletes the identity. + /// + /// Lists all the userAssignedIdentities available under the specified ResourceGroup. + /// /// /// 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. @@ -1309,7 +3501,7 @@ public partial class ManagedServiceIdentityClient /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task UserAssignedIdentitiesDeleteViaIdentity(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 UserAssignedIdentitiesListByResourceGroup1ViaIdentity(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 @@ -1317,24 +3509,22 @@ public partial class ManagedServiceIdentityClient { // 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); + 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}'"); + throw new global::System.Exception("Invalid identity for URI '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities'"); } // 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 + + "/providers/Microsoft.ManagedIdentity/userAssignedIdentities" + "?" + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); @@ -1343,19 +3533,20 @@ 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.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.UserAssignedIdentitiesDelete_Call(request,onOk,onNoContent,onDefault,eventListener,sender); + await this.UserAssignedIdentitiesListByResourceGroup1_Call(request,onOk,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. @@ -1363,7 +3554,7 @@ public partial class ManagedServiceIdentityClient /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task UserAssignedIdentitiesDelete_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 UserAssignedIdentitiesListByResourceGroup1_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 ) { @@ -1381,19 +3572,13 @@ 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); - 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); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.UserAssignedIdentitiesListResultAutoGenerated.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; } } @@ -1409,70 +3594,27 @@ 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 identity 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 UserAssignedIdentitiesDelete_Validate(string subscriptionId, string resourceGroupName, string resourceName, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task UserAssignedIdentitiesListByResourceGroup1_Validate(string subscriptionId, string resourceGroupName, 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); - } - } - - /// Gets the 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. - /// 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 UserAssignedIdentitiesGet(string subscriptionId, string resourceGroupName, string resourceName, 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) - + "?" - + "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.UserAssignedIdentitiesGet_Call(request,onOk,onDefault,eventListener,sender); } } - /// Gets the identity. + /// + /// Lists all the userAssignedIdentities available under the specified ResourceGroup. + /// /// /// 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 @@ -1482,32 +3624,30 @@ public partial class ManagedServiceIdentityClient /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task UserAssignedIdentitiesGetViaIdentity(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 UserAssignedIdentitiesListByResourceGroupViaIdentity(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"; + 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); + 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}'"); + throw new global::System.Exception("Invalid identity for URI '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities'"); } // 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 + + "/providers/Microsoft.ManagedIdentity/userAssignedIdentities" + "?" + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); @@ -1521,11 +3661,13 @@ public partial class ManagedServiceIdentityClient await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.UserAssignedIdentitiesGet_Call(request,onOk,onDefault,eventListener,sender); + await this.UserAssignedIdentitiesListByResourceGroup_Call(request,onOk,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 default (any response code not handled @@ -1535,7 +3677,7 @@ public partial class ManagedServiceIdentityClient /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task UserAssignedIdentitiesGet_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 UserAssignedIdentitiesListByResourceGroup_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 ) { @@ -1553,13 +3695,13 @@ 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.Identity.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.Api20230131.UserAssignedIdentitiesListResult.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; } } @@ -1575,37 +3717,68 @@ 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 identity 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 UserAssignedIdentitiesGet_Validate(string subscriptionId, string resourceGroupName, string resourceName, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task UserAssignedIdentitiesListByResourceGroup_Validate(string subscriptionId, string resourceGroupName, 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); } } - /// Lists the associated resources for this identity. + /// + /// Lists all the userAssignedIdentities available under the specified subscription. + /// + /// The Id of the Subscription to which the identity belongs. + /// 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 UserAssignedIdentitiesListBySubscription(string subscriptionId, 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) + + "/providers/Microsoft.ManagedIdentity/userAssignedIdentities" + + "?" + + "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.UserAssignedIdentitiesListBySubscription_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// + /// Lists all the userAssignedIdentities available under the specified subscription. + /// /// 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. - /// OData filter expression to apply to the query. - /// OData orderBy expression to apply to the query. - /// Number of records to return. - /// Number of records to skip. - /// 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). @@ -1614,7 +3787,7 @@ public partial class ManagedServiceIdentityClient /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task UserAssignedIdentitiesListAssociatedResources(string subscriptionId, string resourceGroupName, string resourceName, string Filter, string Orderby, int? Top, int? Skip, 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 UserAssignedIdentitiesListBySubscription1(string subscriptionId, 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 @@ -1624,22 +3797,8 @@ public partial class ManagedServiceIdentityClient 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) - + "/listAssociatedResources" + + "/providers/Microsoft.ManagedIdentity/userAssignedIdentities" + "?" - + (string.IsNullOrEmpty(Filter) ? global::System.String.Empty : "$filter=" + global::System.Uri.EscapeDataString(Filter)) - + "&" - + (string.IsNullOrEmpty(Orderby) ? global::System.String.Empty : "$orderby=" + global::System.Uri.EscapeDataString(Orderby)) - + "&" - + (null == Top ? global::System.String.Empty : "$top=" + global::System.Uri.EscapeDataString(Top.ToString())) - + "&" - + (null == Skip ? global::System.String.Empty : "$skip=" + global::System.Uri.EscapeDataString(Skip.ToString())) - + "&" - + (string.IsNullOrEmpty(Skiptoken) ? global::System.String.Empty : "$skiptoken=" + global::System.Uri.EscapeDataString(Skiptoken)) - + "&" + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); @@ -1647,24 +3806,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.Post, _url); + 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.UserAssignedIdentitiesListAssociatedResources_Call(request,onOk,onDefault,eventListener,sender); + await this.UserAssignedIdentitiesListBySubscription1_Call(request,onOk,onDefault,eventListener,sender); } } - /// Lists the associated resources for this identity. - /// - /// OData filter expression to apply to the query. - /// OData orderBy expression to apply to the query. - /// Number of records to return. - /// Number of records to skip. - /// 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. + /// + /// Lists all the userAssignedIdentities available under the specified subscription. + /// + /// /// 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). @@ -1673,7 +3827,7 @@ public partial class ManagedServiceIdentityClient /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task UserAssignedIdentitiesListAssociatedResourcesViaIdentity(global::System.String viaIdentity, string Filter, string Orderby, int? Top, int? Skip, 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 UserAssignedIdentitiesListBySubscription1ViaIdentity(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 @@ -1681,36 +3835,20 @@ public partial class ManagedServiceIdentityClient { // 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); + var _match = new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/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}/listAssociatedResources'"); + throw new global::System.Exception("Invalid identity for URI '/subscriptions/{subscriptionId}/providers/Microsoft.ManagedIdentity/userAssignedIdentities'"); } // 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 - + "/listAssociatedResources" + + "/providers/Microsoft.ManagedIdentity/userAssignedIdentities" + "?" - + (string.IsNullOrEmpty(Filter) ? global::System.String.Empty : "$filter=" + global::System.Uri.EscapeDataString(Filter)) - + "&" - + (string.IsNullOrEmpty(Orderby) ? global::System.String.Empty : "$orderby=" + global::System.Uri.EscapeDataString(Orderby)) - + "&" - + (null == Top ? global::System.String.Empty : "$top=" + global::System.Uri.EscapeDataString(Top.ToString())) - + "&" - + (null == Skip ? global::System.String.Empty : "$skip=" + global::System.Uri.EscapeDataString(Skip.ToString())) - + "&" - + (string.IsNullOrEmpty(Skiptoken) ? global::System.String.Empty : "$skiptoken=" + global::System.Uri.EscapeDataString(Skiptoken)) - + "&" + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); @@ -1718,17 +3856,17 @@ 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.Post, _url); + 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.UserAssignedIdentitiesListAssociatedResources_Call(request,onOk,onDefault,eventListener,sender); + await this.UserAssignedIdentitiesListBySubscription1_Call(request,onOk,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). @@ -1739,7 +3877,7 @@ public partial class ManagedServiceIdentityClient /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task UserAssignedIdentitiesListAssociatedResources_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 UserAssignedIdentitiesListBySubscription1_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 ) { @@ -1757,13 +3895,13 @@ 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.AssociatedResourcesListResult.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.UserAssignedIdentitiesListResultAutoGenerated.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; } } @@ -1779,83 +3917,24 @@ 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. - /// The name of the Resource Group to which the identity belongs. - /// The name of the identity resource. - /// OData filter expression to apply to the query. - /// OData orderBy expression to apply to the query. - /// Number of records to return. - /// Number of records to skip. - /// 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 UserAssignedIdentitiesListAssociatedResources_Validate(string subscriptionId, string resourceGroupName, string resourceName, string Filter, string Orderby, int? Top, int? Skip, string Skiptoken, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task UserAssignedIdentitiesListBySubscription1_Validate(string subscriptionId, 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(Filter),Filter); - await eventListener.AssertNotNull(nameof(Orderby),Orderby); - await eventListener.AssertIsGreaterThanOrEqual(nameof(Top),Top,1); - await eventListener.AssertIsGreaterThanOrEqual(nameof(Skip),Skip,1); - await eventListener.AssertNotNull(nameof(Skiptoken),Skiptoken); - } - } - - /// - /// Lists all the userAssignedIdentities available under the specified ResourceGroup. - /// - /// The Id of the Subscription to which the identity belongs. - /// The name of the Resource Group to which the identity belongs. - /// 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 UserAssignedIdentitiesListByResourceGroup(string subscriptionId, string resourceGroupName, 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" - + "?" - + "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.UserAssignedIdentitiesListByResourceGroup_Call(request,onOk,onDefault,eventListener,sender); } } /// - /// Lists all the userAssignedIdentities available under the specified ResourceGroup. + /// Lists all the userAssignedIdentities available under the specified subscription. /// /// /// a delegate that is called when the remote service returns 200 (OK). @@ -1866,29 +3945,26 @@ public partial class ManagedServiceIdentityClient /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task UserAssignedIdentitiesListByResourceGroupViaIdentity(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 UserAssignedIdentitiesListBySubscriptionViaIdentity(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"; + 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); + var _match = new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/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'"); + throw new global::System.Exception("Invalid identity for URI '/subscriptions/{subscriptionId}/providers/Microsoft.ManagedIdentity/userAssignedIdentities'"); } // replace URI parameters with values from identity var subscriptionId = _match.Groups["subscriptionId"].Value; - var resourceGroupName = _match.Groups["resourceGroupName"].Value; // construct URL var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( "/subscriptions/" + subscriptionId - + "/resourceGroups/" - + resourceGroupName + "/providers/Microsoft.ManagedIdentity/userAssignedIdentities" + "?" + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) @@ -1903,12 +3979,12 @@ public partial class ManagedServiceIdentityClient await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.UserAssignedIdentitiesListByResourceGroup_Call(request,onOk,onDefault,eventListener,sender); + await this.UserAssignedIdentitiesListBySubscription_Call(request,onOk,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). @@ -1919,7 +3995,7 @@ public partial class ManagedServiceIdentityClient /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task UserAssignedIdentitiesListByResourceGroup_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 UserAssignedIdentitiesListBySubscription_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 ) { @@ -1937,13 +4013,13 @@ 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.UserAssignedIdentitiesListResult.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.Api20230131.UserAssignedIdentitiesListResult.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; } } @@ -1959,28 +4035,75 @@ 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. - /// The name of the Resource Group to which the identity belongs. /// 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 UserAssignedIdentitiesListByResourceGroup_Validate(string subscriptionId, string resourceGroupName, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task UserAssignedIdentitiesListBySubscription_Validate(string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); - await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); } } - /// - /// Lists all the userAssignedIdentities available under the specified subscription. - /// + /// 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 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 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 UserAssignedIdentitiesUpdate(string subscriptionId, string resourceGroupName, string resourceName, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityUpdate body, 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) + + "?" + + "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.Patch, _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.UserAssignedIdentitiesUpdate_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// 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 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 default (any response code not handled /// elsewhere). @@ -1989,7 +4112,7 @@ public partial class ManagedServiceIdentityClient /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task UserAssignedIdentitiesListBySubscription(string subscriptionId, 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 UserAssignedIdentitiesUpdate1(string subscriptionId, string resourceGroupName, string resourceName, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateAutoGenerated body, 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 @@ -1999,7 +4122,10 @@ public partial class ManagedServiceIdentityClient var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( "/subscriptions/" + global::System.Uri.EscapeDataString(subscriptionId) - + "/providers/Microsoft.ManagedIdentity/userAssignedIdentities" + + "/resourceGroups/" + + global::System.Uri.EscapeDataString(resourceGroupName) + + "/providers/Microsoft.ManagedIdentity/userAssignedIdentities/" + + global::System.Uri.EscapeDataString(resourceName) + "?" + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); @@ -2008,19 +4134,22 @@ 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.Patch, _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.UserAssignedIdentitiesListBySubscription_Call(request,onOk,onDefault,eventListener,sender); + await this.UserAssignedIdentitiesUpdate1_Call(request,onOk,onDefault,eventListener,sender); } } - /// - /// Lists all the userAssignedIdentities available under the specified subscription. - /// + /// Update an identity in the specified subscription and resource group. /// + /// Parameters to 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 default (any response code not handled /// elsewhere). @@ -2029,7 +4158,7 @@ public partial class ManagedServiceIdentityClient /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task UserAssignedIdentitiesListBySubscriptionViaIdentity(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 UserAssignedIdentitiesUpdate1ViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateAutoGenerated body, 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 @@ -2037,19 +4166,24 @@ public partial class ManagedServiceIdentityClient { // verify that Identity format is an exact match for uri - var _match = new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/providers/Microsoft.ManagedIdentity/userAssignedIdentities$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); + 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}/providers/Microsoft.ManagedIdentity/userAssignedIdentities'"); + 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 - + "/providers/Microsoft.ManagedIdentity/userAssignedIdentities" + + "/resourceGroups/" + + resourceGroupName + + "/providers/Microsoft.ManagedIdentity/userAssignedIdentities/" + + resourceName + "?" + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); @@ -2058,18 +4192,20 @@ 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.Patch, _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.UserAssignedIdentitiesListBySubscription_Call(request,onOk,onDefault,eventListener,sender); + await this.UserAssignedIdentitiesUpdate1_Call(request,onOk,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 default (any response code not handled @@ -2079,7 +4215,7 @@ public partial class ManagedServiceIdentityClient /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task UserAssignedIdentitiesListBySubscription_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 UserAssignedIdentitiesUpdate1_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 ) { @@ -2097,13 +4233,13 @@ 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.UserAssignedIdentitiesListResult.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.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.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; } } @@ -2119,67 +4255,26 @@ 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. - /// 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 UserAssignedIdentitiesListBySubscription_Validate(string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener) - { - using( NoSynchronizationContext ) - { - await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); - } - } - - /// 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 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 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 UserAssignedIdentitiesUpdate(string subscriptionId, string resourceGroupName, string resourceName, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdate body, 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 UserAssignedIdentitiesUpdate1_Validate(string subscriptionId, string resourceGroupName, string resourceName, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateAutoGenerated body, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener) { - 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.Patch, _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.UserAssignedIdentitiesUpdate_Call(request,onOk,onDefault,eventListener,sender); + 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); } } @@ -2194,9 +4289,9 @@ public partial class ManagedServiceIdentityClient /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task UserAssignedIdentitiesUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdate body, 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 UserAssignedIdentitiesUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityUpdate body, 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"; + var apiVersion = @"2023-01-31"; // Constant Parameters using( NoSynchronizationContext ) { @@ -2251,7 +4346,7 @@ public partial class ManagedServiceIdentityClient /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task UserAssignedIdentitiesUpdate_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 UserAssignedIdentitiesUpdate_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 ) { @@ -2269,13 +4364,13 @@ 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.Identity.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.Api20230131.Identity.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; } } @@ -2302,7 +4397,7 @@ public partial class ManagedServiceIdentityClient /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task UserAssignedIdentitiesUpdate_Validate(string subscriptionId, string resourceGroupName, string resourceName, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdate body, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task UserAssignedIdentitiesUpdate_Validate(string subscriptionId, string resourceGroupName, string resourceName, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityUpdate body, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api10/ProxyResource.PowerShell.cs b/src/ManagedServiceIdentity/generated/api/Models/Api10/ProxyResource.PowerShell.cs index 20c428ac151e..5c6f21536c06 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api10/ProxyResource.PowerShell.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api10/ProxyResource.PowerShell.cs @@ -113,15 +113,15 @@ internal ProxyResource(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Id")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Id, global::System.Convert.ToString); } if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Name, global::System.Convert.ToString); } if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Type, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } @@ -142,15 +142,15 @@ internal ProxyResource(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("Id")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Id, global::System.Convert.ToString); } if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Name, global::System.Convert.ToString); } if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Type, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api10/ProxyResource.cs b/src/ManagedServiceIdentity/generated/api/Models/Api10/ProxyResource.cs index 084f47e87119..5b5e2afc62e1 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api10/ProxyResource.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api10/ProxyResource.cs @@ -16,35 +16,35 @@ public partial class ProxyResource : Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IValidates { /// - /// Backing field for Inherited model /// - private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResource __resource = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.Resource(); + private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGenerated __resourceAutoGenerated = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ResourceAutoGenerated(); /// /// Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} /// [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] - public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__resource).Id; } + public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__resourceAutoGenerated).Id; } /// Internal Acessors for Id - string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__resource).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__resource).Id = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__resourceAutoGenerated).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__resourceAutoGenerated).Id = value; } /// Internal Acessors for Name - string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__resource).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__resource).Name = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__resourceAutoGenerated).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__resourceAutoGenerated).Name = value; } /// Internal Acessors for Type - string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__resource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__resource).Type = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__resourceAutoGenerated).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__resourceAutoGenerated).Type = value; } /// The name of the resource [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] - public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__resource).Name; } + public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__resourceAutoGenerated).Name; } /// /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" /// [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] - public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__resource).Type; } + public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__resourceAutoGenerated).Type; } /// Creates an new instance. public ProxyResource() @@ -60,20 +60,20 @@ public ProxyResource() /// public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener) { - await eventListener.AssertNotNull(nameof(__resource), __resource); - await eventListener.AssertObjectIsValid(nameof(__resource), __resource); + await eventListener.AssertNotNull(nameof(__resourceAutoGenerated), __resourceAutoGenerated); + await eventListener.AssertObjectIsValid(nameof(__resourceAutoGenerated), __resourceAutoGenerated); } } /// The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location public partial interface IProxyResource : Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IJsonSerializable, - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResource + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGenerated { } /// The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location internal partial interface IProxyResourceInternal : - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal { } diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api10/ProxyResource.json.cs b/src/ManagedServiceIdentity/generated/api/Models/Api10/ProxyResource.json.cs index 829d0d6dd2e7..30eb78a4e305 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api10/ProxyResource.json.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api10/ProxyResource.json.cs @@ -79,7 +79,7 @@ internal ProxyResource(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity { return; } - __resource = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.Resource(json); + __resourceAutoGenerated = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ResourceAutoGenerated(json); AfterFromJson(json); } @@ -102,7 +102,7 @@ public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.Js { return container; } - __resource?.ToJson(container, serializationMode); + __resourceAutoGenerated?.ToJson(container, serializationMode); AfterToJson(ref container); return container; } diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api10/Resource.PowerShell.cs b/src/ManagedServiceIdentity/generated/api/Models/Api10/ResourceAutoGenerated.PowerShell.cs similarity index 72% rename from src/ManagedServiceIdentity/generated/api/Models/Api10/Resource.PowerShell.cs rename to src/ManagedServiceIdentity/generated/api/Models/Api10/ResourceAutoGenerated.PowerShell.cs index 07ce0af7fab4..211def2ec2e5 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api10/Resource.PowerShell.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api10/ResourceAutoGenerated.PowerShell.cs @@ -10,8 +10,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10 /// /// Common fields that are returned in the response for all Azure Resource Manager resources /// - [System.ComponentModel.TypeConverter(typeof(ResourceTypeConverter))] - public partial class Resource + [System.ComponentModel.TypeConverter(typeof(ResourceAutoGeneratedTypeConverter))] + public partial class ResourceAutoGenerated { /// @@ -65,44 +65,46 @@ public partial class Resource partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResource DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGenerated DeserializeFromDictionary(global::System.Collections.IDictionary content) { - return new Resource(content); + return new ResourceAutoGenerated(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResource DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGenerated DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { - return new Resource(content); + return new ResourceAutoGenerated(content); } /// - /// Creates a new instance of , deserializing the content from a json string. + /// Creates a new instance of , deserializing the content from a json string. /// /// a string containing a JSON serialized instance of this model. - /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResource FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(jsonText)); + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGenerated FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. - internal Resource(global::System.Collections.IDictionary content) + internal ResourceAutoGenerated(global::System.Collections.IDictionary content) { bool returnNow = false; BeforeDeserializeDictionary(content, ref returnNow); @@ -113,25 +115,25 @@ internal Resource(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Id")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Id, global::System.Convert.ToString); } if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Name, global::System.Convert.ToString); } if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Type, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. - internal Resource(global::System.Management.Automation.PSObject content) + internal ResourceAutoGenerated(global::System.Management.Automation.PSObject content) { bool returnNow = false; BeforeDeserializePSObject(content, ref returnNow); @@ -142,15 +144,15 @@ internal Resource(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("Id")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Id, global::System.Convert.ToString); } if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Name, global::System.Convert.ToString); } if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Type, global::System.Convert.ToString); } AfterDeserializePSObject(content); } @@ -173,8 +175,8 @@ public override string ToString() } } /// Common fields that are returned in the response for all Azure Resource Manager resources - [System.ComponentModel.TypeConverter(typeof(ResourceTypeConverter))] - public partial interface IResource + [System.ComponentModel.TypeConverter(typeof(ResourceAutoGeneratedTypeConverter))] + public partial interface IResourceAutoGenerated { diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api10/ResourceAutoGenerated.TypeConverter.cs b/src/ManagedServiceIdentity/generated/api/Models/Api10/ResourceAutoGenerated.TypeConverter.cs new file mode 100644 index 000000000000..7c8b73875aae --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api10/ResourceAutoGenerated.TypeConverter.cs @@ -0,0 +1,147 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10 +{ + using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class ResourceAutoGeneratedTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// type. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the + /// parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter into an instance of + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGenerated ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGenerated).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return ResourceAutoGenerated.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return ResourceAutoGenerated.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return ResourceAutoGenerated.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api10/Resource.cs b/src/ManagedServiceIdentity/generated/api/Models/Api10/ResourceAutoGenerated.cs similarity index 87% rename from src/ManagedServiceIdentity/generated/api/Models/Api10/Resource.cs rename to src/ManagedServiceIdentity/generated/api/Models/Api10/ResourceAutoGenerated.cs index 5ec63a4f5586..25a7f3fe620b 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api10/Resource.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api10/ResourceAutoGenerated.cs @@ -10,9 +10,9 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10 /// /// Common fields that are returned in the response for all Azure Resource Manager resources /// - public partial class Resource : - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResource, - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal + public partial class ResourceAutoGenerated : + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGenerated, + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal { /// Backing field for property. @@ -25,13 +25,13 @@ public partial class Resource : public string Id { get => this._id; } /// Internal Acessors for Id - string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal.Id { get => this._id; set { {_id = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal.Id { get => this._id; set { {_id = value;} } } /// Internal Acessors for Name - string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal.Name { get => this._name; set { {_name = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal.Name { get => this._name; set { {_name = value;} } } /// Internal Acessors for Type - string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal.Type { get => this._type; set { {_type = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal.Type { get => this._type; set { {_type = value;} } } /// Backing field for property. private string _name; @@ -49,14 +49,14 @@ public partial class Resource : [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Owned)] public string Type { get => this._type; } - /// Creates an new instance. - public Resource() + /// Creates an new instance. + public ResourceAutoGenerated() { } } /// Common fields that are returned in the response for all Azure Resource Manager resources - public partial interface IResource : + public partial interface IResourceAutoGenerated : Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IJsonSerializable { /// @@ -90,7 +90,7 @@ public partial interface IResource : } /// Common fields that are returned in the response for all Azure Resource Manager resources - internal partial interface IResourceInternal + internal partial interface IResourceAutoGeneratedInternal { /// diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api10/ResourceAutoGenerated.json.cs b/src/ManagedServiceIdentity/generated/api/Models/Api10/ResourceAutoGenerated.json.cs new file mode 100644 index 000000000000..68b72b2639d4 --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api10/ResourceAutoGenerated.json.cs @@ -0,0 +1,123 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; + + /// + /// Common fields that are returned in the response for all Azure Resource Manager resources + /// + public partial class ResourceAutoGenerated + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the + /// output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGenerated. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGenerated. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGenerated FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json ? new ResourceAutoGenerated(json) : null; + } + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject instance to deserialize from. + internal ResourceAutoGenerated(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_id = If( json?.PropertyT("id"), out var __jsonId) ? (string)__jsonId : (string)Id;} + {_name = If( json?.PropertyT("name"), out var __jsonName) ? (string)__jsonName : (string)Name;} + {_type = If( json?.PropertyT("type"), out var __jsonType) ? (string)__jsonType : (string)Type;} + AfterFromJson(json); + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._id)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonString(this._id.ToString()) : null, "id" ,container.Add ); + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._name)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonString(this._name.ToString()) : null, "name" ,container.Add ); + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._type)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonString(this._type.ToString()) : null, "type" ,container.Add ); + } + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api10/TrackedResource.PowerShell.cs b/src/ManagedServiceIdentity/generated/api/Models/Api10/TrackedResourceAutoGenerated.PowerShell.cs similarity index 66% rename from src/ManagedServiceIdentity/generated/api/Models/Api10/TrackedResource.PowerShell.cs rename to src/ManagedServiceIdentity/generated/api/Models/Api10/TrackedResourceAutoGenerated.PowerShell.cs index 68e1fbcc3678..083a6d51e35e 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api10/TrackedResource.PowerShell.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api10/TrackedResourceAutoGenerated.PowerShell.cs @@ -10,8 +10,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10 /// /// The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location' /// - [System.ComponentModel.TypeConverter(typeof(TrackedResourceTypeConverter))] - public partial class TrackedResource + [System.ComponentModel.TypeConverter(typeof(TrackedResourceAutoGeneratedTypeConverter))] + public partial class TrackedResourceAutoGenerated { /// @@ -65,37 +65,39 @@ public partial class TrackedResource partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResource DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceAutoGenerated DeserializeFromDictionary(global::System.Collections.IDictionary content) { - return new TrackedResource(content); + return new TrackedResourceAutoGenerated(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResource DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceAutoGenerated DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { - return new TrackedResource(content); + return new TrackedResourceAutoGenerated(content); } /// - /// Creates a new instance of , deserializing the content from a json string. + /// Creates a new instance of , deserializing the content from a json string. /// /// a string containing a JSON serialized instance of this model. - /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResource FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(jsonText)); + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceAutoGenerated FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. @@ -115,11 +117,11 @@ public override string ToString() } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. - internal TrackedResource(global::System.Collections.IDictionary content) + internal TrackedResourceAutoGenerated(global::System.Collections.IDictionary content) { bool returnNow = false; BeforeDeserializeDictionary(content, ref returnNow); @@ -130,33 +132,33 @@ internal TrackedResource(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Tag")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.TrackedResourceTagsTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceAutoGeneratedInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceAutoGeneratedInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.TrackedResourceTagsTypeConverter.ConvertFrom); } if (content.Contains("Location")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceAutoGeneratedInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceAutoGeneratedInternal)this).Location, global::System.Convert.ToString); } if (content.Contains("Id")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Id, global::System.Convert.ToString); } if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Name, global::System.Convert.ToString); } if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Type, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. - internal TrackedResource(global::System.Management.Automation.PSObject content) + internal TrackedResourceAutoGenerated(global::System.Management.Automation.PSObject content) { bool returnNow = false; BeforeDeserializePSObject(content, ref returnNow); @@ -167,30 +169,30 @@ internal TrackedResource(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("Tag")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.TrackedResourceTagsTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceAutoGeneratedInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceAutoGeneratedInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.TrackedResourceTagsTypeConverter.ConvertFrom); } if (content.Contains("Location")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceAutoGeneratedInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceAutoGeneratedInternal)this).Location, global::System.Convert.ToString); } if (content.Contains("Id")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Id, global::System.Convert.ToString); } if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Name, global::System.Convert.ToString); } if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Type, global::System.Convert.ToString); } AfterDeserializePSObject(content); } } /// The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location' - [System.ComponentModel.TypeConverter(typeof(TrackedResourceTypeConverter))] - public partial interface ITrackedResource + [System.ComponentModel.TypeConverter(typeof(TrackedResourceAutoGeneratedTypeConverter))] + public partial interface ITrackedResourceAutoGenerated { diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api10/TrackedResourceAutoGenerated.TypeConverter.cs b/src/ManagedServiceIdentity/generated/api/Models/Api10/TrackedResourceAutoGenerated.TypeConverter.cs new file mode 100644 index 000000000000..dae8144c52cf --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api10/TrackedResourceAutoGenerated.TypeConverter.cs @@ -0,0 +1,147 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10 +{ + using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class TrackedResourceAutoGeneratedTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// type. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the + /// parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter into an instance of + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceAutoGenerated ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceAutoGenerated).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return TrackedResourceAutoGenerated.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return TrackedResourceAutoGenerated.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return TrackedResourceAutoGenerated.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api10/TrackedResource.cs b/src/ManagedServiceIdentity/generated/api/Models/Api10/TrackedResourceAutoGenerated.cs similarity index 73% rename from src/ManagedServiceIdentity/generated/api/Models/Api10/TrackedResource.cs rename to src/ManagedServiceIdentity/generated/api/Models/Api10/TrackedResourceAutoGenerated.cs index f92f54589b1d..e531babf0546 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api10/TrackedResource.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api10/TrackedResourceAutoGenerated.cs @@ -10,22 +10,22 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10 /// /// The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location' /// - public partial class TrackedResource : - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResource, - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceInternal, + public partial class TrackedResourceAutoGenerated : + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceAutoGenerated, + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceAutoGeneratedInternal, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IValidates { /// - /// Backing field for Inherited model /// - private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResource __resource = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.Resource(); + private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGenerated __resourceAutoGenerated = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ResourceAutoGenerated(); /// /// Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} /// [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] - public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__resource).Id; } + public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__resourceAutoGenerated).Id; } /// Backing field for property. private string _location; @@ -35,17 +35,17 @@ public partial class TrackedResource : public string Location { get => this._location; set => this._location = value; } /// Internal Acessors for Id - string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__resource).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__resource).Id = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__resourceAutoGenerated).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__resourceAutoGenerated).Id = value; } /// Internal Acessors for Name - string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__resource).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__resource).Name = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__resourceAutoGenerated).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__resourceAutoGenerated).Name = value; } /// Internal Acessors for Type - string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__resource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__resource).Type = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__resourceAutoGenerated).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__resourceAutoGenerated).Type = value; } /// The name of the resource [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] - public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__resource).Name; } + public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__resourceAutoGenerated).Name; } /// Backing field for property. private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceTags _tag; @@ -58,10 +58,10 @@ public partial class TrackedResource : /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" /// [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] - public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__resource).Type; } + public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__resourceAutoGenerated).Type; } - /// Creates an new instance. - public TrackedResource() + /// Creates an new instance. + public TrackedResourceAutoGenerated() { } @@ -74,14 +74,14 @@ public TrackedResource() /// public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener) { - await eventListener.AssertNotNull(nameof(__resource), __resource); - await eventListener.AssertObjectIsValid(nameof(__resource), __resource); + await eventListener.AssertNotNull(nameof(__resourceAutoGenerated), __resourceAutoGenerated); + await eventListener.AssertObjectIsValid(nameof(__resourceAutoGenerated), __resourceAutoGenerated); } } /// The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location' - public partial interface ITrackedResource : + public partial interface ITrackedResourceAutoGenerated : Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IJsonSerializable, - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResource + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGenerated { /// The geo-location where the resource lives [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( @@ -102,8 +102,8 @@ public partial interface ITrackedResource : } /// The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location' - internal partial interface ITrackedResourceInternal : - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal + internal partial interface ITrackedResourceAutoGeneratedInternal : + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal { /// The geo-location where the resource lives string Location { get; set; } diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api10/TrackedResourceAutoGenerated.json.cs b/src/ManagedServiceIdentity/generated/api/Models/Api10/TrackedResourceAutoGenerated.json.cs new file mode 100644 index 000000000000..d0f28f680e4a --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api10/TrackedResourceAutoGenerated.json.cs @@ -0,0 +1,114 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; + + /// + /// The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location' + /// + public partial class TrackedResourceAutoGenerated + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the + /// output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceAutoGenerated. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceAutoGenerated. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceAutoGenerated FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json ? new TrackedResourceAutoGenerated(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + __resourceAutoGenerated?.ToJson(container, serializationMode); + AddIf( null != this._tag ? (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode) this._tag.ToJson(null,serializationMode) : null, "tags" ,container.Add ); + AddIf( null != (((object)this._location)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonString(this._location.ToString()) : null, "location" ,container.Add ); + AfterToJson(ref container); + return container; + } + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject instance to deserialize from. + internal TrackedResourceAutoGenerated(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + __resourceAutoGenerated = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ResourceAutoGenerated(json); + {_tag = If( json?.PropertyT("tags"), out var __jsonTags) ? Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.TrackedResourceTags.FromJson(__jsonTags) : Tag;} + {_location = If( json?.PropertyT("location"), out var __jsonLocation) ? (string)__jsonLocation : (string)Location;} + AfterFromJson(json); + } + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudErrorAutoGenerated.PowerShell.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudErrorAutoGenerated.PowerShell.cs new file mode 100644 index 000000000000..4119018d4f05 --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudErrorAutoGenerated.PowerShell.cs @@ -0,0 +1,198 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; + + /// An error response from the ManagedServiceIdentity service. + [System.ComponentModel.TypeConverter(typeof(CloudErrorAutoGeneratedTypeConverter))] + public partial class CloudErrorAutoGenerated + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior + /// + /// /// instance serialized to a string, normally it is a Json + /// /// set returnNow to true if you provide a customized OverrideToString function + + partial void OverrideToString(ref string stringResult, ref bool returnNow); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal CloudErrorAutoGenerated(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Error")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorAutoGeneratedInternal)this).Error = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGenerated) content.GetValueForProperty("Error",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorAutoGeneratedInternal)this).Error, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.CloudErrorBodyAutoGeneratedTypeConverter.ConvertFrom); + } + if (content.Contains("Code")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorAutoGeneratedInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorAutoGeneratedInternal)this).Code, global::System.Convert.ToString); + } + if (content.Contains("Message")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorAutoGeneratedInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorAutoGeneratedInternal)this).Message, global::System.Convert.ToString); + } + if (content.Contains("Target")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorAutoGeneratedInternal)this).Target = (string) content.GetValueForProperty("Target",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorAutoGeneratedInternal)this).Target, global::System.Convert.ToString); + } + if (content.Contains("Detail")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorAutoGeneratedInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGenerated[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorAutoGeneratedInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.CloudErrorBodyAutoGeneratedTypeConverter.ConvertFrom)); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal CloudErrorAutoGenerated(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Error")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorAutoGeneratedInternal)this).Error = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGenerated) content.GetValueForProperty("Error",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorAutoGeneratedInternal)this).Error, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.CloudErrorBodyAutoGeneratedTypeConverter.ConvertFrom); + } + if (content.Contains("Code")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorAutoGeneratedInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorAutoGeneratedInternal)this).Code, global::System.Convert.ToString); + } + if (content.Contains("Message")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorAutoGeneratedInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorAutoGeneratedInternal)this).Message, global::System.Convert.ToString); + } + if (content.Contains("Target")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorAutoGeneratedInternal)this).Target = (string) content.GetValueForProperty("Target",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorAutoGeneratedInternal)this).Target, global::System.Convert.ToString); + } + if (content.Contains("Detail")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorAutoGeneratedInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGenerated[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorAutoGeneratedInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.CloudErrorBodyAutoGeneratedTypeConverter.ConvertFrom)); + } + AfterDeserializePSObject(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorAutoGenerated DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new CloudErrorAutoGenerated(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorAutoGenerated DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new CloudErrorAutoGenerated(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorAutoGenerated FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.SerializationMode.IncludeAll)?.ToString(); + + public override string ToString() + { + var returnNow = false; + var result = global::System.String.Empty; + OverrideToString(ref result, ref returnNow); + if (returnNow) + { + return result; + } + return ToJsonString(); + } + } + /// An error response from the ManagedServiceIdentity service. + [System.ComponentModel.TypeConverter(typeof(CloudErrorAutoGeneratedTypeConverter))] + public partial interface ICloudErrorAutoGenerated + + { + + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudErrorAutoGenerated.TypeConverter.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudErrorAutoGenerated.TypeConverter.cs new file mode 100644 index 000000000000..b2e1dd4f028f --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudErrorAutoGenerated.TypeConverter.cs @@ -0,0 +1,147 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class CloudErrorAutoGeneratedTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// type. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the + /// parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter into an instance of + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorAutoGenerated ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorAutoGenerated).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return CloudErrorAutoGenerated.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return CloudErrorAutoGenerated.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return CloudErrorAutoGenerated.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudErrorAutoGenerated.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudErrorAutoGenerated.cs new file mode 100644 index 000000000000..19a3087f9927 --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudErrorAutoGenerated.cs @@ -0,0 +1,114 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; + + /// An error response from the ManagedServiceIdentity service. + public partial class CloudErrorAutoGenerated : + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorAutoGenerated, + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorAutoGeneratedInternal + { + + /// An identifier for the error. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inlined)] + public string Code { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGeneratedInternal)Error).Code; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGeneratedInternal)Error).Code = value ?? null; } + + /// A list of additional details about the error. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGenerated[] Detail { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGeneratedInternal)Error).Detail; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGeneratedInternal)Error).Detail = value ?? null /* arrayOf */; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGenerated _error; + + /// A list of additional details about the error. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Owned)] + internal Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGenerated Error { get => (this._error = this._error ?? new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.CloudErrorBodyAutoGenerated()); set => this._error = value; } + + /// + /// A message describing the error, intended to be suitable for display in a user interface. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inlined)] + public string Message { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGeneratedInternal)Error).Message; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGeneratedInternal)Error).Message = value ?? null; } + + /// Internal Acessors for Error + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGenerated Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorAutoGeneratedInternal.Error { get => (this._error = this._error ?? new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.CloudErrorBodyAutoGenerated()); set { {_error = value;} } } + + /// + /// The target of the particular error. For example, the name of the property in error. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inlined)] + public string Target { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGeneratedInternal)Error).Target; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGeneratedInternal)Error).Target = value ?? null; } + + /// Creates an new instance. + public CloudErrorAutoGenerated() + { + + } + } + /// An error response from the ManagedServiceIdentity service. + public partial interface ICloudErrorAutoGenerated : + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IJsonSerializable + { + /// An identifier for the error. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"An identifier for the error.", + SerializedName = @"code", + PossibleTypes = new [] { typeof(string) })] + string Code { get; set; } + /// A list of additional details about the error. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"A list of additional details about the error.", + SerializedName = @"details", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGenerated) })] + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGenerated[] Detail { get; set; } + /// + /// A message describing the error, intended to be suitable for display in a user interface. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"A message describing the error, intended to be suitable for display in a user interface.", + SerializedName = @"message", + PossibleTypes = new [] { typeof(string) })] + string Message { get; set; } + /// + /// The target of the particular error. For example, the name of the property in error. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The target of the particular error. For example, the name of the property in error.", + SerializedName = @"target", + PossibleTypes = new [] { typeof(string) })] + string Target { get; set; } + + } + /// An error response from the ManagedServiceIdentity service. + internal partial interface ICloudErrorAutoGeneratedInternal + + { + /// An identifier for the error. + string Code { get; set; } + /// A list of additional details about the error. + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGenerated[] Detail { get; set; } + /// A list of additional details about the error. + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGenerated Error { get; set; } + /// + /// A message describing the error, intended to be suitable for display in a user interface. + /// + string Message { get; set; } + /// + /// The target of the particular error. For example, the name of the property in error. + /// + string Target { get; set; } + + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudErrorAutoGenerated.json.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudErrorAutoGenerated.json.cs new file mode 100644 index 000000000000..5f64b1057989 --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudErrorAutoGenerated.json.cs @@ -0,0 +1,108 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; + + /// An error response from the ManagedServiceIdentity service. + public partial class CloudErrorAutoGenerated + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the + /// output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject instance to deserialize from. + internal CloudErrorAutoGenerated(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_error = If( json?.PropertyT("error"), out var __jsonError) ? Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.CloudErrorBodyAutoGenerated.FromJson(__jsonError) : Error;} + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorAutoGenerated. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorAutoGenerated. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorAutoGenerated FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json ? new CloudErrorAutoGenerated(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + AddIf( null != this._error ? (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode) this._error.ToJson(null,serializationMode) : null, "error" ,container.Add ); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudErrorBodyAutoGenerated.PowerShell.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudErrorBodyAutoGenerated.PowerShell.cs new file mode 100644 index 000000000000..60ffa3ae884a --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudErrorBodyAutoGenerated.PowerShell.cs @@ -0,0 +1,190 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; + + /// An error response from the ManagedServiceIdentity service. + [System.ComponentModel.TypeConverter(typeof(CloudErrorBodyAutoGeneratedTypeConverter))] + public partial class CloudErrorBodyAutoGenerated + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior + /// + /// /// instance serialized to a string, normally it is a Json + /// /// set returnNow to true if you provide a customized OverrideToString function + + partial void OverrideToString(ref string stringResult, ref bool returnNow); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal CloudErrorBodyAutoGenerated(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Code")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGeneratedInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGeneratedInternal)this).Code, global::System.Convert.ToString); + } + if (content.Contains("Message")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGeneratedInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGeneratedInternal)this).Message, global::System.Convert.ToString); + } + if (content.Contains("Target")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGeneratedInternal)this).Target = (string) content.GetValueForProperty("Target",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGeneratedInternal)this).Target, global::System.Convert.ToString); + } + if (content.Contains("Detail")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGeneratedInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGenerated[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGeneratedInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.CloudErrorBodyAutoGeneratedTypeConverter.ConvertFrom)); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal CloudErrorBodyAutoGenerated(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Code")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGeneratedInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGeneratedInternal)this).Code, global::System.Convert.ToString); + } + if (content.Contains("Message")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGeneratedInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGeneratedInternal)this).Message, global::System.Convert.ToString); + } + if (content.Contains("Target")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGeneratedInternal)this).Target = (string) content.GetValueForProperty("Target",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGeneratedInternal)this).Target, global::System.Convert.ToString); + } + if (content.Contains("Detail")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGeneratedInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGenerated[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGeneratedInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.CloudErrorBodyAutoGeneratedTypeConverter.ConvertFrom)); + } + AfterDeserializePSObject(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGenerated DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new CloudErrorBodyAutoGenerated(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGenerated DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new CloudErrorBodyAutoGenerated(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGenerated FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.SerializationMode.IncludeAll)?.ToString(); + + public override string ToString() + { + var returnNow = false; + var result = global::System.String.Empty; + OverrideToString(ref result, ref returnNow); + if (returnNow) + { + return result; + } + return ToJsonString(); + } + } + /// An error response from the ManagedServiceIdentity service. + [System.ComponentModel.TypeConverter(typeof(CloudErrorBodyAutoGeneratedTypeConverter))] + public partial interface ICloudErrorBodyAutoGenerated + + { + + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudErrorBodyAutoGenerated.TypeConverter.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudErrorBodyAutoGenerated.TypeConverter.cs new file mode 100644 index 000000000000..f346301e512a --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudErrorBodyAutoGenerated.TypeConverter.cs @@ -0,0 +1,147 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class CloudErrorBodyAutoGeneratedTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// type. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the + /// parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter into an instance of + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGenerated ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGenerated).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return CloudErrorBodyAutoGenerated.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return CloudErrorBodyAutoGenerated.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return CloudErrorBodyAutoGenerated.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudErrorBodyAutoGenerated.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudErrorBodyAutoGenerated.cs new file mode 100644 index 000000000000..5c20b7c4e21b --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudErrorBodyAutoGenerated.cs @@ -0,0 +1,114 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; + + /// An error response from the ManagedServiceIdentity service. + public partial class CloudErrorBodyAutoGenerated : + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGenerated, + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGeneratedInternal + { + + /// Backing field for property. + private string _code; + + /// An identifier for the error. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Owned)] + public string Code { get => this._code; set => this._code = value; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGenerated[] _detail; + + /// A list of additional details about the error. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGenerated[] Detail { get => this._detail; set => this._detail = value; } + + /// Backing field for property. + private string _message; + + /// + /// A message describing the error, intended to be suitable for display in a user interface. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Owned)] + public string Message { get => this._message; set => this._message = value; } + + /// Backing field for property. + private string _target; + + /// + /// The target of the particular error. For example, the name of the property in error. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Owned)] + public string Target { get => this._target; set => this._target = value; } + + /// Creates an new instance. + public CloudErrorBodyAutoGenerated() + { + + } + } + /// An error response from the ManagedServiceIdentity service. + public partial interface ICloudErrorBodyAutoGenerated : + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IJsonSerializable + { + /// An identifier for the error. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"An identifier for the error.", + SerializedName = @"code", + PossibleTypes = new [] { typeof(string) })] + string Code { get; set; } + /// A list of additional details about the error. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"A list of additional details about the error.", + SerializedName = @"details", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGenerated) })] + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGenerated[] Detail { get; set; } + /// + /// A message describing the error, intended to be suitable for display in a user interface. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"A message describing the error, intended to be suitable for display in a user interface.", + SerializedName = @"message", + PossibleTypes = new [] { typeof(string) })] + string Message { get; set; } + /// + /// The target of the particular error. For example, the name of the property in error. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The target of the particular error. For example, the name of the property in error.", + SerializedName = @"target", + PossibleTypes = new [] { typeof(string) })] + string Target { get; set; } + + } + /// An error response from the ManagedServiceIdentity service. + internal partial interface ICloudErrorBodyAutoGeneratedInternal + + { + /// An identifier for the error. + string Code { get; set; } + /// A list of additional details about the error. + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGenerated[] Detail { get; set; } + /// + /// A message describing the error, intended to be suitable for display in a user interface. + /// + string Message { get; set; } + /// + /// The target of the particular error. For example, the name of the property in error. + /// + string Target { get; set; } + + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudErrorBodyAutoGenerated.json.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudErrorBodyAutoGenerated.json.cs new file mode 100644 index 000000000000..dcd883085b5f --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudErrorBodyAutoGenerated.json.cs @@ -0,0 +1,122 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; + + /// An error response from the ManagedServiceIdentity service. + public partial class CloudErrorBodyAutoGenerated + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the + /// output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject instance to deserialize from. + internal CloudErrorBodyAutoGenerated(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_code = If( json?.PropertyT("code"), out var __jsonCode) ? (string)__jsonCode : (string)Code;} + {_message = If( json?.PropertyT("message"), out var __jsonMessage) ? (string)__jsonMessage : (string)Message;} + {_target = If( json?.PropertyT("target"), out var __jsonTarget) ? (string)__jsonTarget : (string)Target;} + {_detail = If( json?.PropertyT("details"), out var __jsonDetails) ? If( __jsonDetails as Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGenerated) (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.CloudErrorBodyAutoGenerated.FromJson(__u) )) ))() : null : Detail;} + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGenerated. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGenerated. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyAutoGenerated FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json ? new CloudErrorBodyAutoGenerated(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + AddIf( null != (((object)this._code)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonString(this._code.ToString()) : null, "code" ,container.Add ); + AddIf( null != (((object)this._message)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonString(this._message.ToString()) : null, "message" ,container.Add ); + AddIf( null != (((object)this._target)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonString(this._target.ToString()) : null, "target" ,container.Add ); + if (null != this._detail) + { + var __w = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.XNodeArray(); + foreach( var __x in this._detail ) + { + AddIf(__x?.ToJson(null, serializationMode) ,__w.Add); + } + container.Add("details",__w); + } + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredential.PowerShell.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredentialAutoGenerated.PowerShell.cs similarity index 64% rename from src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredential.PowerShell.cs rename to src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredentialAutoGenerated.PowerShell.cs index aa088725e517..0edbe7ada421 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredential.PowerShell.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredentialAutoGenerated.PowerShell.cs @@ -8,8 +8,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20 using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; /// Describes a federated identity credential. - [System.ComponentModel.TypeConverter(typeof(FederatedIdentityCredentialTypeConverter))] - public partial class FederatedIdentityCredential + [System.ComponentModel.TypeConverter(typeof(FederatedIdentityCredentialAutoGeneratedTypeConverter))] + public partial class FederatedIdentityCredentialAutoGenerated { /// @@ -63,39 +63,39 @@ public partial class FederatedIdentityCredential partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialAutoGenerated DeserializeFromDictionary(global::System.Collections.IDictionary content) { - return new FederatedIdentityCredential(content); + return new FederatedIdentityCredentialAutoGenerated(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialAutoGenerated DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { - return new FederatedIdentityCredential(content); + return new FederatedIdentityCredentialAutoGenerated(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. - internal FederatedIdentityCredential(global::System.Collections.IDictionary content) + internal FederatedIdentityCredentialAutoGenerated(global::System.Collections.IDictionary content) { bool returnNow = false; BeforeDeserializeDictionary(content, ref returnNow); @@ -106,41 +106,41 @@ internal FederatedIdentityCredential(global::System.Collections.IDictionary cont // actually deserialize if (content.Contains("Property")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.FederatedIdentityCredentialPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialAutoGeneratedInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialAutoGeneratedInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.FederatedIdentityCredentialPropertiesTypeConverter.ConvertFrom); } if (content.Contains("Id")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Id, global::System.Convert.ToString); } if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Name, global::System.Convert.ToString); } if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Type, global::System.Convert.ToString); } if (content.Contains("Issuer")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialInternal)this).Issuer = (string) content.GetValueForProperty("Issuer",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialInternal)this).Issuer, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialAutoGeneratedInternal)this).Issuer = (string) content.GetValueForProperty("Issuer",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialAutoGeneratedInternal)this).Issuer, global::System.Convert.ToString); } if (content.Contains("Subject")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialInternal)this).Subject = (string) content.GetValueForProperty("Subject",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialInternal)this).Subject, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialAutoGeneratedInternal)this).Subject = (string) content.GetValueForProperty("Subject",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialAutoGeneratedInternal)this).Subject, global::System.Convert.ToString); } if (content.Contains("Audience")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialInternal)this).Audience = (string[]) content.GetValueForProperty("Audience",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialInternal)this).Audience, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialAutoGeneratedInternal)this).Audience = (string[]) content.GetValueForProperty("Audience",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialAutoGeneratedInternal)this).Audience, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. - internal FederatedIdentityCredential(global::System.Management.Automation.PSObject content) + internal FederatedIdentityCredentialAutoGenerated(global::System.Management.Automation.PSObject content) { bool returnNow = false; BeforeDeserializePSObject(content, ref returnNow); @@ -151,41 +151,44 @@ internal FederatedIdentityCredential(global::System.Management.Automation.PSObje // actually deserialize if (content.Contains("Property")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.FederatedIdentityCredentialPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialAutoGeneratedInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialAutoGeneratedInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.FederatedIdentityCredentialPropertiesTypeConverter.ConvertFrom); } if (content.Contains("Id")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Id, global::System.Convert.ToString); } if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Name, global::System.Convert.ToString); } if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Type, global::System.Convert.ToString); } if (content.Contains("Issuer")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialInternal)this).Issuer = (string) content.GetValueForProperty("Issuer",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialInternal)this).Issuer, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialAutoGeneratedInternal)this).Issuer = (string) content.GetValueForProperty("Issuer",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialAutoGeneratedInternal)this).Issuer, global::System.Convert.ToString); } if (content.Contains("Subject")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialInternal)this).Subject = (string) content.GetValueForProperty("Subject",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialInternal)this).Subject, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialAutoGeneratedInternal)this).Subject = (string) content.GetValueForProperty("Subject",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialAutoGeneratedInternal)this).Subject, global::System.Convert.ToString); } if (content.Contains("Audience")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialInternal)this).Audience = (string[]) content.GetValueForProperty("Audience",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialInternal)this).Audience, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialAutoGeneratedInternal)this).Audience = (string[]) content.GetValueForProperty("Audience",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialAutoGeneratedInternal)this).Audience, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); } AfterDeserializePSObject(content); } /// - /// Creates a new instance of , deserializing the content from a json string. + /// Creates a new instance of , deserializing the content from a json + /// string. /// /// a string containing a JSON serialized instance of this model. - /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(jsonText)); + /// + /// an instance of the model class. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialAutoGenerated FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. @@ -205,8 +208,8 @@ public override string ToString() } } /// Describes a federated identity credential. - [System.ComponentModel.TypeConverter(typeof(FederatedIdentityCredentialTypeConverter))] - public partial interface IFederatedIdentityCredential + [System.ComponentModel.TypeConverter(typeof(FederatedIdentityCredentialAutoGeneratedTypeConverter))] + public partial interface IFederatedIdentityCredentialAutoGenerated { diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredentialAutoGenerated.TypeConverter.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredentialAutoGenerated.TypeConverter.cs new file mode 100644 index 000000000000..739c02c3a53c --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredentialAutoGenerated.TypeConverter.cs @@ -0,0 +1,151 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class FederatedIdentityCredentialAutoGeneratedTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// type. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise + /// false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the + /// parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter into an instance of + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialAutoGenerated ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialAutoGenerated).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return FederatedIdentityCredentialAutoGenerated.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return FederatedIdentityCredentialAutoGenerated.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return FederatedIdentityCredentialAutoGenerated.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredential.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredentialAutoGenerated.cs similarity index 76% rename from src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredential.cs rename to src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredentialAutoGenerated.cs index 099e9350e6f3..245057d047ba 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredential.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredentialAutoGenerated.cs @@ -8,78 +8,72 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20 using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; /// Describes a federated identity credential. - public partial class FederatedIdentityCredential : - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential, - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialInternal, + public partial class FederatedIdentityCredentialAutoGenerated : + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialAutoGenerated, + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialAutoGeneratedInternal, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IValidates { /// - /// Backing field for Inherited model /// - private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResource __resource = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.Resource(); + private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGenerated __resourceAutoGenerated = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ResourceAutoGenerated(); /// The list of audiences that can appear in the issued token. [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inlined)] - [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.FormatTable(Index = 3)] public string[] Audience { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialPropertiesInternal)Property).Audience; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialPropertiesInternal)Property).Audience = value ?? null /* arrayOf */; } /// /// Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} /// [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] - [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.DoNotFormat] - public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__resource).Id; } + public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__resourceAutoGenerated).Id; } /// The URL of the issuer to be trusted. [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inlined)] - [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.FormatTable(Index = 1)] public string Issuer { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialPropertiesInternal)Property).Issuer; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialPropertiesInternal)Property).Issuer = value ?? null; } /// Internal Acessors for Id - string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__resource).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__resource).Id = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__resourceAutoGenerated).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__resourceAutoGenerated).Id = value; } /// Internal Acessors for Name - string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__resource).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__resource).Name = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__resourceAutoGenerated).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__resourceAutoGenerated).Name = value; } /// Internal Acessors for Type - string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__resource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__resource).Type = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__resourceAutoGenerated).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__resourceAutoGenerated).Type = value; } /// Internal Acessors for Property - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialProperties Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.FederatedIdentityCredentialProperties()); set { {_property = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialProperties Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialAutoGeneratedInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.FederatedIdentityCredentialProperties()); set { {_property = value;} } } /// The name of the resource [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] - [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.FormatTable(Index = 0)] - public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__resource).Name; } + public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__resourceAutoGenerated).Name; } /// Backing field for property. private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialProperties _property; /// The properties associated with the federated identity credential. [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Owned)] - [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.DoNotFormat] internal Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.FederatedIdentityCredentialProperties()); set => this._property = value; } /// Gets the resource group name [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Owned)] - [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.DoNotFormat] public string ResourceGroupName { get => (new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(this.Id).Success ? new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(this.Id).Groups["resourceGroupName"].Value : null); } /// The identifier of the external identity. [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inlined)] - [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.FormatTable(Index = 2)] public string Subject { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialPropertiesInternal)Property).Subject; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialPropertiesInternal)Property).Subject = value ?? null; } /// /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" /// [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] - [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.DoNotFormat] - public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__resource).Type; } + public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__resourceAutoGenerated).Type; } - /// Creates an new instance. - public FederatedIdentityCredential() + /// + /// Creates an new instance. + /// + public FederatedIdentityCredentialAutoGenerated() { } @@ -92,14 +86,14 @@ public FederatedIdentityCredential() /// public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener) { - await eventListener.AssertNotNull(nameof(__resource), __resource); - await eventListener.AssertObjectIsValid(nameof(__resource), __resource); + await eventListener.AssertNotNull(nameof(__resourceAutoGenerated), __resourceAutoGenerated); + await eventListener.AssertObjectIsValid(nameof(__resourceAutoGenerated), __resourceAutoGenerated); } } /// Describes a federated identity credential. - public partial interface IFederatedIdentityCredential : + public partial interface IFederatedIdentityCredentialAutoGenerated : Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IJsonSerializable, - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResource + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGenerated { /// The list of audiences that can appear in the issued token. [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( @@ -128,8 +122,8 @@ public partial interface IFederatedIdentityCredential : } /// Describes a federated identity credential. - internal partial interface IFederatedIdentityCredentialInternal : - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal + internal partial interface IFederatedIdentityCredentialAutoGeneratedInternal : + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal { /// The list of audiences that can appear in the issued token. string[] Audience { get; set; } diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredentialAutoGenerated.json.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredentialAutoGenerated.json.cs new file mode 100644 index 000000000000..251ca8ecb006 --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredentialAutoGenerated.json.cs @@ -0,0 +1,112 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; + + /// Describes a federated identity credential. + public partial class FederatedIdentityCredentialAutoGenerated + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the + /// output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject instance to deserialize from. + internal FederatedIdentityCredentialAutoGenerated(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + __resourceAutoGenerated = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ResourceAutoGenerated(json); + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.FederatedIdentityCredentialProperties.FromJson(__jsonProperties) : Property;} + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialAutoGenerated. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialAutoGenerated. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialAutoGenerated FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json ? new FederatedIdentityCredentialAutoGenerated(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + __resourceAutoGenerated?.ToJson(container, serializationMode); + AddIf( null != this._property ? (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode) this._property.ToJson(null,serializationMode) : null, "properties" ,container.Add ); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredentialsListResultAutoGenerated.PowerShell.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredentialsListResultAutoGenerated.PowerShell.cs new file mode 100644 index 000000000000..185b44d8919d --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredentialsListResultAutoGenerated.PowerShell.cs @@ -0,0 +1,177 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; + + /// Values returned by the List operation for federated identity credentials. + [System.ComponentModel.TypeConverter(typeof(FederatedIdentityCredentialsListResultAutoGeneratedTypeConverter))] + public partial class FederatedIdentityCredentialsListResultAutoGenerated + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior + /// + /// /// instance serialized to a string, normally it is a Json + /// /// set returnNow to true if you provide a customized OverrideToString function + + partial void OverrideToString(ref string stringResult, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialsListResultAutoGenerated DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new FederatedIdentityCredentialsListResultAutoGenerated(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialsListResultAutoGenerated DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new FederatedIdentityCredentialsListResultAutoGenerated(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal FederatedIdentityCredentialsListResultAutoGenerated(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Value")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialsListResultAutoGeneratedInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialAutoGenerated[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialsListResultAutoGeneratedInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.FederatedIdentityCredentialAutoGeneratedTypeConverter.ConvertFrom)); + } + if (content.Contains("NextLink")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialsListResultAutoGeneratedInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialsListResultAutoGeneratedInternal)this).NextLink, global::System.Convert.ToString); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal FederatedIdentityCredentialsListResultAutoGenerated(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Value")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialsListResultAutoGeneratedInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialAutoGenerated[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialsListResultAutoGeneratedInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.FederatedIdentityCredentialAutoGeneratedTypeConverter.ConvertFrom)); + } + if (content.Contains("NextLink")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialsListResultAutoGeneratedInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialsListResultAutoGeneratedInternal)this).NextLink, global::System.Convert.ToString); + } + AfterDeserializePSObject(content); + } + + /// + /// Creates a new instance of , deserializing the content + /// from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// + /// an instance of the model class. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialsListResultAutoGenerated FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.SerializationMode.IncludeAll)?.ToString(); + + public override string ToString() + { + var returnNow = false; + var result = global::System.String.Empty; + OverrideToString(ref result, ref returnNow); + if (returnNow) + { + return result; + } + return ToJsonString(); + } + } + /// Values returned by the List operation for federated identity credentials. + [System.ComponentModel.TypeConverter(typeof(FederatedIdentityCredentialsListResultAutoGeneratedTypeConverter))] + public partial interface IFederatedIdentityCredentialsListResultAutoGenerated + + { + + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredentialsListResultAutoGenerated.TypeConverter.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredentialsListResultAutoGenerated.TypeConverter.cs new file mode 100644 index 000000000000..1a63d674ba8f --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredentialsListResultAutoGenerated.TypeConverter.cs @@ -0,0 +1,153 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class FederatedIdentityCredentialsListResultAutoGeneratedTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// type. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a + /// type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the + /// parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable + /// conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter into an instance of + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable + /// conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialsListResultAutoGenerated ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialsListResultAutoGenerated).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return FederatedIdentityCredentialsListResultAutoGenerated.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return FederatedIdentityCredentialsListResultAutoGenerated.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return FederatedIdentityCredentialsListResultAutoGenerated.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredentialsListResultAutoGenerated.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredentialsListResultAutoGenerated.cs new file mode 100644 index 000000000000..b34cfee7947f --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredentialsListResultAutoGenerated.cs @@ -0,0 +1,76 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; + + /// Values returned by the List operation for federated identity credentials. + public partial class FederatedIdentityCredentialsListResultAutoGenerated : + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialsListResultAutoGenerated, + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialsListResultAutoGeneratedInternal + { + + /// Backing field for property. + private string _nextLink; + + /// The url to get the next page of results, if any. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Owned)] + public string NextLink { get => this._nextLink; set => this._nextLink = value; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialAutoGenerated[] _value; + + /// + /// The collection of federated identity credentials returned by the listing operation. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialAutoGenerated[] Value { get => this._value; set => this._value = value; } + + /// + /// Creates an new instance. + /// + public FederatedIdentityCredentialsListResultAutoGenerated() + { + + } + } + /// Values returned by the List operation for federated identity credentials. + public partial interface IFederatedIdentityCredentialsListResultAutoGenerated : + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IJsonSerializable + { + /// The url to get the next page of results, if any. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The url to get the next page of results, if any.", + SerializedName = @"nextLink", + PossibleTypes = new [] { typeof(string) })] + string NextLink { get; set; } + /// + /// The collection of federated identity credentials returned by the listing operation. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The collection of federated identity credentials returned by the listing operation.", + SerializedName = @"value", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialAutoGenerated) })] + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialAutoGenerated[] Value { get; set; } + + } + /// Values returned by the List operation for federated identity credentials. + internal partial interface IFederatedIdentityCredentialsListResultAutoGeneratedInternal + + { + /// The url to get the next page of results, if any. + string NextLink { get; set; } + /// + /// The collection of federated identity credentials returned by the listing operation. + /// + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialAutoGenerated[] Value { get; set; } + + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredentialsListResultAutoGenerated.json.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredentialsListResultAutoGenerated.json.cs new file mode 100644 index 000000000000..8d7fcdab12de --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredentialsListResultAutoGenerated.json.cs @@ -0,0 +1,121 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; + + /// Values returned by the List operation for federated identity credentials. + public partial class FederatedIdentityCredentialsListResultAutoGenerated + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the + /// output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject instance to deserialize from. + internal FederatedIdentityCredentialsListResultAutoGenerated(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialAutoGenerated) (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.FederatedIdentityCredentialAutoGenerated.FromJson(__u) )) ))() : null : Value;} + {_nextLink = If( json?.PropertyT("nextLink"), out var __jsonNextLink) ? (string)__jsonNextLink : (string)NextLink;} + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialsListResultAutoGenerated. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialsListResultAutoGenerated. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialsListResultAutoGenerated FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json ? new FederatedIdentityCredentialsListResultAutoGenerated(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + if (null != this._value) + { + var __w = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.XNodeArray(); + foreach( var __x in this._value ) + { + AddIf(__x?.ToJson(null, serializationMode) ,__w.Add); + } + container.Add("value",__w); + } + AddIf( null != (((object)this._nextLink)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonString(this._nextLink.ToString()) : null, "nextLink" ,container.Add ); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/IdentityUpdate.PowerShell.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/IdentityAutoGenerated.PowerShell.cs similarity index 57% rename from src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/IdentityUpdate.PowerShell.cs rename to src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/IdentityAutoGenerated.PowerShell.cs index ecdcbe215fd2..dcb2641e833c 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/IdentityUpdate.PowerShell.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/IdentityAutoGenerated.PowerShell.cs @@ -8,8 +8,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20 using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; /// Describes an identity resource. - [System.ComponentModel.TypeConverter(typeof(IdentityUpdateTypeConverter))] - public partial class IdentityUpdate + [System.ComponentModel.TypeConverter(typeof(IdentityAutoGeneratedTypeConverter))] + public partial class IdentityAutoGenerated { /// @@ -63,46 +63,46 @@ public partial class IdentityUpdate partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdate DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityAutoGenerated DeserializeFromDictionary(global::System.Collections.IDictionary content) { - return new IdentityUpdate(content); + return new IdentityAutoGenerated(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdate DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityAutoGenerated DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { - return new IdentityUpdate(content); + return new IdentityAutoGenerated(content); } /// - /// Creates a new instance of , deserializing the content from a json string. + /// Creates a new instance of , deserializing the content from a json string. /// /// a string containing a JSON serialized instance of this model. - /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdate FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(jsonText)); + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityAutoGenerated FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. - internal IdentityUpdate(global::System.Collections.IDictionary content) + internal IdentityAutoGenerated(global::System.Collections.IDictionary content) { bool returnNow = false; BeforeDeserializeDictionary(content, ref returnNow); @@ -113,49 +113,49 @@ internal IdentityUpdate(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Property")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.UserAssignedIdentityPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityAutoGeneratedInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityAutoGeneratedInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.UserAssignedIdentityPropertiesTypeConverter.ConvertFrom); } - if (content.Contains("Location")) + if (content.Contains("Id")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Id, global::System.Convert.ToString); } - if (content.Contains("Tag")) + if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IdentityUpdateTagsTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Name, global::System.Convert.ToString); } - if (content.Contains("Id")) + if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Type, global::System.Convert.ToString); } - if (content.Contains("Name")) + if (content.Contains("Tag")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceAutoGeneratedInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceAutoGeneratedInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.TrackedResourceTagsTypeConverter.ConvertFrom); } - if (content.Contains("Type")) + if (content.Contains("Location")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceAutoGeneratedInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceAutoGeneratedInternal)this).Location, global::System.Convert.ToString); } if (content.Contains("TenantId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateInternal)this).TenantId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityAutoGeneratedInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityAutoGeneratedInternal)this).TenantId, global::System.Convert.ToString); } if (content.Contains("PrincipalId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateInternal)this).PrincipalId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityAutoGeneratedInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityAutoGeneratedInternal)this).PrincipalId, global::System.Convert.ToString); } if (content.Contains("ClientId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateInternal)this).ClientId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityAutoGeneratedInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityAutoGeneratedInternal)this).ClientId, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. - internal IdentityUpdate(global::System.Management.Automation.PSObject content) + internal IdentityAutoGenerated(global::System.Management.Automation.PSObject content) { bool returnNow = false; BeforeDeserializePSObject(content, ref returnNow); @@ -166,39 +166,39 @@ internal IdentityUpdate(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("Property")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.UserAssignedIdentityPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityAutoGeneratedInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityAutoGeneratedInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.UserAssignedIdentityPropertiesTypeConverter.ConvertFrom); } - if (content.Contains("Location")) + if (content.Contains("Id")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Id, global::System.Convert.ToString); } - if (content.Contains("Tag")) + if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IdentityUpdateTagsTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Name, global::System.Convert.ToString); } - if (content.Contains("Id")) + if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Type, global::System.Convert.ToString); } - if (content.Contains("Name")) + if (content.Contains("Tag")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceAutoGeneratedInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceAutoGeneratedInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.TrackedResourceTagsTypeConverter.ConvertFrom); } - if (content.Contains("Type")) + if (content.Contains("Location")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceAutoGeneratedInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceAutoGeneratedInternal)this).Location, global::System.Convert.ToString); } if (content.Contains("TenantId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateInternal)this).TenantId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityAutoGeneratedInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityAutoGeneratedInternal)this).TenantId, global::System.Convert.ToString); } if (content.Contains("PrincipalId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateInternal)this).PrincipalId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityAutoGeneratedInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityAutoGeneratedInternal)this).PrincipalId, global::System.Convert.ToString); } if (content.Contains("ClientId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateInternal)this).ClientId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityAutoGeneratedInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityAutoGeneratedInternal)this).ClientId, global::System.Convert.ToString); } AfterDeserializePSObject(content); } @@ -221,8 +221,8 @@ public override string ToString() } } /// Describes an identity resource. - [System.ComponentModel.TypeConverter(typeof(IdentityUpdateTypeConverter))] - public partial interface IIdentityUpdate + [System.ComponentModel.TypeConverter(typeof(IdentityAutoGeneratedTypeConverter))] + public partial interface IIdentityAutoGenerated { diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/IdentityAutoGenerated.TypeConverter.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/IdentityAutoGenerated.TypeConverter.cs new file mode 100644 index 000000000000..3dfc05a74829 --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/IdentityAutoGenerated.TypeConverter.cs @@ -0,0 +1,147 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class IdentityAutoGeneratedTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// type. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the + /// parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter into an instance of + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityAutoGenerated ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityAutoGenerated).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return IdentityAutoGenerated.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return IdentityAutoGenerated.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return IdentityAutoGenerated.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/Identity.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/IdentityAutoGenerated.cs similarity index 70% rename from src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/Identity.cs rename to src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/IdentityAutoGenerated.cs index 06408f11d006..5e3e56050c2b 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/Identity.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/IdentityAutoGenerated.cs @@ -8,16 +8,16 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20 using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; /// Describes an identity resource. - public partial class Identity : - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity, - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityInternal, + public partial class IdentityAutoGenerated : + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityAutoGenerated, + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityAutoGeneratedInternal, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IValidates { /// - /// Backing field for Inherited model /// - private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResource __trackedResource = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.TrackedResource(); + private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceAutoGenerated __trackedResourceAutoGenerated = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.TrackedResourceAutoGenerated(); /// /// The id of the app associated with the identity. This is a random generated UUID by MSI. @@ -29,36 +29,36 @@ public partial class Identity : /// Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} /// [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] - public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__trackedResource).Id; } + public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__trackedResourceAutoGenerated).Id; } /// The geo-location where the resource lives [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] - public string Location { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceInternal)__trackedResource).Location; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceInternal)__trackedResource).Location = value ; } + public string Location { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceAutoGeneratedInternal)__trackedResourceAutoGenerated).Location; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceAutoGeneratedInternal)__trackedResourceAutoGenerated).Location = value ; } /// Internal Acessors for Id - string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__trackedResource).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__trackedResource).Id = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__trackedResourceAutoGenerated).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__trackedResourceAutoGenerated).Id = value; } /// Internal Acessors for Name - string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__trackedResource).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__trackedResource).Name = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__trackedResourceAutoGenerated).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__trackedResourceAutoGenerated).Name = value; } /// Internal Acessors for Type - string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__trackedResource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__trackedResource).Type = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__trackedResourceAutoGenerated).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__trackedResourceAutoGenerated).Type = value; } /// Internal Acessors for ClientId - string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityInternal.ClientId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityPropertiesInternal)Property).ClientId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityPropertiesInternal)Property).ClientId = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityAutoGeneratedInternal.ClientId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityPropertiesInternal)Property).ClientId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityPropertiesInternal)Property).ClientId = value; } /// Internal Acessors for PrincipalId - string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityInternal.PrincipalId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityPropertiesInternal)Property).PrincipalId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityPropertiesInternal)Property).PrincipalId = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityAutoGeneratedInternal.PrincipalId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityPropertiesInternal)Property).PrincipalId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityPropertiesInternal)Property).PrincipalId = value; } /// Internal Acessors for Property - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityProperties Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.UserAssignedIdentityProperties()); set { {_property = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityProperties Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityAutoGeneratedInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.UserAssignedIdentityProperties()); set { {_property = value;} } } /// Internal Acessors for TenantId - string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityInternal.TenantId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityPropertiesInternal)Property).TenantId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityPropertiesInternal)Property).TenantId = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityAutoGeneratedInternal.TenantId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityPropertiesInternal)Property).TenantId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityPropertiesInternal)Property).TenantId = value; } /// The name of the resource [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] - public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__trackedResource).Name; } + public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__trackedResourceAutoGenerated).Name; } /// The id of the service principal object associated with the created identity. [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inlined)] @@ -77,7 +77,7 @@ public partial class Identity : /// Resource tags. [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] - public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceTags Tag { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceInternal)__trackedResource).Tag; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceInternal)__trackedResource).Tag = value ?? null /* model class */; } + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceTags Tag { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceAutoGeneratedInternal)__trackedResourceAutoGenerated).Tag; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceAutoGeneratedInternal)__trackedResourceAutoGenerated).Tag = value ?? null /* model class */; } /// The id of the tenant which the identity belongs to. [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inlined)] @@ -87,10 +87,10 @@ public partial class Identity : /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" /// [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] - public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__trackedResource).Type; } + public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__trackedResourceAutoGenerated).Type; } - /// Creates an new instance. - public Identity() + /// Creates an new instance. + public IdentityAutoGenerated() { } @@ -103,14 +103,14 @@ public Identity() /// public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener) { - await eventListener.AssertNotNull(nameof(__trackedResource), __trackedResource); - await eventListener.AssertObjectIsValid(nameof(__trackedResource), __trackedResource); + await eventListener.AssertNotNull(nameof(__trackedResourceAutoGenerated), __trackedResourceAutoGenerated); + await eventListener.AssertObjectIsValid(nameof(__trackedResourceAutoGenerated), __trackedResourceAutoGenerated); } } /// Describes an identity resource. - public partial interface IIdentity : + public partial interface IIdentityAutoGenerated : Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IJsonSerializable, - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResource + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceAutoGenerated { /// /// The id of the app associated with the identity. This is a random generated UUID by MSI. @@ -141,8 +141,8 @@ public partial interface IIdentity : } /// Describes an identity resource. - internal partial interface IIdentityInternal : - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceInternal + internal partial interface IIdentityAutoGeneratedInternal : + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceAutoGeneratedInternal { /// /// The id of the app associated with the identity. This is a random generated UUID by MSI. diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/IdentityAutoGenerated.json.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/IdentityAutoGenerated.json.cs new file mode 100644 index 000000000000..8ebe543d6c4b --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/IdentityAutoGenerated.json.cs @@ -0,0 +1,113 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; + + /// Describes an identity resource. + public partial class IdentityAutoGenerated + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the + /// output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityAutoGenerated. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityAutoGenerated. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityAutoGenerated FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json ? new IdentityAutoGenerated(json) : null; + } + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject instance to deserialize from. + internal IdentityAutoGenerated(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + __trackedResourceAutoGenerated = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.TrackedResourceAutoGenerated(json); + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.UserAssignedIdentityProperties.FromJson(__jsonProperties) : Property;} + AfterFromJson(json); + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + __trackedResourceAutoGenerated?.ToJson(container, serializationMode); + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != this._property ? (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode) this._property.ToJson(null,serializationMode) : null, "properties" ,container.Add ); + } + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/Identity.PowerShell.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/IdentityUpdateAutoGenerated.PowerShell.cs similarity index 57% rename from src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/Identity.PowerShell.cs rename to src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/IdentityUpdateAutoGenerated.PowerShell.cs index 2d5458024dcb..4f70e75e4f31 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/Identity.PowerShell.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/IdentityUpdateAutoGenerated.PowerShell.cs @@ -8,8 +8,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20 using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; /// Describes an identity resource. - [System.ComponentModel.TypeConverter(typeof(IdentityTypeConverter))] - public partial class Identity + [System.ComponentModel.TypeConverter(typeof(IdentityUpdateAutoGeneratedTypeConverter))] + public partial class IdentityUpdateAutoGenerated { /// @@ -63,46 +63,46 @@ public partial class Identity partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateAutoGenerated DeserializeFromDictionary(global::System.Collections.IDictionary content) { - return new Identity(content); + return new IdentityUpdateAutoGenerated(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateAutoGenerated DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { - return new Identity(content); + return new IdentityUpdateAutoGenerated(content); } /// - /// Creates a new instance of , deserializing the content from a json string. + /// Creates a new instance of , deserializing the content from a json string. /// /// a string containing a JSON serialized instance of this model. - /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(jsonText)); + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateAutoGenerated FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. - internal Identity(global::System.Collections.IDictionary content) + internal IdentityUpdateAutoGenerated(global::System.Collections.IDictionary content) { bool returnNow = false; BeforeDeserializeDictionary(content, ref returnNow); @@ -113,49 +113,49 @@ internal Identity(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Property")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.UserAssignedIdentityPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateAutoGeneratedInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateAutoGeneratedInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.UserAssignedIdentityPropertiesTypeConverter.ConvertFrom); } - if (content.Contains("Id")) + if (content.Contains("Location")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateAutoGeneratedInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateAutoGeneratedInternal)this).Location, global::System.Convert.ToString); } - if (content.Contains("Name")) + if (content.Contains("Tag")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateAutoGeneratedInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateAutoGeneratedInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IdentityUpdateTagsTypeConverter.ConvertFrom); } - if (content.Contains("Type")) + if (content.Contains("Id")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Id, global::System.Convert.ToString); } - if (content.Contains("Tag")) + if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.TrackedResourceTagsTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Name, global::System.Convert.ToString); } - if (content.Contains("Location")) + if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Type, global::System.Convert.ToString); } if (content.Contains("TenantId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityInternal)this).TenantId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateAutoGeneratedInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateAutoGeneratedInternal)this).TenantId, global::System.Convert.ToString); } if (content.Contains("PrincipalId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityInternal)this).PrincipalId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateAutoGeneratedInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateAutoGeneratedInternal)this).PrincipalId, global::System.Convert.ToString); } if (content.Contains("ClientId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityInternal)this).ClientId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateAutoGeneratedInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateAutoGeneratedInternal)this).ClientId, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. - internal Identity(global::System.Management.Automation.PSObject content) + internal IdentityUpdateAutoGenerated(global::System.Management.Automation.PSObject content) { bool returnNow = false; BeforeDeserializePSObject(content, ref returnNow); @@ -166,39 +166,39 @@ internal Identity(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("Property")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.UserAssignedIdentityPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateAutoGeneratedInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateAutoGeneratedInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.UserAssignedIdentityPropertiesTypeConverter.ConvertFrom); } - if (content.Contains("Id")) + if (content.Contains("Location")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateAutoGeneratedInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateAutoGeneratedInternal)this).Location, global::System.Convert.ToString); } - if (content.Contains("Name")) + if (content.Contains("Tag")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateAutoGeneratedInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateAutoGeneratedInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IdentityUpdateTagsTypeConverter.ConvertFrom); } - if (content.Contains("Type")) + if (content.Contains("Id")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Id, global::System.Convert.ToString); } - if (content.Contains("Tag")) + if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.TrackedResourceTagsTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Name, global::System.Convert.ToString); } - if (content.Contains("Location")) + if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Type, global::System.Convert.ToString); } if (content.Contains("TenantId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityInternal)this).TenantId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateAutoGeneratedInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateAutoGeneratedInternal)this).TenantId, global::System.Convert.ToString); } if (content.Contains("PrincipalId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityInternal)this).PrincipalId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateAutoGeneratedInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateAutoGeneratedInternal)this).PrincipalId, global::System.Convert.ToString); } if (content.Contains("ClientId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityInternal)this).ClientId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateAutoGeneratedInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateAutoGeneratedInternal)this).ClientId, global::System.Convert.ToString); } AfterDeserializePSObject(content); } @@ -221,8 +221,8 @@ public override string ToString() } } /// Describes an identity resource. - [System.ComponentModel.TypeConverter(typeof(IdentityTypeConverter))] - public partial interface IIdentity + [System.ComponentModel.TypeConverter(typeof(IdentityUpdateAutoGeneratedTypeConverter))] + public partial interface IIdentityUpdateAutoGenerated { diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/IdentityUpdateAutoGenerated.TypeConverter.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/IdentityUpdateAutoGenerated.TypeConverter.cs new file mode 100644 index 000000000000..43693a45a4e0 --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/IdentityUpdateAutoGenerated.TypeConverter.cs @@ -0,0 +1,147 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class IdentityUpdateAutoGeneratedTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// type. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the + /// parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter into an instance of + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateAutoGenerated ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateAutoGenerated).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return IdentityUpdateAutoGenerated.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return IdentityUpdateAutoGenerated.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return IdentityUpdateAutoGenerated.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/IdentityUpdate.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/IdentityUpdateAutoGenerated.cs similarity index 74% rename from src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/IdentityUpdate.cs rename to src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/IdentityUpdateAutoGenerated.cs index 142256411126..3fddec61bdbe 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/IdentityUpdate.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/IdentityUpdateAutoGenerated.cs @@ -8,16 +8,16 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20 using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; /// Describes an identity resource. - public partial class IdentityUpdate : - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdate, - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateInternal, + public partial class IdentityUpdateAutoGenerated : + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateAutoGenerated, + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateAutoGeneratedInternal, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IValidates { /// - /// Backing field for Inherited model /// - private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResource __resource = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.Resource(); + private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGenerated __resourceAutoGenerated = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ResourceAutoGenerated(); /// /// The id of the app associated with the identity. This is a random generated UUID by MSI. @@ -29,7 +29,7 @@ public partial class IdentityUpdate : /// Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} /// [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] - public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__resource).Id; } + public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__resourceAutoGenerated).Id; } /// Backing field for property. private string _location; @@ -39,29 +39,29 @@ public partial class IdentityUpdate : public string Location { get => this._location; set => this._location = value; } /// Internal Acessors for Id - string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__resource).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__resource).Id = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__resourceAutoGenerated).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__resourceAutoGenerated).Id = value; } /// Internal Acessors for Name - string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__resource).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__resource).Name = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__resourceAutoGenerated).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__resourceAutoGenerated).Name = value; } /// Internal Acessors for Type - string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__resource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__resource).Type = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__resourceAutoGenerated).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__resourceAutoGenerated).Type = value; } /// Internal Acessors for ClientId - string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateInternal.ClientId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityPropertiesInternal)Property).ClientId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityPropertiesInternal)Property).ClientId = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateAutoGeneratedInternal.ClientId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityPropertiesInternal)Property).ClientId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityPropertiesInternal)Property).ClientId = value; } /// Internal Acessors for PrincipalId - string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateInternal.PrincipalId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityPropertiesInternal)Property).PrincipalId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityPropertiesInternal)Property).PrincipalId = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateAutoGeneratedInternal.PrincipalId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityPropertiesInternal)Property).PrincipalId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityPropertiesInternal)Property).PrincipalId = value; } /// Internal Acessors for Property - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityProperties Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.UserAssignedIdentityProperties()); set { {_property = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityProperties Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateAutoGeneratedInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.UserAssignedIdentityProperties()); set { {_property = value;} } } /// Internal Acessors for TenantId - string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateInternal.TenantId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityPropertiesInternal)Property).TenantId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityPropertiesInternal)Property).TenantId = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateAutoGeneratedInternal.TenantId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityPropertiesInternal)Property).TenantId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityPropertiesInternal)Property).TenantId = value; } /// The name of the resource [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] - public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__resource).Name; } + public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__resourceAutoGenerated).Name; } /// The id of the service principal object associated with the created identity. [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inlined)] @@ -89,10 +89,10 @@ public partial class IdentityUpdate : /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" /// [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] - public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__resource).Type; } + public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__resourceAutoGenerated).Type; } - /// Creates an new instance. - public IdentityUpdate() + /// Creates an new instance. + public IdentityUpdateAutoGenerated() { } @@ -105,14 +105,14 @@ public IdentityUpdate() /// public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener) { - await eventListener.AssertNotNull(nameof(__resource), __resource); - await eventListener.AssertObjectIsValid(nameof(__resource), __resource); + await eventListener.AssertNotNull(nameof(__resourceAutoGenerated), __resourceAutoGenerated); + await eventListener.AssertObjectIsValid(nameof(__resourceAutoGenerated), __resourceAutoGenerated); } } /// Describes an identity resource. - public partial interface IIdentityUpdate : + public partial interface IIdentityUpdateAutoGenerated : Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IJsonSerializable, - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResource + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGenerated { /// /// The id of the app associated with the identity. This is a random generated UUID by MSI. @@ -159,8 +159,8 @@ public partial interface IIdentityUpdate : } /// Describes an identity resource. - internal partial interface IIdentityUpdateInternal : - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal + internal partial interface IIdentityUpdateAutoGeneratedInternal : + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal { /// /// The id of the app associated with the identity. This is a random generated UUID by MSI. diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/IdentityUpdateAutoGenerated.json.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/IdentityUpdateAutoGenerated.json.cs new file mode 100644 index 000000000000..93d18b63b5f5 --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/IdentityUpdateAutoGenerated.json.cs @@ -0,0 +1,117 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; + + /// Describes an identity resource. + public partial class IdentityUpdateAutoGenerated + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the + /// output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateAutoGenerated. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateAutoGenerated. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateAutoGenerated FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json ? new IdentityUpdateAutoGenerated(json) : null; + } + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject instance to deserialize from. + internal IdentityUpdateAutoGenerated(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + __resourceAutoGenerated = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ResourceAutoGenerated(json); + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.UserAssignedIdentityProperties.FromJson(__jsonProperties) : Property;} + {_location = If( json?.PropertyT("location"), out var __jsonLocation) ? (string)__jsonLocation : (string)Location;} + {_tag = If( json?.PropertyT("tags"), out var __jsonTags) ? Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IdentityUpdateTags.FromJson(__jsonTags) : Tag;} + AfterFromJson(json); + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + __resourceAutoGenerated?.ToJson(container, serializationMode); + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != this._property ? (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode) this._property.ToJson(null,serializationMode) : null, "properties" ,container.Add ); + } + AddIf( null != (((object)this._location)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonString(this._location.ToString()) : null, "location" ,container.Add ); + AddIf( null != this._tag ? (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode) this._tag.ToJson(null,serializationMode) : null, "tags" ,container.Add ); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/OperationListResultAutoGenerated.PowerShell.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/OperationListResultAutoGenerated.PowerShell.cs new file mode 100644 index 000000000000..46c5f46799bc --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/OperationListResultAutoGenerated.PowerShell.cs @@ -0,0 +1,174 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; + + /// A list of operations supported by Microsoft.ManagedIdentity Resource Provider. + [System.ComponentModel.TypeConverter(typeof(OperationListResultAutoGeneratedTypeConverter))] + public partial class OperationListResultAutoGenerated + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior + /// + /// /// instance serialized to a string, normally it is a Json + /// /// set returnNow to true if you provide a customized OverrideToString function + + partial void OverrideToString(ref string stringResult, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperationListResultAutoGenerated DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new OperationListResultAutoGenerated(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperationListResultAutoGenerated DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new OperationListResultAutoGenerated(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperationListResultAutoGenerated FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal OperationListResultAutoGenerated(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Value")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperationListResultAutoGeneratedInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperation[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperationListResultAutoGeneratedInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.OperationTypeConverter.ConvertFrom)); + } + if (content.Contains("NextLink")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperationListResultAutoGeneratedInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperationListResultAutoGeneratedInternal)this).NextLink, global::System.Convert.ToString); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal OperationListResultAutoGenerated(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Value")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperationListResultAutoGeneratedInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperation[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperationListResultAutoGeneratedInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.OperationTypeConverter.ConvertFrom)); + } + if (content.Contains("NextLink")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperationListResultAutoGeneratedInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperationListResultAutoGeneratedInternal)this).NextLink, global::System.Convert.ToString); + } + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.SerializationMode.IncludeAll)?.ToString(); + + public override string ToString() + { + var returnNow = false; + var result = global::System.String.Empty; + OverrideToString(ref result, ref returnNow); + if (returnNow) + { + return result; + } + return ToJsonString(); + } + } + /// A list of operations supported by Microsoft.ManagedIdentity Resource Provider. + [System.ComponentModel.TypeConverter(typeof(OperationListResultAutoGeneratedTypeConverter))] + public partial interface IOperationListResultAutoGenerated + + { + + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/OperationListResultAutoGenerated.TypeConverter.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/OperationListResultAutoGenerated.TypeConverter.cs new file mode 100644 index 000000000000..ca64595aed29 --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/OperationListResultAutoGenerated.TypeConverter.cs @@ -0,0 +1,148 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class OperationListResultAutoGeneratedTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// type. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the + /// parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter into an instance of + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperationListResultAutoGenerated ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperationListResultAutoGenerated).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return OperationListResultAutoGenerated.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return OperationListResultAutoGenerated.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return OperationListResultAutoGenerated.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/OperationListResultAutoGenerated.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/OperationListResultAutoGenerated.cs new file mode 100644 index 000000000000..9fe6cb626fc3 --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/OperationListResultAutoGenerated.cs @@ -0,0 +1,68 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; + + /// A list of operations supported by Microsoft.ManagedIdentity Resource Provider. + public partial class OperationListResultAutoGenerated : + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperationListResultAutoGenerated, + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperationListResultAutoGeneratedInternal + { + + /// Backing field for property. + private string _nextLink; + + /// The url to get the next page of results, if any. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Owned)] + public string NextLink { get => this._nextLink; set => this._nextLink = value; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperation[] _value; + + /// A list of operations supported by Microsoft.ManagedIdentity Resource Provider. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperation[] Value { get => this._value; set => this._value = value; } + + /// Creates an new instance. + public OperationListResultAutoGenerated() + { + + } + } + /// A list of operations supported by Microsoft.ManagedIdentity Resource Provider. + public partial interface IOperationListResultAutoGenerated : + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IJsonSerializable + { + /// The url to get the next page of results, if any. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The url to get the next page of results, if any.", + SerializedName = @"nextLink", + PossibleTypes = new [] { typeof(string) })] + string NextLink { get; set; } + /// A list of operations supported by Microsoft.ManagedIdentity Resource Provider. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"A list of operations supported by Microsoft.ManagedIdentity Resource Provider.", + SerializedName = @"value", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperation) })] + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperation[] Value { get; set; } + + } + /// A list of operations supported by Microsoft.ManagedIdentity Resource Provider. + internal partial interface IOperationListResultAutoGeneratedInternal + + { + /// The url to get the next page of results, if any. + string NextLink { get; set; } + /// A list of operations supported by Microsoft.ManagedIdentity Resource Provider. + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperation[] Value { get; set; } + + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/OperationListResultAutoGenerated.json.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/OperationListResultAutoGenerated.json.cs new file mode 100644 index 000000000000..01fc095ecbf6 --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/OperationListResultAutoGenerated.json.cs @@ -0,0 +1,118 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; + + /// A list of operations supported by Microsoft.ManagedIdentity Resource Provider. + public partial class OperationListResultAutoGenerated + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the + /// output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperationListResultAutoGenerated. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperationListResultAutoGenerated. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperationListResultAutoGenerated FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json ? new OperationListResultAutoGenerated(json) : null; + } + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject instance to deserialize from. + internal OperationListResultAutoGenerated(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperation) (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.Operation.FromJson(__u) )) ))() : null : Value;} + {_nextLink = If( json?.PropertyT("nextLink"), out var __jsonNextLink) ? (string)__jsonNextLink : (string)NextLink;} + AfterFromJson(json); + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + if (null != this._value) + { + var __w = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.XNodeArray(); + foreach( var __x in this._value ) + { + AddIf(__x?.ToJson(null, serializationMode) ,__w.Add); + } + container.Add("value",__w); + } + AddIf( null != (((object)this._nextLink)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonString(this._nextLink.ToString()) : null, "nextLink" ,container.Add ); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/SystemAssignedIdentity.PowerShell.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/SystemAssignedIdentityAutoGenerated.PowerShell.cs similarity index 55% rename from src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/SystemAssignedIdentity.PowerShell.cs rename to src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/SystemAssignedIdentityAutoGenerated.PowerShell.cs index 1bfd4bfc514e..e8ac3060aa90 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/SystemAssignedIdentity.PowerShell.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/SystemAssignedIdentityAutoGenerated.PowerShell.cs @@ -8,8 +8,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20 using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; /// Describes a system assigned identity resource. - [System.ComponentModel.TypeConverter(typeof(SystemAssignedIdentityTypeConverter))] - public partial class SystemAssignedIdentity + [System.ComponentModel.TypeConverter(typeof(SystemAssignedIdentityAutoGeneratedTypeConverter))] + public partial class SystemAssignedIdentityAutoGenerated { /// @@ -63,46 +63,48 @@ public partial class SystemAssignedIdentity partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentity DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityAutoGenerated DeserializeFromDictionary(global::System.Collections.IDictionary content) { - return new SystemAssignedIdentity(content); + return new SystemAssignedIdentityAutoGenerated(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentity DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityAutoGenerated DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { - return new SystemAssignedIdentity(content); + return new SystemAssignedIdentityAutoGenerated(content); } /// - /// Creates a new instance of , deserializing the content from a json string. + /// Creates a new instance of , deserializing the content from a json string. /// /// a string containing a JSON serialized instance of this model. - /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentity FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(jsonText)); + /// + /// an instance of the model class. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityAutoGenerated FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. - internal SystemAssignedIdentity(global::System.Collections.IDictionary content) + internal SystemAssignedIdentityAutoGenerated(global::System.Collections.IDictionary content) { bool returnNow = false; BeforeDeserializeDictionary(content, ref returnNow); @@ -113,53 +115,53 @@ internal SystemAssignedIdentity(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Property")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.SystemAssignedIdentityPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityAutoGeneratedInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityAutoGeneratedInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.SystemAssignedIdentityPropertiesTypeConverter.ConvertFrom); } if (content.Contains("Location")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityAutoGeneratedInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityAutoGeneratedInternal)this).Location, global::System.Convert.ToString); } if (content.Contains("Tag")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.SystemAssignedIdentityTagsTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityAutoGeneratedInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityAutoGeneratedInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.SystemAssignedIdentityTagsTypeConverter.ConvertFrom); } if (content.Contains("Id")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Id, global::System.Convert.ToString); } if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Name, global::System.Convert.ToString); } if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Type, global::System.Convert.ToString); } if (content.Contains("TenantId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityInternal)this).TenantId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityAutoGeneratedInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityAutoGeneratedInternal)this).TenantId, global::System.Convert.ToString); } if (content.Contains("PrincipalId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityInternal)this).PrincipalId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityAutoGeneratedInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityAutoGeneratedInternal)this).PrincipalId, global::System.Convert.ToString); } if (content.Contains("ClientId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityInternal)this).ClientId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityAutoGeneratedInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityAutoGeneratedInternal)this).ClientId, global::System.Convert.ToString); } if (content.Contains("ClientSecretUrl")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityInternal)this).ClientSecretUrl = (string) content.GetValueForProperty("ClientSecretUrl",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityInternal)this).ClientSecretUrl, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityAutoGeneratedInternal)this).ClientSecretUrl = (string) content.GetValueForProperty("ClientSecretUrl",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityAutoGeneratedInternal)this).ClientSecretUrl, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. - internal SystemAssignedIdentity(global::System.Management.Automation.PSObject content) + internal SystemAssignedIdentityAutoGenerated(global::System.Management.Automation.PSObject content) { bool returnNow = false; BeforeDeserializePSObject(content, ref returnNow); @@ -170,43 +172,43 @@ internal SystemAssignedIdentity(global::System.Management.Automation.PSObject co // actually deserialize if (content.Contains("Property")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.SystemAssignedIdentityPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityAutoGeneratedInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityAutoGeneratedInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.SystemAssignedIdentityPropertiesTypeConverter.ConvertFrom); } if (content.Contains("Location")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityAutoGeneratedInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityAutoGeneratedInternal)this).Location, global::System.Convert.ToString); } if (content.Contains("Tag")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.SystemAssignedIdentityTagsTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityAutoGeneratedInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityAutoGeneratedInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.SystemAssignedIdentityTagsTypeConverter.ConvertFrom); } if (content.Contains("Id")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Id, global::System.Convert.ToString); } if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Name, global::System.Convert.ToString); } if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)this).Type, global::System.Convert.ToString); } if (content.Contains("TenantId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityInternal)this).TenantId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityAutoGeneratedInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityAutoGeneratedInternal)this).TenantId, global::System.Convert.ToString); } if (content.Contains("PrincipalId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityInternal)this).PrincipalId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityAutoGeneratedInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityAutoGeneratedInternal)this).PrincipalId, global::System.Convert.ToString); } if (content.Contains("ClientId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityInternal)this).ClientId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityAutoGeneratedInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityAutoGeneratedInternal)this).ClientId, global::System.Convert.ToString); } if (content.Contains("ClientSecretUrl")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityInternal)this).ClientSecretUrl = (string) content.GetValueForProperty("ClientSecretUrl",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityInternal)this).ClientSecretUrl, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityAutoGeneratedInternal)this).ClientSecretUrl = (string) content.GetValueForProperty("ClientSecretUrl",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityAutoGeneratedInternal)this).ClientSecretUrl, global::System.Convert.ToString); } AfterDeserializePSObject(content); } @@ -229,8 +231,8 @@ public override string ToString() } } /// Describes a system assigned identity resource. - [System.ComponentModel.TypeConverter(typeof(SystemAssignedIdentityTypeConverter))] - public partial interface ISystemAssignedIdentity + [System.ComponentModel.TypeConverter(typeof(SystemAssignedIdentityAutoGeneratedTypeConverter))] + public partial interface ISystemAssignedIdentityAutoGenerated { diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/SystemAssignedIdentityAutoGenerated.TypeConverter.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/SystemAssignedIdentityAutoGenerated.TypeConverter.cs new file mode 100644 index 000000000000..bde94c64e6c5 --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/SystemAssignedIdentityAutoGenerated.TypeConverter.cs @@ -0,0 +1,149 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class SystemAssignedIdentityAutoGeneratedTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// type. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise + /// false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the + /// parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter into an instance of + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityAutoGenerated ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityAutoGenerated).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return SystemAssignedIdentityAutoGenerated.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return SystemAssignedIdentityAutoGenerated.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return SystemAssignedIdentityAutoGenerated.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/SystemAssignedIdentity.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/SystemAssignedIdentityAutoGenerated.cs similarity index 75% rename from src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/SystemAssignedIdentity.cs rename to src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/SystemAssignedIdentityAutoGenerated.cs index dcc9f3dc58d6..72c52d8ba3bf 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/SystemAssignedIdentity.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/SystemAssignedIdentityAutoGenerated.cs @@ -8,16 +8,16 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20 using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; /// Describes a system assigned identity resource. - public partial class SystemAssignedIdentity : - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentity, - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityInternal, + public partial class SystemAssignedIdentityAutoGenerated : + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityAutoGenerated, + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityAutoGeneratedInternal, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IValidates { /// - /// Backing field for Inherited model /// - private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResource __resource = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.Resource(); + private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGenerated __resourceAutoGenerated = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ResourceAutoGenerated(); /// /// The id of the app associated with the identity. This is a random generated UUID by MSI. @@ -35,7 +35,7 @@ public partial class SystemAssignedIdentity : /// Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} /// [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] - public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__resource).Id; } + public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__resourceAutoGenerated).Id; } /// Backing field for property. private string _location; @@ -45,32 +45,32 @@ public partial class SystemAssignedIdentity : public string Location { get => this._location; set => this._location = value; } /// Internal Acessors for Id - string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__resource).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__resource).Id = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__resourceAutoGenerated).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__resourceAutoGenerated).Id = value; } /// Internal Acessors for Name - string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__resource).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__resource).Name = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__resourceAutoGenerated).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__resourceAutoGenerated).Name = value; } /// Internal Acessors for Type - string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__resource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__resource).Type = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__resourceAutoGenerated).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__resourceAutoGenerated).Type = value; } /// Internal Acessors for ClientId - string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityInternal.ClientId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityPropertiesInternal)Property).ClientId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityPropertiesInternal)Property).ClientId = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityAutoGeneratedInternal.ClientId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityPropertiesInternal)Property).ClientId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityPropertiesInternal)Property).ClientId = value; } /// Internal Acessors for ClientSecretUrl - string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityInternal.ClientSecretUrl { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityPropertiesInternal)Property).ClientSecretUrl; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityPropertiesInternal)Property).ClientSecretUrl = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityAutoGeneratedInternal.ClientSecretUrl { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityPropertiesInternal)Property).ClientSecretUrl; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityPropertiesInternal)Property).ClientSecretUrl = value; } /// Internal Acessors for PrincipalId - string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityInternal.PrincipalId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityPropertiesInternal)Property).PrincipalId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityPropertiesInternal)Property).PrincipalId = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityAutoGeneratedInternal.PrincipalId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityPropertiesInternal)Property).PrincipalId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityPropertiesInternal)Property).PrincipalId = value; } /// Internal Acessors for Property - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityProperties Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.SystemAssignedIdentityProperties()); set { {_property = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityProperties Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityAutoGeneratedInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.SystemAssignedIdentityProperties()); set { {_property = value;} } } /// Internal Acessors for TenantId - string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityInternal.TenantId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityPropertiesInternal)Property).TenantId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityPropertiesInternal)Property).TenantId = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityAutoGeneratedInternal.TenantId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityPropertiesInternal)Property).TenantId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityPropertiesInternal)Property).TenantId = value; } /// The name of the resource [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] - public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__resource).Name; } + public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__resourceAutoGenerated).Name; } /// The id of the service principal object associated with the created identity. [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inlined)] @@ -102,10 +102,10 @@ public partial class SystemAssignedIdentity : /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" /// [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] - public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal)__resource).Type; } + public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal)__resourceAutoGenerated).Type; } - /// Creates an new instance. - public SystemAssignedIdentity() + /// Creates an new instance. + public SystemAssignedIdentityAutoGenerated() { } @@ -118,14 +118,14 @@ public SystemAssignedIdentity() /// public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener) { - await eventListener.AssertNotNull(nameof(__resource), __resource); - await eventListener.AssertObjectIsValid(nameof(__resource), __resource); + await eventListener.AssertNotNull(nameof(__resourceAutoGenerated), __resourceAutoGenerated); + await eventListener.AssertObjectIsValid(nameof(__resourceAutoGenerated), __resourceAutoGenerated); } } /// Describes a system assigned identity resource. - public partial interface ISystemAssignedIdentity : + public partial interface ISystemAssignedIdentityAutoGenerated : Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IJsonSerializable, - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResource + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGenerated { /// /// The id of the app associated with the identity. This is a random generated UUID by MSI. @@ -182,8 +182,8 @@ public partial interface ISystemAssignedIdentity : } /// Describes a system assigned identity resource. - internal partial interface ISystemAssignedIdentityInternal : - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceInternal + internal partial interface ISystemAssignedIdentityAutoGeneratedInternal : + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResourceAutoGeneratedInternal { /// /// The id of the app associated with the identity. This is a random generated UUID by MSI. diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/SystemAssignedIdentityAutoGenerated.json.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/SystemAssignedIdentityAutoGenerated.json.cs new file mode 100644 index 000000000000..f2fd0e146362 --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/SystemAssignedIdentityAutoGenerated.json.cs @@ -0,0 +1,118 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; + + /// Describes a system assigned identity resource. + public partial class SystemAssignedIdentityAutoGenerated + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the + /// output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityAutoGenerated. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityAutoGenerated. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityAutoGenerated FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json ? new SystemAssignedIdentityAutoGenerated(json) : null; + } + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject instance to deserialize from. + internal SystemAssignedIdentityAutoGenerated(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + __resourceAutoGenerated = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ResourceAutoGenerated(json); + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.SystemAssignedIdentityProperties.FromJson(__jsonProperties) : Property;} + {_location = If( json?.PropertyT("location"), out var __jsonLocation) ? (string)__jsonLocation : (string)Location;} + {_tag = If( json?.PropertyT("tags"), out var __jsonTags) ? Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.SystemAssignedIdentityTags.FromJson(__jsonTags) : Tag;} + AfterFromJson(json); + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + __resourceAutoGenerated?.ToJson(container, serializationMode); + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != this._property ? (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode) this._property.ToJson(null,serializationMode) : null, "properties" ,container.Add ); + } + AddIf( null != (((object)this._location)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonString(this._location.ToString()) : null, "location" ,container.Add ); + AddIf( null != this._tag ? (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode) this._tag.ToJson(null,serializationMode) : null, "tags" ,container.Add ); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/UserAssignedIdentitiesListResultAutoGenerated.PowerShell.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/UserAssignedIdentitiesListResultAutoGenerated.PowerShell.cs new file mode 100644 index 000000000000..ec30f8defbfe --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/UserAssignedIdentitiesListResultAutoGenerated.PowerShell.cs @@ -0,0 +1,177 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; + + /// Values returned by the List operation. + [System.ComponentModel.TypeConverter(typeof(UserAssignedIdentitiesListResultAutoGeneratedTypeConverter))] + public partial class UserAssignedIdentitiesListResultAutoGenerated + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior + /// + /// /// instance serialized to a string, normally it is a Json + /// /// set returnNow to true if you provide a customized OverrideToString function + + partial void OverrideToString(ref string stringResult, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentitiesListResultAutoGenerated DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new UserAssignedIdentitiesListResultAutoGenerated(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentitiesListResultAutoGenerated DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new UserAssignedIdentitiesListResultAutoGenerated(content); + } + + /// + /// Creates a new instance of , deserializing the content from + /// a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// + /// an instance of the model class. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentitiesListResultAutoGenerated FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.SerializationMode.IncludeAll)?.ToString(); + + public override string ToString() + { + var returnNow = false; + var result = global::System.String.Empty; + OverrideToString(ref result, ref returnNow); + if (returnNow) + { + return result; + } + return ToJsonString(); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal UserAssignedIdentitiesListResultAutoGenerated(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Value")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentitiesListResultAutoGeneratedInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityAutoGenerated[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentitiesListResultAutoGeneratedInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IdentityAutoGeneratedTypeConverter.ConvertFrom)); + } + if (content.Contains("NextLink")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentitiesListResultAutoGeneratedInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentitiesListResultAutoGeneratedInternal)this).NextLink, global::System.Convert.ToString); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal UserAssignedIdentitiesListResultAutoGenerated(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Value")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentitiesListResultAutoGeneratedInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityAutoGenerated[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentitiesListResultAutoGeneratedInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IdentityAutoGeneratedTypeConverter.ConvertFrom)); + } + if (content.Contains("NextLink")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentitiesListResultAutoGeneratedInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentitiesListResultAutoGeneratedInternal)this).NextLink, global::System.Convert.ToString); + } + AfterDeserializePSObject(content); + } + } + /// Values returned by the List operation. + [System.ComponentModel.TypeConverter(typeof(UserAssignedIdentitiesListResultAutoGeneratedTypeConverter))] + public partial interface IUserAssignedIdentitiesListResultAutoGenerated + + { + + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/UserAssignedIdentitiesListResultAutoGenerated.TypeConverter.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/UserAssignedIdentitiesListResultAutoGenerated.TypeConverter.cs new file mode 100644 index 000000000000..8fc56cd39277 --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/UserAssignedIdentitiesListResultAutoGenerated.TypeConverter.cs @@ -0,0 +1,151 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class UserAssignedIdentitiesListResultAutoGeneratedTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// type. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, + /// otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the + /// parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter into an instance of + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentitiesListResultAutoGenerated ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentitiesListResultAutoGenerated).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return UserAssignedIdentitiesListResultAutoGenerated.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return UserAssignedIdentitiesListResultAutoGenerated.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return UserAssignedIdentitiesListResultAutoGenerated.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/UserAssignedIdentitiesListResultAutoGenerated.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/UserAssignedIdentitiesListResultAutoGenerated.cs new file mode 100644 index 000000000000..ada2620ccc87 --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/UserAssignedIdentitiesListResultAutoGenerated.cs @@ -0,0 +1,70 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; + + /// Values returned by the List operation. + public partial class UserAssignedIdentitiesListResultAutoGenerated : + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentitiesListResultAutoGenerated, + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentitiesListResultAutoGeneratedInternal + { + + /// Backing field for property. + private string _nextLink; + + /// The url to get the next page of results, if any. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Owned)] + public string NextLink { get => this._nextLink; set => this._nextLink = value; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityAutoGenerated[] _value; + + /// The collection of userAssignedIdentities returned by the listing operation. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityAutoGenerated[] Value { get => this._value; set => this._value = value; } + + /// + /// Creates an new instance. + /// + public UserAssignedIdentitiesListResultAutoGenerated() + { + + } + } + /// Values returned by the List operation. + public partial interface IUserAssignedIdentitiesListResultAutoGenerated : + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IJsonSerializable + { + /// The url to get the next page of results, if any. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The url to get the next page of results, if any.", + SerializedName = @"nextLink", + PossibleTypes = new [] { typeof(string) })] + string NextLink { get; set; } + /// The collection of userAssignedIdentities returned by the listing operation. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The collection of userAssignedIdentities returned by the listing operation.", + SerializedName = @"value", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityAutoGenerated) })] + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityAutoGenerated[] Value { get; set; } + + } + /// Values returned by the List operation. + internal partial interface IUserAssignedIdentitiesListResultAutoGeneratedInternal + + { + /// The url to get the next page of results, if any. + string NextLink { get; set; } + /// The collection of userAssignedIdentities returned by the listing operation. + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityAutoGenerated[] Value { get; set; } + + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/UserAssignedIdentitiesListResultAutoGenerated.json.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/UserAssignedIdentitiesListResultAutoGenerated.json.cs new file mode 100644 index 000000000000..880dfe7ac843 --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/UserAssignedIdentitiesListResultAutoGenerated.json.cs @@ -0,0 +1,121 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; + + /// Values returned by the List operation. + public partial class UserAssignedIdentitiesListResultAutoGenerated + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the + /// output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentitiesListResultAutoGenerated. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentitiesListResultAutoGenerated. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentitiesListResultAutoGenerated FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json ? new UserAssignedIdentitiesListResultAutoGenerated(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + if (null != this._value) + { + var __w = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.XNodeArray(); + foreach( var __x in this._value ) + { + AddIf(__x?.ToJson(null, serializationMode) ,__w.Add); + } + container.Add("value",__w); + } + AddIf( null != (((object)this._nextLink)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonString(this._nextLink.ToString()) : null, "nextLink" ,container.Add ); + AfterToJson(ref container); + return container; + } + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject instance to deserialize from. + internal UserAssignedIdentitiesListResultAutoGenerated(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityAutoGenerated) (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IdentityAutoGenerated.FromJson(__u) )) ))() : null : Value;} + {_nextLink = If( json?.PropertyT("nextLink"), out var __jsonNextLink) ? (string)__jsonNextLink : (string)NextLink;} + AfterFromJson(json); + } + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudError.PowerShell.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/CloudError.PowerShell.cs similarity index 65% rename from src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudError.PowerShell.cs rename to src/ManagedServiceIdentity/generated/api/Models/Api20230131/CloudError.PowerShell.cs index 27805fe62757..03389b0399fe 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudError.PowerShell.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/CloudError.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131 { using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; @@ -63,7 +63,7 @@ public partial class CloudError partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -78,29 +78,29 @@ internal CloudError(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Error")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorInternal)this).Error = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBody) content.GetValueForProperty("Error",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorInternal)this).Error, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.CloudErrorBodyTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorInternal)this).Error = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBody) content.GetValueForProperty("Error",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorInternal)this).Error, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.CloudErrorBodyTypeConverter.ConvertFrom); } if (content.Contains("Code")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorInternal)this).Code, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorInternal)this).Code, global::System.Convert.ToString); } if (content.Contains("Message")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorInternal)this).Message, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorInternal)this).Message, global::System.Convert.ToString); } if (content.Contains("Target")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorInternal)this).Target = (string) content.GetValueForProperty("Target",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorInternal)this).Target, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorInternal)this).Target = (string) content.GetValueForProperty("Target",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorInternal)this).Target, global::System.Convert.ToString); } if (content.Contains("Detail")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBody[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.CloudErrorBodyTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBody[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.CloudErrorBodyTypeConverter.ConvertFrom)); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -115,51 +115,49 @@ internal CloudError(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("Error")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorInternal)this).Error = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBody) content.GetValueForProperty("Error",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorInternal)this).Error, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.CloudErrorBodyTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorInternal)this).Error = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBody) content.GetValueForProperty("Error",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorInternal)this).Error, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.CloudErrorBodyTypeConverter.ConvertFrom); } if (content.Contains("Code")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorInternal)this).Code, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorInternal)this).Code, global::System.Convert.ToString); } if (content.Contains("Message")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorInternal)this).Message, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorInternal)this).Message, global::System.Convert.ToString); } if (content.Contains("Target")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorInternal)this).Target = (string) content.GetValueForProperty("Target",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorInternal)this).Target, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorInternal)this).Target = (string) content.GetValueForProperty("Target",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorInternal)this).Target, global::System.Convert.ToString); } if (content.Contains("Detail")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBody[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.CloudErrorBodyTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBody[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.CloudErrorBodyTypeConverter.ConvertFrom)); } AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new CloudError(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new CloudError(content); } @@ -169,7 +167,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.A /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudError.TypeConverter.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/CloudError.TypeConverter.cs similarity index 97% rename from src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudError.TypeConverter.cs rename to src/ManagedServiceIdentity/generated/api/Models/Api20230131/CloudError.TypeConverter.cs index f5a7164ef231..adbb5786e5e1 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudError.TypeConverter.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/CloudError.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131 { using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; @@ -105,14 +105,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudError.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/CloudError.cs similarity index 72% rename from src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudError.cs rename to src/ManagedServiceIdentity/generated/api/Models/Api20230131/CloudError.cs index 214c94b7e15f..9467dbc0b68d 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudError.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/CloudError.cs @@ -3,45 +3,45 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131 { using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; /// An error response from the ManagedServiceIdentity service. public partial class CloudError : - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError, - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorInternal + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError, + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorInternal { /// An identifier for the error. [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inlined)] - public string Code { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyInternal)Error).Code; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyInternal)Error).Code = value ?? null; } + public string Code { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBodyInternal)Error).Code; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBodyInternal)Error).Code = value ?? null; } /// A list of additional details about the error. [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBody[] Detail { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyInternal)Error).Detail; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyInternal)Error).Detail = value ?? null /* arrayOf */; } + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBody[] Detail { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBodyInternal)Error).Detail; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBodyInternal)Error).Detail = value ?? null /* arrayOf */; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBody _error; + private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBody _error; /// A list of additional details about the error. [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBody Error { get => (this._error = this._error ?? new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.CloudErrorBody()); set => this._error = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBody Error { get => (this._error = this._error ?? new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.CloudErrorBody()); set => this._error = value; } /// /// A message describing the error, intended to be suitable for display in a user interface. /// [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inlined)] - public string Message { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyInternal)Error).Message; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyInternal)Error).Message = value ?? null; } + public string Message { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBodyInternal)Error).Message; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBodyInternal)Error).Message = value ?? null; } /// Internal Acessors for Error - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBody Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorInternal.Error { get => (this._error = this._error ?? new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.CloudErrorBody()); set { {_error = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBody Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorInternal.Error { get => (this._error = this._error ?? new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.CloudErrorBody()); set { {_error = value;} } } /// /// The target of the particular error. For example, the name of the property in error. /// [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inlined)] - public string Target { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyInternal)Error).Target; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyInternal)Error).Target = value ?? null; } + public string Target { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBodyInternal)Error).Target; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBodyInternal)Error).Target = value ?? null; } /// Creates an new instance. public CloudError() @@ -67,8 +67,8 @@ public partial interface ICloudError : ReadOnly = false, Description = @"A list of additional details about the error.", SerializedName = @"details", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBody) })] - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBody[] Detail { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBody) })] + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBody[] Detail { get; set; } /// /// A message describing the error, intended to be suitable for display in a user interface. /// @@ -98,9 +98,9 @@ internal partial interface ICloudErrorInternal /// An identifier for the error. string Code { get; set; } /// A list of additional details about the error. - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBody[] Detail { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBody[] Detail { get; set; } /// A list of additional details about the error. - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBody Error { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBody Error { get; set; } /// /// A message describing the error, intended to be suitable for display in a user interface. /// diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudError.json.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/CloudError.json.cs similarity index 94% rename from src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudError.json.cs rename to src/ManagedServiceIdentity/generated/api/Models/Api20230131/CloudError.json.cs index f192c80718c9..5dd84ded6bb9 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudError.json.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/CloudError.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131 { using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; @@ -65,18 +65,18 @@ internal CloudError(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Ru { return; } - {_error = If( json?.PropertyT("error"), out var __jsonError) ? Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.CloudErrorBody.FromJson(__jsonError) : Error;} + {_error = If( json?.PropertyT("error"), out var __jsonError) ? Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.CloudErrorBody.FromJson(__jsonError) : Error;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json ? new CloudError(json) : null; } diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudErrorBody.PowerShell.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/CloudErrorBody.PowerShell.cs similarity index 69% rename from src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudErrorBody.PowerShell.cs rename to src/ManagedServiceIdentity/generated/api/Models/Api20230131/CloudErrorBody.PowerShell.cs index 417f6385d70c..d4ab782c5c02 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudErrorBody.PowerShell.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/CloudErrorBody.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131 { using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; @@ -63,7 +63,7 @@ public partial class CloudErrorBody partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -78,25 +78,25 @@ internal CloudErrorBody(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Code")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyInternal)this).Code, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBodyInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBodyInternal)this).Code, global::System.Convert.ToString); } if (content.Contains("Message")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyInternal)this).Message, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBodyInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBodyInternal)this).Message, global::System.Convert.ToString); } if (content.Contains("Target")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyInternal)this).Target = (string) content.GetValueForProperty("Target",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyInternal)this).Target, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBodyInternal)this).Target = (string) content.GetValueForProperty("Target",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBodyInternal)this).Target, global::System.Convert.ToString); } if (content.Contains("Detail")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBody[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.CloudErrorBodyTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBodyInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBody[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBodyInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.CloudErrorBodyTypeConverter.ConvertFrom)); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -111,47 +111,47 @@ internal CloudErrorBody(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("Code")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyInternal)this).Code, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBodyInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBodyInternal)this).Code, global::System.Convert.ToString); } if (content.Contains("Message")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyInternal)this).Message, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBodyInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBodyInternal)this).Message, global::System.Convert.ToString); } if (content.Contains("Target")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyInternal)this).Target = (string) content.GetValueForProperty("Target",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyInternal)this).Target, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBodyInternal)this).Target = (string) content.GetValueForProperty("Target",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBodyInternal)this).Target, global::System.Convert.ToString); } if (content.Contains("Detail")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBody[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.CloudErrorBodyTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBodyInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBody[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBodyInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.CloudErrorBodyTypeConverter.ConvertFrom)); } AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBody DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBody DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new CloudErrorBody(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBody DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBody DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new CloudErrorBody(content); } @@ -161,7 +161,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.A /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBody FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBody FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudErrorBody.TypeConverter.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/CloudErrorBody.TypeConverter.cs similarity index 97% rename from src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudErrorBody.TypeConverter.cs rename to src/ManagedServiceIdentity/generated/api/Models/Api20230131/CloudErrorBody.TypeConverter.cs index ee496b30e0c1..8947e00a660e 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudErrorBody.TypeConverter.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/CloudErrorBody.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131 { using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBody ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBody ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBody).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBody).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudErrorBody.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/CloudErrorBody.cs similarity index 91% rename from src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudErrorBody.cs rename to src/ManagedServiceIdentity/generated/api/Models/Api20230131/CloudErrorBody.cs index f8ecd8586adb..47ebdf0d6e46 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudErrorBody.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/CloudErrorBody.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131 { using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; /// An error response from the ManagedServiceIdentity service. public partial class CloudErrorBody : - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBody, - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBodyInternal + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBody, + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBodyInternal { /// Backing field for property. @@ -21,11 +21,11 @@ public partial class CloudErrorBody : public string Code { get => this._code; set => this._code = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBody[] _detail; + private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBody[] _detail; /// A list of additional details about the error. [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBody[] Detail { get => this._detail; set => this._detail = value; } + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBody[] Detail { get => this._detail; set => this._detail = value; } /// Backing field for property. private string _message; @@ -69,8 +69,8 @@ public partial interface ICloudErrorBody : ReadOnly = false, Description = @"A list of additional details about the error.", SerializedName = @"details", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBody) })] - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBody[] Detail { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBody) })] + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBody[] Detail { get; set; } /// /// A message describing the error, intended to be suitable for display in a user interface. /// @@ -100,7 +100,7 @@ internal partial interface ICloudErrorBodyInternal /// An identifier for the error. string Code { get; set; } /// A list of additional details about the error. - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBody[] Detail { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBody[] Detail { get; set; } /// /// A message describing the error, intended to be suitable for display in a user interface. /// diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudErrorBody.json.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/CloudErrorBody.json.cs similarity index 92% rename from src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudErrorBody.json.cs rename to src/ManagedServiceIdentity/generated/api/Models/Api20230131/CloudErrorBody.json.cs index 4e20311e423b..c7c60b5b723a 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/CloudErrorBody.json.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/CloudErrorBody.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131 { using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; @@ -68,18 +68,18 @@ internal CloudErrorBody(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentit {_code = If( json?.PropertyT("code"), out var __jsonCode) ? (string)__jsonCode : (string)Code;} {_message = If( json?.PropertyT("message"), out var __jsonMessage) ? (string)__jsonMessage : (string)Message;} {_target = If( json?.PropertyT("target"), out var __jsonTarget) ? (string)__jsonTarget : (string)Target;} - {_detail = If( json?.PropertyT("details"), out var __jsonDetails) ? If( __jsonDetails as Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBody) (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.CloudErrorBody.FromJson(__u) )) ))() : null : Detail;} + {_detail = If( json?.PropertyT("details"), out var __jsonDetails) ? If( __jsonDetails as Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBody) (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.CloudErrorBody.FromJson(__u) )) ))() : null : Detail;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBody. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBody. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBody. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBody. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorBody FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudErrorBody FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json ? new CloudErrorBody(json) : null; } diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20230131/FederatedIdentityCredential.PowerShell.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/FederatedIdentityCredential.PowerShell.cs new file mode 100644 index 000000000000..95d8e2f3c8aa --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/FederatedIdentityCredential.PowerShell.cs @@ -0,0 +1,270 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131 +{ + using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; + + /// Describes a federated identity credential. + [System.ComponentModel.TypeConverter(typeof(FederatedIdentityCredentialTypeConverter))] + public partial class FederatedIdentityCredential + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior + /// + /// /// instance serialized to a string, normally it is a Json + /// /// set returnNow to true if you provide a customized OverrideToString function + + partial void OverrideToString(ref string stringResult, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new FederatedIdentityCredential(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new FederatedIdentityCredential(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal FederatedIdentityCredential(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Property")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredentialInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredentialInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.FederatedIdentityCredentialPropertiesTypeConverter.ConvertFrom); + } + if (content.Contains("SystemDataCreatedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemDataCreatedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemData")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.SystemDataTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Type, global::System.Convert.ToString); + } + if (content.Contains("Issuer")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredentialInternal)this).Issuer = (string) content.GetValueForProperty("Issuer",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredentialInternal)this).Issuer, global::System.Convert.ToString); + } + if (content.Contains("Subject")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredentialInternal)this).Subject = (string) content.GetValueForProperty("Subject",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredentialInternal)this).Subject, global::System.Convert.ToString); + } + if (content.Contains("Audience")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredentialInternal)this).Audience = (string[]) content.GetValueForProperty("Audience",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredentialInternal)this).Audience, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal FederatedIdentityCredential(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Property")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredentialInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredentialInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.FederatedIdentityCredentialPropertiesTypeConverter.ConvertFrom); + } + if (content.Contains("SystemDataCreatedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemDataCreatedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemData")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.SystemDataTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Type, global::System.Convert.ToString); + } + if (content.Contains("Issuer")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredentialInternal)this).Issuer = (string) content.GetValueForProperty("Issuer",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredentialInternal)this).Issuer, global::System.Convert.ToString); + } + if (content.Contains("Subject")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredentialInternal)this).Subject = (string) content.GetValueForProperty("Subject",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredentialInternal)this).Subject, global::System.Convert.ToString); + } + if (content.Contains("Audience")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredentialInternal)this).Audience = (string[]) content.GetValueForProperty("Audience",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredentialInternal)this).Audience, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + } + AfterDeserializePSObject(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.SerializationMode.IncludeAll)?.ToString(); + + public override string ToString() + { + var returnNow = false; + var result = global::System.String.Empty; + OverrideToString(ref result, ref returnNow); + if (returnNow) + { + return result; + } + return ToJsonString(); + } + } + /// Describes a federated identity credential. + [System.ComponentModel.TypeConverter(typeof(FederatedIdentityCredentialTypeConverter))] + public partial interface IFederatedIdentityCredential + + { + + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredential.TypeConverter.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/FederatedIdentityCredential.TypeConverter.cs similarity index 97% rename from src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredential.TypeConverter.cs rename to src/ManagedServiceIdentity/generated/api/Models/Api20230131/FederatedIdentityCredential.TypeConverter.cs index 2f6048195327..727c96401414 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredential.TypeConverter.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/FederatedIdentityCredential.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131 { using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20230131/FederatedIdentityCredential.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/FederatedIdentityCredential.cs new file mode 100644 index 000000000000..7282cc51eb47 --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/FederatedIdentityCredential.cs @@ -0,0 +1,184 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; + + /// Describes a federated identity credential. + public partial class FederatedIdentityCredential : + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential, + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredentialInternal, + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IValidates + { + /// + /// Backing field for Inherited model + /// + private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResource __resource = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.Resource(); + + /// The list of audiences that can appear in the issued token. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inlined)] + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.FormatTable(Index = 3)] + public string[] Audience { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialPropertiesInternal)Property).Audience; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialPropertiesInternal)Property).Audience = value ?? null /* arrayOf */; } + + /// + /// Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" + /// + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.DoNotFormat] + public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).Id; } + + /// The URL of the issuer to be trusted. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inlined)] + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.FormatTable(Index = 1)] + public string Issuer { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialPropertiesInternal)Property).Issuer; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialPropertiesInternal)Property).Issuer = value ?? null; } + + /// Internal Acessors for Property + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialProperties Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredentialInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.FederatedIdentityCredentialProperties()); set { {_property = value;} } } + + /// Internal Acessors for Id + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).Id = value; } + + /// Internal Acessors for Name + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).Name = value; } + + /// Internal Acessors for SystemData + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemData Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal.SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemData; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemData = value; } + + /// Internal Acessors for Type + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).Type = value; } + + /// The name of the resource + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.FormatTable(Index = 0)] + public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).Name; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialProperties _property; + + /// The properties associated with the federated identity credential. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Owned)] + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.DoNotFormat] + internal Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.FederatedIdentityCredentialProperties()); set => this._property = value; } + + /// Gets the resource group name + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Owned)] + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.DoNotFormat] + public string ResourceGroupName { get => (new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(this.Id).Success ? new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(this.Id).Groups["resourceGroupName"].Value : null); } + + /// The identifier of the external identity. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inlined)] + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.FormatTable(Index = 2)] + public string Subject { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialPropertiesInternal)Property).Subject; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialPropertiesInternal)Property).Subject = value ?? null; } + + /// + /// Azure Resource Manager metadata containing createdBy and modifiedBy information. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.DoNotFormat] + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemData SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemData; } + + /// The timestamp of resource creation (UTC). + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.DoNotFormat] + public global::System.DateTime? SystemDataCreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataCreatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataCreatedAt = value ?? default(global::System.DateTime); } + + /// The identity that created the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.DoNotFormat] + public string SystemDataCreatedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataCreatedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataCreatedBy = value ?? null; } + + /// The type of identity that created the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.DoNotFormat] + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType? SystemDataCreatedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataCreatedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataCreatedByType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType)""); } + + /// The timestamp of resource last modification (UTC) + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.DoNotFormat] + public global::System.DateTime? SystemDataLastModifiedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedAt = value ?? default(global::System.DateTime); } + + /// The identity that last modified the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.DoNotFormat] + public string SystemDataLastModifiedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedBy = value ?? null; } + + /// The type of identity that last modified the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.DoNotFormat] + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType? SystemDataLastModifiedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedByType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType)""); } + + /// + /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" + /// + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.DoNotFormat] + public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).Type; } + + /// Creates an new instance. + public FederatedIdentityCredential() + { + + } + + /// Validates that this object meets the validation criteria. + /// an instance that will receive validation + /// events. + /// + /// A that will be complete when validation is completed. + /// + public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener) + { + await eventListener.AssertNotNull(nameof(__resource), __resource); + await eventListener.AssertObjectIsValid(nameof(__resource), __resource); + } + } + /// Describes a federated identity credential. + public partial interface IFederatedIdentityCredential : + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IJsonSerializable, + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResource + { + /// The list of audiences that can appear in the issued token. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The list of audiences that can appear in the issued token.", + SerializedName = @"audiences", + PossibleTypes = new [] { typeof(string) })] + string[] Audience { get; set; } + /// The URL of the issuer to be trusted. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The URL of the issuer to be trusted.", + SerializedName = @"issuer", + PossibleTypes = new [] { typeof(string) })] + string Issuer { get; set; } + /// The identifier of the external identity. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The identifier of the external identity.", + SerializedName = @"subject", + PossibleTypes = new [] { typeof(string) })] + string Subject { get; set; } + + } + /// Describes a federated identity credential. + internal partial interface IFederatedIdentityCredentialInternal : + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal + { + /// The list of audiences that can appear in the issued token. + string[] Audience { get; set; } + /// The URL of the issuer to be trusted. + string Issuer { get; set; } + /// The properties associated with the federated identity credential. + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialProperties Property { get; set; } + /// The identifier of the external identity. + string Subject { get; set; } + + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredential.json.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/FederatedIdentityCredential.json.cs similarity index 94% rename from src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredential.json.cs rename to src/ManagedServiceIdentity/generated/api/Models/Api20230131/FederatedIdentityCredential.json.cs index adf2345f8e7e..ee015347f28f 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredential.json.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/FederatedIdentityCredential.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131 { using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; @@ -65,19 +65,19 @@ internal FederatedIdentityCredential(Microsoft.Azure.PowerShell.Cmdlets.ManagedS { return; } - __resource = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.Resource(json); + __resource = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.Resource(json); {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.FederatedIdentityCredentialProperties.FromJson(__jsonProperties) : Property;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json ? new FederatedIdentityCredential(json) : null; } diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredentialsListResult.PowerShell.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/FederatedIdentityCredentialsListResult.PowerShell.cs similarity index 72% rename from src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredentialsListResult.PowerShell.cs rename to src/ManagedServiceIdentity/generated/api/Models/Api20230131/FederatedIdentityCredentialsListResult.PowerShell.cs index 76b129828469..e4090417444f 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredentialsListResult.PowerShell.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/FederatedIdentityCredentialsListResult.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131 { using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; @@ -63,35 +63,35 @@ public partial class FederatedIdentityCredentialsListResult partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialsListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredentialsListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new FederatedIdentityCredentialsListResult(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialsListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredentialsListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new FederatedIdentityCredentialsListResult(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -106,17 +106,17 @@ internal FederatedIdentityCredentialsListResult(global::System.Collections.IDict // actually deserialize if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialsListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialsListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.FederatedIdentityCredentialTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredentialsListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredentialsListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.FederatedIdentityCredentialTypeConverter.ConvertFrom)); } if (content.Contains("NextLink")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialsListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialsListResultInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredentialsListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredentialsListResultInternal)this).NextLink, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -131,11 +131,11 @@ internal FederatedIdentityCredentialsListResult(global::System.Management.Automa // actually deserialize if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialsListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialsListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.FederatedIdentityCredentialTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredentialsListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredentialsListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.FederatedIdentityCredentialTypeConverter.ConvertFrom)); } if (content.Contains("NextLink")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialsListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialsListResultInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredentialsListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredentialsListResultInternal)this).NextLink, global::System.Convert.ToString); } AfterDeserializePSObject(content); } @@ -148,7 +148,7 @@ internal FederatedIdentityCredentialsListResult(global::System.Management.Automa /// /// an instance of the model class. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialsListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredentialsListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredentialsListResult.TypeConverter.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/FederatedIdentityCredentialsListResult.TypeConverter.cs similarity index 96% rename from src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredentialsListResult.TypeConverter.cs rename to src/ManagedServiceIdentity/generated/api/Models/Api20230131/FederatedIdentityCredentialsListResult.TypeConverter.cs index 914e056851ed..0338df21d23a 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredentialsListResult.TypeConverter.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/FederatedIdentityCredentialsListResult.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131 { using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; @@ -110,14 +110,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialsListResult ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredentialsListResult ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialsListResult).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredentialsListResult).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredentialsListResult.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/FederatedIdentityCredentialsListResult.cs similarity index 85% rename from src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredentialsListResult.cs rename to src/ManagedServiceIdentity/generated/api/Models/Api20230131/FederatedIdentityCredentialsListResult.cs index 9328b62b59a1..a86f3c42cb81 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredentialsListResult.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/FederatedIdentityCredentialsListResult.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131 { using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; /// Values returned by the List operation for federated identity credentials. public partial class FederatedIdentityCredentialsListResult : - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialsListResult, - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialsListResultInternal + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredentialsListResult, + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredentialsListResultInternal { /// Backing field for property. @@ -21,13 +21,13 @@ public partial class FederatedIdentityCredentialsListResult : public string NextLink { get => this._nextLink; set => this._nextLink = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential[] _value; + private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential[] _value; /// /// The collection of federated identity credentials returned by the listing operation. /// [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential[] Value { get => this._value; set => this._value = value; } + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential[] Value { get => this._value; set => this._value = value; } /// Creates an new instance. public FederatedIdentityCredentialsListResult() @@ -55,8 +55,8 @@ public partial interface IFederatedIdentityCredentialsListResult : ReadOnly = false, Description = @"The collection of federated identity credentials returned by the listing operation.", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential) })] - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential[] Value { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential) })] + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential[] Value { get; set; } } /// Values returned by the List operation for federated identity credentials. @@ -68,7 +68,7 @@ internal partial interface IFederatedIdentityCredentialsListResultInternal /// /// The collection of federated identity credentials returned by the listing operation. /// - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential[] Value { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential[] Value { get; set; } } } \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredentialsListResult.json.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/FederatedIdentityCredentialsListResult.json.cs similarity index 90% rename from src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredentialsListResult.json.cs rename to src/ManagedServiceIdentity/generated/api/Models/Api20230131/FederatedIdentityCredentialsListResult.json.cs index 4a324b050bd1..e8ff50eb92da 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/FederatedIdentityCredentialsListResult.json.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/FederatedIdentityCredentialsListResult.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131 { using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; @@ -65,19 +65,19 @@ internal FederatedIdentityCredentialsListResult(Microsoft.Azure.PowerShell.Cmdle { return; } - {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential) (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.FederatedIdentityCredential.FromJson(__u) )) ))() : null : Value;} + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential) (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.FederatedIdentityCredential.FromJson(__u) )) ))() : null : Value;} {_nextLink = If( json?.PropertyT("nextLink"), out var __jsonNextLink) ? (string)__jsonNextLink : (string)NextLink;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialsListResult. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredentialsListResult. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialsListResult. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredentialsListResult. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialsListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredentialsListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json ? new FederatedIdentityCredentialsListResult(json) : null; } diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20230131/Identity.PowerShell.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/Identity.PowerShell.cs new file mode 100644 index 000000000000..643276526691 --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/Identity.PowerShell.cs @@ -0,0 +1,284 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131 +{ + using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; + + /// Describes an identity resource. + [System.ComponentModel.TypeConverter(typeof(IdentityTypeConverter))] + public partial class Identity + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior + /// + /// /// instance serialized to a string, normally it is a Json + /// /// set returnNow to true if you provide a customized OverrideToString function + + partial void OverrideToString(ref string stringResult, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new Identity(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new Identity(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal Identity(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Property")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.UserAssignedIdentityPropertiesTypeConverter.ConvertFrom); + } + if (content.Contains("SystemDataCreatedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemDataCreatedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemData")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.SystemDataTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Type, global::System.Convert.ToString); + } + if (content.Contains("Tag")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ITrackedResourceInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ITrackedResourceInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.TrackedResourceTagsTypeConverter.ConvertFrom); + } + if (content.Contains("Location")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ITrackedResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ITrackedResourceInternal)this).Location, global::System.Convert.ToString); + } + if (content.Contains("TenantId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityInternal)this).TenantId, global::System.Convert.ToString); + } + if (content.Contains("PrincipalId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityInternal)this).PrincipalId, global::System.Convert.ToString); + } + if (content.Contains("ClientId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityInternal)this).ClientId, global::System.Convert.ToString); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal Identity(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Property")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.UserAssignedIdentityPropertiesTypeConverter.ConvertFrom); + } + if (content.Contains("SystemDataCreatedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemDataCreatedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemData")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.SystemDataTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Type, global::System.Convert.ToString); + } + if (content.Contains("Tag")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ITrackedResourceInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ITrackedResourceInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.TrackedResourceTagsTypeConverter.ConvertFrom); + } + if (content.Contains("Location")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ITrackedResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ITrackedResourceInternal)this).Location, global::System.Convert.ToString); + } + if (content.Contains("TenantId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityInternal)this).TenantId, global::System.Convert.ToString); + } + if (content.Contains("PrincipalId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityInternal)this).PrincipalId, global::System.Convert.ToString); + } + if (content.Contains("ClientId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityInternal)this).ClientId, global::System.Convert.ToString); + } + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.SerializationMode.IncludeAll)?.ToString(); + + public override string ToString() + { + var returnNow = false; + var result = global::System.String.Empty; + OverrideToString(ref result, ref returnNow); + if (returnNow) + { + return result; + } + return ToJsonString(); + } + } + /// Describes an identity resource. + [System.ComponentModel.TypeConverter(typeof(IdentityTypeConverter))] + public partial interface IIdentity + + { + + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/Identity.TypeConverter.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/Identity.TypeConverter.cs similarity index 97% rename from src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/Identity.TypeConverter.cs rename to src/ManagedServiceIdentity/generated/api/Models/Api20230131/Identity.TypeConverter.cs index b122904d8f30..6435898989f3 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/Identity.TypeConverter.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/Identity.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131 { using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; @@ -105,14 +105,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20230131/Identity.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/Identity.cs new file mode 100644 index 000000000000..61ddec154738 --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/Identity.cs @@ -0,0 +1,192 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; + + /// Describes an identity resource. + public partial class Identity : + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity, + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityInternal, + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IValidates + { + /// + /// Backing field for Inherited model + /// + private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ITrackedResource __trackedResource = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.TrackedResource(); + + /// + /// The id of the app associated with the identity. This is a random generated UUID by MSI. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inlined)] + public string ClientId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityPropertiesInternal)Property).ClientId; } + + /// + /// Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" + /// + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__trackedResource).Id; } + + /// The geo-location where the resource lives + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public string Location { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ITrackedResourceInternal)__trackedResource).Location; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ITrackedResourceInternal)__trackedResource).Location = value ; } + + /// Internal Acessors for ClientId + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityInternal.ClientId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityPropertiesInternal)Property).ClientId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityPropertiesInternal)Property).ClientId = value; } + + /// Internal Acessors for PrincipalId + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityInternal.PrincipalId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityPropertiesInternal)Property).PrincipalId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityPropertiesInternal)Property).PrincipalId = value; } + + /// Internal Acessors for Property + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityProperties Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.UserAssignedIdentityProperties()); set { {_property = value;} } } + + /// Internal Acessors for TenantId + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityInternal.TenantId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityPropertiesInternal)Property).TenantId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityPropertiesInternal)Property).TenantId = value; } + + /// Internal Acessors for Id + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__trackedResource).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__trackedResource).Id = value; } + + /// Internal Acessors for Name + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__trackedResource).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__trackedResource).Name = value; } + + /// Internal Acessors for SystemData + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemData Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal.SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__trackedResource).SystemData; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__trackedResource).SystemData = value; } + + /// Internal Acessors for Type + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__trackedResource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__trackedResource).Type = value; } + + /// The name of the resource + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__trackedResource).Name; } + + /// The id of the service principal object associated with the created identity. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inlined)] + public string PrincipalId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityPropertiesInternal)Property).PrincipalId; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityProperties _property; + + /// The properties associated with the identity. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Owned)] + internal Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.UserAssignedIdentityProperties()); } + + /// Gets the resource group name + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Owned)] + public string ResourceGroupName { get => (new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(this.Id).Success ? new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(this.Id).Groups["resourceGroupName"].Value : null); } + + /// + /// Azure Resource Manager metadata containing createdBy and modifiedBy information. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemData SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__trackedResource).SystemData; } + + /// The timestamp of resource creation (UTC). + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public global::System.DateTime? SystemDataCreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__trackedResource).SystemDataCreatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__trackedResource).SystemDataCreatedAt = value ?? default(global::System.DateTime); } + + /// The identity that created the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public string SystemDataCreatedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__trackedResource).SystemDataCreatedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__trackedResource).SystemDataCreatedBy = value ?? null; } + + /// The type of identity that created the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType? SystemDataCreatedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__trackedResource).SystemDataCreatedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__trackedResource).SystemDataCreatedByType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType)""); } + + /// The timestamp of resource last modification (UTC) + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public global::System.DateTime? SystemDataLastModifiedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__trackedResource).SystemDataLastModifiedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__trackedResource).SystemDataLastModifiedAt = value ?? default(global::System.DateTime); } + + /// The identity that last modified the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public string SystemDataLastModifiedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__trackedResource).SystemDataLastModifiedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__trackedResource).SystemDataLastModifiedBy = value ?? null; } + + /// The type of identity that last modified the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType? SystemDataLastModifiedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__trackedResource).SystemDataLastModifiedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__trackedResource).SystemDataLastModifiedByType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType)""); } + + /// Resource tags. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceTags Tag { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ITrackedResourceInternal)__trackedResource).Tag; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ITrackedResourceInternal)__trackedResource).Tag = value ?? null /* model class */; } + + /// The id of the tenant which the identity belongs to. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inlined)] + public string TenantId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityPropertiesInternal)Property).TenantId; } + + /// + /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" + /// + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__trackedResource).Type; } + + /// Creates an new instance. + public Identity() + { + + } + + /// Validates that this object meets the validation criteria. + /// an instance that will receive validation + /// events. + /// + /// A that will be complete when validation is completed. + /// + public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener) + { + await eventListener.AssertNotNull(nameof(__trackedResource), __trackedResource); + await eventListener.AssertObjectIsValid(nameof(__trackedResource), __trackedResource); + } + } + /// Describes an identity resource. + public partial interface IIdentity : + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IJsonSerializable, + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ITrackedResource + { + /// + /// The id of the app associated with the identity. This is a random generated UUID by MSI. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The id of the app associated with the identity. This is a random generated UUID by MSI.", + SerializedName = @"clientId", + PossibleTypes = new [] { typeof(string) })] + string ClientId { get; } + /// The id of the service principal object associated with the created identity. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The id of the service principal object associated with the created identity.", + SerializedName = @"principalId", + PossibleTypes = new [] { typeof(string) })] + string PrincipalId { get; } + /// The id of the tenant which the identity belongs to. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The id of the tenant which the identity belongs to.", + SerializedName = @"tenantId", + PossibleTypes = new [] { typeof(string) })] + string TenantId { get; } + + } + /// Describes an identity resource. + internal partial interface IIdentityInternal : + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ITrackedResourceInternal + { + /// + /// The id of the app associated with the identity. This is a random generated UUID by MSI. + /// + string ClientId { get; set; } + /// The id of the service principal object associated with the created identity. + string PrincipalId { get; set; } + /// The properties associated with the identity. + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityProperties Property { get; set; } + /// The id of the tenant which the identity belongs to. + string TenantId { get; set; } + + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/Identity.json.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/Identity.json.cs similarity index 95% rename from src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/Identity.json.cs rename to src/ManagedServiceIdentity/generated/api/Models/Api20230131/Identity.json.cs index b403423b9268..d440ce651400 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/Identity.json.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/Identity.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131 { using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class Identity partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json ? new Identity(json) : null; } @@ -77,7 +77,7 @@ internal Identity(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runt { return; } - __trackedResource = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.TrackedResource(json); + __trackedResource = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.TrackedResource(json); {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.UserAssignedIdentityProperties.FromJson(__jsonProperties) : Property;} AfterFromJson(json); } diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20230131/IdentityUpdate.PowerShell.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/IdentityUpdate.PowerShell.cs new file mode 100644 index 000000000000..019100b7c02d --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/IdentityUpdate.PowerShell.cs @@ -0,0 +1,286 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131 +{ + using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; + + /// Describes an identity resource. + [System.ComponentModel.TypeConverter(typeof(IdentityUpdateTypeConverter))] + public partial class IdentityUpdate + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior + /// + /// /// instance serialized to a string, normally it is a Json + /// /// set returnNow to true if you provide a customized OverrideToString function + + partial void OverrideToString(ref string stringResult, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityUpdate DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new IdentityUpdate(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityUpdate DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new IdentityUpdate(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityUpdate FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal IdentityUpdate(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Property")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityUpdateInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityUpdateInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.UserAssignedIdentityPropertiesTypeConverter.ConvertFrom); + } + if (content.Contains("Location")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityUpdateInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityUpdateInternal)this).Location, global::System.Convert.ToString); + } + if (content.Contains("Tag")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityUpdateInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityUpdateInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IdentityUpdateTagsTypeConverter.ConvertFrom); + } + if (content.Contains("SystemDataCreatedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemDataCreatedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemData")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.SystemDataTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Type, global::System.Convert.ToString); + } + if (content.Contains("TenantId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityUpdateInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityUpdateInternal)this).TenantId, global::System.Convert.ToString); + } + if (content.Contains("PrincipalId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityUpdateInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityUpdateInternal)this).PrincipalId, global::System.Convert.ToString); + } + if (content.Contains("ClientId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityUpdateInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityUpdateInternal)this).ClientId, global::System.Convert.ToString); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal IdentityUpdate(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Property")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityUpdateInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityUpdateInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.UserAssignedIdentityPropertiesTypeConverter.ConvertFrom); + } + if (content.Contains("Location")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityUpdateInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityUpdateInternal)this).Location, global::System.Convert.ToString); + } + if (content.Contains("Tag")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityUpdateInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityUpdateInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IdentityUpdateTagsTypeConverter.ConvertFrom); + } + if (content.Contains("SystemDataCreatedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemDataCreatedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemData")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.SystemDataTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Type, global::System.Convert.ToString); + } + if (content.Contains("TenantId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityUpdateInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityUpdateInternal)this).TenantId, global::System.Convert.ToString); + } + if (content.Contains("PrincipalId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityUpdateInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityUpdateInternal)this).PrincipalId, global::System.Convert.ToString); + } + if (content.Contains("ClientId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityUpdateInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityUpdateInternal)this).ClientId, global::System.Convert.ToString); + } + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.SerializationMode.IncludeAll)?.ToString(); + + public override string ToString() + { + var returnNow = false; + var result = global::System.String.Empty; + OverrideToString(ref result, ref returnNow); + if (returnNow) + { + return result; + } + return ToJsonString(); + } + } + /// Describes an identity resource. + [System.ComponentModel.TypeConverter(typeof(IdentityUpdateTypeConverter))] + public partial interface IIdentityUpdate + + { + + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/IdentityUpdate.TypeConverter.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/IdentityUpdate.TypeConverter.cs similarity index 97% rename from src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/IdentityUpdate.TypeConverter.cs rename to src/ManagedServiceIdentity/generated/api/Models/Api20230131/IdentityUpdate.TypeConverter.cs index c603f0fa8d99..2691dc2bf8f0 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/IdentityUpdate.TypeConverter.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/IdentityUpdate.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131 { using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdate ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityUpdate ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdate).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityUpdate).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20230131/IdentityUpdate.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/IdentityUpdate.cs new file mode 100644 index 000000000000..2cee64cf7362 --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/IdentityUpdate.cs @@ -0,0 +1,214 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; + + /// Describes an identity resource. + public partial class IdentityUpdate : + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityUpdate, + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityUpdateInternal, + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IValidates + { + /// + /// Backing field for Inherited model + /// + private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResource __resource = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.Resource(); + + /// + /// The id of the app associated with the identity. This is a random generated UUID by MSI. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inlined)] + public string ClientId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityPropertiesInternal)Property).ClientId; } + + /// + /// Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" + /// + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).Id; } + + /// Backing field for property. + private string _location; + + /// The geo-location where the resource lives + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Owned)] + public string Location { get => this._location; set => this._location = value; } + + /// Internal Acessors for ClientId + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityUpdateInternal.ClientId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityPropertiesInternal)Property).ClientId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityPropertiesInternal)Property).ClientId = value; } + + /// Internal Acessors for PrincipalId + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityUpdateInternal.PrincipalId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityPropertiesInternal)Property).PrincipalId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityPropertiesInternal)Property).PrincipalId = value; } + + /// Internal Acessors for Property + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityProperties Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityUpdateInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.UserAssignedIdentityProperties()); set { {_property = value;} } } + + /// Internal Acessors for TenantId + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityUpdateInternal.TenantId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityPropertiesInternal)Property).TenantId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityPropertiesInternal)Property).TenantId = value; } + + /// Internal Acessors for Id + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).Id = value; } + + /// Internal Acessors for Name + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).Name = value; } + + /// Internal Acessors for SystemData + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemData Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal.SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemData; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemData = value; } + + /// Internal Acessors for Type + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).Type = value; } + + /// The name of the resource + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).Name; } + + /// The id of the service principal object associated with the created identity. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inlined)] + public string PrincipalId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityPropertiesInternal)Property).PrincipalId; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityProperties _property; + + /// The properties associated with the identity. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Owned)] + internal Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.UserAssignedIdentityProperties()); } + + /// + /// Azure Resource Manager metadata containing createdBy and modifiedBy information. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemData SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemData; } + + /// The timestamp of resource creation (UTC). + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public global::System.DateTime? SystemDataCreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataCreatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataCreatedAt = value ?? default(global::System.DateTime); } + + /// The identity that created the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public string SystemDataCreatedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataCreatedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataCreatedBy = value ?? null; } + + /// The type of identity that created the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType? SystemDataCreatedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataCreatedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataCreatedByType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType)""); } + + /// The timestamp of resource last modification (UTC) + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public global::System.DateTime? SystemDataLastModifiedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedAt = value ?? default(global::System.DateTime); } + + /// The identity that last modified the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public string SystemDataLastModifiedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedBy = value ?? null; } + + /// The type of identity that last modified the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType? SystemDataLastModifiedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedByType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType)""); } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateTags _tag; + + /// Resource tags + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateTags Tag { get => (this._tag = this._tag ?? new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IdentityUpdateTags()); set => this._tag = value; } + + /// The id of the tenant which the identity belongs to. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inlined)] + public string TenantId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityPropertiesInternal)Property).TenantId; } + + /// + /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" + /// + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).Type; } + + /// Creates an new instance. + public IdentityUpdate() + { + + } + + /// Validates that this object meets the validation criteria. + /// an instance that will receive validation + /// events. + /// + /// A that will be complete when validation is completed. + /// + public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener) + { + await eventListener.AssertNotNull(nameof(__resource), __resource); + await eventListener.AssertObjectIsValid(nameof(__resource), __resource); + } + } + /// Describes an identity resource. + public partial interface IIdentityUpdate : + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IJsonSerializable, + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResource + { + /// + /// The id of the app associated with the identity. This is a random generated UUID by MSI. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The id of the app associated with the identity. This is a random generated UUID by MSI.", + SerializedName = @"clientId", + PossibleTypes = new [] { typeof(string) })] + string ClientId { get; } + /// The geo-location where the resource lives + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The geo-location where the resource lives", + SerializedName = @"location", + PossibleTypes = new [] { typeof(string) })] + string Location { get; set; } + /// The id of the service principal object associated with the created identity. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The id of the service principal object associated with the created identity.", + SerializedName = @"principalId", + PossibleTypes = new [] { typeof(string) })] + string PrincipalId { get; } + /// Resource tags + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Resource tags", + SerializedName = @"tags", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateTags) })] + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateTags Tag { get; set; } + /// The id of the tenant which the identity belongs to. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The id of the tenant which the identity belongs to.", + SerializedName = @"tenantId", + PossibleTypes = new [] { typeof(string) })] + string TenantId { get; } + + } + /// Describes an identity resource. + internal partial interface IIdentityUpdateInternal : + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal + { + /// + /// The id of the app associated with the identity. This is a random generated UUID by MSI. + /// + string ClientId { get; set; } + /// The geo-location where the resource lives + string Location { get; set; } + /// The id of the service principal object associated with the created identity. + string PrincipalId { get; set; } + /// The properties associated with the identity. + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentityProperties Property { get; set; } + /// Resource tags + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdateTags Tag { get; set; } + /// The id of the tenant which the identity belongs to. + string TenantId { get; set; } + + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/IdentityUpdate.json.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/IdentityUpdate.json.cs similarity index 95% rename from src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/IdentityUpdate.json.cs rename to src/ManagedServiceIdentity/generated/api/Models/Api20230131/IdentityUpdate.json.cs index 0a42ab9eda27..1abe6b8fa16a 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/IdentityUpdate.json.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/IdentityUpdate.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131 { using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class IdentityUpdate partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdate. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityUpdate. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdate. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityUpdate. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdate FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityUpdate FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json ? new IdentityUpdate(json) : null; } @@ -77,7 +77,7 @@ internal IdentityUpdate(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentit { return; } - __resource = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.Resource(json); + __resource = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.Resource(json); {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.UserAssignedIdentityProperties.FromJson(__jsonProperties) : Property;} {_location = If( json?.PropertyT("location"), out var __jsonLocation) ? (string)__jsonLocation : (string)Location;} {_tag = If( json?.PropertyT("tags"), out var __jsonTags) ? Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IdentityUpdateTags.FromJson(__jsonTags) : Tag;} diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/OperationListResult.PowerShell.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/OperationListResult.PowerShell.cs similarity index 75% rename from src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/OperationListResult.PowerShell.cs rename to src/ManagedServiceIdentity/generated/api/Models/Api20230131/OperationListResult.PowerShell.cs index b149cdbbadeb..e1697208444e 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/OperationListResult.PowerShell.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/OperationListResult.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131 { using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; @@ -63,29 +63,29 @@ public partial class OperationListResult partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperationListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IOperationListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new OperationListResult(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperationListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IOperationListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new OperationListResult(content); } @@ -95,10 +95,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.A /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperationListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IOperationListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -113,17 +113,17 @@ internal OperationListResult(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperationListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperation[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperationListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.OperationTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IOperationListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperation[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IOperationListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.OperationTypeConverter.ConvertFrom)); } if (content.Contains("NextLink")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperationListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperationListResultInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IOperationListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IOperationListResultInternal)this).NextLink, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -138,11 +138,11 @@ internal OperationListResult(global::System.Management.Automation.PSObject conte // actually deserialize if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperationListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperation[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperationListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.OperationTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IOperationListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperation[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IOperationListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.OperationTypeConverter.ConvertFrom)); } if (content.Contains("NextLink")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperationListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperationListResultInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IOperationListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IOperationListResultInternal)this).NextLink, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/OperationListResult.TypeConverter.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/OperationListResult.TypeConverter.cs similarity index 97% rename from src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/OperationListResult.TypeConverter.cs rename to src/ManagedServiceIdentity/generated/api/Models/Api20230131/OperationListResult.TypeConverter.cs index fa7e523ab178..da3cfe9b128b 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/OperationListResult.TypeConverter.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/OperationListResult.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131 { using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperationListResult ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IOperationListResult ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperationListResult).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IOperationListResult).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/OperationListResult.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/OperationListResult.cs similarity index 96% rename from src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/OperationListResult.cs rename to src/ManagedServiceIdentity/generated/api/Models/Api20230131/OperationListResult.cs index 68b7648c1260..596637ce13e1 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/OperationListResult.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/OperationListResult.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131 { using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; /// A list of operations supported by Microsoft.ManagedIdentity Resource Provider. public partial class OperationListResult : - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperationListResult, - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperationListResultInternal + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IOperationListResult, + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IOperationListResultInternal { /// Backing field for property. diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/OperationListResult.json.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/OperationListResult.json.cs similarity index 96% rename from src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/OperationListResult.json.cs rename to src/ManagedServiceIdentity/generated/api/Models/Api20230131/OperationListResult.json.cs index 0aa5cd46a120..1e0310206d4e 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/OperationListResult.json.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/OperationListResult.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131 { using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class OperationListResult partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperationListResult. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IOperationListResult. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperationListResult. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IOperationListResult. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperationListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IOperationListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json ? new OperationListResult(json) : null; } diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20230131/SystemAssignedIdentity.PowerShell.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/SystemAssignedIdentity.PowerShell.cs new file mode 100644 index 000000000000..9702fb04a829 --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/SystemAssignedIdentity.PowerShell.cs @@ -0,0 +1,294 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131 +{ + using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; + + /// Describes a system assigned identity resource. + [System.ComponentModel.TypeConverter(typeof(SystemAssignedIdentityTypeConverter))] + public partial class SystemAssignedIdentity + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior + /// + /// /// instance serialized to a string, normally it is a Json + /// /// set returnNow to true if you provide a customized OverrideToString function + + partial void OverrideToString(ref string stringResult, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentity DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new SystemAssignedIdentity(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentity DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new SystemAssignedIdentity(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentity FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal SystemAssignedIdentity(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Property")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentityInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentityInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.SystemAssignedIdentityPropertiesTypeConverter.ConvertFrom); + } + if (content.Contains("Location")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentityInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentityInternal)this).Location, global::System.Convert.ToString); + } + if (content.Contains("Tag")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentityInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentityInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.SystemAssignedIdentityTagsTypeConverter.ConvertFrom); + } + if (content.Contains("SystemDataCreatedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemDataCreatedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemData")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.SystemDataTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Type, global::System.Convert.ToString); + } + if (content.Contains("TenantId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentityInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentityInternal)this).TenantId, global::System.Convert.ToString); + } + if (content.Contains("PrincipalId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentityInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentityInternal)this).PrincipalId, global::System.Convert.ToString); + } + if (content.Contains("ClientId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentityInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentityInternal)this).ClientId, global::System.Convert.ToString); + } + if (content.Contains("ClientSecretUrl")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentityInternal)this).ClientSecretUrl = (string) content.GetValueForProperty("ClientSecretUrl",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentityInternal)this).ClientSecretUrl, global::System.Convert.ToString); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal SystemAssignedIdentity(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Property")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentityInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentityInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.SystemAssignedIdentityPropertiesTypeConverter.ConvertFrom); + } + if (content.Contains("Location")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentityInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentityInternal)this).Location, global::System.Convert.ToString); + } + if (content.Contains("Tag")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentityInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentityInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.SystemAssignedIdentityTagsTypeConverter.ConvertFrom); + } + if (content.Contains("SystemDataCreatedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemDataCreatedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemData")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.SystemDataTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Type, global::System.Convert.ToString); + } + if (content.Contains("TenantId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentityInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentityInternal)this).TenantId, global::System.Convert.ToString); + } + if (content.Contains("PrincipalId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentityInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentityInternal)this).PrincipalId, global::System.Convert.ToString); + } + if (content.Contains("ClientId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentityInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentityInternal)this).ClientId, global::System.Convert.ToString); + } + if (content.Contains("ClientSecretUrl")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentityInternal)this).ClientSecretUrl = (string) content.GetValueForProperty("ClientSecretUrl",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentityInternal)this).ClientSecretUrl, global::System.Convert.ToString); + } + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.SerializationMode.IncludeAll)?.ToString(); + + public override string ToString() + { + var returnNow = false; + var result = global::System.String.Empty; + OverrideToString(ref result, ref returnNow); + if (returnNow) + { + return result; + } + return ToJsonString(); + } + } + /// Describes a system assigned identity resource. + [System.ComponentModel.TypeConverter(typeof(SystemAssignedIdentityTypeConverter))] + public partial interface ISystemAssignedIdentity + + { + + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/SystemAssignedIdentity.TypeConverter.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/SystemAssignedIdentity.TypeConverter.cs similarity index 97% rename from src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/SystemAssignedIdentity.TypeConverter.cs rename to src/ManagedServiceIdentity/generated/api/Models/Api20230131/SystemAssignedIdentity.TypeConverter.cs index 83bfd7a20d00..8054bf254818 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/SystemAssignedIdentity.TypeConverter.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/SystemAssignedIdentity.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131 { using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentity ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentity ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentity).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentity).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20230131/SystemAssignedIdentity.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/SystemAssignedIdentity.cs new file mode 100644 index 000000000000..b0e9d7140dd9 --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/SystemAssignedIdentity.cs @@ -0,0 +1,241 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; + + /// Describes a system assigned identity resource. + public partial class SystemAssignedIdentity : + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentity, + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentityInternal, + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IValidates + { + /// + /// Backing field for Inherited model + /// + private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResource __resource = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.Resource(); + + /// + /// The id of the app associated with the identity. This is a random generated UUID by MSI. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inlined)] + public string ClientId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityPropertiesInternal)Property).ClientId; } + + /// + /// The ManagedServiceIdentity DataPlane URL that can be queried to obtain the identity credentials. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inlined)] + public string ClientSecretUrl { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityPropertiesInternal)Property).ClientSecretUrl; } + + /// + /// Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" + /// + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).Id; } + + /// Backing field for property. + private string _location; + + /// The geo-location where the resource lives + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Owned)] + public string Location { get => this._location; set => this._location = value; } + + /// Internal Acessors for ClientId + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentityInternal.ClientId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityPropertiesInternal)Property).ClientId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityPropertiesInternal)Property).ClientId = value; } + + /// Internal Acessors for ClientSecretUrl + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentityInternal.ClientSecretUrl { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityPropertiesInternal)Property).ClientSecretUrl; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityPropertiesInternal)Property).ClientSecretUrl = value; } + + /// Internal Acessors for PrincipalId + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentityInternal.PrincipalId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityPropertiesInternal)Property).PrincipalId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityPropertiesInternal)Property).PrincipalId = value; } + + /// Internal Acessors for Property + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityProperties Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentityInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.SystemAssignedIdentityProperties()); set { {_property = value;} } } + + /// Internal Acessors for TenantId + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentityInternal.TenantId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityPropertiesInternal)Property).TenantId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityPropertiesInternal)Property).TenantId = value; } + + /// Internal Acessors for Id + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).Id = value; } + + /// Internal Acessors for Name + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).Name = value; } + + /// Internal Acessors for SystemData + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemData Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal.SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemData; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemData = value; } + + /// Internal Acessors for Type + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).Type = value; } + + /// The name of the resource + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).Name; } + + /// The id of the service principal object associated with the created identity. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inlined)] + public string PrincipalId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityPropertiesInternal)Property).PrincipalId; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityProperties _property; + + /// The properties associated with the identity. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Owned)] + internal Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.SystemAssignedIdentityProperties()); } + + /// Gets the resource group name + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Owned)] + public string ResourceGroupName { get => (new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(this.Id).Success ? new global::System.Text.RegularExpressions.Regex("^/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(this.Id).Groups["resourceGroupName"].Value : null); } + + /// + /// Azure Resource Manager metadata containing createdBy and modifiedBy information. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemData SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemData; } + + /// The timestamp of resource creation (UTC). + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public global::System.DateTime? SystemDataCreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataCreatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataCreatedAt = value ?? default(global::System.DateTime); } + + /// The identity that created the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public string SystemDataCreatedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataCreatedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataCreatedBy = value ?? null; } + + /// The type of identity that created the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType? SystemDataCreatedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataCreatedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataCreatedByType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType)""); } + + /// The timestamp of resource last modification (UTC) + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public global::System.DateTime? SystemDataLastModifiedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedAt = value ?? default(global::System.DateTime); } + + /// The identity that last modified the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public string SystemDataLastModifiedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedBy = value ?? null; } + + /// The type of identity that last modified the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType? SystemDataLastModifiedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedByType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType)""); } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityTags _tag; + + /// Resource tags + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityTags Tag { get => (this._tag = this._tag ?? new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.SystemAssignedIdentityTags()); set => this._tag = value; } + + /// The id of the tenant which the identity belongs to. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inlined)] + public string TenantId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityPropertiesInternal)Property).TenantId; } + + /// + /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" + /// + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).Type; } + + /// Creates an new instance. + public SystemAssignedIdentity() + { + + } + + /// Validates that this object meets the validation criteria. + /// an instance that will receive validation + /// events. + /// + /// A that will be complete when validation is completed. + /// + public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener) + { + await eventListener.AssertNotNull(nameof(__resource), __resource); + await eventListener.AssertObjectIsValid(nameof(__resource), __resource); + } + } + /// Describes a system assigned identity resource. + public partial interface ISystemAssignedIdentity : + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IJsonSerializable, + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResource + { + /// + /// The id of the app associated with the identity. This is a random generated UUID by MSI. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The id of the app associated with the identity. This is a random generated UUID by MSI.", + SerializedName = @"clientId", + PossibleTypes = new [] { typeof(string) })] + string ClientId { get; } + /// + /// The ManagedServiceIdentity DataPlane URL that can be queried to obtain the identity credentials. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @" The ManagedServiceIdentity DataPlane URL that can be queried to obtain the identity credentials.", + SerializedName = @"clientSecretUrl", + PossibleTypes = new [] { typeof(string) })] + string ClientSecretUrl { get; } + /// The geo-location where the resource lives + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The geo-location where the resource lives", + SerializedName = @"location", + PossibleTypes = new [] { typeof(string) })] + string Location { get; set; } + /// The id of the service principal object associated with the created identity. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The id of the service principal object associated with the created identity.", + SerializedName = @"principalId", + PossibleTypes = new [] { typeof(string) })] + string PrincipalId { get; } + /// Resource tags + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Resource tags", + SerializedName = @"tags", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityTags) })] + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityTags Tag { get; set; } + /// The id of the tenant which the identity belongs to. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The id of the tenant which the identity belongs to.", + SerializedName = @"tenantId", + PossibleTypes = new [] { typeof(string) })] + string TenantId { get; } + + } + /// Describes a system assigned identity resource. + internal partial interface ISystemAssignedIdentityInternal : + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal + { + /// + /// The id of the app associated with the identity. This is a random generated UUID by MSI. + /// + string ClientId { get; set; } + /// + /// The ManagedServiceIdentity DataPlane URL that can be queried to obtain the identity credentials. + /// + string ClientSecretUrl { get; set; } + /// The geo-location where the resource lives + string Location { get; set; } + /// The id of the service principal object associated with the created identity. + string PrincipalId { get; set; } + /// The properties associated with the identity. + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityProperties Property { get; set; } + /// Resource tags + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentityTags Tag { get; set; } + /// The id of the tenant which the identity belongs to. + string TenantId { get; set; } + + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/SystemAssignedIdentity.json.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/SystemAssignedIdentity.json.cs similarity index 95% rename from src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/SystemAssignedIdentity.json.cs rename to src/ManagedServiceIdentity/generated/api/Models/Api20230131/SystemAssignedIdentity.json.cs index 8566b1592aae..ab3f0ac880af 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/SystemAssignedIdentity.json.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/SystemAssignedIdentity.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131 { using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class SystemAssignedIdentity partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentity. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentity. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentity. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentity. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentity FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentity FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json ? new SystemAssignedIdentity(json) : null; } @@ -77,7 +77,7 @@ internal SystemAssignedIdentity(Microsoft.Azure.PowerShell.Cmdlets.ManagedServic { return; } - __resource = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.Resource(json); + __resource = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.Resource(json); {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.SystemAssignedIdentityProperties.FromJson(__jsonProperties) : Property;} {_location = If( json?.PropertyT("location"), out var __jsonLocation) ? (string)__jsonLocation : (string)Location;} {_tag = If( json?.PropertyT("tags"), out var __jsonTags) ? Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.SystemAssignedIdentityTags.FromJson(__jsonTags) : Tag;} diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/UserAssignedIdentitiesListResult.PowerShell.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/UserAssignedIdentitiesListResult.PowerShell.cs similarity index 73% rename from src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/UserAssignedIdentitiesListResult.PowerShell.cs rename to src/ManagedServiceIdentity/generated/api/Models/Api20230131/UserAssignedIdentitiesListResult.PowerShell.cs index 55108ac96315..7f2316a0dfb4 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/UserAssignedIdentitiesListResult.PowerShell.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/UserAssignedIdentitiesListResult.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131 { using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; @@ -63,29 +63,29 @@ public partial class UserAssignedIdentitiesListResult partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentitiesListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IUserAssignedIdentitiesListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new UserAssignedIdentitiesListResult(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentitiesListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IUserAssignedIdentitiesListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new UserAssignedIdentitiesListResult(content); } @@ -95,7 +95,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.A /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentitiesListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IUserAssignedIdentitiesListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. @@ -115,7 +115,7 @@ public override string ToString() } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -130,17 +130,17 @@ internal UserAssignedIdentitiesListResult(global::System.Collections.IDictionary // actually deserialize if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentitiesListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentitiesListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IdentityTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IUserAssignedIdentitiesListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IUserAssignedIdentitiesListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IdentityTypeConverter.ConvertFrom)); } if (content.Contains("NextLink")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentitiesListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentitiesListResultInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IUserAssignedIdentitiesListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IUserAssignedIdentitiesListResultInternal)this).NextLink, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -155,11 +155,11 @@ internal UserAssignedIdentitiesListResult(global::System.Management.Automation.P // actually deserialize if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentitiesListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentitiesListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IdentityTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IUserAssignedIdentitiesListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IUserAssignedIdentitiesListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IdentityTypeConverter.ConvertFrom)); } if (content.Contains("NextLink")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentitiesListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentitiesListResultInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IUserAssignedIdentitiesListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IUserAssignedIdentitiesListResultInternal)this).NextLink, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/UserAssignedIdentitiesListResult.TypeConverter.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/UserAssignedIdentitiesListResult.TypeConverter.cs similarity index 96% rename from src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/UserAssignedIdentitiesListResult.TypeConverter.cs rename to src/ManagedServiceIdentity/generated/api/Models/Api20230131/UserAssignedIdentitiesListResult.TypeConverter.cs index 6c7d0c055021..c89da3d474d7 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/UserAssignedIdentitiesListResult.TypeConverter.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/UserAssignedIdentitiesListResult.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131 { using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; @@ -107,14 +107,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentitiesListResult ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IUserAssignedIdentitiesListResult ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentitiesListResult).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IUserAssignedIdentitiesListResult).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/UserAssignedIdentitiesListResult.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/UserAssignedIdentitiesListResult.cs similarity index 86% rename from src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/UserAssignedIdentitiesListResult.cs rename to src/ManagedServiceIdentity/generated/api/Models/Api20230131/UserAssignedIdentitiesListResult.cs index 608c1830f486..8bedfddebcf7 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/UserAssignedIdentitiesListResult.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/UserAssignedIdentitiesListResult.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131 { using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; /// Values returned by the List operation. public partial class UserAssignedIdentitiesListResult : - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentitiesListResult, - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentitiesListResultInternal + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IUserAssignedIdentitiesListResult, + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IUserAssignedIdentitiesListResultInternal { /// Backing field for property. @@ -21,11 +21,11 @@ public partial class UserAssignedIdentitiesListResult : public string NextLink { get => this._nextLink; set => this._nextLink = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity[] _value; + private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity[] _value; /// The collection of userAssignedIdentities returned by the listing operation. [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity[] Value { get => this._value; set => this._value = value; } + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity[] Value { get => this._value; set => this._value = value; } /// Creates an new instance. public UserAssignedIdentitiesListResult() @@ -51,8 +51,8 @@ public partial interface IUserAssignedIdentitiesListResult : ReadOnly = false, Description = @"The collection of userAssignedIdentities returned by the listing operation.", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity) })] - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity[] Value { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity) })] + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity[] Value { get; set; } } /// Values returned by the List operation. @@ -62,7 +62,7 @@ internal partial interface IUserAssignedIdentitiesListResultInternal /// The url to get the next page of results, if any. string NextLink { get; set; } /// The collection of userAssignedIdentities returned by the listing operation. - Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity[] Value { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity[] Value { get; set; } } } \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/UserAssignedIdentitiesListResult.json.cs b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/UserAssignedIdentitiesListResult.json.cs similarity index 91% rename from src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/UserAssignedIdentitiesListResult.json.cs rename to src/ManagedServiceIdentity/generated/api/Models/Api20230131/UserAssignedIdentitiesListResult.json.cs index c08b8c3ad44c..072200f40b2a 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api20220131Preview/UserAssignedIdentitiesListResult.json.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api20230131/UserAssignedIdentitiesListResult.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131 { using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class UserAssignedIdentitiesListResult partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentitiesListResult. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IUserAssignedIdentitiesListResult. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentitiesListResult. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IUserAssignedIdentitiesListResult. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentitiesListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IUserAssignedIdentitiesListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json ? new UserAssignedIdentitiesListResult(json) : null; } @@ -110,7 +110,7 @@ internal UserAssignedIdentitiesListResult(Microsoft.Azure.PowerShell.Cmdlets.Man { return; } - {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity) (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.Identity.FromJson(__u) )) ))() : null : Value;} + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity) (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.Identity.FromJson(__u) )) ))() : null : Value;} {_nextLink = If( json?.PropertyT("nextLink"), out var __jsonNextLink) ? (string)__jsonNextLink : (string)NextLink;} AfterFromJson(json); } diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api40/ProxyResourceAutoGenerated.PowerShell.cs b/src/ManagedServiceIdentity/generated/api/Models/Api40/ProxyResourceAutoGenerated.PowerShell.cs new file mode 100644 index 000000000000..41cf2d3259ff --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api40/ProxyResourceAutoGenerated.PowerShell.cs @@ -0,0 +1,240 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40 +{ + using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; + + /// + /// The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location + /// + [System.ComponentModel.TypeConverter(typeof(ProxyResourceAutoGeneratedTypeConverter))] + public partial class ProxyResourceAutoGenerated + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior + /// + /// /// instance serialized to a string, normally it is a Json + /// /// set returnNow to true if you provide a customized OverrideToString function + + partial void OverrideToString(ref string stringResult, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IProxyResourceAutoGenerated DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new ProxyResourceAutoGenerated(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IProxyResourceAutoGenerated DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new ProxyResourceAutoGenerated(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IProxyResourceAutoGenerated FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal ProxyResourceAutoGenerated(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("SystemDataCreatedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemDataCreatedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemData")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.SystemDataTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Type, global::System.Convert.ToString); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal ProxyResourceAutoGenerated(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("SystemDataCreatedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemDataCreatedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemData")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.SystemDataTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Type, global::System.Convert.ToString); + } + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.SerializationMode.IncludeAll)?.ToString(); + + public override string ToString() + { + var returnNow = false; + var result = global::System.String.Empty; + OverrideToString(ref result, ref returnNow); + if (returnNow) + { + return result; + } + return ToJsonString(); + } + } + /// The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location + [System.ComponentModel.TypeConverter(typeof(ProxyResourceAutoGeneratedTypeConverter))] + public partial interface IProxyResourceAutoGenerated + + { + + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api40/ProxyResourceAutoGenerated.TypeConverter.cs b/src/ManagedServiceIdentity/generated/api/Models/Api40/ProxyResourceAutoGenerated.TypeConverter.cs new file mode 100644 index 000000000000..558d3181555a --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api40/ProxyResourceAutoGenerated.TypeConverter.cs @@ -0,0 +1,147 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40 +{ + using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class ProxyResourceAutoGeneratedTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// type. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the + /// parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter into an instance of + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IProxyResourceAutoGenerated ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IProxyResourceAutoGenerated).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return ProxyResourceAutoGenerated.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return ProxyResourceAutoGenerated.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return ProxyResourceAutoGenerated.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api40/ProxyResourceAutoGenerated.cs b/src/ManagedServiceIdentity/generated/api/Models/Api40/ProxyResourceAutoGenerated.cs new file mode 100644 index 000000000000..b284b8ae4839 --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api40/ProxyResourceAutoGenerated.cs @@ -0,0 +1,113 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; + + /// + /// The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location + /// + public partial class ProxyResourceAutoGenerated : + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IProxyResourceAutoGenerated, + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IProxyResourceAutoGeneratedInternal, + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IValidates + { + /// + /// Backing field for Inherited model + /// + private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResource __resource = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.Resource(); + + /// + /// Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" + /// + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).Id; } + + /// Internal Acessors for Id + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).Id = value; } + + /// Internal Acessors for Name + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).Name = value; } + + /// Internal Acessors for SystemData + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemData Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal.SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemData; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemData = value; } + + /// Internal Acessors for Type + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).Type = value; } + + /// The name of the resource + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).Name; } + + /// + /// Azure Resource Manager metadata containing createdBy and modifiedBy information. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemData SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemData; } + + /// The timestamp of resource creation (UTC). + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public global::System.DateTime? SystemDataCreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataCreatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataCreatedAt = value ?? default(global::System.DateTime); } + + /// The identity that created the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public string SystemDataCreatedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataCreatedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataCreatedBy = value ?? null; } + + /// The type of identity that created the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType? SystemDataCreatedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataCreatedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataCreatedByType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType)""); } + + /// The timestamp of resource last modification (UTC) + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public global::System.DateTime? SystemDataLastModifiedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedAt = value ?? default(global::System.DateTime); } + + /// The identity that last modified the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public string SystemDataLastModifiedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedBy = value ?? null; } + + /// The type of identity that last modified the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType? SystemDataLastModifiedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedByType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType)""); } + + /// + /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" + /// + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).Type; } + + /// Creates an new instance. + public ProxyResourceAutoGenerated() + { + + } + + /// Validates that this object meets the validation criteria. + /// an instance that will receive validation + /// events. + /// + /// A that will be complete when validation is completed. + /// + public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener) + { + await eventListener.AssertNotNull(nameof(__resource), __resource); + await eventListener.AssertObjectIsValid(nameof(__resource), __resource); + } + } + /// The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location + public partial interface IProxyResourceAutoGenerated : + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IJsonSerializable, + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResource + { + + } + /// The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location + internal partial interface IProxyResourceAutoGeneratedInternal : + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal + { + + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api40/ProxyResourceAutoGenerated.json.cs b/src/ManagedServiceIdentity/generated/api/Models/Api40/ProxyResourceAutoGenerated.json.cs new file mode 100644 index 000000000000..fe20397afa8a --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api40/ProxyResourceAutoGenerated.json.cs @@ -0,0 +1,110 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; + + /// + /// The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location + /// + public partial class ProxyResourceAutoGenerated + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the + /// output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IProxyResourceAutoGenerated. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IProxyResourceAutoGenerated. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IProxyResourceAutoGenerated FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json ? new ProxyResourceAutoGenerated(json) : null; + } + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject instance to deserialize from. + internal ProxyResourceAutoGenerated(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + __resource = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.Resource(json); + AfterFromJson(json); + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + __resource?.ToJson(container, serializationMode); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api40/Resource.PowerShell.cs b/src/ManagedServiceIdentity/generated/api/Models/Api40/Resource.PowerShell.cs new file mode 100644 index 000000000000..89207ef88c53 --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api40/Resource.PowerShell.cs @@ -0,0 +1,238 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40 +{ + using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; + + /// + /// Common fields that are returned in the response for all Azure Resource Manager resources + /// + [System.ComponentModel.TypeConverter(typeof(ResourceTypeConverter))] + public partial class Resource + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior + /// + /// /// instance serialized to a string, normally it is a Json + /// /// set returnNow to true if you provide a customized OverrideToString function + + partial void OverrideToString(ref string stringResult, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResource DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new Resource(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResource DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new Resource(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResource FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal Resource(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("SystemData")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.SystemDataTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Type, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemDataCreatedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal Resource(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("SystemData")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.SystemDataTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Type, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemDataCreatedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.SerializationMode.IncludeAll)?.ToString(); + + public override string ToString() + { + var returnNow = false; + var result = global::System.String.Empty; + OverrideToString(ref result, ref returnNow); + if (returnNow) + { + return result; + } + return ToJsonString(); + } + } + /// Common fields that are returned in the response for all Azure Resource Manager resources + [System.ComponentModel.TypeConverter(typeof(ResourceTypeConverter))] + public partial interface IResource + + { + + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api10/Resource.TypeConverter.cs b/src/ManagedServiceIdentity/generated/api/Models/Api40/Resource.TypeConverter.cs similarity index 98% rename from src/ManagedServiceIdentity/generated/api/Models/Api10/Resource.TypeConverter.cs rename to src/ManagedServiceIdentity/generated/api/Models/Api40/Resource.TypeConverter.cs index fe9936e26287..c0a679c1850d 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api10/Resource.TypeConverter.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api40/Resource.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10 +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40 { using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; @@ -105,14 +105,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResource ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResource ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResource).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResource).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api40/Resource.cs b/src/ManagedServiceIdentity/generated/api/Models/Api40/Resource.cs new file mode 100644 index 000000000000..dc4c499a4268 --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api40/Resource.cs @@ -0,0 +1,208 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; + + /// + /// Common fields that are returned in the response for all Azure Resource Manager resources + /// + public partial class Resource : + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResource, + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal + { + + /// Backing field for property. + private string _id; + + /// + /// Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" + /// + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Owned)] + public string Id { get => this._id; } + + /// Internal Acessors for Id + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal.Id { get => this._id; set { {_id = value;} } } + + /// Internal Acessors for Name + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal.Name { get => this._name; set { {_name = value;} } } + + /// Internal Acessors for SystemData + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemData Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal.SystemData { get => (this._systemData = this._systemData ?? new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.SystemData()); set { {_systemData = value;} } } + + /// Internal Acessors for Type + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal.Type { get => this._type; set { {_type = value;} } } + + /// Backing field for property. + private string _name; + + /// The name of the resource + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Owned)] + public string Name { get => this._name; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemData _systemData; + + /// + /// Azure Resource Manager metadata containing createdBy and modifiedBy information. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Owned)] + internal Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemData SystemData { get => (this._systemData = this._systemData ?? new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.SystemData()); } + + /// The timestamp of resource creation (UTC). + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inlined)] + public global::System.DateTime? SystemDataCreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemDataInternal)SystemData).CreatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemDataInternal)SystemData).CreatedAt = value ?? default(global::System.DateTime); } + + /// The identity that created the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inlined)] + public string SystemDataCreatedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemDataInternal)SystemData).CreatedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemDataInternal)SystemData).CreatedBy = value ?? null; } + + /// The type of identity that created the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType? SystemDataCreatedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemDataInternal)SystemData).CreatedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemDataInternal)SystemData).CreatedByType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType)""); } + + /// The timestamp of resource last modification (UTC) + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inlined)] + public global::System.DateTime? SystemDataLastModifiedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemDataInternal)SystemData).LastModifiedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemDataInternal)SystemData).LastModifiedAt = value ?? default(global::System.DateTime); } + + /// The identity that last modified the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inlined)] + public string SystemDataLastModifiedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemDataInternal)SystemData).LastModifiedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemDataInternal)SystemData).LastModifiedBy = value ?? null; } + + /// The type of identity that last modified the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType? SystemDataLastModifiedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemDataInternal)SystemData).LastModifiedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemDataInternal)SystemData).LastModifiedByType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType)""); } + + /// Backing field for property. + private string _type; + + /// + /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" + /// + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Owned)] + public string Type { get => this._type; } + + /// Creates an new instance. + public Resource() + { + + } + } + /// Common fields that are returned in the response for all Azure Resource Manager resources + public partial interface IResource : + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IJsonSerializable + { + /// + /// Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" + /// + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Fully qualified resource ID for the resource. E.g. ""/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}""", + SerializedName = @"id", + PossibleTypes = new [] { typeof(string) })] + string Id { get; } + /// The name of the resource + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The name of the resource", + SerializedName = @"name", + PossibleTypes = new [] { typeof(string) })] + string Name { get; } + /// The timestamp of resource creation (UTC). + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The timestamp of resource creation (UTC).", + SerializedName = @"createdAt", + PossibleTypes = new [] { typeof(global::System.DateTime) })] + global::System.DateTime? SystemDataCreatedAt { get; set; } + /// The identity that created the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The identity that created the resource.", + SerializedName = @"createdBy", + PossibleTypes = new [] { typeof(string) })] + string SystemDataCreatedBy { get; set; } + /// The type of identity that created the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The type of identity that created the resource.", + SerializedName = @"createdByType", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType) })] + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType? SystemDataCreatedByType { get; set; } + /// The timestamp of resource last modification (UTC) + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The timestamp of resource last modification (UTC)", + SerializedName = @"lastModifiedAt", + PossibleTypes = new [] { typeof(global::System.DateTime) })] + global::System.DateTime? SystemDataLastModifiedAt { get; set; } + /// The identity that last modified the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The identity that last modified the resource.", + SerializedName = @"lastModifiedBy", + PossibleTypes = new [] { typeof(string) })] + string SystemDataLastModifiedBy { get; set; } + /// The type of identity that last modified the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The type of identity that last modified the resource.", + SerializedName = @"lastModifiedByType", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType) })] + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType? SystemDataLastModifiedByType { get; set; } + /// + /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" + /// + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The type of the resource. E.g. ""Microsoft.Compute/virtualMachines"" or ""Microsoft.Storage/storageAccounts""", + SerializedName = @"type", + PossibleTypes = new [] { typeof(string) })] + string Type { get; } + + } + /// Common fields that are returned in the response for all Azure Resource Manager resources + internal partial interface IResourceInternal + + { + /// + /// Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" + /// + string Id { get; set; } + /// The name of the resource + string Name { get; set; } + /// + /// Azure Resource Manager metadata containing createdBy and modifiedBy information. + /// + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemData SystemData { get; set; } + /// The timestamp of resource creation (UTC). + global::System.DateTime? SystemDataCreatedAt { get; set; } + /// The identity that created the resource. + string SystemDataCreatedBy { get; set; } + /// The type of identity that created the resource. + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType? SystemDataCreatedByType { get; set; } + /// The timestamp of resource last modification (UTC) + global::System.DateTime? SystemDataLastModifiedAt { get; set; } + /// The identity that last modified the resource. + string SystemDataLastModifiedBy { get; set; } + /// The type of identity that last modified the resource. + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType? SystemDataLastModifiedByType { get; set; } + /// + /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" + /// + string Type { get; set; } + + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api10/Resource.json.cs b/src/ManagedServiceIdentity/generated/api/Models/Api40/Resource.json.cs similarity index 91% rename from src/ManagedServiceIdentity/generated/api/Models/Api10/Resource.json.cs rename to src/ManagedServiceIdentity/generated/api/Models/Api40/Resource.json.cs index 427e2e43c0c7..27db703842fd 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api10/Resource.json.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api40/Resource.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10 +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40 { using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; @@ -56,13 +56,13 @@ public partial class Resource partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResource. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResource. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResource. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResource. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.IResource FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResource FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json ? new Resource(json) : null; } @@ -79,6 +79,7 @@ internal Resource(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runt { return; } + {_systemData = If( json?.PropertyT("systemData"), out var __jsonSystemData) ? Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.SystemData.FromJson(__jsonSystemData) : SystemData;} {_id = If( json?.PropertyT("id"), out var __jsonId) ? (string)__jsonId : (string)Id;} {_name = If( json?.PropertyT("name"), out var __jsonName) ? (string)__jsonName : (string)Name;} {_type = If( json?.PropertyT("type"), out var __jsonType) ? (string)__jsonType : (string)Type;} @@ -105,6 +106,10 @@ public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.Js return container; } if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != this._systemData ? (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode) this._systemData.ToJson(null,serializationMode) : null, "systemData" ,container.Add ); + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.SerializationMode.IncludeReadOnly)) { AddIf( null != (((object)this._id)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonString(this._id.ToString()) : null, "id" ,container.Add ); } diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api40/SystemData.PowerShell.cs b/src/ManagedServiceIdentity/generated/api/Models/Api40/SystemData.PowerShell.cs new file mode 100644 index 000000000000..22ab1a72b829 --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api40/SystemData.PowerShell.cs @@ -0,0 +1,204 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40 +{ + using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; + + /// Metadata pertaining to creation and last modification of the resource. + [System.ComponentModel.TypeConverter(typeof(SystemDataTypeConverter))] + public partial class SystemData + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior + /// + /// /// instance serialized to a string, normally it is a Json + /// /// set returnNow to true if you provide a customized OverrideToString function + + partial void OverrideToString(ref string stringResult, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemData DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new SystemData(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemData DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new SystemData(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemData FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal SystemData(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("CreatedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemDataInternal)this).CreatedBy = (string) content.GetValueForProperty("CreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemDataInternal)this).CreatedBy, global::System.Convert.ToString); + } + if (content.Contains("CreatedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemDataInternal)this).CreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType?) content.GetValueForProperty("CreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemDataInternal)this).CreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType.CreateFrom); + } + if (content.Contains("CreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemDataInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemDataInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("LastModifiedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemDataInternal)this).LastModifiedBy = (string) content.GetValueForProperty("LastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemDataInternal)this).LastModifiedBy, global::System.Convert.ToString); + } + if (content.Contains("LastModifiedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemDataInternal)this).LastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType?) content.GetValueForProperty("LastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemDataInternal)this).LastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType.CreateFrom); + } + if (content.Contains("LastModifiedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemDataInternal)this).LastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("LastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemDataInternal)this).LastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal SystemData(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("CreatedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemDataInternal)this).CreatedBy = (string) content.GetValueForProperty("CreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemDataInternal)this).CreatedBy, global::System.Convert.ToString); + } + if (content.Contains("CreatedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemDataInternal)this).CreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType?) content.GetValueForProperty("CreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemDataInternal)this).CreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType.CreateFrom); + } + if (content.Contains("CreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemDataInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemDataInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("LastModifiedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemDataInternal)this).LastModifiedBy = (string) content.GetValueForProperty("LastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemDataInternal)this).LastModifiedBy, global::System.Convert.ToString); + } + if (content.Contains("LastModifiedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemDataInternal)this).LastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType?) content.GetValueForProperty("LastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemDataInternal)this).LastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType.CreateFrom); + } + if (content.Contains("LastModifiedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemDataInternal)this).LastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("LastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemDataInternal)this).LastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.SerializationMode.IncludeAll)?.ToString(); + + public override string ToString() + { + var returnNow = false; + var result = global::System.String.Empty; + OverrideToString(ref result, ref returnNow); + if (returnNow) + { + return result; + } + return ToJsonString(); + } + } + /// Metadata pertaining to creation and last modification of the resource. + [System.ComponentModel.TypeConverter(typeof(SystemDataTypeConverter))] + public partial interface ISystemData + + { + + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api40/SystemData.TypeConverter.cs b/src/ManagedServiceIdentity/generated/api/Models/Api40/SystemData.TypeConverter.cs new file mode 100644 index 000000000000..1250e19fa2a3 --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api40/SystemData.TypeConverter.cs @@ -0,0 +1,146 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40 +{ + using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class SystemDataTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the type. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the + /// parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter into an instance of + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemData ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemData).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return SystemData.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return SystemData.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return SystemData.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api40/SystemData.cs b/src/ManagedServiceIdentity/generated/api/Models/Api40/SystemData.cs new file mode 100644 index 000000000000..0256f3ea605b --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api40/SystemData.cs @@ -0,0 +1,136 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; + + /// Metadata pertaining to creation and last modification of the resource. + public partial class SystemData : + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemData, + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemDataInternal + { + + /// Backing field for property. + private global::System.DateTime? _createdAt; + + /// The timestamp of resource creation (UTC). + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Owned)] + public global::System.DateTime? CreatedAt { get => this._createdAt; set => this._createdAt = value; } + + /// Backing field for property. + private string _createdBy; + + /// The identity that created the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Owned)] + public string CreatedBy { get => this._createdBy; set => this._createdBy = value; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType? _createdByType; + + /// The type of identity that created the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType? CreatedByType { get => this._createdByType; set => this._createdByType = value; } + + /// Backing field for property. + private global::System.DateTime? _lastModifiedAt; + + /// The timestamp of resource last modification (UTC) + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Owned)] + public global::System.DateTime? LastModifiedAt { get => this._lastModifiedAt; set => this._lastModifiedAt = value; } + + /// Backing field for property. + private string _lastModifiedBy; + + /// The identity that last modified the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Owned)] + public string LastModifiedBy { get => this._lastModifiedBy; set => this._lastModifiedBy = value; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType? _lastModifiedByType; + + /// The type of identity that last modified the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType? LastModifiedByType { get => this._lastModifiedByType; set => this._lastModifiedByType = value; } + + /// Creates an new instance. + public SystemData() + { + + } + } + /// Metadata pertaining to creation and last modification of the resource. + public partial interface ISystemData : + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IJsonSerializable + { + /// The timestamp of resource creation (UTC). + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The timestamp of resource creation (UTC).", + SerializedName = @"createdAt", + PossibleTypes = new [] { typeof(global::System.DateTime) })] + global::System.DateTime? CreatedAt { get; set; } + /// The identity that created the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The identity that created the resource.", + SerializedName = @"createdBy", + PossibleTypes = new [] { typeof(string) })] + string CreatedBy { get; set; } + /// The type of identity that created the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The type of identity that created the resource.", + SerializedName = @"createdByType", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType) })] + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType? CreatedByType { get; set; } + /// The timestamp of resource last modification (UTC) + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The timestamp of resource last modification (UTC)", + SerializedName = @"lastModifiedAt", + PossibleTypes = new [] { typeof(global::System.DateTime) })] + global::System.DateTime? LastModifiedAt { get; set; } + /// The identity that last modified the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The identity that last modified the resource.", + SerializedName = @"lastModifiedBy", + PossibleTypes = new [] { typeof(string) })] + string LastModifiedBy { get; set; } + /// The type of identity that last modified the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The type of identity that last modified the resource.", + SerializedName = @"lastModifiedByType", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType) })] + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType? LastModifiedByType { get; set; } + + } + /// Metadata pertaining to creation and last modification of the resource. + internal partial interface ISystemDataInternal + + { + /// The timestamp of resource creation (UTC). + global::System.DateTime? CreatedAt { get; set; } + /// The identity that created the resource. + string CreatedBy { get; set; } + /// The type of identity that created the resource. + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType? CreatedByType { get; set; } + /// The timestamp of resource last modification (UTC) + global::System.DateTime? LastModifiedAt { get; set; } + /// The identity that last modified the resource. + string LastModifiedBy { get; set; } + /// The type of identity that last modified the resource. + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType? LastModifiedByType { get; set; } + + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api40/SystemData.json.cs b/src/ManagedServiceIdentity/generated/api/Models/Api40/SystemData.json.cs new file mode 100644 index 000000000000..1085b2827533 --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api40/SystemData.json.cs @@ -0,0 +1,118 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; + + /// Metadata pertaining to creation and last modification of the resource. + public partial class SystemData + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the + /// output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemData. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemData. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemData FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json ? new SystemData(json) : null; + } + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject instance to deserialize from. + internal SystemData(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_createdBy = If( json?.PropertyT("createdBy"), out var __jsonCreatedBy) ? (string)__jsonCreatedBy : (string)CreatedBy;} + {_createdByType = If( json?.PropertyT("createdByType"), out var __jsonCreatedByType) ? (string)__jsonCreatedByType : (string)CreatedByType;} + {_createdAt = If( json?.PropertyT("createdAt"), out var __jsonCreatedAt) ? global::System.DateTime.TryParse((string)__jsonCreatedAt, global::System.Globalization.CultureInfo.InvariantCulture, global::System.Globalization.DateTimeStyles.AdjustToUniversal, out var __jsonCreatedAtValue) ? __jsonCreatedAtValue : CreatedAt : CreatedAt;} + {_lastModifiedBy = If( json?.PropertyT("lastModifiedBy"), out var __jsonLastModifiedBy) ? (string)__jsonLastModifiedBy : (string)LastModifiedBy;} + {_lastModifiedByType = If( json?.PropertyT("lastModifiedByType"), out var __jsonLastModifiedByType) ? (string)__jsonLastModifiedByType : (string)LastModifiedByType;} + {_lastModifiedAt = If( json?.PropertyT("lastModifiedAt"), out var __jsonLastModifiedAt) ? global::System.DateTime.TryParse((string)__jsonLastModifiedAt, global::System.Globalization.CultureInfo.InvariantCulture, global::System.Globalization.DateTimeStyles.AdjustToUniversal, out var __jsonLastModifiedAtValue) ? __jsonLastModifiedAtValue : LastModifiedAt : LastModifiedAt;} + AfterFromJson(json); + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + AddIf( null != (((object)this._createdBy)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonString(this._createdBy.ToString()) : null, "createdBy" ,container.Add ); + AddIf( null != (((object)this._createdByType)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonString(this._createdByType.ToString()) : null, "createdByType" ,container.Add ); + AddIf( null != this._createdAt ? (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonString(this._createdAt?.ToString(@"yyyy'-'MM'-'dd'T'HH':'mm':'ss.fffffffK",global::System.Globalization.CultureInfo.InvariantCulture)) : null, "createdAt" ,container.Add ); + AddIf( null != (((object)this._lastModifiedBy)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonString(this._lastModifiedBy.ToString()) : null, "lastModifiedBy" ,container.Add ); + AddIf( null != (((object)this._lastModifiedByType)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonString(this._lastModifiedByType.ToString()) : null, "lastModifiedByType" ,container.Add ); + AddIf( null != this._lastModifiedAt ? (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonString(this._lastModifiedAt?.ToString(@"yyyy'-'MM'-'dd'T'HH':'mm':'ss.fffffffK",global::System.Globalization.CultureInfo.InvariantCulture)) : null, "lastModifiedAt" ,container.Add ); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api40/TrackedResource.PowerShell.cs b/src/ManagedServiceIdentity/generated/api/Models/Api40/TrackedResource.PowerShell.cs new file mode 100644 index 000000000000..6b131f45f991 --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api40/TrackedResource.PowerShell.cs @@ -0,0 +1,254 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40 +{ + using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; + + /// + /// The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location' + /// + [System.ComponentModel.TypeConverter(typeof(TrackedResourceTypeConverter))] + public partial class TrackedResource + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior + /// + /// /// instance serialized to a string, normally it is a Json + /// /// set returnNow to true if you provide a customized OverrideToString function + + partial void OverrideToString(ref string stringResult, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ITrackedResource DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new TrackedResource(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ITrackedResource DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new TrackedResource(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ITrackedResource FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.SerializationMode.IncludeAll)?.ToString(); + + public override string ToString() + { + var returnNow = false; + var result = global::System.String.Empty; + OverrideToString(ref result, ref returnNow); + if (returnNow) + { + return result; + } + return ToJsonString(); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal TrackedResource(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Tag")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ITrackedResourceInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ITrackedResourceInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.TrackedResourceTagsTypeConverter.ConvertFrom); + } + if (content.Contains("Location")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ITrackedResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ITrackedResourceInternal)this).Location, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemDataCreatedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemData")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.SystemDataTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Type, global::System.Convert.ToString); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal TrackedResource(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Tag")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ITrackedResourceInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ITrackedResourceInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.TrackedResourceTagsTypeConverter.ConvertFrom); + } + if (content.Contains("Location")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ITrackedResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ITrackedResourceInternal)this).Location, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemDataCreatedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemData")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.SystemDataTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)this).Type, global::System.Convert.ToString); + } + AfterDeserializePSObject(content); + } + } + /// The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location' + [System.ComponentModel.TypeConverter(typeof(TrackedResourceTypeConverter))] + public partial interface ITrackedResource + + { + + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api10/TrackedResource.TypeConverter.cs b/src/ManagedServiceIdentity/generated/api/Models/Api40/TrackedResource.TypeConverter.cs similarity index 98% rename from src/ManagedServiceIdentity/generated/api/Models/Api10/TrackedResource.TypeConverter.cs rename to src/ManagedServiceIdentity/generated/api/Models/Api40/TrackedResource.TypeConverter.cs index c144ca708eb5..d0c82d72478f 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api10/TrackedResource.TypeConverter.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api40/TrackedResource.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10 +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40 { using Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResource ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ITrackedResource ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResource).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ITrackedResource).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api40/TrackedResource.cs b/src/ManagedServiceIdentity/generated/api/Models/Api40/TrackedResource.cs new file mode 100644 index 000000000000..131ce4b244c5 --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Models/Api40/TrackedResource.cs @@ -0,0 +1,147 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; + + /// + /// The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location' + /// + public partial class TrackedResource : + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ITrackedResource, + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ITrackedResourceInternal, + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IValidates + { + /// + /// Backing field for Inherited model + /// + private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResource __resource = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.Resource(); + + /// + /// Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" + /// + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).Id; } + + /// Backing field for property. + private string _location; + + /// The geo-location where the resource lives + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Owned)] + public string Location { get => this._location; set => this._location = value; } + + /// Internal Acessors for Id + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).Id = value; } + + /// Internal Acessors for Name + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).Name = value; } + + /// Internal Acessors for SystemData + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemData Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal.SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemData; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemData = value; } + + /// Internal Acessors for Type + string Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).Type = value; } + + /// The name of the resource + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).Name; } + + /// + /// Azure Resource Manager metadata containing createdBy and modifiedBy information. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ISystemData SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemData; } + + /// The timestamp of resource creation (UTC). + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public global::System.DateTime? SystemDataCreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataCreatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataCreatedAt = value ?? default(global::System.DateTime); } + + /// The identity that created the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public string SystemDataCreatedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataCreatedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataCreatedBy = value ?? null; } + + /// The type of identity that created the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType? SystemDataCreatedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataCreatedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataCreatedByType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType)""); } + + /// The timestamp of resource last modification (UTC) + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public global::System.DateTime? SystemDataLastModifiedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedAt = value ?? default(global::System.DateTime); } + + /// The identity that last modified the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public string SystemDataLastModifiedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedBy = value ?? null; } + + /// The type of identity that last modified the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType? SystemDataLastModifiedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).SystemDataLastModifiedByType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType)""); } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceTags _tag; + + /// Resource tags. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceTags Tag { get => (this._tag = this._tag ?? new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.TrackedResourceTags()); set => this._tag = value; } + + /// + /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" + /// + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Origin(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.PropertyOrigin.Inherited)] + public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal)__resource).Type; } + + /// Creates an new instance. + public TrackedResource() + { + + } + + /// Validates that this object meets the validation criteria. + /// an instance that will receive validation + /// events. + /// + /// A that will be complete when validation is completed. + /// + public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener eventListener) + { + await eventListener.AssertNotNull(nameof(__resource), __resource); + await eventListener.AssertObjectIsValid(nameof(__resource), __resource); + } + } + /// The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location' + public partial interface ITrackedResource : + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IJsonSerializable, + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResource + { + /// The geo-location where the resource lives + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The geo-location where the resource lives", + SerializedName = @"location", + PossibleTypes = new [] { typeof(string) })] + string Location { get; set; } + /// Resource tags. + [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Resource tags.", + SerializedName = @"tags", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceTags) })] + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceTags Tag { get; set; } + + } + /// The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location' + internal partial interface ITrackedResourceInternal : + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.IResourceInternal + { + /// The geo-location where the resource lives + string Location { get; set; } + /// Resource tags. + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResourceTags Tag { get; set; } + + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Models/Api10/TrackedResource.json.cs b/src/ManagedServiceIdentity/generated/api/Models/Api40/TrackedResource.json.cs similarity index 97% rename from src/ManagedServiceIdentity/generated/api/Models/Api10/TrackedResource.json.cs rename to src/ManagedServiceIdentity/generated/api/Models/Api40/TrackedResource.json.cs index b34f37a9a5e0..80f5af1b44ca 100644 --- a/src/ManagedServiceIdentity/generated/api/Models/Api10/TrackedResource.json.cs +++ b/src/ManagedServiceIdentity/generated/api/Models/Api40/TrackedResource.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10 +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40 { using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; @@ -56,13 +56,13 @@ public partial class TrackedResource partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResource. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ITrackedResource. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResource. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ITrackedResource. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.ITrackedResource FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.ITrackedResource FromJson(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Json.JsonObject json ? new TrackedResource(json) : null; } @@ -105,7 +105,7 @@ internal TrackedResource(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdenti { return; } - __resource = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.Resource(json); + __resource = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api40.Resource(json); {_tag = If( json?.PropertyT("tags"), out var __jsonTags) ? Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api10.TrackedResourceTags.FromJson(__jsonTags) : Tag;} {_location = If( json?.PropertyT("location"), out var __jsonLocation) ? (string)__jsonLocation : (string)Location;} AfterFromJson(json); diff --git a/src/ManagedServiceIdentity/generated/api/Support/CreatedByType.Completer.cs b/src/ManagedServiceIdentity/generated/api/Support/CreatedByType.Completer.cs new file mode 100644 index 000000000000..b5acf3d8769f --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Support/CreatedByType.Completer.cs @@ -0,0 +1,47 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support +{ + + /// The type of identity that created the resource. + [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByTypeTypeConverter))] + public partial struct CreatedByType : + System.Management.Automation.IArgumentCompleter + { + + /// + /// Implementations of this function are called by PowerShell to complete arguments. + /// + /// The name of the command that needs argument completion. + /// The name of the parameter that needs argument completion. + /// The (possibly empty) word being completed. + /// The command ast in case it is needed for completion. + /// This parameter is similar to $PSBoundParameters, except that sometimes PowerShell cannot + /// or will not attempt to evaluate an argument, in which case you may need to use commandAst. + /// + /// A collection of completion results, most like with ResultType set to ParameterValue. + /// + public global::System.Collections.Generic.IEnumerable CompleteArgument(global::System.String commandName, global::System.String parameterName, global::System.String wordToComplete, global::System.Management.Automation.Language.CommandAst commandAst, global::System.Collections.IDictionary fakeBoundParameters) + { + if (global::System.String.IsNullOrEmpty(wordToComplete) || "User".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("'User'", "User", global::System.Management.Automation.CompletionResultType.ParameterValue, "User"); + } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "Application".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("'Application'", "Application", global::System.Management.Automation.CompletionResultType.ParameterValue, "Application"); + } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "ManagedIdentity".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("'ManagedIdentity'", "ManagedIdentity", global::System.Management.Automation.CompletionResultType.ParameterValue, "ManagedIdentity"); + } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "Key".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("'Key'", "Key", global::System.Management.Automation.CompletionResultType.ParameterValue, "Key"); + } + } + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Support/CreatedByType.TypeConverter.cs b/src/ManagedServiceIdentity/generated/api/Support/CreatedByType.TypeConverter.cs new file mode 100644 index 000000000000..ad7daf274162 --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Support/CreatedByType.TypeConverter.cs @@ -0,0 +1,59 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support +{ + + /// The type of identity that created the resource. + public partial class CreatedByTypeTypeConverter : + global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => true; + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => CreatedByType.CreateFrom(sourceValue); + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/api/Support/CreatedByType.cs b/src/ManagedServiceIdentity/generated/api/Support/CreatedByType.cs new file mode 100644 index 000000000000..f8c0f62b270c --- /dev/null +++ b/src/ManagedServiceIdentity/generated/api/Support/CreatedByType.cs @@ -0,0 +1,102 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support +{ + + /// The type of identity that created the resource. + public partial struct CreatedByType : + System.IEquatable + { + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType Application = @"Application"; + + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType Key = @"Key"; + + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType ManagedIdentity = @"ManagedIdentity"; + + public static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType User = @"User"; + + /// the value for an instance of the Enum. + private string _value { get; set; } + + /// Conversion from arbitrary object to CreatedByType + /// the value to convert to an instance of . + internal static object CreateFrom(object value) + { + return new CreatedByType(global::System.Convert.ToString(value)); + } + + /// Creates an instance of the Enum class. + /// the value to create an instance for. + private CreatedByType(string underlyingValue) + { + this._value = underlyingValue; + } + + /// Compares values of enum type CreatedByType + /// the value to compare against this instance. + /// true if the two instances are equal to the same value + public bool Equals(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType e) + { + return _value.Equals(e._value); + } + + /// Compares values of enum type CreatedByType (override for Object) + /// the value to compare against this instance. + /// true if the two instances are equal to the same value + public override bool Equals(object obj) + { + return obj is CreatedByType && Equals((CreatedByType)obj); + } + + /// Returns hashCode for enum CreatedByType + /// The hashCode of the value + public override int GetHashCode() + { + return this._value.GetHashCode(); + } + + /// Returns string representation for CreatedByType + /// A string for this value. + public override string ToString() + { + return this._value; + } + + /// Implicit operator to convert string to CreatedByType + /// the value to convert to an instance of . + + public static implicit operator CreatedByType(string value) + { + return new CreatedByType(value); + } + + /// Implicit operator to convert CreatedByType to string + /// the value to convert to an instance of . + + public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType e) + { + return e._value; + } + + /// Overriding != operator for enum CreatedByType + /// the value to compare against + /// the value to compare against + /// true if the two instances are not equal to the same value + public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType e1, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType e2) + { + return !e2.Equals(e1); + } + + /// Overriding == operator for enum CreatedByType + /// the value to compare against + /// the value to compare against + /// true if the two instances are equal to the same value + public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType e1, Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Support.CreatedByType e2) + { + return e2.Equals(e1); + } + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/cmdlets/GetAzFederatedIdentityCredentials_Get.cs b/src/ManagedServiceIdentity/generated/cmdlets/GetAzFederatedIdentityCredentials_Get.cs index 53b54346df8d..acdf81fba7b7 100644 --- a/src/ManagedServiceIdentity/generated/cmdlets/GetAzFederatedIdentityCredentials_Get.cs +++ b/src/ManagedServiceIdentity/generated/cmdlets/GetAzFederatedIdentityCredentials_Get.cs @@ -13,8 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{resourceName}/federatedIdentityCredentials/{federatedIdentityCredentialResourceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzFederatedIdentityCredentials_Get")] - [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PreviewMessage("This is a preview version of the Federated Identity Credentials feature.")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential))] [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Description(@"Gets the federated identity credential.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Generated] public partial class GetAzFederatedIdentityCredentials_Get : global::System.Management.Automation.PSCmdlet, @@ -126,12 +125,12 @@ public partial class GetAzFederatedIdentityCredentials_Get : global::System.Mana /// Backing field for property. private string _resourceGroupName; - /// The name of the Resource Group to which the identity belongs. - [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the Resource Group to which the identity belongs.")] + /// The name of the resource group. The name is case insensitive. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the resource group. The name is case insensitive.")] [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( Required = true, ReadOnly = false, - Description = @"The name of the Resource Group to which the identity belongs.", + Description = @"The name of the resource group. The name is case insensitive.", SerializedName = @"resourceGroupName", PossibleTypes = new [] { typeof(string) })] [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.ParameterCategory.Path)] @@ -160,24 +159,24 @@ public partial class GetAzFederatedIdentityCredentials_Get : global::System.Mana /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -353,12 +352,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -375,7 +374,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, IdentityName=IdentityName, Name=Name }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -393,12 +392,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -410,7 +409,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential WriteObject((await response)); } } diff --git a/src/ManagedServiceIdentity/generated/cmdlets/GetAzFederatedIdentityCredentials_GetViaIdentity.cs b/src/ManagedServiceIdentity/generated/cmdlets/GetAzFederatedIdentityCredentials_GetViaIdentity.cs index 039015d37ac5..168b483573a2 100644 --- a/src/ManagedServiceIdentity/generated/cmdlets/GetAzFederatedIdentityCredentials_GetViaIdentity.cs +++ b/src/ManagedServiceIdentity/generated/cmdlets/GetAzFederatedIdentityCredentials_GetViaIdentity.cs @@ -13,8 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{resourceName}/federatedIdentityCredentials/{federatedIdentityCredentialResourceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzFederatedIdentityCredentials_GetViaIdentity")] - [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PreviewMessage("This is a preview version of the Federated Identity Credentials feature.")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential))] [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Description(@"Gets the federated identity credential.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Generated] public partial class GetAzFederatedIdentityCredentials_GetViaIdentity : global::System.Management.Automation.PSCmdlet, @@ -108,24 +107,24 @@ public partial class GetAzFederatedIdentityCredentials_GetViaIdentity : global:: /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -322,12 +321,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -344,7 +343,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -362,12 +361,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -379,7 +378,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential WriteObject((await response)); } } diff --git a/src/ManagedServiceIdentity/generated/cmdlets/GetAzFederatedIdentityCredentials_List.cs b/src/ManagedServiceIdentity/generated/cmdlets/GetAzFederatedIdentityCredentials_List.cs index 3f1d64e56b67..268b8e7e630e 100644 --- a/src/ManagedServiceIdentity/generated/cmdlets/GetAzFederatedIdentityCredentials_List.cs +++ b/src/ManagedServiceIdentity/generated/cmdlets/GetAzFederatedIdentityCredentials_List.cs @@ -15,8 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Cmdlets /// [OpenAPI] List=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{resourceName}/federatedIdentityCredentials" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzFederatedIdentityCredentials_List")] - [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PreviewMessage("This is a preview version of the Federated Identity Credentials feature.")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential))] [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Description(@"Lists all the federated identity credentials under the specified user assigned identity.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Generated] public partial class GetAzFederatedIdentityCredentials_List : global::System.Management.Automation.PSCmdlet, @@ -120,12 +119,12 @@ public partial class GetAzFederatedIdentityCredentials_List : global::System.Man /// Backing field for property. private string _resourceGroupName; - /// The name of the Resource Group to which the identity belongs. - [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the Resource Group to which the identity belongs.")] + /// The name of the resource group. The name is case insensitive. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the resource group. The name is case insensitive.")] [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( Required = true, ReadOnly = false, - Description = @"The name of the Resource Group to which the identity belongs.", + Description = @"The name of the resource group. The name is case insensitive.", SerializedName = @"resourceGroupName", PossibleTypes = new [] { typeof(string) })] [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.ParameterCategory.Path)] @@ -186,24 +185,24 @@ public partial class GetAzFederatedIdentityCredentials_List : global::System.Man /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialsListResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredentialsListResult /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -379,12 +378,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -401,7 +400,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, IdentityName=IdentityName, Top=this.InvocationInformation.BoundParameters.ContainsKey("Top") ? Top : default(int?), Skiptoken=this.InvocationInformation.BoundParameters.ContainsKey("Skiptoken") ? Skiptoken : null }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -419,12 +418,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredentialsListResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredentialsListResult /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/ManagedServiceIdentity/generated/cmdlets/GetAzOperation_List.cs b/src/ManagedServiceIdentity/generated/cmdlets/GetAzOperation_List.cs index bfaf6cc9ed87..41ebaf1a42ca 100644 --- a/src/ManagedServiceIdentity/generated/cmdlets/GetAzOperation_List.cs +++ b/src/ManagedServiceIdentity/generated/cmdlets/GetAzOperation_List.cs @@ -106,24 +106,24 @@ public partial class GetAzOperation_List : global::System.Management.Automation. /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperationListResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IOperationListResult /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -296,12 +296,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -318,7 +318,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -336,12 +336,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperationListResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IOperationListResult /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/ManagedServiceIdentity/generated/cmdlets/GetAzOperation_List1.cs b/src/ManagedServiceIdentity/generated/cmdlets/GetAzOperation_List1.cs new file mode 100644 index 000000000000..9f1c65a6416d --- /dev/null +++ b/src/ManagedServiceIdentity/generated/cmdlets/GetAzOperation_List1.cs @@ -0,0 +1,377 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Extensions; + using System; + + /// Lists available operations for the Microsoft.ManagedIdentity provider + /// + /// [OpenAPI] List=>GET:"/providers/Microsoft.ManagedIdentity/operations" + /// + [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.InternalExport] + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzOperation_List1")] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperation))] + [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Description(@"Lists available operations for the Microsoft.ManagedIdentity provider")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Generated] + public partial class GetAzOperation_List1 : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// A flag to tell whether it is the first onOK call. + private bool _isFirst = true; + + /// Link to retrieve next page. + private string _nextLink; + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.ManagedServiceIdentityClient Client => Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorAutoGenerated + /// from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperationListResultAutoGenerated + /// from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + var telemetryId = Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Module.Instance.GetTelemetryId.Invoke(); + if (telemetryId != "" && telemetryId != "internal") + { + __correlationId = telemetryId; + } + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public GetAzOperation_List1() + { + + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.Information: + { + var data = messageData(); + WriteInformation(data.Message, new string[]{}); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener)this).Token); + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.OperationsList1(onOk, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorAutoGenerated + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IOperationListResultAutoGenerated + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // response should be returning an array of some kind. +Pageable + // pageable / value / nextLink + var result = await response; + WriteObject(result.Value,true); + _nextLink = result.NextLink; + if (_isFirst) + { + _isFirst = false; + while (_nextLink != null) + { + if (responseMessage.RequestMessage is System.Net.Http.HttpRequestMessage requestMessage ) + { + requestMessage = requestMessage.Clone(new global::System.Uri( _nextLink ),Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Method.Get ); + await ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Events.FollowingNextLink); if( ((Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.OperationsList1_Call(requestMessage, onOk, onDefault, this, Pipeline); + } + } + } + } + } + } +} \ No newline at end of file diff --git a/src/ManagedServiceIdentity/generated/cmdlets/GetAzSystemAssignedIdentity_Get.cs b/src/ManagedServiceIdentity/generated/cmdlets/GetAzSystemAssignedIdentity_Get.cs index c2fe308582a3..b72d624f6418 100644 --- a/src/ManagedServiceIdentity/generated/cmdlets/GetAzSystemAssignedIdentity_Get.cs +++ b/src/ManagedServiceIdentity/generated/cmdlets/GetAzSystemAssignedIdentity_Get.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Cmdlets /// [OpenAPI] GetByScope=>GET:"/{scope}/providers/Microsoft.ManagedIdentity/identities/default" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzSystemAssignedIdentity_Get")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentity))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentity))] [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Description(@"Gets the systemAssignedIdentity available under the specified RP scope.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Generated] public partial class GetAzSystemAssignedIdentity_Get : global::System.Management.Automation.PSCmdlet, @@ -115,24 +115,24 @@ public partial class GetAzSystemAssignedIdentity_Get : global::System.Management /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentity + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentity /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -305,12 +305,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -327,7 +327,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Scope=Scope }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -345,12 +345,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentity + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentity /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -362,7 +362,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentity + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentity WriteObject((await response)); } } diff --git a/src/ManagedServiceIdentity/generated/cmdlets/GetAzUserAssignedIdentityAssociatedResource_List.cs b/src/ManagedServiceIdentity/generated/cmdlets/GetAzUserAssignedIdentityAssociatedResource_List.cs index 058cca554027..acf409d8cbf8 100644 --- a/src/ManagedServiceIdentity/generated/cmdlets/GetAzUserAssignedIdentityAssociatedResource_List.cs +++ b/src/ManagedServiceIdentity/generated/cmdlets/GetAzUserAssignedIdentityAssociatedResource_List.cs @@ -226,12 +226,12 @@ public partial class GetAzUserAssignedIdentityAssociatedResource_List : global:: /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorAutoGenerated /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens @@ -422,12 +422,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudErrorAutoGenerated /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -444,7 +444,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, Name=Name, Filter=this.InvocationInformation.BoundParameters.ContainsKey("Filter") ? Filter : null, Orderby=this.InvocationInformation.BoundParameters.ContainsKey("Orderby") ? Orderby : null, Top=this.InvocationInformation.BoundParameters.ContainsKey("Top") ? Top : default(int?), Skip=this.InvocationInformation.BoundParameters.ContainsKey("Skip") ? Skip : default(int?), Skiptoken=this.InvocationInformation.BoundParameters.ContainsKey("Skiptoken") ? Skiptoken : null }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } diff --git a/src/ManagedServiceIdentity/generated/cmdlets/GetAzUserAssignedIdentity_Get.cs b/src/ManagedServiceIdentity/generated/cmdlets/GetAzUserAssignedIdentity_Get.cs index bee9dee57595..55d7755c4b09 100644 --- a/src/ManagedServiceIdentity/generated/cmdlets/GetAzUserAssignedIdentity_Get.cs +++ b/src/ManagedServiceIdentity/generated/cmdlets/GetAzUserAssignedIdentity_Get.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{resourceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzUserAssignedIdentity_Get")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity))] [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Description(@"Gets the identity.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Generated] public partial class GetAzUserAssignedIdentity_Get : global::System.Management.Automation.PSCmdlet, @@ -145,24 +145,24 @@ public partial class GetAzUserAssignedIdentity_Get : global::System.Management.A /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -338,12 +338,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -360,7 +360,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, Name=Name }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -378,12 +378,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -395,7 +395,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity WriteObject((await response)); } } diff --git a/src/ManagedServiceIdentity/generated/cmdlets/GetAzUserAssignedIdentity_GetViaIdentity.cs b/src/ManagedServiceIdentity/generated/cmdlets/GetAzUserAssignedIdentity_GetViaIdentity.cs index ab1247912573..da1fb7cc9ace 100644 --- a/src/ManagedServiceIdentity/generated/cmdlets/GetAzUserAssignedIdentity_GetViaIdentity.cs +++ b/src/ManagedServiceIdentity/generated/cmdlets/GetAzUserAssignedIdentity_GetViaIdentity.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{resourceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzUserAssignedIdentity_GetViaIdentity")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity))] [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Description(@"Gets the identity.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Generated] public partial class GetAzUserAssignedIdentity_GetViaIdentity : global::System.Management.Automation.PSCmdlet, @@ -107,24 +107,24 @@ public partial class GetAzUserAssignedIdentity_GetViaIdentity : global::System.M /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -317,12 +317,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -339,7 +339,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -357,12 +357,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -374,7 +374,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity WriteObject((await response)); } } diff --git a/src/ManagedServiceIdentity/generated/cmdlets/GetAzUserAssignedIdentity_List.cs b/src/ManagedServiceIdentity/generated/cmdlets/GetAzUserAssignedIdentity_List.cs index 5a556c740039..77a2a11a76fc 100644 --- a/src/ManagedServiceIdentity/generated/cmdlets/GetAzUserAssignedIdentity_List.cs +++ b/src/ManagedServiceIdentity/generated/cmdlets/GetAzUserAssignedIdentity_List.cs @@ -15,7 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Cmdlets /// [OpenAPI] ListBySubscription=>GET:"/subscriptions/{subscriptionId}/providers/Microsoft.ManagedIdentity/userAssignedIdentities" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzUserAssignedIdentity_List")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity))] [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Description(@"Lists all the userAssignedIdentities available under the specified subscription.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Generated] public partial class GetAzUserAssignedIdentity_List : global::System.Management.Automation.PSCmdlet, @@ -125,24 +125,24 @@ public partial class GetAzUserAssignedIdentity_List : global::System.Management. /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentitiesListResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IUserAssignedIdentitiesListResult /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -318,12 +318,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -340,7 +340,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -358,12 +358,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentitiesListResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IUserAssignedIdentitiesListResult /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/ManagedServiceIdentity/generated/cmdlets/GetAzUserAssignedIdentity_List1.cs b/src/ManagedServiceIdentity/generated/cmdlets/GetAzUserAssignedIdentity_List1.cs index 641e0f7d5920..531ced06c2fb 100644 --- a/src/ManagedServiceIdentity/generated/cmdlets/GetAzUserAssignedIdentity_List1.cs +++ b/src/ManagedServiceIdentity/generated/cmdlets/GetAzUserAssignedIdentity_List1.cs @@ -15,7 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Cmdlets /// [OpenAPI] ListByResourceGroup=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzUserAssignedIdentity_List1")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity))] [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Description(@"Lists all the userAssignedIdentities available under the specified ResourceGroup.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Generated] public partial class GetAzUserAssignedIdentity_List1 : global::System.Management.Automation.PSCmdlet, @@ -139,24 +139,24 @@ public partial class GetAzUserAssignedIdentity_List1 : global::System.Management /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentitiesListResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IUserAssignedIdentitiesListResult /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -332,12 +332,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -354,7 +354,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -372,12 +372,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IUserAssignedIdentitiesListResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IUserAssignedIdentitiesListResult /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/ManagedServiceIdentity/generated/cmdlets/NewAzFederatedIdentityCredentials_CreateExpanded.cs b/src/ManagedServiceIdentity/generated/cmdlets/NewAzFederatedIdentityCredentials_CreateExpanded.cs index 2812cc5f900e..d0887e57c5aa 100644 --- a/src/ManagedServiceIdentity/generated/cmdlets/NewAzFederatedIdentityCredentials_CreateExpanded.cs +++ b/src/ManagedServiceIdentity/generated/cmdlets/NewAzFederatedIdentityCredentials_CreateExpanded.cs @@ -15,8 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{resourceName}/federatedIdentityCredentials/{federatedIdentityCredentialResourceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzFederatedIdentityCredentials_CreateExpanded", SupportsShouldProcess = true)] - [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PreviewMessage("This is a preview version of the Federated Identity Credentials feature.")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential))] [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Description(@"Create or update a federated identity credential under the specified user assigned identity.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Generated] public partial class NewAzFederatedIdentityCredentials_CreateExpanded : global::System.Management.Automation.PSCmdlet, @@ -37,7 +36,7 @@ public partial class NewAzFederatedIdentityCredentials_CreateExpanded : global:: private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); /// Describes a federated identity credential. - private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.FederatedIdentityCredential(); + private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.FederatedIdentityCredential(); /// The list of audiences that can appear in the issued token. [global::System.Management.Automation.AllowEmptyCollection] @@ -158,12 +157,12 @@ public partial class NewAzFederatedIdentityCredentials_CreateExpanded : global:: /// Backing field for property. private string _resourceGroupName; - /// The name of the Resource Group to which the identity belongs. - [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the Resource Group to which the identity belongs.")] + /// The name of the resource group. The name is case insensitive. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the resource group. The name is case insensitive.")] [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( Required = true, ReadOnly = false, - Description = @"The name of the Resource Group to which the identity belongs.", + Description = @"The name of the resource group. The name is case insensitive.", SerializedName = @"resourceGroupName", PossibleTypes = new [] { typeof(string) })] [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.ParameterCategory.Path)] @@ -203,36 +202,36 @@ public partial class NewAzFederatedIdentityCredentials_CreateExpanded : global:: /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential /// from the remote call /// /// Determines if the rest of the onCreated method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnCreated(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnCreated(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -406,12 +405,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 201 (Created). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onCreated(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onCreated(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -423,7 +422,7 @@ protected override void StopProcessing() return ; } // onCreated - response for 201 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential WriteObject((await response)); } } @@ -432,12 +431,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -454,7 +453,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, IdentityName=IdentityName, Name=Name, body=_parametersBody }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -472,12 +471,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -489,7 +488,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential WriteObject((await response)); } } diff --git a/src/ManagedServiceIdentity/generated/cmdlets/NewAzUserAssignedIdentity_CreateExpanded.cs b/src/ManagedServiceIdentity/generated/cmdlets/NewAzUserAssignedIdentity_CreateExpanded.cs index 07605989df3f..caf78ef6a947 100644 --- a/src/ManagedServiceIdentity/generated/cmdlets/NewAzUserAssignedIdentity_CreateExpanded.cs +++ b/src/ManagedServiceIdentity/generated/cmdlets/NewAzUserAssignedIdentity_CreateExpanded.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{resourceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzUserAssignedIdentity_CreateExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity))] [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Description(@"Create or update an identity in the specified subscription and resource group.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Generated] public partial class NewAzUserAssignedIdentity_CreateExpanded : global::System.Management.Automation.PSCmdlet, @@ -34,7 +34,7 @@ public partial class NewAzUserAssignedIdentity_CreateExpanded : global::System.M private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); /// Describes an identity resource. - private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.Identity(); + private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.Identity(); /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] @@ -171,36 +171,36 @@ public partial class NewAzUserAssignedIdentity_CreateExpanded : global::System.M /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity /// from the remote call /// /// Determines if the rest of the onCreated method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnCreated(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnCreated(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -374,12 +374,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 201 (Created). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onCreated(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onCreated(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -391,7 +391,7 @@ protected override void StopProcessing() return ; } // onCreated - response for 201 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity WriteObject((await response)); } } @@ -400,12 +400,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -422,7 +422,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, Name=Name, body=_parametersBody }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -440,12 +440,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -457,7 +457,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity WriteObject((await response)); } } diff --git a/src/ManagedServiceIdentity/generated/cmdlets/RemoveAzFederatedIdentityCredentials_Delete.cs b/src/ManagedServiceIdentity/generated/cmdlets/RemoveAzFederatedIdentityCredentials_Delete.cs index e10f4cc73084..d75c2b91b290 100644 --- a/src/ManagedServiceIdentity/generated/cmdlets/RemoveAzFederatedIdentityCredentials_Delete.cs +++ b/src/ManagedServiceIdentity/generated/cmdlets/RemoveAzFederatedIdentityCredentials_Delete.cs @@ -13,7 +13,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Cmdlets /// [OpenAPI] Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{resourceName}/federatedIdentityCredentials/{federatedIdentityCredentialResourceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzFederatedIdentityCredentials_Delete", SupportsShouldProcess = true)] - [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PreviewMessage("This is a preview version of the Federated Identity Credentials feature.")] [global::System.Management.Automation.OutputType(typeof(bool))] [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Description(@"Deletes the federated identity credential.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Generated] @@ -133,12 +132,12 @@ public partial class RemoveAzFederatedIdentityCredentials_Delete : global::Syste /// Backing field for property. private string _resourceGroupName; - /// The name of the Resource Group to which the identity belongs. - [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the Resource Group to which the identity belongs.")] + /// The name of the resource group. The name is case insensitive. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the resource group. The name is case insensitive.")] [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( Required = true, ReadOnly = false, - Description = @"The name of the Resource Group to which the identity belongs.", + Description = @"The name of the resource group. The name is case insensitive.", SerializedName = @"resourceGroupName", PossibleTypes = new [] { typeof(string) })] [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.ParameterCategory.Path)] @@ -167,12 +166,12 @@ public partial class RemoveAzFederatedIdentityCredentials_Delete : global::Syste /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of @@ -368,12 +367,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -390,7 +389,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, IdentityName=IdentityName, Name=Name }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } diff --git a/src/ManagedServiceIdentity/generated/cmdlets/RemoveAzFederatedIdentityCredentials_DeleteViaIdentity.cs b/src/ManagedServiceIdentity/generated/cmdlets/RemoveAzFederatedIdentityCredentials_DeleteViaIdentity.cs index 7270f3df3e02..5aab4b6ab9ff 100644 --- a/src/ManagedServiceIdentity/generated/cmdlets/RemoveAzFederatedIdentityCredentials_DeleteViaIdentity.cs +++ b/src/ManagedServiceIdentity/generated/cmdlets/RemoveAzFederatedIdentityCredentials_DeleteViaIdentity.cs @@ -13,7 +13,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Cmdlets /// [OpenAPI] Delete=>DELETE:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{resourceName}/federatedIdentityCredentials/{federatedIdentityCredentialResourceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzFederatedIdentityCredentials_DeleteViaIdentity", SupportsShouldProcess = true)] - [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PreviewMessage("This is a preview version of the Federated Identity Credentials feature.")] [global::System.Management.Automation.OutputType(typeof(bool))] [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Description(@"Deletes the federated identity credential.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Generated] @@ -115,12 +114,12 @@ public partial class RemoveAzFederatedIdentityCredentials_DeleteViaIdentity : gl /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of @@ -340,12 +339,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -362,7 +361,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } diff --git a/src/ManagedServiceIdentity/generated/cmdlets/RemoveAzUserAssignedIdentity_Delete.cs b/src/ManagedServiceIdentity/generated/cmdlets/RemoveAzUserAssignedIdentity_Delete.cs index dd65e95f4111..efbd655b6354 100644 --- a/src/ManagedServiceIdentity/generated/cmdlets/RemoveAzUserAssignedIdentity_Delete.cs +++ b/src/ManagedServiceIdentity/generated/cmdlets/RemoveAzUserAssignedIdentity_Delete.cs @@ -152,12 +152,12 @@ public partial class RemoveAzUserAssignedIdentity_Delete : global::System.Manage /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of @@ -353,12 +353,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -375,7 +375,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, Name=Name }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } diff --git a/src/ManagedServiceIdentity/generated/cmdlets/RemoveAzUserAssignedIdentity_DeleteViaIdentity.cs b/src/ManagedServiceIdentity/generated/cmdlets/RemoveAzUserAssignedIdentity_DeleteViaIdentity.cs index fade28f56089..1cf68aacf2e4 100644 --- a/src/ManagedServiceIdentity/generated/cmdlets/RemoveAzUserAssignedIdentity_DeleteViaIdentity.cs +++ b/src/ManagedServiceIdentity/generated/cmdlets/RemoveAzUserAssignedIdentity_DeleteViaIdentity.cs @@ -114,12 +114,12 @@ public partial class RemoveAzUserAssignedIdentity_DeleteViaIdentity : global::Sy /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of @@ -335,12 +335,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -357,7 +357,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } diff --git a/src/ManagedServiceIdentity/generated/cmdlets/UpdateAzFederatedIdentityCredentials_UpdateExpanded.cs b/src/ManagedServiceIdentity/generated/cmdlets/UpdateAzFederatedIdentityCredentials_UpdateExpanded.cs index 797e9d47fa30..2734e0c0d5b1 100644 --- a/src/ManagedServiceIdentity/generated/cmdlets/UpdateAzFederatedIdentityCredentials_UpdateExpanded.cs +++ b/src/ManagedServiceIdentity/generated/cmdlets/UpdateAzFederatedIdentityCredentials_UpdateExpanded.cs @@ -15,8 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{resourceName}/federatedIdentityCredentials/{federatedIdentityCredentialResourceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzFederatedIdentityCredentials_UpdateExpanded", SupportsShouldProcess = true)] - [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PreviewMessage("This is a preview version of the Federated Identity Credentials feature.")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential))] [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Description(@"Create or update a federated identity credential under the specified user assigned identity.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Generated] public partial class UpdateAzFederatedIdentityCredentials_UpdateExpanded : global::System.Management.Automation.PSCmdlet, @@ -37,7 +36,7 @@ public partial class UpdateAzFederatedIdentityCredentials_UpdateExpanded : globa private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); /// Describes a federated identity credential. - private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.FederatedIdentityCredential(); + private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.FederatedIdentityCredential(); /// The list of audiences that can appear in the issued token. [global::System.Management.Automation.AllowEmptyCollection] @@ -158,12 +157,12 @@ public partial class UpdateAzFederatedIdentityCredentials_UpdateExpanded : globa /// Backing field for property. private string _resourceGroupName; - /// The name of the Resource Group to which the identity belongs. - [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the Resource Group to which the identity belongs.")] + /// The name of the resource group. The name is case insensitive. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the resource group. The name is case insensitive.")] [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.Info( Required = true, ReadOnly = false, - Description = @"The name of the Resource Group to which the identity belongs.", + Description = @"The name of the resource group. The name is case insensitive.", SerializedName = @"resourceGroupName", PossibleTypes = new [] { typeof(string) })] [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.ParameterCategory.Path)] @@ -203,36 +202,36 @@ public partial class UpdateAzFederatedIdentityCredentials_UpdateExpanded : globa /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential /// from the remote call /// /// Determines if the rest of the onCreated method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnCreated(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnCreated(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -406,12 +405,12 @@ public UpdateAzFederatedIdentityCredentials_UpdateExpanded() /// a delegate that is called when the remote service returns 201 (Created). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onCreated(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onCreated(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -423,7 +422,7 @@ public UpdateAzFederatedIdentityCredentials_UpdateExpanded() return ; } // onCreated - response for 201 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential WriteObject((await response)); } } @@ -432,12 +431,12 @@ public UpdateAzFederatedIdentityCredentials_UpdateExpanded() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -454,7 +453,7 @@ public UpdateAzFederatedIdentityCredentials_UpdateExpanded() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, IdentityName=IdentityName, Name=Name, body=_parametersBody }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -472,12 +471,12 @@ public UpdateAzFederatedIdentityCredentials_UpdateExpanded() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -489,7 +488,7 @@ public UpdateAzFederatedIdentityCredentials_UpdateExpanded() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential WriteObject((await response)); } } diff --git a/src/ManagedServiceIdentity/generated/cmdlets/UpdateAzFederatedIdentityCredentials_UpdateViaIdentityExpanded.cs b/src/ManagedServiceIdentity/generated/cmdlets/UpdateAzFederatedIdentityCredentials_UpdateViaIdentityExpanded.cs index 18ccc683c085..de258b17e4a6 100644 --- a/src/ManagedServiceIdentity/generated/cmdlets/UpdateAzFederatedIdentityCredentials_UpdateViaIdentityExpanded.cs +++ b/src/ManagedServiceIdentity/generated/cmdlets/UpdateAzFederatedIdentityCredentials_UpdateViaIdentityExpanded.cs @@ -15,8 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{resourceName}/federatedIdentityCredentials/{federatedIdentityCredentialResourceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzFederatedIdentityCredentials_UpdateViaIdentityExpanded", SupportsShouldProcess = true)] - [Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.PreviewMessage("This is a preview version of the Federated Identity Credentials feature.")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential))] [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Description(@"Create or update a federated identity credential under the specified user assigned identity.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Generated] public partial class UpdateAzFederatedIdentityCredentials_UpdateViaIdentityExpanded : global::System.Management.Automation.PSCmdlet, @@ -37,7 +36,7 @@ public partial class UpdateAzFederatedIdentityCredentials_UpdateViaIdentityExpan private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); /// Describes a federated identity credential. - private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.FederatedIdentityCredential(); + private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.FederatedIdentityCredential(); /// The list of audiences that can appear in the issued token. [global::System.Management.Automation.AllowEmptyCollection] @@ -151,36 +150,36 @@ public partial class UpdateAzFederatedIdentityCredentials_UpdateViaIdentityExpan /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential /// from the remote call /// /// Determines if the rest of the onCreated method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnCreated(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnCreated(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -379,12 +378,12 @@ public UpdateAzFederatedIdentityCredentials_UpdateViaIdentityExpanded() /// a delegate that is called when the remote service returns 201 (Created). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onCreated(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onCreated(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -396,7 +395,7 @@ public UpdateAzFederatedIdentityCredentials_UpdateViaIdentityExpanded() return ; } // onCreated - response for 201 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential WriteObject((await response)); } } @@ -405,12 +404,12 @@ public UpdateAzFederatedIdentityCredentials_UpdateViaIdentityExpanded() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -427,7 +426,7 @@ public UpdateAzFederatedIdentityCredentials_UpdateViaIdentityExpanded() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=_parametersBody }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -445,12 +444,12 @@ public UpdateAzFederatedIdentityCredentials_UpdateViaIdentityExpanded() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -462,7 +461,7 @@ public UpdateAzFederatedIdentityCredentials_UpdateViaIdentityExpanded() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential WriteObject((await response)); } } diff --git a/src/ManagedServiceIdentity/generated/cmdlets/UpdateAzUserAssignedIdentity_UpdateExpanded.cs b/src/ManagedServiceIdentity/generated/cmdlets/UpdateAzUserAssignedIdentity_UpdateExpanded.cs index 267bde65d33a..e2732977758a 100644 --- a/src/ManagedServiceIdentity/generated/cmdlets/UpdateAzUserAssignedIdentity_UpdateExpanded.cs +++ b/src/ManagedServiceIdentity/generated/cmdlets/UpdateAzUserAssignedIdentity_UpdateExpanded.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Cmdlets /// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{resourceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzUserAssignedIdentity_UpdateExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity))] [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Description(@"Update an identity in the specified subscription and resource group.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Generated] public partial class UpdateAzUserAssignedIdentity_UpdateExpanded : global::System.Management.Automation.PSCmdlet, @@ -34,7 +34,7 @@ public partial class UpdateAzUserAssignedIdentity_UpdateExpanded : global::Syste private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); /// Describes an identity resource. - private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdate _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IdentityUpdate(); + private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityUpdate _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IdentityUpdate(); /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] @@ -171,24 +171,24 @@ public partial class UpdateAzUserAssignedIdentity_UpdateExpanded : global::Syste /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -364,12 +364,12 @@ public UpdateAzUserAssignedIdentity_UpdateExpanded() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -386,7 +386,7 @@ public UpdateAzUserAssignedIdentity_UpdateExpanded() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { SubscriptionId=SubscriptionId, ResourceGroupName=ResourceGroupName, Name=Name, body=_parametersBody }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -404,12 +404,12 @@ public UpdateAzUserAssignedIdentity_UpdateExpanded() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -421,7 +421,7 @@ public UpdateAzUserAssignedIdentity_UpdateExpanded() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity WriteObject((await response)); } } diff --git a/src/ManagedServiceIdentity/generated/cmdlets/UpdateAzUserAssignedIdentity_UpdateViaIdentityExpanded.cs b/src/ManagedServiceIdentity/generated/cmdlets/UpdateAzUserAssignedIdentity_UpdateViaIdentityExpanded.cs index 92025cf185e7..ccfd9fb4c004 100644 --- a/src/ManagedServiceIdentity/generated/cmdlets/UpdateAzUserAssignedIdentity_UpdateViaIdentityExpanded.cs +++ b/src/ManagedServiceIdentity/generated/cmdlets/UpdateAzUserAssignedIdentity_UpdateViaIdentityExpanded.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Cmdlets /// [OpenAPI] Update=>PATCH:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{resourceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzUserAssignedIdentity_UpdateViaIdentityExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity))] [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Description(@"Update an identity in the specified subscription and resource group.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Generated] public partial class UpdateAzUserAssignedIdentity_UpdateViaIdentityExpanded : global::System.Management.Automation.PSCmdlet, @@ -34,7 +34,7 @@ public partial class UpdateAzUserAssignedIdentity_UpdateViaIdentityExpanded : gl private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); /// Describes an identity resource. - private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentityUpdate _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IdentityUpdate(); + private Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentityUpdate _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IdentityUpdate(); /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] @@ -133,24 +133,24 @@ public partial class UpdateAzUserAssignedIdentity_UpdateViaIdentityExpanded : gl /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -346,12 +346,12 @@ public UpdateAzUserAssignedIdentity_UpdateViaIdentityExpanded() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ICloudError + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ICloudError /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -368,7 +368,7 @@ public UpdateAzUserAssignedIdentity_UpdateViaIdentityExpanded() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=_parametersBody }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -386,12 +386,12 @@ public UpdateAzUserAssignedIdentity_UpdateViaIdentityExpanded() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -403,7 +403,7 @@ public UpdateAzUserAssignedIdentity_UpdateViaIdentityExpanded() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity WriteObject((await response)); } } diff --git a/src/ManagedServiceIdentity/generated/runtime/BuildTime/Cmdlets/ExportPsd1.cs b/src/ManagedServiceIdentity/generated/runtime/BuildTime/Cmdlets/ExportPsd1.cs index a1496c48fd2d..b3d415d38296 100644 --- a/src/ManagedServiceIdentity/generated/runtime/BuildTime/Cmdlets/ExportPsd1.cs +++ b/src/ManagedServiceIdentity/generated/runtime/BuildTime/Cmdlets/ExportPsd1.cs @@ -51,7 +51,7 @@ protected override void ProcessRecord() throw new ArgumentException($"Custom folder '{CustomFolder}' does not exist"); } - string version = Convert.ToString(@"0.2.0"); + string version = Convert.ToString(@"0.3.0"); // Validate the module version should be semantic version // Following regex is official from https://semver.org/ Regex rx = new Regex(@"^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$", RegexOptions.Compiled); diff --git a/src/ManagedServiceIdentity/help/Get-AzFederatedIdentityCredentials.md b/src/ManagedServiceIdentity/help/Get-AzFederatedIdentityCredentials.md index 85654e5ee098..22404cda5603 100644 --- a/src/ManagedServiceIdentity/help/Get-AzFederatedIdentityCredentials.md +++ b/src/ManagedServiceIdentity/help/Get-AzFederatedIdentityCredentials.md @@ -142,7 +142,8 @@ Accept wildcard characters: False ``` ### -ResourceGroupName -The name of the Resource Group to which the identity belongs. +The name of the resource group. +The name is case insensitive. ```yaml Type: System.String @@ -211,7 +212,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential +### Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential ## NOTES diff --git a/src/ManagedServiceIdentity/help/Get-AzSystemAssignedIdentity.md b/src/ManagedServiceIdentity/help/Get-AzSystemAssignedIdentity.md index 26589e6903a0..b21c5e4835ea 100644 --- a/src/ManagedServiceIdentity/help/Get-AzSystemAssignedIdentity.md +++ b/src/ManagedServiceIdentity/help/Get-AzSystemAssignedIdentity.md @@ -74,7 +74,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.ISystemAssignedIdentity +### Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.ISystemAssignedIdentity ## NOTES diff --git a/src/ManagedServiceIdentity/help/Get-AzUserAssignedIdentity.md b/src/ManagedServiceIdentity/help/Get-AzUserAssignedIdentity.md index 2918bd410f98..44e2057cf73a 100644 --- a/src/ManagedServiceIdentity/help/Get-AzUserAssignedIdentity.md +++ b/src/ManagedServiceIdentity/help/Get-AzUserAssignedIdentity.md @@ -182,7 +182,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity +### Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity ## NOTES diff --git a/src/ManagedServiceIdentity/help/New-AzFederatedIdentityCredentials.md b/src/ManagedServiceIdentity/help/New-AzFederatedIdentityCredentials.md index e6cf3946c27b..321fcaff0ed3 100644 --- a/src/ManagedServiceIdentity/help/New-AzFederatedIdentityCredentials.md +++ b/src/ManagedServiceIdentity/help/New-AzFederatedIdentityCredentials.md @@ -130,7 +130,8 @@ Accept wildcard characters: False ``` ### -ResourceGroupName -The name of the Resource Group to which the identity belongs. +The name of the resource group. +The name is case insensitive. ```yaml Type: System.String @@ -212,7 +213,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential +### Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential ## NOTES diff --git a/src/ManagedServiceIdentity/help/New-AzUserAssignedIdentity.md b/src/ManagedServiceIdentity/help/New-AzUserAssignedIdentity.md index b2bf63a38cb3..492fa70c2bf8 100644 --- a/src/ManagedServiceIdentity/help/New-AzUserAssignedIdentity.md +++ b/src/ManagedServiceIdentity/help/New-AzUserAssignedIdentity.md @@ -166,7 +166,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity +### Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity ## NOTES diff --git a/src/ManagedServiceIdentity/help/Remove-AzFederatedIdentityCredentials.md b/src/ManagedServiceIdentity/help/Remove-AzFederatedIdentityCredentials.md index 958cd034351f..0cf4431c0a02 100644 --- a/src/ManagedServiceIdentity/help/Remove-AzFederatedIdentityCredentials.md +++ b/src/ManagedServiceIdentity/help/Remove-AzFederatedIdentityCredentials.md @@ -122,7 +122,8 @@ Accept wildcard characters: False ``` ### -ResourceGroupName -The name of the Resource Group to which the identity belongs. +The name of the resource group. +The name is case insensitive. ```yaml Type: System.String diff --git a/src/ManagedServiceIdentity/help/Update-AzFederatedIdentityCredentials.md b/src/ManagedServiceIdentity/help/Update-AzFederatedIdentityCredentials.md index 4214e65aae8b..6c24893474ca 100644 --- a/src/ManagedServiceIdentity/help/Update-AzFederatedIdentityCredentials.md +++ b/src/ManagedServiceIdentity/help/Update-AzFederatedIdentityCredentials.md @@ -152,7 +152,8 @@ Accept wildcard characters: False ``` ### -ResourceGroupName -The name of the Resource Group to which the identity belongs. +The name of the resource group. +The name is case insensitive. ```yaml Type: System.String @@ -236,7 +237,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IFederatedIdentityCredential +### Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IFederatedIdentityCredential ## NOTES diff --git a/src/ManagedServiceIdentity/help/Update-AzUserAssignedIdentity.md b/src/ManagedServiceIdentity/help/Update-AzUserAssignedIdentity.md index b56ee264c516..6015527a740b 100644 --- a/src/ManagedServiceIdentity/help/Update-AzUserAssignedIdentity.md +++ b/src/ManagedServiceIdentity/help/Update-AzUserAssignedIdentity.md @@ -204,7 +204,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20220131Preview.IIdentity +### Microsoft.Azure.PowerShell.Cmdlets.ManagedServiceIdentity.Models.Api20230131.IIdentity ## NOTES diff --git a/src/ManagedServiceIdentity/how-to.md b/src/ManagedServiceIdentity/how-to.md index ed26a16a19d9..2ca6f3ce34b9 100644 --- a/src/ManagedServiceIdentity/how-to.md +++ b/src/ManagedServiceIdentity/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.ManagedServiceIdentity` -To pack `Az.ManagedServiceIdentity` 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.ManagedServiceIdentity` 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.ManagedServiceIdentity`. diff --git a/src/ManagedServiceIdentity/internal/Get-AzOperation.ps1 b/src/ManagedServiceIdentity/internal/Get-AzOperation.ps1 index a8abc6f34a9b..10c9a1ec324e 100644 --- a/src/ManagedServiceIdentity/internal/Get-AzOperation.ps1 +++ b/src/ManagedServiceIdentity/internal/Get-AzOperation.ps1 @@ -91,6 +91,7 @@ begin { $mapping = @{ List = 'Az.ManagedServiceIdentity.private\Get-AzOperation_List'; + List1 = 'Az.ManagedServiceIdentity.private\Get-AzOperation_List1'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) diff --git a/src/ManagedServiceIdentity/internal/ProxyCmdletDefinitions.ps1 b/src/ManagedServiceIdentity/internal/ProxyCmdletDefinitions.ps1 index a8abc6f34a9b..10c9a1ec324e 100644 --- a/src/ManagedServiceIdentity/internal/ProxyCmdletDefinitions.ps1 +++ b/src/ManagedServiceIdentity/internal/ProxyCmdletDefinitions.ps1 @@ -91,6 +91,7 @@ begin { $mapping = @{ List = 'Az.ManagedServiceIdentity.private\Get-AzOperation_List'; + List1 = 'Az.ManagedServiceIdentity.private\Get-AzOperation_List1'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) diff --git a/src/ManagedServiceIdentity/internal/README.md b/src/ManagedServiceIdentity/internal/README.md index 62595a021b7d..06d73f24c01f 100644 --- a/src/ManagedServiceIdentity/internal/README.md +++ b/src/ManagedServiceIdentity/internal/README.md @@ -8,7 +8,7 @@ This directory contains a module to handle *internal only* cmdlets. Cmdlets that - Packaged: yes ## Details -The `Az.ManagedServiceIdentity.internal.psm1` file is generated to this folder. This module file handles the hidden cmdlets. These cmdlets will not be exported by `Az.ManagedServiceIdentity`. Instead, this sub-module is imported by the `..\custom\Az.ManagedServiceIdentity.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.ManagedServiceIdentity.internal\Get-Example` would call an internal cmdlet named `Get-Example`. +The `Az.ManagedServiceIdentity.internal.psm1` file is generated to this folder. This module file handles the hidden cmdlets. These cmdlets will not be exported by `Az.ManagedServiceIdentity`. Instead, this sub-module is imported by the `..\custom\Az.ManagedServiceIdentity.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.ManagedServiceIdentity.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.ManagedServiceIdentity`. diff --git a/src/ManagedServiceIdentity/test/Get-AzFederatedIdentityCredentials.Recording.json b/src/ManagedServiceIdentity/test/Get-AzFederatedIdentityCredentials.Recording.json index 32b94b2c1344..fde23e0a572e 100644 --- a/src/ManagedServiceIdentity/test/Get-AzFederatedIdentityCredentials.Recording.json +++ b/src/ManagedServiceIdentity/test/Get-AzFederatedIdentityCredentials.Recording.json @@ -1,17 +1,17 @@ { - "Get-AzFederatedIdentityCredentials+[NoContext]+List+$GET+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-1znoxkhq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-ws41z9/federatedIdentityCredentials?api-version=2022-01-31-preview+1": { + "Get-AzFederatedIdentityCredentials+[NoContext]+List+$GET+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-49ei1m3y/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-oqecha/federatedIdentityCredentials?api-version=2023-01-31+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-1znoxkhq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-ws41z9/federatedIdentityCredentials?api-version=2022-01-31-preview", + "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-49ei1m3y/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-oqecha/federatedIdentityCredentials?api-version=2023-01-31", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "16" ], - "x-ms-client-request-id": [ "56601f7f-a1f1-41e4-974a-c6c263974c2c" ], + "x-ms-client-request-id": [ "50d6841a-f33d-4f5d-a0f1-44b0d45b9997" ], "CommandName": [ "Get-AzFederatedIdentityCredentials" ], "FullCommandName": [ "Get-AzFederatedIdentityCredentials_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ManagedServiceIdentity/0.2.0" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ManagedServiceIdentity/0.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -24,34 +24,34 @@ "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], - "x-ms-request-id": [ "446d55ee-6bd5-4fe5-b22c-f707fbf0185d" ], - "x-ms-correlation-request-id": [ "446d55ee-6bd5-4fe5-b22c-f707fbf0185d" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20220906T145317Z:446d55ee-6bd5-4fe5-b22c-f707fbf0185d" ], + "x-ms-request-id": [ "3764cb2a-8bfa-42af-94f2-4556e6e79a43" ], + "x-ms-correlation-request-id": [ "3764cb2a-8bfa-42af-94f2-4556e6e79a43" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20230214T115910Z:3764cb2a-8bfa-42af-94f2-4556e6e79a43" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Tue, 06 Sep 2022 14:53:17 GMT" ] + "Date": [ "Tue, 14 Feb 2023 11:59:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "491" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/fic-rg-1znoxkhq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-ws41z9/federatedIdentityCredentials/fic-27zqjk\",\"name\":\"fic-27zqjk\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials\",\"properties\":{\"issuer\":\"https://kubernetes-oauth.azure.mpxq2a\",\"subject\":\"system:serviceaccount:ns:svcaccount-5iaowt\",\"audiences\":[\"api://AzureADTokenExchange\"]}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/fic-rg-49ei1m3y/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-oqecha/federatedIdentityCredentials/fic-mdkys2\",\"name\":\"fic-mdkys2\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials\",\"properties\":{\"issuer\":\"https://kubernetes-oauth.azure.pc6txw\",\"subject\":\"system:serviceaccount:ns:svcaccount-dq1fse\",\"audiences\":[\"api://AzureADTokenExchange\"]}}]}", "isContentBase64": false } }, - "Get-AzFederatedIdentityCredentials+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-1znoxkhq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-ws41z9/federatedIdentityCredentials/fic-27zqjk?api-version=2022-01-31-preview+1": { + "Get-AzFederatedIdentityCredentials+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-49ei1m3y/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-oqecha/federatedIdentityCredentials/fic-mdkys2?api-version=2023-01-31+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-1znoxkhq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-ws41z9/federatedIdentityCredentials/fic-27zqjk?api-version=2022-01-31-preview", + "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-49ei1m3y/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-oqecha/federatedIdentityCredentials/fic-mdkys2?api-version=2023-01-31", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "17" ], - "x-ms-client-request-id": [ "eb271540-4441-491a-a2d7-3b6bdc13a285" ], + "x-ms-client-request-id": [ "7babf4de-ff7f-45bd-950b-063f6e998d91" ], "CommandName": [ "Get-AzFederatedIdentityCredentials" ], "FullCommandName": [ "Get-AzFederatedIdentityCredentials_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ManagedServiceIdentity/0.2.0" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ManagedServiceIdentity/0.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -64,34 +64,34 @@ "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-request-id": [ "c0416b11-90cd-43b1-abd3-a2ab1329fc7b" ], - "x-ms-correlation-request-id": [ "c0416b11-90cd-43b1-abd3-a2ab1329fc7b" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20220906T145317Z:c0416b11-90cd-43b1-abd3-a2ab1329fc7b" ], + "x-ms-request-id": [ "0b1c5420-2956-43e6-80f1-95eebc20e208" ], + "x-ms-correlation-request-id": [ "0b1c5420-2956-43e6-80f1-95eebc20e208" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20230214T115910Z:0b1c5420-2956-43e6-80f1-95eebc20e208" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Tue, 06 Sep 2022 14:53:17 GMT" ] + "Date": [ "Tue, 14 Feb 2023 11:59:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "479" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/fic-rg-1znoxkhq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-ws41z9/federatedIdentityCredentials/fic-27zqjk\",\"name\":\"fic-27zqjk\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials\",\"properties\":{\"issuer\":\"https://kubernetes-oauth.azure.mpxq2a\",\"subject\":\"system:serviceaccount:ns:svcaccount-5iaowt\",\"audiences\":[\"api://AzureADTokenExchange\"]}}", + "Content": "{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/fic-rg-49ei1m3y/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-oqecha/federatedIdentityCredentials/fic-mdkys2\",\"name\":\"fic-mdkys2\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials\",\"properties\":{\"issuer\":\"https://kubernetes-oauth.azure.pc6txw\",\"subject\":\"system:serviceaccount:ns:svcaccount-dq1fse\",\"audiences\":[\"api://AzureADTokenExchange\"]}}", "isContentBase64": false } }, - "Get-AzFederatedIdentityCredentials+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-1znoxkhq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-ws41z9/federatedIdentityCredentials/fic-27zqjk?api-version=2022-01-31-preview+1": { + "Get-AzFederatedIdentityCredentials+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-49ei1m3y/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-oqecha/federatedIdentityCredentials/fic-mdkys2?api-version=2023-01-31+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-1znoxkhq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-ws41z9/federatedIdentityCredentials/fic-27zqjk?api-version=2022-01-31-preview", + "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-49ei1m3y/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-oqecha/federatedIdentityCredentials/fic-mdkys2?api-version=2023-01-31", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "18" ], - "x-ms-client-request-id": [ "f847c8e1-73ab-4a8b-a02b-0a93dd89575d" ], + "x-ms-client-request-id": [ "42b4a10e-81b6-4323-ae41-a2d863e4683e" ], "CommandName": [ "Get-AzFederatedIdentityCredentials" ], "FullCommandName": [ "Get-AzFederatedIdentityCredentials_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ManagedServiceIdentity/0.2.0" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ManagedServiceIdentity/0.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -104,34 +104,34 @@ "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-request-id": [ "3765410d-8698-4aa2-9aba-dbf68e3c5497" ], - "x-ms-correlation-request-id": [ "3765410d-8698-4aa2-9aba-dbf68e3c5497" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20220906T145318Z:3765410d-8698-4aa2-9aba-dbf68e3c5497" ], + "x-ms-request-id": [ "f34c6034-de04-45c6-8c61-9ec53d921638" ], + "x-ms-correlation-request-id": [ "f34c6034-de04-45c6-8c61-9ec53d921638" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20230214T115911Z:f34c6034-de04-45c6-8c61-9ec53d921638" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Tue, 06 Sep 2022 14:53:17 GMT" ] + "Date": [ "Tue, 14 Feb 2023 11:59:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "479" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/fic-rg-1znoxkhq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-ws41z9/federatedIdentityCredentials/fic-27zqjk\",\"name\":\"fic-27zqjk\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials\",\"properties\":{\"issuer\":\"https://kubernetes-oauth.azure.mpxq2a\",\"subject\":\"system:serviceaccount:ns:svcaccount-5iaowt\",\"audiences\":[\"api://AzureADTokenExchange\"]}}", + "Content": "{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/fic-rg-49ei1m3y/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-oqecha/federatedIdentityCredentials/fic-mdkys2\",\"name\":\"fic-mdkys2\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials\",\"properties\":{\"issuer\":\"https://kubernetes-oauth.azure.pc6txw\",\"subject\":\"system:serviceaccount:ns:svcaccount-dq1fse\",\"audiences\":[\"api://AzureADTokenExchange\"]}}", "isContentBase64": false } }, - "Get-AzFederatedIdentityCredentials+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-1znoxkhq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-ws41z9/federatedIdentityCredentials/fic-27zqjk?api-version=2022-01-31-preview+2": { + "Get-AzFederatedIdentityCredentials+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-49ei1m3y/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-oqecha/federatedIdentityCredentials/fic-mdkys2?api-version=2023-01-31+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-1znoxkhq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-ws41z9/federatedIdentityCredentials/fic-27zqjk?api-version=2022-01-31-preview", + "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-49ei1m3y/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-oqecha/federatedIdentityCredentials/fic-mdkys2?api-version=2023-01-31", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "19" ], - "x-ms-client-request-id": [ "189cc257-55e4-4a8e-b0ec-a422030bf6f2" ], + "x-ms-client-request-id": [ "ac6b7d1f-2d63-486a-931f-dcea2c79aeee" ], "CommandName": [ "Get-AzFederatedIdentityCredentials" ], "FullCommandName": [ "Get-AzFederatedIdentityCredentials_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ManagedServiceIdentity/0.2.0" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ManagedServiceIdentity/0.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -144,18 +144,18 @@ "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-request-id": [ "eb053b1d-0fef-484a-89d7-7a2b5eaa66bb" ], - "x-ms-correlation-request-id": [ "eb053b1d-0fef-484a-89d7-7a2b5eaa66bb" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20220906T145318Z:eb053b1d-0fef-484a-89d7-7a2b5eaa66bb" ], + "x-ms-request-id": [ "f451404a-dc4c-4231-8f41-61fc5a856076" ], + "x-ms-correlation-request-id": [ "f451404a-dc4c-4231-8f41-61fc5a856076" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20230214T115911Z:f451404a-dc4c-4231-8f41-61fc5a856076" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Tue, 06 Sep 2022 14:53:17 GMT" ] + "Date": [ "Tue, 14 Feb 2023 11:59:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "479" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/fic-rg-1znoxkhq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-ws41z9/federatedIdentityCredentials/fic-27zqjk\",\"name\":\"fic-27zqjk\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials\",\"properties\":{\"issuer\":\"https://kubernetes-oauth.azure.mpxq2a\",\"subject\":\"system:serviceaccount:ns:svcaccount-5iaowt\",\"audiences\":[\"api://AzureADTokenExchange\"]}}", + "Content": "{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/fic-rg-49ei1m3y/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-oqecha/federatedIdentityCredentials/fic-mdkys2\",\"name\":\"fic-mdkys2\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials\",\"properties\":{\"issuer\":\"https://kubernetes-oauth.azure.pc6txw\",\"subject\":\"system:serviceaccount:ns:svcaccount-dq1fse\",\"audiences\":[\"api://AzureADTokenExchange\"]}}", "isContentBase64": false } } diff --git a/src/ManagedServiceIdentity/test/Get-AzSystemAssignedIdentity.Recording.json b/src/ManagedServiceIdentity/test/Get-AzSystemAssignedIdentity.Recording.json index 5ec484009e36..3d6ee0827a3b 100644 --- a/src/ManagedServiceIdentity/test/Get-AzSystemAssignedIdentity.Recording.json +++ b/src/ManagedServiceIdentity/test/Get-AzSystemAssignedIdentity.Recording.json @@ -1,17 +1,17 @@ { - "Get-AzSystemAssignedIdentity+[NoContext]+Get+$GET+https://management.azure.com//subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-jvsqdw9r/providers/Microsoft.Web/sites/appServicegf62n9/providers/Microsoft.ManagedIdentity/identities/default?api-version=2022-01-31-preview+1": { + "Get-AzSystemAssignedIdentity+[NoContext]+Get+$GET+https://management.azure.com//subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-wmbx18cj/providers/Microsoft.Web/sites/appService1l9p6y/providers/Microsoft.ManagedIdentity/identities/default?api-version=2023-01-31+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com//subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-jvsqdw9r/providers/Microsoft.Web/sites/appServicegf62n9/providers/Microsoft.ManagedIdentity/identities/default?api-version=2022-01-31-preview", + "RequestUri": "https://management.azure.com//subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-wmbx18cj/providers/Microsoft.Web/sites/appService1l9p6y/providers/Microsoft.ManagedIdentity/identities/default?api-version=2023-01-31", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "20" ], - "x-ms-client-request-id": [ "58cd7465-2806-49b3-ba48-c3597570e448" ], + "x-ms-client-request-id": [ "e906951f-29fd-43c9-bf1a-458a8d481193" ], "CommandName": [ "Get-AzSystemAssignedIdentity" ], "FullCommandName": [ "Get-AzSystemAssignedIdentity_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ManagedServiceIdentity/0.2.0" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ManagedServiceIdentity/0.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -24,18 +24,18 @@ "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-request-id": [ "28c07cdf-61a1-4b5f-bb8a-ee3076ed5eb6" ], - "x-ms-correlation-request-id": [ "28c07cdf-61a1-4b5f-bb8a-ee3076ed5eb6" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20220906T145321Z:28c07cdf-61a1-4b5f-bb8a-ee3076ed5eb6" ], + "x-ms-request-id": [ "f15eb87f-7c67-4314-80a3-07d40392b53c" ], + "x-ms-correlation-request-id": [ "f15eb87f-7c67-4314-80a3-07d40392b53c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20230214T115914Z:f15eb87f-7c67-4314-80a3-07d40392b53c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Tue, 06 Sep 2022 14:53:20 GMT" ] + "Date": [ "Tue, 14 Feb 2023 11:59:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "748" ], + "Content-Length": [ "850" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/identity-jvsqdw9r/providers/Microsoft.Web/sites/appServicegf62n9\",\"name\":\"appServicegf62n9\",\"type\":\"Microsoft.Web/sites\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"tenantId\":\"a66b4d27-b1b3-4b60-8b06-7fb4fd05bc3c\",\"principalId\":\"c3b22b4d-baac-44ed-8302-0713b62b6ea6\",\"clientId\":\"ef6f3430-be96-43d9-9863-4b4aee2398c9\",\"clientSecretUrl\":\"https://control-centralus.identity.azure.net/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/identity-jvsqdw9r/providers/Microsoft.Web/sites/appServicegf62n9/credentials/v2/systemassigned?arpid=f80411fa-4f14-49e2-a287-28d88b442ff9\u0026said=ef6f3430-be96-43d9-9863-4b4aee2398c9\u0026tid=a66b4d27-b1b3-4b60-8b06-7fb4fd05bc3c\"}}", + "Content": "{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/identity-wmbx18cj/providers/Microsoft.Web/sites/appService1l9p6y\",\"name\":\"appService1l9p6y\",\"type\":\"Microsoft.Web/sites\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"tenantId\":\"a66b4d27-b1b3-4b60-8b06-7fb4fd05bc3c\",\"principalId\":\"cda245ef-1dec-461b-b6d6-45aee84d00b9\",\"clientId\":\"8ceb1a81-313a-4002-9b19-dd65d111ed6a\",\"clientSecretUrl\":\"https://control-centralus.identity.azure.net/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/identity-wmbx18cj/providers/Microsoft.Web/sites/appService1l9p6y/credentials/v2/systemassigned?arpid=e8a564bd-4502-4d52-8e6a-c47326b26ca0\u0026keyid=17cb9791-9a20-43b8-8a0a-194a071c3ef1\u0026said=8ceb1a81-313a-4002-9b19-dd65d111ed6a\u0026sigver=1.0\u0026tid=a66b4d27-b1b3-4b60-8b06-7fb4fd05bc3c\u0026sig=88fVqjikhlFGVyXH_Bx7QnKauxe2UJp8lxF1_PBVZ9I\"}}", "isContentBase64": false } } diff --git a/src/ManagedServiceIdentity/test/Get-AzUserAssignedIdentity.Recording.json b/src/ManagedServiceIdentity/test/Get-AzUserAssignedIdentity.Recording.json index 1f5dbbe98c4d..7bf92dcf3e1f 100644 --- a/src/ManagedServiceIdentity/test/Get-AzUserAssignedIdentity.Recording.json +++ b/src/ManagedServiceIdentity/test/Get-AzUserAssignedIdentity.Recording.json @@ -1,17 +1,17 @@ { - "Get-AzUserAssignedIdentity+[NoContext]+List+$GET+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/providers/Microsoft.ManagedIdentity/userAssignedIdentities?api-version=2022-01-31-preview+1": { + "Get-AzUserAssignedIdentity+[NoContext]+List+$GET+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/providers/Microsoft.ManagedIdentity/userAssignedIdentities?api-version=2023-01-31+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/providers/Microsoft.ManagedIdentity/userAssignedIdentities?api-version=2022-01-31-preview", + "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/providers/Microsoft.ManagedIdentity/userAssignedIdentities?api-version=2023-01-31", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "21" ], - "x-ms-client-request-id": [ "e8c88d19-ef42-4ca0-9488-97c6c0223c31" ], + "x-ms-client-request-id": [ "e86de982-e7e7-4b5b-9d76-c0d7635c7f20" ], "CommandName": [ "Get-AzUserAssignedIdentity" ], "FullCommandName": [ "Get-AzUserAssignedIdentity_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ManagedServiceIdentity/0.2.0" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ManagedServiceIdentity/0.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -22,37 +22,37 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "", "" ], + "x-ms-original-request-ids": [ "", "", "" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-request-id": [ "fe7bcd05-6c18-473f-bfad-50db47acddb6" ], - "x-ms-correlation-request-id": [ "fe7bcd05-6c18-473f-bfad-50db47acddb6" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20220906T145323Z:fe7bcd05-6c18-473f-bfad-50db47acddb6" ], + "x-ms-request-id": [ "b90eed3d-eb81-486e-b99c-6c371336217e" ], + "x-ms-correlation-request-id": [ "b90eed3d-eb81-486e-b99c-6c371336217e" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20230214T115917Z:b90eed3d-eb81-486e-b99c-6c371336217e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Tue, 06 Sep 2022 14:53:23 GMT" ] + "Date": [ "Tue, 14 Feb 2023 11:59:17 GMT" ] }, "ContentHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], - "Content-Length": [ "1811" ] + "Content-Length": [ "3539" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/ar-rg-8or9dp5v/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ar-identity6al5po\",\"name\":\"ar-identity6al5po\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"tenantId\":\"a66b4d27-b1b3-4b60-8b06-7fb4fd05bc3c\",\"principalId\":\"8b30b04e-ebab-4a3e-93ad-459352ad3bc7\",\"clientId\":\"9ecc6987-94a0-4548-8855-4b0c4fbddd72\"}},{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/identity-jvsqdw9r/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identityhknlo4\",\"name\":\"identityhknlo4\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"tenantId\":\"a66b4d27-b1b3-4b60-8b06-7fb4fd05bc3c\",\"principalId\":\"9da8a443-1b0d-4aec-97df-d0b13d0c1903\",\"clientId\":\"44f98dd3-e1f6-4fe6-9579-5fb55a0f4603\"}},{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/fic-rg-1znoxkhq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-ws41z9\",\"name\":\"fic-identity-ws41z9\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"tenantId\":\"a66b4d27-b1b3-4b60-8b06-7fb4fd05bc3c\",\"principalId\":\"f98073fd-478e-4df6-b4b0-e10b9bd84d59\",\"clientId\":\"13c13c73-1b75-4691-9211-8eacf98ee7e8\"}},{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/azure-rg-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/uai-pwsh01\",\"name\":\"uai-pwsh01\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"tenantId\":\"a66b4d27-b1b3-4b60-8b06-7fb4fd05bc3c\",\"principalId\":\"cea5a8bd-7c86-467f-9362-1d5eb33177d7\",\"clientId\":\"aaa729d1-4545-4472-8ffc-2bd64fcdea90\"}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/azure-rg-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic_demo2\",\"name\":\"fic_demo2\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"location\":\"westeurope\",\"tags\":{},\"properties\":{\"tenantId\":\"a66b4d27-b1b3-4b60-8b06-7fb4fd05bc3c\",\"principalId\":\"e1646919-c812-4dd2-abfe-1ef397774a4d\",\"clientId\":\"0042e980-9700-4889-8760-85cd8dabd79d\"}},{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/azure-rg-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/222\",\"name\":\"222\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"location\":\"westeurope\",\"tags\":{},\"properties\":{\"tenantId\":\"a66b4d27-b1b3-4b60-8b06-7fb4fd05bc3c\",\"principalId\":\"fe07b70f-4cbb-4abd-8c2f-a3714eea71c6\",\"clientId\":\"34564bda-c03b-4106-827f-de8c6e3abd96\"}},{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/azure-rg-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/111\",\"name\":\"111\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"location\":\"westeurope\",\"tags\":{},\"properties\":{\"tenantId\":\"a66b4d27-b1b3-4b60-8b06-7fb4fd05bc3c\",\"principalId\":\"dea3ce9d-dceb-4cf8-8329-d0b2a388d315\",\"clientId\":\"7a3976b2-863d-4f36-b799-65e8f22d3074\"}},{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/ar-rg-xh7yipq8/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ar-identityidcz62\",\"name\":\"ar-identityidcz62\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"tenantId\":\"a66b4d27-b1b3-4b60-8b06-7fb4fd05bc3c\",\"principalId\":\"dfb06393-1822-4980-8f81-429007e3b4d9\",\"clientId\":\"6a434ba1-d5a8-425a-8d42-c5ff05988655\"}},{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/identity-wmbx18cj/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identitybsw8q5\",\"name\":\"identitybsw8q5\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"tenantId\":\"a66b4d27-b1b3-4b60-8b06-7fb4fd05bc3c\",\"principalId\":\"84d62ad1-cb0e-4c7f-b7c8-d716357ad438\",\"clientId\":\"40fc1be0-c9b4-44c1-8fe2-17463294f35c\"}},{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/fic-rg-49ei1m3y/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-oqecha\",\"name\":\"fic-identity-oqecha\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"tenantId\":\"a66b4d27-b1b3-4b60-8b06-7fb4fd05bc3c\",\"principalId\":\"12943eb2-b43a-42df-a74b-d20e82d0e317\",\"clientId\":\"b7f2faec-c383-4408-b7b3-52b51dbd113d\"}},{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/azure-rg-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/uai-pwsh01\",\"name\":\"uai-pwsh01\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"tenantId\":\"a66b4d27-b1b3-4b60-8b06-7fb4fd05bc3c\",\"principalId\":\"cea5a8bd-7c86-467f-9362-1d5eb33177d7\",\"clientId\":\"aaa729d1-4545-4472-8ffc-2bd64fcdea90\"}},{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/azure-rg-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/parent_uami\",\"name\":\"parent_uami\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"tenantId\":\"a66b4d27-b1b3-4b60-8b06-7fb4fd05bc3c\",\"principalId\":\"c847f856-3bb8-4979-a131-b35eb2a38eed\",\"clientId\":\"16aa9657-aff6-49b2-8f48-8d63dfd86423\"}}]}", "isContentBase64": false } }, - "Get-AzUserAssignedIdentity+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-jvsqdw9r/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identityhknlo4?api-version=2022-01-31-preview+1": { + "Get-AzUserAssignedIdentity+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-wmbx18cj/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identitybsw8q5?api-version=2023-01-31+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-jvsqdw9r/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identityhknlo4?api-version=2022-01-31-preview", + "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-wmbx18cj/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identitybsw8q5?api-version=2023-01-31", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "22" ], - "x-ms-client-request-id": [ "11608356-96f0-49cc-8292-938c8c16bbf2" ], + "x-ms-client-request-id": [ "3ea71150-ca56-43f1-820c-9f3a893be3fe" ], "CommandName": [ "Get-AzUserAssignedIdentity" ], "FullCommandName": [ "Get-AzUserAssignedIdentity_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ManagedServiceIdentity/0.2.0" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ManagedServiceIdentity/0.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -65,34 +65,34 @@ "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-request-id": [ "42d184bc-540c-4ba7-8a25-87ecfaf15301" ], - "x-ms-correlation-request-id": [ "42d184bc-540c-4ba7-8a25-87ecfaf15301" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20220906T145324Z:42d184bc-540c-4ba7-8a25-87ecfaf15301" ], + "x-ms-request-id": [ "7c52bd6f-6828-44ee-be5a-ee1b1d220fd2" ], + "x-ms-correlation-request-id": [ "7c52bd6f-6828-44ee-be5a-ee1b1d220fd2" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20230214T115917Z:7c52bd6f-6828-44ee-be5a-ee1b1d220fd2" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Tue, 06 Sep 2022 14:53:23 GMT" ] + "Date": [ "Tue, 14 Feb 2023 11:59:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "450" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/identity-jvsqdw9r/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identityhknlo4\",\"name\":\"identityhknlo4\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"tenantId\":\"a66b4d27-b1b3-4b60-8b06-7fb4fd05bc3c\",\"principalId\":\"9da8a443-1b0d-4aec-97df-d0b13d0c1903\",\"clientId\":\"44f98dd3-e1f6-4fe6-9579-5fb55a0f4603\"}}", + "Content": "{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/identity-wmbx18cj/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identitybsw8q5\",\"name\":\"identitybsw8q5\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"tenantId\":\"a66b4d27-b1b3-4b60-8b06-7fb4fd05bc3c\",\"principalId\":\"84d62ad1-cb0e-4c7f-b7c8-d716357ad438\",\"clientId\":\"40fc1be0-c9b4-44c1-8fe2-17463294f35c\"}}", "isContentBase64": false } }, - "Get-AzUserAssignedIdentity+[NoContext]+List1+$GET+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-jvsqdw9r/providers/Microsoft.ManagedIdentity/userAssignedIdentities?api-version=2022-01-31-preview+1": { + "Get-AzUserAssignedIdentity+[NoContext]+List1+$GET+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-wmbx18cj/providers/Microsoft.ManagedIdentity/userAssignedIdentities?api-version=2023-01-31+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-jvsqdw9r/providers/Microsoft.ManagedIdentity/userAssignedIdentities?api-version=2022-01-31-preview", + "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-wmbx18cj/providers/Microsoft.ManagedIdentity/userAssignedIdentities?api-version=2023-01-31", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "23" ], - "x-ms-client-request-id": [ "b9ef1371-03dc-4d01-8629-548d4a21a639" ], + "x-ms-client-request-id": [ "e4b49ee6-ab11-4d7b-a234-4794286f73ac" ], "CommandName": [ "Get-AzUserAssignedIdentity" ], "FullCommandName": [ "Get-AzUserAssignedIdentity_List1" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ManagedServiceIdentity/0.2.0" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ManagedServiceIdentity/0.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -105,34 +105,34 @@ "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], - "x-ms-request-id": [ "f2c39390-d92c-42be-908e-262c70273a6d" ], - "x-ms-correlation-request-id": [ "f2c39390-d92c-42be-908e-262c70273a6d" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20220906T145325Z:f2c39390-d92c-42be-908e-262c70273a6d" ], + "x-ms-request-id": [ "2fb56012-6e68-4673-a614-33ceeb58a2d2" ], + "x-ms-correlation-request-id": [ "2fb56012-6e68-4673-a614-33ceeb58a2d2" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20230214T115918Z:2fb56012-6e68-4673-a614-33ceeb58a2d2" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Tue, 06 Sep 2022 14:53:24 GMT" ] + "Date": [ "Tue, 14 Feb 2023 11:59:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "462" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/identity-jvsqdw9r/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identityhknlo4\",\"name\":\"identityhknlo4\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"tenantId\":\"a66b4d27-b1b3-4b60-8b06-7fb4fd05bc3c\",\"principalId\":\"9da8a443-1b0d-4aec-97df-d0b13d0c1903\",\"clientId\":\"44f98dd3-e1f6-4fe6-9579-5fb55a0f4603\"}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/identity-wmbx18cj/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identitybsw8q5\",\"name\":\"identitybsw8q5\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"tenantId\":\"a66b4d27-b1b3-4b60-8b06-7fb4fd05bc3c\",\"principalId\":\"84d62ad1-cb0e-4c7f-b7c8-d716357ad438\",\"clientId\":\"40fc1be0-c9b4-44c1-8fe2-17463294f35c\"}}]}", "isContentBase64": false } }, - "Get-AzUserAssignedIdentity+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-jvsqdw9r/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identityhknlo4?api-version=2022-01-31-preview+1": { + "Get-AzUserAssignedIdentity+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-wmbx18cj/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identitybsw8q5?api-version=2023-01-31+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-jvsqdw9r/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identityhknlo4?api-version=2022-01-31-preview", + "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-wmbx18cj/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identitybsw8q5?api-version=2023-01-31", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "24" ], - "x-ms-client-request-id": [ "a2eb7593-f571-4a56-b8f8-e8da2ae653dc" ], + "x-ms-client-request-id": [ "859e340f-ab0b-4450-afdb-c79f7aa87628" ], "CommandName": [ "Get-AzUserAssignedIdentity" ], "FullCommandName": [ "Get-AzUserAssignedIdentity_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ManagedServiceIdentity/0.2.0" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ManagedServiceIdentity/0.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -145,34 +145,34 @@ "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], - "x-ms-request-id": [ "c27cac0b-915e-41f5-97d9-6b60846f8bd6" ], - "x-ms-correlation-request-id": [ "c27cac0b-915e-41f5-97d9-6b60846f8bd6" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20220906T145325Z:c27cac0b-915e-41f5-97d9-6b60846f8bd6" ], + "x-ms-request-id": [ "0917a592-6259-4024-8cc4-06df599120a1" ], + "x-ms-correlation-request-id": [ "0917a592-6259-4024-8cc4-06df599120a1" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20230214T115918Z:0917a592-6259-4024-8cc4-06df599120a1" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Tue, 06 Sep 2022 14:53:24 GMT" ] + "Date": [ "Tue, 14 Feb 2023 11:59:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "450" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/identity-jvsqdw9r/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identityhknlo4\",\"name\":\"identityhknlo4\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"tenantId\":\"a66b4d27-b1b3-4b60-8b06-7fb4fd05bc3c\",\"principalId\":\"9da8a443-1b0d-4aec-97df-d0b13d0c1903\",\"clientId\":\"44f98dd3-e1f6-4fe6-9579-5fb55a0f4603\"}}", + "Content": "{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/identity-wmbx18cj/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identitybsw8q5\",\"name\":\"identitybsw8q5\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"tenantId\":\"a66b4d27-b1b3-4b60-8b06-7fb4fd05bc3c\",\"principalId\":\"84d62ad1-cb0e-4c7f-b7c8-d716357ad438\",\"clientId\":\"40fc1be0-c9b4-44c1-8fe2-17463294f35c\"}}", "isContentBase64": false } }, - "Get-AzUserAssignedIdentity+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-jvsqdw9r/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identityhknlo4?api-version=2022-01-31-preview+2": { + "Get-AzUserAssignedIdentity+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-wmbx18cj/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identitybsw8q5?api-version=2023-01-31+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-jvsqdw9r/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identityhknlo4?api-version=2022-01-31-preview", + "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-wmbx18cj/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identitybsw8q5?api-version=2023-01-31", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "25" ], - "x-ms-client-request-id": [ "01a6914d-a792-4cd4-b4f9-166f99a3099e" ], + "x-ms-client-request-id": [ "57063a88-6d6e-4324-8c7c-e3212dd3cbe9" ], "CommandName": [ "Get-AzUserAssignedIdentity" ], "FullCommandName": [ "Get-AzUserAssignedIdentity_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ManagedServiceIdentity/0.2.0" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ManagedServiceIdentity/0.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -185,18 +185,18 @@ "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], - "x-ms-request-id": [ "54fef8b0-f722-4154-b99f-0c9b110c92b2" ], - "x-ms-correlation-request-id": [ "54fef8b0-f722-4154-b99f-0c9b110c92b2" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20220906T145325Z:54fef8b0-f722-4154-b99f-0c9b110c92b2" ], + "x-ms-request-id": [ "fb1889db-a639-43a3-9755-a0c739944ec1" ], + "x-ms-correlation-request-id": [ "fb1889db-a639-43a3-9755-a0c739944ec1" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20230214T115918Z:fb1889db-a639-43a3-9755-a0c739944ec1" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Tue, 06 Sep 2022 14:53:25 GMT" ] + "Date": [ "Tue, 14 Feb 2023 11:59:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "450" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/identity-jvsqdw9r/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identityhknlo4\",\"name\":\"identityhknlo4\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"tenantId\":\"a66b4d27-b1b3-4b60-8b06-7fb4fd05bc3c\",\"principalId\":\"9da8a443-1b0d-4aec-97df-d0b13d0c1903\",\"clientId\":\"44f98dd3-e1f6-4fe6-9579-5fb55a0f4603\"}}", + "Content": "{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/identity-wmbx18cj/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identitybsw8q5\",\"name\":\"identitybsw8q5\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"tenantId\":\"a66b4d27-b1b3-4b60-8b06-7fb4fd05bc3c\",\"principalId\":\"84d62ad1-cb0e-4c7f-b7c8-d716357ad438\",\"clientId\":\"40fc1be0-c9b4-44c1-8fe2-17463294f35c\"}}", "isContentBase64": false } } diff --git a/src/ManagedServiceIdentity/test/Get-AzUserAssignedIdentityAssociatedResource.Recording.json b/src/ManagedServiceIdentity/test/Get-AzUserAssignedIdentityAssociatedResource.Recording.json index 4b669b759835..66b80ed2b81e 100644 --- a/src/ManagedServiceIdentity/test/Get-AzUserAssignedIdentityAssociatedResource.Recording.json +++ b/src/ManagedServiceIdentity/test/Get-AzUserAssignedIdentityAssociatedResource.Recording.json @@ -1,17 +1,17 @@ { - "Get-AzSystemAssignedIdentity+[NoContext]+Get+$POST+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/ar-rg-8or9dp5v/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ar-identity6al5po/listAssociatedResources?api-version=2022-01-31-preview+1": { + "Get-AzSystemAssignedIdentity+[NoContext]+Get+$POST+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/ar-rg-xh7yipq8/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ar-identityidcz62/listAssociatedResources?api-version=2022-01-31-preview+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/ar-rg-8or9dp5v/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ar-identity6al5po/listAssociatedResources?api-version=2022-01-31-preview", + "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/ar-rg-xh7yipq8/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ar-identityidcz62/listAssociatedResources?api-version=2022-01-31-preview", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "26" ], - "x-ms-client-request-id": [ "745241e9-456f-4db6-8e84-46e2f3619325" ], + "x-ms-client-request-id": [ "0afb81be-e395-4690-9030-f537062b1716" ], "CommandName": [ "Get-AzUserAssignedIdentityAssociatedResource" ], "FullCommandName": [ "Get-AzUserAssignedIdentityAssociatedResource_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ManagedServiceIdentity/0.2.0" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ManagedServiceIdentity/0.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -24,18 +24,18 @@ "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], - "x-ms-request-id": [ "7cd777cc-3266-4801-ac53-457a5d6ff283" ], - "x-ms-correlation-request-id": [ "7cd777cc-3266-4801-ac53-457a5d6ff283" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20220906T145329Z:7cd777cc-3266-4801-ac53-457a5d6ff283" ], + "x-ms-request-id": [ "6e3271ec-181b-491a-90e2-4f84196ce502" ], + "x-ms-correlation-request-id": [ "6e3271ec-181b-491a-90e2-4f84196ce502" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20230214T115923Z:6e3271ec-181b-491a-90e2-4f84196ce502" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Tue, 06 Sep 2022 14:53:28 GMT" ] + "Date": [ "Tue, 14 Feb 2023 11:59:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "380" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"totalCount\":1,\"value\":[{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-jvsqdw9r/providers/Microsoft.Web/sites/appServicegf62n9\",\"name\":\"appServicegf62n9\",\"type\":\"microsoft.web/sites\",\"resourceGroup\":\"identity-jvsqdw9r\",\"subscriptionId\":\"0336439f-0e9d-44ec-975e-62accb9b3901\",\"subscriptionDisplayName\":\"Visual Studio Enterprise Subscription\"}]}", + "Content": "{\"totalCount\":1,\"value\":[{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-wmbx18cj/providers/Microsoft.Web/sites/appService1l9p6y\",\"name\":\"appService1l9p6y\",\"type\":\"microsoft.web/sites\",\"resourceGroup\":\"identity-wmbx18cj\",\"subscriptionId\":\"0336439f-0e9d-44ec-975e-62accb9b3901\",\"subscriptionDisplayName\":\"Visual Studio Enterprise Subscription\"}]}", "isContentBase64": false } } diff --git a/src/ManagedServiceIdentity/test/New-AzFederatedIdentityCredentials.Recording.json b/src/ManagedServiceIdentity/test/New-AzFederatedIdentityCredentials.Recording.json index bb252e8cf2ea..1fc11c3831c9 100644 --- a/src/ManagedServiceIdentity/test/New-AzFederatedIdentityCredentials.Recording.json +++ b/src/ManagedServiceIdentity/test/New-AzFederatedIdentityCredentials.Recording.json @@ -1,9 +1,9 @@ { - "New-AzFederatedIdentityCredentials+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-1znoxkhq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-ws41z9/federatedIdentityCredentials/fic-gwpmy6?api-version=2022-01-31-preview+1": { + "New-AzFederatedIdentityCredentials+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-49ei1m3y/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-oqecha/federatedIdentityCredentials/fic-blsv9r?api-version=2023-01-31+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-1znoxkhq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-ws41z9/federatedIdentityCredentials/fic-gwpmy6?api-version=2022-01-31-preview", - "Content": "{\n \"properties\": {\n \"issuer\": \"https://kubernetes-oauth.azure.bntxv3\",\n \"subject\": \"system:serviceaccount:ns:svcaccount-2s401c\",\n \"audiences\": [ \"api://AzureADTokenExchange\" ]\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-49ei1m3y/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-oqecha/federatedIdentityCredentials/fic-blsv9r?api-version=2023-01-31", + "Content": "{\n \"properties\": {\n \"issuer\": \"https://kubernetes-oauth.azure.npolvx\",\n \"subject\": \"system:serviceaccount:ns:svcaccount-f2p1wq\",\n \"audiences\": [ \"api://AzureADTokenExchange\" ]\n }\n}", "isContentBase64": false, "Headers": { }, @@ -17,21 +17,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/fic-rg-1znoxkhq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-ws41z9/federatedIdentityCredentials/fic-gwpmy6" ], + "Location": [ "/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/fic-rg-49ei1m3y/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-oqecha/federatedIdentityCredentials/fic-blsv9r" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], - "x-ms-request-id": [ "b466361f-2261-4306-a481-b9f0bebe11ba" ], - "x-ms-correlation-request-id": [ "b466361f-2261-4306-a481-b9f0bebe11ba" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20220906T145332Z:b466361f-2261-4306-a481-b9f0bebe11ba" ], + "x-ms-request-id": [ "be18455f-3249-4cd8-9a8a-0bb6b5b43068" ], + "x-ms-correlation-request-id": [ "be18455f-3249-4cd8-9a8a-0bb6b5b43068" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20230214T115926Z:be18455f-3249-4cd8-9a8a-0bb6b5b43068" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Tue, 06 Sep 2022 14:53:31 GMT" ] + "Date": [ "Tue, 14 Feb 2023 11:59:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "479" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/fic-rg-1znoxkhq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-ws41z9/federatedIdentityCredentials/fic-gwpmy6\",\"name\":\"fic-gwpmy6\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials\",\"properties\":{\"issuer\":\"https://kubernetes-oauth.azure.bntxv3\",\"subject\":\"system:serviceaccount:ns:svcaccount-2s401c\",\"audiences\":[\"api://AzureADTokenExchange\"]}}", + "Content": "{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/fic-rg-49ei1m3y/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-oqecha/federatedIdentityCredentials/fic-blsv9r\",\"name\":\"fic-blsv9r\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials\",\"properties\":{\"issuer\":\"https://kubernetes-oauth.azure.npolvx\",\"subject\":\"system:serviceaccount:ns:svcaccount-f2p1wq\",\"audiences\":[\"api://AzureADTokenExchange\"]}}", "isContentBase64": false } } diff --git a/src/ManagedServiceIdentity/test/New-AzUserAssignedIdentity.Recording.json b/src/ManagedServiceIdentity/test/New-AzUserAssignedIdentity.Recording.json index 4d8959294c1b..f784a14b3717 100644 --- a/src/ManagedServiceIdentity/test/New-AzUserAssignedIdentity.Recording.json +++ b/src/ManagedServiceIdentity/test/New-AzUserAssignedIdentity.Recording.json @@ -1,8 +1,8 @@ { - "New-AzUserAssignedIdentity+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-jvsqdw9r/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identityw6movs?api-version=2022-01-31-preview+1": { + "New-AzUserAssignedIdentity+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-wmbx18cj/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identityeo64yq?api-version=2023-01-31+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-jvsqdw9r/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identityw6movs?api-version=2022-01-31-preview", + "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-wmbx18cj/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identityeo64yq?api-version=2023-01-31", "Content": "{\n \"location\": \"Central US\"\n}", "isContentBase64": false, "Headers": { @@ -17,21 +17,21 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/identity-jvsqdw9r/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identityw6movs" ], + "Location": [ "/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/identity-wmbx18cj/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identityeo64yq" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], - "x-ms-request-id": [ "ef2824fc-ed97-4b88-9076-3fcb29f214d4" ], - "x-ms-correlation-request-id": [ "ef2824fc-ed97-4b88-9076-3fcb29f214d4" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20220906T145336Z:ef2824fc-ed97-4b88-9076-3fcb29f214d4" ], + "x-ms-request-id": [ "69fd6833-dd7c-40d6-ae60-851f5e29e977" ], + "x-ms-correlation-request-id": [ "69fd6833-dd7c-40d6-ae60-851f5e29e977" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20230214T115930Z:69fd6833-dd7c-40d6-ae60-851f5e29e977" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Tue, 06 Sep 2022 14:53:35 GMT" ] + "Date": [ "Tue, 14 Feb 2023 11:59:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "450" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/identity-jvsqdw9r/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identityw6movs\",\"name\":\"identityw6movs\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"tenantId\":\"a66b4d27-b1b3-4b60-8b06-7fb4fd05bc3c\",\"principalId\":\"49c22ba4-0b28-4982-9ce7-4674b9424a80\",\"clientId\":\"0dec13fc-23b4-44f3-a6b7-55ba18aa9aed\"}}", + "Content": "{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/identity-wmbx18cj/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identityeo64yq\",\"name\":\"identityeo64yq\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"tenantId\":\"a66b4d27-b1b3-4b60-8b06-7fb4fd05bc3c\",\"principalId\":\"c1de5485-bf9c-4d72-9e37-532feeddb801\",\"clientId\":\"009f4c8e-e907-4483-bb04-34b54042df1d\"}}", "isContentBase64": false } } diff --git a/src/ManagedServiceIdentity/test/Remove-AzFederatedIdentityCredentials.Recording.json b/src/ManagedServiceIdentity/test/Remove-AzFederatedIdentityCredentials.Recording.json index 46bd8a5b41ab..2adaaef791cd 100644 --- a/src/ManagedServiceIdentity/test/Remove-AzFederatedIdentityCredentials.Recording.json +++ b/src/ManagedServiceIdentity/test/Remove-AzFederatedIdentityCredentials.Recording.json @@ -1,17 +1,17 @@ { - "Remove-AzFederatedIdentityCredentials+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-1znoxkhq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-ws41z9/federatedIdentityCredentials/fic-gwpmy6?api-version=2022-01-31-preview+1": { + "Remove-AzFederatedIdentityCredentials+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-49ei1m3y/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-oqecha/federatedIdentityCredentials/fic-blsv9r?api-version=2023-01-31+1": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-1znoxkhq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-ws41z9/federatedIdentityCredentials/fic-gwpmy6?api-version=2022-01-31-preview", + "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-49ei1m3y/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-oqecha/federatedIdentityCredentials/fic-blsv9r?api-version=2023-01-31", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "29" ], - "x-ms-client-request-id": [ "1e1af60b-2ab0-444c-b63f-f7bf5447b9f0" ], + "x-ms-client-request-id": [ "812053e3-641d-435f-96d9-02ec5ea808b4" ], "CommandName": [ "Remove-AzFederatedIdentityCredentials" ], "FullCommandName": [ "Remove-AzFederatedIdentityCredentials_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ManagedServiceIdentity/0.2.0" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ManagedServiceIdentity/0.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -24,11 +24,11 @@ "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-request-id": [ "72eaa31f-5971-4bb2-bbe1-aeac7cb8d0ab" ], - "x-ms-correlation-request-id": [ "72eaa31f-5971-4bb2-bbe1-aeac7cb8d0ab" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20220906T145339Z:72eaa31f-5971-4bb2-bbe1-aeac7cb8d0ab" ], + "x-ms-request-id": [ "c129844c-4a5b-4520-8995-6644b52af328" ], + "x-ms-correlation-request-id": [ "c129844c-4a5b-4520-8995-6644b52af328" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20230214T115934Z:c129844c-4a5b-4520-8995-6644b52af328" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Tue, 06 Sep 2022 14:53:38 GMT" ] + "Date": [ "Tue, 14 Feb 2023 11:59:33 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -38,19 +38,19 @@ "isContentBase64": false } }, - "Remove-AzFederatedIdentityCredentials+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-1znoxkhq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-ws41z9/federatedIdentityCredentials?api-version=2022-01-31-preview+2": { + "Remove-AzFederatedIdentityCredentials+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-49ei1m3y/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-oqecha/federatedIdentityCredentials?api-version=2023-01-31+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-1znoxkhq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-ws41z9/federatedIdentityCredentials?api-version=2022-01-31-preview", + "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-49ei1m3y/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-oqecha/federatedIdentityCredentials?api-version=2023-01-31", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "30" ], - "x-ms-client-request-id": [ "cd7a3d69-59f9-4965-af9d-d7291e59302e" ], + "x-ms-client-request-id": [ "2a9fc0ab-0f1d-4b25-abc3-f6e00df3735f" ], "CommandName": [ "Get-AzFederatedIdentityCredentials" ], "FullCommandName": [ "Get-AzFederatedIdentityCredentials_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ManagedServiceIdentity/0.2.0" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ManagedServiceIdentity/0.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -63,26 +63,26 @@ "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], - "x-ms-request-id": [ "d7ed33e0-216a-423e-9e70-b719f718af76" ], - "x-ms-correlation-request-id": [ "d7ed33e0-216a-423e-9e70-b719f718af76" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20220906T145339Z:d7ed33e0-216a-423e-9e70-b719f718af76" ], + "x-ms-request-id": [ "3566135a-1cb6-4233-89fa-eac1f76753ee" ], + "x-ms-correlation-request-id": [ "3566135a-1cb6-4233-89fa-eac1f76753ee" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20230214T115934Z:3566135a-1cb6-4233-89fa-eac1f76753ee" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Tue, 06 Sep 2022 14:53:38 GMT" ] + "Date": [ "Tue, 14 Feb 2023 11:59:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "491" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/fic-rg-1znoxkhq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-ws41z9/federatedIdentityCredentials/fic-27zqjk\",\"name\":\"fic-27zqjk\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials\",\"properties\":{\"issuer\":\"https://kubernetes-oauth.azure.mpxq2a\",\"subject\":\"system:serviceaccount:ns:svcaccount-5iaowt\",\"audiences\":[\"api://AzureADTokenExchange\"]}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/fic-rg-49ei1m3y/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-oqecha/federatedIdentityCredentials/fic-mdkys2\",\"name\":\"fic-mdkys2\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials\",\"properties\":{\"issuer\":\"https://kubernetes-oauth.azure.pc6txw\",\"subject\":\"system:serviceaccount:ns:svcaccount-dq1fse\",\"audiences\":[\"api://AzureADTokenExchange\"]}}]}", "isContentBase64": false } }, - "Remove-AzFederatedIdentityCredentials+[NoContext]+DeleteViaIdentity+$PUT+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-1znoxkhq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-ws41z9/federatedIdentityCredentials/fic-mwuszy?api-version=2022-01-31-preview+1": { + "Remove-AzFederatedIdentityCredentials+[NoContext]+DeleteViaIdentity+$PUT+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-49ei1m3y/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-oqecha/federatedIdentityCredentials/fic-bqo1ic?api-version=2023-01-31+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-1znoxkhq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-ws41z9/federatedIdentityCredentials/fic-mwuszy?api-version=2022-01-31-preview", - "Content": "{\n \"properties\": {\n \"issuer\": \"https://kubernetes-oauth.azure.has2xv\",\n \"subject\": \"system:serviceaccount:ns:svcaccount-n4ugq7\",\n \"audiences\": [ \"api://AzureADTokenExchange\" ]\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-49ei1m3y/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-oqecha/federatedIdentityCredentials/fic-bqo1ic?api-version=2023-01-31", + "Content": "{\n \"properties\": {\n \"issuer\": \"https://kubernetes-oauth.azure.ou68i4\",\n \"subject\": \"system:serviceaccount:ns:svcaccount-dgysew\",\n \"audiences\": [ \"api://AzureADTokenExchange\" ]\n }\n}", "isContentBase64": false, "Headers": { }, @@ -96,37 +96,37 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/fic-rg-1znoxkhq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-ws41z9/federatedIdentityCredentials/fic-mwuszy" ], + "Location": [ "/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/fic-rg-49ei1m3y/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-oqecha/federatedIdentityCredentials/fic-bqo1ic" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1194" ], - "x-ms-request-id": [ "622667d0-1768-485e-9c18-a015cd67e6fa" ], - "x-ms-correlation-request-id": [ "622667d0-1768-485e-9c18-a015cd67e6fa" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20220906T145340Z:622667d0-1768-485e-9c18-a015cd67e6fa" ], + "x-ms-request-id": [ "63e25392-5515-4c35-8fbf-d1207aee7b41" ], + "x-ms-correlation-request-id": [ "63e25392-5515-4c35-8fbf-d1207aee7b41" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20230214T115935Z:63e25392-5515-4c35-8fbf-d1207aee7b41" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Tue, 06 Sep 2022 14:53:39 GMT" ] + "Date": [ "Tue, 14 Feb 2023 11:59:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "479" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/fic-rg-1znoxkhq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-ws41z9/federatedIdentityCredentials/fic-mwuszy\",\"name\":\"fic-mwuszy\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials\",\"properties\":{\"issuer\":\"https://kubernetes-oauth.azure.has2xv\",\"subject\":\"system:serviceaccount:ns:svcaccount-n4ugq7\",\"audiences\":[\"api://AzureADTokenExchange\"]}}", + "Content": "{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/fic-rg-49ei1m3y/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-oqecha/federatedIdentityCredentials/fic-bqo1ic\",\"name\":\"fic-bqo1ic\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials\",\"properties\":{\"issuer\":\"https://kubernetes-oauth.azure.ou68i4\",\"subject\":\"system:serviceaccount:ns:svcaccount-dgysew\",\"audiences\":[\"api://AzureADTokenExchange\"]}}", "isContentBase64": false } }, - "Remove-AzFederatedIdentityCredentials+[NoContext]+DeleteViaIdentity+$DELETE+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-1znoxkhq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-ws41z9/federatedIdentityCredentials/fic-mwuszy?api-version=2022-01-31-preview+2": { + "Remove-AzFederatedIdentityCredentials+[NoContext]+DeleteViaIdentity+$DELETE+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-49ei1m3y/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-oqecha/federatedIdentityCredentials/fic-bqo1ic?api-version=2023-01-31+2": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-1znoxkhq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-ws41z9/federatedIdentityCredentials/fic-mwuszy?api-version=2022-01-31-preview", + "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-49ei1m3y/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-oqecha/federatedIdentityCredentials/fic-bqo1ic?api-version=2023-01-31", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "32" ], - "x-ms-client-request-id": [ "a303d5ca-df4a-4c3a-b665-a220f33f24c7" ], + "x-ms-client-request-id": [ "8ac1b9da-1bd5-48da-926f-39b4d285eb86" ], "CommandName": [ "Remove-AzFederatedIdentityCredentials" ], "FullCommandName": [ "Remove-AzFederatedIdentityCredentials_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ManagedServiceIdentity/0.2.0" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ManagedServiceIdentity/0.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -139,11 +139,11 @@ "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], - "x-ms-request-id": [ "03bade04-cab8-4a03-855a-775ea671eb24" ], - "x-ms-correlation-request-id": [ "03bade04-cab8-4a03-855a-775ea671eb24" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20220906T145340Z:03bade04-cab8-4a03-855a-775ea671eb24" ], + "x-ms-request-id": [ "4dbde54e-8576-4ef5-83c8-f55462c93a1b" ], + "x-ms-correlation-request-id": [ "4dbde54e-8576-4ef5-83c8-f55462c93a1b" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20230214T115936Z:4dbde54e-8576-4ef5-83c8-f55462c93a1b" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Tue, 06 Sep 2022 14:53:40 GMT" ] + "Date": [ "Tue, 14 Feb 2023 11:59:36 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -153,19 +153,19 @@ "isContentBase64": false } }, - "Remove-AzFederatedIdentityCredentials+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-1znoxkhq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-ws41z9/federatedIdentityCredentials?api-version=2022-01-31-preview+3": { + "Remove-AzFederatedIdentityCredentials+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-49ei1m3y/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-oqecha/federatedIdentityCredentials?api-version=2023-01-31+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-1znoxkhq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-ws41z9/federatedIdentityCredentials?api-version=2022-01-31-preview", + "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-49ei1m3y/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-oqecha/federatedIdentityCredentials?api-version=2023-01-31", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "33" ], - "x-ms-client-request-id": [ "aa5a136d-b330-4191-b29e-6c154547d3a7" ], + "x-ms-client-request-id": [ "2150a950-6a2f-44ba-b6d2-7ccdcfaae827" ], "CommandName": [ "Get-AzFederatedIdentityCredentials" ], "FullCommandName": [ "Get-AzFederatedIdentityCredentials_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ManagedServiceIdentity/0.2.0" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ManagedServiceIdentity/0.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -178,18 +178,18 @@ "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], - "x-ms-request-id": [ "f2c4ae2c-9672-4738-9d32-bd50030beed1" ], - "x-ms-correlation-request-id": [ "f2c4ae2c-9672-4738-9d32-bd50030beed1" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20220906T145340Z:f2c4ae2c-9672-4738-9d32-bd50030beed1" ], + "x-ms-request-id": [ "db16120a-5d9d-43f3-a945-af4d2a28b487" ], + "x-ms-correlation-request-id": [ "db16120a-5d9d-43f3-a945-af4d2a28b487" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20230214T115937Z:db16120a-5d9d-43f3-a945-af4d2a28b487" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Tue, 06 Sep 2022 14:53:40 GMT" ] + "Date": [ "Tue, 14 Feb 2023 11:59:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "491" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/fic-rg-1znoxkhq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-ws41z9/federatedIdentityCredentials/fic-27zqjk\",\"name\":\"fic-27zqjk\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials\",\"properties\":{\"issuer\":\"https://kubernetes-oauth.azure.mpxq2a\",\"subject\":\"system:serviceaccount:ns:svcaccount-5iaowt\",\"audiences\":[\"api://AzureADTokenExchange\"]}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/fic-rg-49ei1m3y/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-oqecha/federatedIdentityCredentials/fic-mdkys2\",\"name\":\"fic-mdkys2\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials\",\"properties\":{\"issuer\":\"https://kubernetes-oauth.azure.pc6txw\",\"subject\":\"system:serviceaccount:ns:svcaccount-dq1fse\",\"audiences\":[\"api://AzureADTokenExchange\"]}}]}", "isContentBase64": false } } diff --git a/src/ManagedServiceIdentity/test/Remove-AzUserAssignedIdentity.Recording.json b/src/ManagedServiceIdentity/test/Remove-AzUserAssignedIdentity.Recording.json index 9943c9d3ebb3..c0124057d5b4 100644 --- a/src/ManagedServiceIdentity/test/Remove-AzUserAssignedIdentity.Recording.json +++ b/src/ManagedServiceIdentity/test/Remove-AzUserAssignedIdentity.Recording.json @@ -1,17 +1,17 @@ { - "Remove-AzUserAssignedIdentity+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-jvsqdw9r/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identityw6movs?api-version=2022-01-31-preview+1": { + "Remove-AzUserAssignedIdentity+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-wmbx18cj/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identityeo64yq?api-version=2023-01-31+1": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-jvsqdw9r/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identityw6movs?api-version=2022-01-31-preview", + "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-wmbx18cj/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identityeo64yq?api-version=2023-01-31", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "34" ], - "x-ms-client-request-id": [ "0141ddb8-be4a-44bc-ab9d-826a46f780e5" ], + "x-ms-client-request-id": [ "9e2cfd3f-9ef3-4d16-a21f-5a71df61f5ec" ], "CommandName": [ "Remove-AzUserAssignedIdentity" ], "FullCommandName": [ "Remove-AzUserAssignedIdentity_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ManagedServiceIdentity/0.2.0" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ManagedServiceIdentity/0.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -24,11 +24,11 @@ "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], - "x-ms-request-id": [ "14224610-cb95-4418-a2f2-053db61174e9" ], - "x-ms-correlation-request-id": [ "14224610-cb95-4418-a2f2-053db61174e9" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20220906T145346Z:14224610-cb95-4418-a2f2-053db61174e9" ], + "x-ms-request-id": [ "3246f9b3-84fb-4ef3-8a72-0d4540d2ff0c" ], + "x-ms-correlation-request-id": [ "3246f9b3-84fb-4ef3-8a72-0d4540d2ff0c" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20230214T115943Z:3246f9b3-84fb-4ef3-8a72-0d4540d2ff0c" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Tue, 06 Sep 2022 14:53:45 GMT" ] + "Date": [ "Tue, 14 Feb 2023 11:59:42 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -38,19 +38,19 @@ "isContentBase64": false } }, - "Remove-AzUserAssignedIdentity+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-jvsqdw9r/providers/Microsoft.ManagedIdentity/userAssignedIdentities?api-version=2022-01-31-preview+2": { + "Remove-AzUserAssignedIdentity+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-wmbx18cj/providers/Microsoft.ManagedIdentity/userAssignedIdentities?api-version=2023-01-31+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-jvsqdw9r/providers/Microsoft.ManagedIdentity/userAssignedIdentities?api-version=2022-01-31-preview", + "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-wmbx18cj/providers/Microsoft.ManagedIdentity/userAssignedIdentities?api-version=2023-01-31", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "35" ], - "x-ms-client-request-id": [ "821f9847-5ef4-47f0-85ad-56001f1bf0a1" ], + "x-ms-client-request-id": [ "21e4f898-778c-4850-912c-8500ee6a3127" ], "CommandName": [ "Get-AzUserAssignedIdentity" ], "FullCommandName": [ "Get-AzUserAssignedIdentity_List1" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ManagedServiceIdentity/0.2.0" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ManagedServiceIdentity/0.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -63,25 +63,25 @@ "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11986" ], - "x-ms-request-id": [ "322b3b13-3eb3-47a1-ac93-d74c5238e592" ], - "x-ms-correlation-request-id": [ "322b3b13-3eb3-47a1-ac93-d74c5238e592" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20220906T145346Z:322b3b13-3eb3-47a1-ac93-d74c5238e592" ], + "x-ms-request-id": [ "510834e7-3eca-4a17-9fc2-b03758557e68" ], + "x-ms-correlation-request-id": [ "510834e7-3eca-4a17-9fc2-b03758557e68" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20230214T115943Z:510834e7-3eca-4a17-9fc2-b03758557e68" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Tue, 06 Sep 2022 14:53:46 GMT" ] + "Date": [ "Tue, 14 Feb 2023 11:59:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "462" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/identity-jvsqdw9r/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identityhknlo4\",\"name\":\"identityhknlo4\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"tenantId\":\"a66b4d27-b1b3-4b60-8b06-7fb4fd05bc3c\",\"principalId\":\"9da8a443-1b0d-4aec-97df-d0b13d0c1903\",\"clientId\":\"44f98dd3-e1f6-4fe6-9579-5fb55a0f4603\"}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/identity-wmbx18cj/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identitybsw8q5\",\"name\":\"identitybsw8q5\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"tenantId\":\"a66b4d27-b1b3-4b60-8b06-7fb4fd05bc3c\",\"principalId\":\"84d62ad1-cb0e-4c7f-b7c8-d716357ad438\",\"clientId\":\"40fc1be0-c9b4-44c1-8fe2-17463294f35c\"}}]}", "isContentBase64": false } }, - "Remove-AzUserAssignedIdentity+[NoContext]+DeleteViaIdentity+$PUT+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-jvsqdw9r/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity40avkf?api-version=2022-01-31-preview+1": { + "Remove-AzUserAssignedIdentity+[NoContext]+DeleteViaIdentity+$PUT+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-wmbx18cj/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity4qpm3e?api-version=2023-01-31+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-jvsqdw9r/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity40avkf?api-version=2022-01-31-preview", + "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-wmbx18cj/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity4qpm3e?api-version=2023-01-31", "Content": "{\n \"location\": \"Central US\"\n}", "isContentBase64": false, "Headers": { @@ -96,37 +96,37 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/identity-jvsqdw9r/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity40avkf" ], + "Location": [ "/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/identity-wmbx18cj/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity4qpm3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1193" ], - "x-ms-request-id": [ "91bb2555-2817-44bb-8533-ea25afeb3478" ], - "x-ms-correlation-request-id": [ "91bb2555-2817-44bb-8533-ea25afeb3478" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20220906T145348Z:91bb2555-2817-44bb-8533-ea25afeb3478" ], + "x-ms-request-id": [ "ffa0de82-87de-471a-9910-153c7264d6f0" ], + "x-ms-correlation-request-id": [ "ffa0de82-87de-471a-9910-153c7264d6f0" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20230214T115945Z:ffa0de82-87de-471a-9910-153c7264d6f0" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Tue, 06 Sep 2022 14:53:47 GMT" ] + "Date": [ "Tue, 14 Feb 2023 11:59:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "450" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/identity-jvsqdw9r/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity40avkf\",\"name\":\"identity40avkf\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"tenantId\":\"a66b4d27-b1b3-4b60-8b06-7fb4fd05bc3c\",\"principalId\":\"c27dd8b3-fd1b-43c9-8f8c-57fbde9e39d0\",\"clientId\":\"91b05f18-ee1f-4372-a6da-6613f8b61190\"}}", + "Content": "{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/identity-wmbx18cj/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity4qpm3e\",\"name\":\"identity4qpm3e\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"tenantId\":\"a66b4d27-b1b3-4b60-8b06-7fb4fd05bc3c\",\"principalId\":\"eff7e43f-94dd-429c-a423-9d0120363d74\",\"clientId\":\"a87209e3-d072-4953-af99-b7900b3147d0\"}}", "isContentBase64": false } }, - "Remove-AzUserAssignedIdentity+[NoContext]+DeleteViaIdentity+$DELETE+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-jvsqdw9r/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity40avkf?api-version=2022-01-31-preview+2": { + "Remove-AzUserAssignedIdentity+[NoContext]+DeleteViaIdentity+$DELETE+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-wmbx18cj/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity4qpm3e?api-version=2023-01-31+2": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-jvsqdw9r/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity40avkf?api-version=2022-01-31-preview", + "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-wmbx18cj/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity4qpm3e?api-version=2023-01-31", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "37" ], - "x-ms-client-request-id": [ "6c17fe59-a975-4782-9865-a3fd5f7b0dc7" ], + "x-ms-client-request-id": [ "35333792-d42c-4859-a0df-9262eb1b974a" ], "CommandName": [ "Remove-AzUserAssignedIdentity" ], "FullCommandName": [ "Remove-AzUserAssignedIdentity_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ManagedServiceIdentity/0.2.0" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ManagedServiceIdentity/0.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -139,11 +139,11 @@ "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14996" ], - "x-ms-request-id": [ "5df19763-9d4f-4550-8017-434c28afc31f" ], - "x-ms-correlation-request-id": [ "5df19763-9d4f-4550-8017-434c28afc31f" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20220906T145350Z:5df19763-9d4f-4550-8017-434c28afc31f" ], + "x-ms-request-id": [ "99786802-929a-448f-85ab-6e50a0ede86d" ], + "x-ms-correlation-request-id": [ "99786802-929a-448f-85ab-6e50a0ede86d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20230214T115947Z:99786802-929a-448f-85ab-6e50a0ede86d" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Tue, 06 Sep 2022 14:53:50 GMT" ] + "Date": [ "Tue, 14 Feb 2023 11:59:46 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -153,19 +153,19 @@ "isContentBase64": false } }, - "Remove-AzUserAssignedIdentity+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-jvsqdw9r/providers/Microsoft.ManagedIdentity/userAssignedIdentities?api-version=2022-01-31-preview+3": { + "Remove-AzUserAssignedIdentity+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-wmbx18cj/providers/Microsoft.ManagedIdentity/userAssignedIdentities?api-version=2023-01-31+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-jvsqdw9r/providers/Microsoft.ManagedIdentity/userAssignedIdentities?api-version=2022-01-31-preview", + "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-wmbx18cj/providers/Microsoft.ManagedIdentity/userAssignedIdentities?api-version=2023-01-31", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "38" ], - "x-ms-client-request-id": [ "2ccd7dc5-d8d8-4987-bdf4-eea171c324c9" ], + "x-ms-client-request-id": [ "cbeecfac-1a8e-483d-bb2c-279f449a1e74" ], "CommandName": [ "Get-AzUserAssignedIdentity" ], "FullCommandName": [ "Get-AzUserAssignedIdentity_List1" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ManagedServiceIdentity/0.2.0" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ManagedServiceIdentity/0.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -178,18 +178,18 @@ "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11985" ], - "x-ms-request-id": [ "32b1052a-1d1d-492d-867b-90a66e65430e" ], - "x-ms-correlation-request-id": [ "32b1052a-1d1d-492d-867b-90a66e65430e" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20220906T145350Z:32b1052a-1d1d-492d-867b-90a66e65430e" ], + "x-ms-request-id": [ "10911d53-0c41-452f-8992-38271cb5319f" ], + "x-ms-correlation-request-id": [ "10911d53-0c41-452f-8992-38271cb5319f" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20230214T115948Z:10911d53-0c41-452f-8992-38271cb5319f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Tue, 06 Sep 2022 14:53:50 GMT" ] + "Date": [ "Tue, 14 Feb 2023 11:59:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "462" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/identity-jvsqdw9r/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identityhknlo4\",\"name\":\"identityhknlo4\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"tenantId\":\"a66b4d27-b1b3-4b60-8b06-7fb4fd05bc3c\",\"principalId\":\"9da8a443-1b0d-4aec-97df-d0b13d0c1903\",\"clientId\":\"44f98dd3-e1f6-4fe6-9579-5fb55a0f4603\"}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/identity-wmbx18cj/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identitybsw8q5\",\"name\":\"identitybsw8q5\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"tenantId\":\"a66b4d27-b1b3-4b60-8b06-7fb4fd05bc3c\",\"principalId\":\"84d62ad1-cb0e-4c7f-b7c8-d716357ad438\",\"clientId\":\"40fc1be0-c9b4-44c1-8fe2-17463294f35c\"}}]}", "isContentBase64": false } } diff --git a/src/ManagedServiceIdentity/test/Update-AzFederatedIdentityCredentials.Recording.json b/src/ManagedServiceIdentity/test/Update-AzFederatedIdentityCredentials.Recording.json index 0e22c67fb41c..48213c3fbe8f 100644 --- a/src/ManagedServiceIdentity/test/Update-AzFederatedIdentityCredentials.Recording.json +++ b/src/ManagedServiceIdentity/test/Update-AzFederatedIdentityCredentials.Recording.json @@ -1,9 +1,9 @@ { - "Update-AzFederatedIdentityCredentials+[NoContext]+UpdateExpanded+$PUT+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-1znoxkhq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-ws41z9/federatedIdentityCredentials/fic-27zqjk?api-version=2022-01-31-preview+1": { + "Update-AzFederatedIdentityCredentials+[NoContext]+UpdateExpanded+$PUT+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-49ei1m3y/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-oqecha/federatedIdentityCredentials/fic-mdkys2?api-version=2023-01-31+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-1znoxkhq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-ws41z9/federatedIdentityCredentials/fic-27zqjk?api-version=2022-01-31-preview", - "Content": "{\n \"properties\": {\n \"issuer\": \"https://kubernetes-oauth.azure.mpxq2a-updated\",\n \"subject\": \"system:serviceaccount:ns:svcaccount-5iaowt-updated\",\n \"audiences\": [ \"updated\" ]\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-49ei1m3y/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-oqecha/federatedIdentityCredentials/fic-mdkys2?api-version=2023-01-31", + "Content": "{\n \"properties\": {\n \"issuer\": \"https://kubernetes-oauth.azure.pc6txw-updated\",\n \"subject\": \"system:serviceaccount:ns:svcaccount-dq1fse-updated\",\n \"audiences\": [ \"updated\" ]\n }\n}", "isContentBase64": false, "Headers": { }, @@ -19,34 +19,34 @@ "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1192" ], - "x-ms-request-id": [ "b15cb5cb-7352-4de7-aea1-87471109c347" ], - "x-ms-correlation-request-id": [ "b15cb5cb-7352-4de7-aea1-87471109c347" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20220906T145358Z:b15cb5cb-7352-4de7-aea1-87471109c347" ], + "x-ms-request-id": [ "775bade9-d68d-405d-89ce-487cc3390225" ], + "x-ms-correlation-request-id": [ "775bade9-d68d-405d-89ce-487cc3390225" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20230214T115956Z:775bade9-d68d-405d-89ce-487cc3390225" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Tue, 06 Sep 2022 14:53:58 GMT" ] + "Date": [ "Tue, 14 Feb 2023 11:59:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "476" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/fic-rg-1znoxkhq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-ws41z9/federatedIdentityCredentials/fic-27zqjk\",\"name\":\"fic-27zqjk\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials\",\"properties\":{\"issuer\":\"https://kubernetes-oauth.azure.mpxq2a-updated\",\"subject\":\"system:serviceaccount:ns:svcaccount-5iaowt-updated\",\"audiences\":[\"updated\"]}}", + "Content": "{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/fic-rg-49ei1m3y/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-oqecha/federatedIdentityCredentials/fic-mdkys2\",\"name\":\"fic-mdkys2\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials\",\"properties\":{\"issuer\":\"https://kubernetes-oauth.azure.pc6txw-updated\",\"subject\":\"system:serviceaccount:ns:svcaccount-dq1fse-updated\",\"audiences\":[\"updated\"]}}", "isContentBase64": false } }, - "Update-AzFederatedIdentityCredentials+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-1znoxkhq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-ws41z9/federatedIdentityCredentials/fic-27zqjk?api-version=2022-01-31-preview+1": { + "Update-AzFederatedIdentityCredentials+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-49ei1m3y/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-oqecha/federatedIdentityCredentials/fic-mdkys2?api-version=2023-01-31+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-1znoxkhq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-ws41z9/federatedIdentityCredentials/fic-27zqjk?api-version=2022-01-31-preview", + "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-49ei1m3y/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-oqecha/federatedIdentityCredentials/fic-mdkys2?api-version=2023-01-31", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "40" ], - "x-ms-client-request-id": [ "4946bbbc-2cb6-4e70-83d1-6ea9f223033d" ], + "x-ms-client-request-id": [ "db74bb25-8c65-4fad-8bd5-7f1dc6bc498b" ], "CommandName": [ "Get-AzFederatedIdentityCredentials" ], "FullCommandName": [ "Get-AzFederatedIdentityCredentials_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ManagedServiceIdentity/0.2.0" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ManagedServiceIdentity/0.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -59,26 +59,26 @@ "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11984" ], - "x-ms-request-id": [ "eea3e38c-2c11-462c-87ac-1d34715c8806" ], - "x-ms-correlation-request-id": [ "eea3e38c-2c11-462c-87ac-1d34715c8806" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20220906T145359Z:eea3e38c-2c11-462c-87ac-1d34715c8806" ], + "x-ms-request-id": [ "201d1f17-dc21-484f-9a43-c3b0f5cc6219" ], + "x-ms-correlation-request-id": [ "201d1f17-dc21-484f-9a43-c3b0f5cc6219" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20230214T115956Z:201d1f17-dc21-484f-9a43-c3b0f5cc6219" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Tue, 06 Sep 2022 14:53:58 GMT" ] + "Date": [ "Tue, 14 Feb 2023 11:59:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "476" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/fic-rg-1znoxkhq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-ws41z9/federatedIdentityCredentials/fic-27zqjk\",\"name\":\"fic-27zqjk\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials\",\"properties\":{\"issuer\":\"https://kubernetes-oauth.azure.mpxq2a-updated\",\"subject\":\"system:serviceaccount:ns:svcaccount-5iaowt-updated\",\"audiences\":[\"updated\"]}}", + "Content": "{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/fic-rg-49ei1m3y/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-oqecha/federatedIdentityCredentials/fic-mdkys2\",\"name\":\"fic-mdkys2\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials\",\"properties\":{\"issuer\":\"https://kubernetes-oauth.azure.pc6txw-updated\",\"subject\":\"system:serviceaccount:ns:svcaccount-dq1fse-updated\",\"audiences\":[\"updated\"]}}", "isContentBase64": false } }, - "Update-AzFederatedIdentityCredentials+[NoContext]+UpdateViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-1znoxkhq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-ws41z9/federatedIdentityCredentials/fic-27zqjk?api-version=2022-01-31-preview+2": { + "Update-AzFederatedIdentityCredentials+[NoContext]+UpdateViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-49ei1m3y/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-oqecha/federatedIdentityCredentials/fic-mdkys2?api-version=2023-01-31+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-1znoxkhq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-ws41z9/federatedIdentityCredentials/fic-27zqjk?api-version=2022-01-31-preview", - "Content": "{\n \"properties\": {\n \"issuer\": \"https://kubernetes-oauth.azure.mpxq2a-updated2\",\n \"subject\": \"system:serviceaccount:ns:svcaccount-5iaowt-updated2\",\n \"audiences\": [ \"updated2\" ]\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/fic-rg-49ei1m3y/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-oqecha/federatedIdentityCredentials/fic-mdkys2?api-version=2023-01-31", + "Content": "{\n \"properties\": {\n \"issuer\": \"https://kubernetes-oauth.azure.pc6txw-updated2\",\n \"subject\": \"system:serviceaccount:ns:svcaccount-dq1fse-updated2\",\n \"audiences\": [ \"updated2\" ]\n }\n}", "isContentBase64": false, "Headers": { }, @@ -94,18 +94,18 @@ "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1191" ], - "x-ms-request-id": [ "6d27237a-b7a4-434d-b382-7e3bfd54cb43" ], - "x-ms-correlation-request-id": [ "6d27237a-b7a4-434d-b382-7e3bfd54cb43" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20220906T145359Z:6d27237a-b7a4-434d-b382-7e3bfd54cb43" ], + "x-ms-request-id": [ "8b16754c-3057-40d8-ae08-1ed96b47e36d" ], + "x-ms-correlation-request-id": [ "8b16754c-3057-40d8-ae08-1ed96b47e36d" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20230214T115957Z:8b16754c-3057-40d8-ae08-1ed96b47e36d" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Tue, 06 Sep 2022 14:53:59 GMT" ] + "Date": [ "Tue, 14 Feb 2023 11:59:56 GMT" ] }, "ContentHeaders": { "Content-Length": [ "479" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/fic-rg-1znoxkhq/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-ws41z9/federatedIdentityCredentials/fic-27zqjk\",\"name\":\"fic-27zqjk\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials\",\"properties\":{\"issuer\":\"https://kubernetes-oauth.azure.mpxq2a-updated2\",\"subject\":\"system:serviceaccount:ns:svcaccount-5iaowt-updated2\",\"audiences\":[\"updated2\"]}}", + "Content": "{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/fic-rg-49ei1m3y/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fic-identity-oqecha/federatedIdentityCredentials/fic-mdkys2\",\"name\":\"fic-mdkys2\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities/federatedIdentityCredentials\",\"properties\":{\"issuer\":\"https://kubernetes-oauth.azure.pc6txw-updated2\",\"subject\":\"system:serviceaccount:ns:svcaccount-dq1fse-updated2\",\"audiences\":[\"updated2\"]}}", "isContentBase64": false } } diff --git a/src/ManagedServiceIdentity/test/Update-AzUserAssignedIdentity.Recording.json b/src/ManagedServiceIdentity/test/Update-AzUserAssignedIdentity.Recording.json index 0d7e5bf1fe17..f4f5ed3cf724 100644 --- a/src/ManagedServiceIdentity/test/Update-AzUserAssignedIdentity.Recording.json +++ b/src/ManagedServiceIdentity/test/Update-AzUserAssignedIdentity.Recording.json @@ -1,8 +1,8 @@ { - "Update-AzUserAssignedIdentity+[NoContext]+UpdateExpanded+$PATCH+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-jvsqdw9r/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identityhknlo4?api-version=2022-01-31-preview+1": { + "Update-AzUserAssignedIdentity+[NoContext]+UpdateExpanded+$PATCH+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-wmbx18cj/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identitybsw8q5?api-version=2023-01-31+1": { "Request": { "Method": "PATCH", - "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-jvsqdw9r/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identityhknlo4?api-version=2022-01-31-preview", + "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-wmbx18cj/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identitybsw8q5?api-version=2023-01-31", "Content": "{\n \"tags\": {\n \"key02\": \"value02\",\n \"key01\": \"value01\"\n }\n}", "isContentBase64": false, "Headers": { @@ -19,34 +19,34 @@ "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1190" ], - "x-ms-request-id": [ "217731db-daff-45c7-8a21-8c48143ddbec" ], - "x-ms-correlation-request-id": [ "217731db-daff-45c7-8a21-8c48143ddbec" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20220906T145404Z:217731db-daff-45c7-8a21-8c48143ddbec" ], + "x-ms-request-id": [ "acb2292e-7ed6-41f4-93ee-2141785e7304" ], + "x-ms-correlation-request-id": [ "acb2292e-7ed6-41f4-93ee-2141785e7304" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20230214T120001Z:acb2292e-7ed6-41f4-93ee-2141785e7304" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Tue, 06 Sep 2022 14:54:03 GMT" ] + "Date": [ "Tue, 14 Feb 2023 12:00:01 GMT" ] }, "ContentHeaders": { "Content-Length": [ "485" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/identity-jvsqdw9r/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identityhknlo4\",\"name\":\"identityhknlo4\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"location\":\"centralus\",\"tags\":{\"key02\":\"value02\",\"key01\":\"value01\"},\"properties\":{\"tenantId\":\"a66b4d27-b1b3-4b60-8b06-7fb4fd05bc3c\",\"principalId\":\"9da8a443-1b0d-4aec-97df-d0b13d0c1903\",\"clientId\":\"44f98dd3-e1f6-4fe6-9579-5fb55a0f4603\"}}", + "Content": "{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/identity-wmbx18cj/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identitybsw8q5\",\"name\":\"identitybsw8q5\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"location\":\"centralus\",\"tags\":{\"key02\":\"value02\",\"key01\":\"value01\"},\"properties\":{\"tenantId\":\"a66b4d27-b1b3-4b60-8b06-7fb4fd05bc3c\",\"principalId\":\"84d62ad1-cb0e-4c7f-b7c8-d716357ad438\",\"clientId\":\"40fc1be0-c9b4-44c1-8fe2-17463294f35c\"}}", "isContentBase64": false } }, - "Update-AzUserAssignedIdentity+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-jvsqdw9r/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identityhknlo4?api-version=2022-01-31-preview+1": { + "Update-AzUserAssignedIdentity+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-wmbx18cj/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identitybsw8q5?api-version=2023-01-31+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-jvsqdw9r/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identityhknlo4?api-version=2022-01-31-preview", + "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-wmbx18cj/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identitybsw8q5?api-version=2023-01-31", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "43" ], - "x-ms-client-request-id": [ "dc714576-71be-49ce-a98a-aef2154cb60e" ], + "x-ms-client-request-id": [ "6c83af93-5a1a-44f6-a70a-8d2ad31e6225" ], "CommandName": [ "Get-AzUserAssignedIdentity" ], "FullCommandName": [ "Get-AzUserAssignedIdentity_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ManagedServiceIdentity/0.2.0" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ManagedServiceIdentity/0.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -59,26 +59,26 @@ "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11983" ], - "x-ms-request-id": [ "d24c0005-f6f5-4e4f-8d1c-26913f1027d9" ], - "x-ms-correlation-request-id": [ "d24c0005-f6f5-4e4f-8d1c-26913f1027d9" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20220906T145404Z:d24c0005-f6f5-4e4f-8d1c-26913f1027d9" ], + "x-ms-request-id": [ "d017d1c9-3e6b-4037-a4c3-151fce4a6b69" ], + "x-ms-correlation-request-id": [ "d017d1c9-3e6b-4037-a4c3-151fce4a6b69" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20230214T120002Z:d017d1c9-3e6b-4037-a4c3-151fce4a6b69" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Tue, 06 Sep 2022 14:54:03 GMT" ] + "Date": [ "Tue, 14 Feb 2023 12:00:01 GMT" ] }, "ContentHeaders": { "Content-Length": [ "485" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/identity-jvsqdw9r/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identityhknlo4\",\"name\":\"identityhknlo4\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"location\":\"centralus\",\"tags\":{\"key02\":\"value02\",\"key01\":\"value01\"},\"properties\":{\"tenantId\":\"a66b4d27-b1b3-4b60-8b06-7fb4fd05bc3c\",\"principalId\":\"9da8a443-1b0d-4aec-97df-d0b13d0c1903\",\"clientId\":\"44f98dd3-e1f6-4fe6-9579-5fb55a0f4603\"}}", + "Content": "{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/identity-wmbx18cj/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identitybsw8q5\",\"name\":\"identitybsw8q5\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"location\":\"centralus\",\"tags\":{\"key02\":\"value02\",\"key01\":\"value01\"},\"properties\":{\"tenantId\":\"a66b4d27-b1b3-4b60-8b06-7fb4fd05bc3c\",\"principalId\":\"84d62ad1-cb0e-4c7f-b7c8-d716357ad438\",\"clientId\":\"40fc1be0-c9b4-44c1-8fe2-17463294f35c\"}}", "isContentBase64": false } }, - "Update-AzUserAssignedIdentity+[NoContext]+UpdateViaIdentityExpanded+$PATCH+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-jvsqdw9r/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identityhknlo4?api-version=2022-01-31-preview+2": { + "Update-AzUserAssignedIdentity+[NoContext]+UpdateViaIdentityExpanded+$PATCH+https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-wmbx18cj/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identitybsw8q5?api-version=2023-01-31+2": { "Request": { "Method": "PATCH", - "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-jvsqdw9r/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identityhknlo4?api-version=2022-01-31-preview", - "Content": "{\n \"tags\": {\n \"key03\": \"value03\",\n \"key02\": \"value02\",\n \"key01\": \"value01\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-wmbx18cj/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identitybsw8q5?api-version=2023-01-31", + "Content": "{\n \"tags\": {\n \"key01\": \"value01\",\n \"key02\": \"value02\",\n \"key03\": \"value03\"\n }\n}", "isContentBase64": false, "Headers": { }, @@ -94,18 +94,18 @@ "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1189" ], - "x-ms-request-id": [ "aa62660f-fffc-4a59-baa5-78a57cd65c2b" ], - "x-ms-correlation-request-id": [ "aa62660f-fffc-4a59-baa5-78a57cd65c2b" ], - "x-ms-routing-request-id": [ "NORTHEUROPE:20220906T145405Z:aa62660f-fffc-4a59-baa5-78a57cd65c2b" ], + "x-ms-request-id": [ "1945d50f-75b9-407a-8614-5ddf8e4eb584" ], + "x-ms-correlation-request-id": [ "1945d50f-75b9-407a-8614-5ddf8e4eb584" ], + "x-ms-routing-request-id": [ "NORTHEUROPE:20230214T120004Z:1945d50f-75b9-407a-8614-5ddf8e4eb584" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Tue, 06 Sep 2022 14:54:05 GMT" ] + "Date": [ "Tue, 14 Feb 2023 12:00:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "503" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/identity-jvsqdw9r/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identityhknlo4\",\"name\":\"identityhknlo4\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"location\":\"centralus\",\"tags\":{\"key03\":\"value03\",\"key02\":\"value02\",\"key01\":\"value01\"},\"properties\":{\"tenantId\":\"a66b4d27-b1b3-4b60-8b06-7fb4fd05bc3c\",\"principalId\":\"9da8a443-1b0d-4aec-97df-d0b13d0c1903\",\"clientId\":\"44f98dd3-e1f6-4fe6-9579-5fb55a0f4603\"}}", + "Content": "{\"id\":\"/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourcegroups/identity-wmbx18cj/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identitybsw8q5\",\"name\":\"identitybsw8q5\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"location\":\"centralus\",\"tags\":{\"key01\":\"value01\",\"key02\":\"value02\",\"key03\":\"value03\"},\"properties\":{\"tenantId\":\"a66b4d27-b1b3-4b60-8b06-7fb4fd05bc3c\",\"principalId\":\"84d62ad1-cb0e-4c7f-b7c8-d716357ad438\",\"clientId\":\"40fc1be0-c9b4-44c1-8fe2-17463294f35c\"}}", "isContentBase64": false } } diff --git a/src/ManagedServiceIdentity/test/deployment-templates/app-service/parameters.json b/src/ManagedServiceIdentity/test/deployment-templates/app-service/parameters.json index 688add339a41..77c49ba6004c 100644 --- a/src/ManagedServiceIdentity/test/deployment-templates/app-service/parameters.json +++ b/src/ManagedServiceIdentity/test/deployment-templates/app-service/parameters.json @@ -3,13 +3,13 @@ "contentVersion": "1.0.0.0", "parameters": { "service_name": { - "value": "appServicegf62n9" + "value": "appService1l9p6y" }, "servicePlan_id": { - "value": "/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-jvsqdw9r/providers/Microsoft.Web/serverfarms/appServicePlanhzstpn" + "value": "/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-wmbx18cj/providers/Microsoft.Web/serverfarms/appServicePlani9g7zq" }, "ua_identity_id": { - "value": "/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/ar-rg-8or9dp5v/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ar-identity6al5po" + "value": "/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/ar-rg-xh7yipq8/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ar-identityidcz62" } } } diff --git a/src/ManagedServiceIdentity/test/deployment-templates/app-serviceplan/parameters.json b/src/ManagedServiceIdentity/test/deployment-templates/app-serviceplan/parameters.json index dab5640a3035..a1d663b6ff8a 100644 --- a/src/ManagedServiceIdentity/test/deployment-templates/app-serviceplan/parameters.json +++ b/src/ManagedServiceIdentity/test/deployment-templates/app-serviceplan/parameters.json @@ -3,7 +3,7 @@ "contentVersion": "1.0.0.0", "parameters": { "serviceplan_name": { - "value": "appServicePlanhzstpn" + "value": "appServicePlani9g7zq" } } } diff --git a/src/ManagedServiceIdentity/test/env.json b/src/ManagedServiceIdentity/test/env.json index 0d0439b592b2..ccef1916f7bd 100644 --- a/src/ManagedServiceIdentity/test/env.json +++ b/src/ManagedServiceIdentity/test/env.json @@ -1,28 +1,28 @@ { - "Issuer01": "https://kubernetes-oauth.azure.mpxq2a", - "ficUserIdentityName": "fic-identity-ws41z9", - "appServicePlanName": "appServicePlanhzstpn", - "Subject01": "system:serviceaccount:ns:svcaccount-5iaowt", - "userIdentityName01": "identityhknlo4", - "SubscriptionId": "0336439f-0e9d-44ec-975e-62accb9b3901", - "ficName01": "fic-27zqjk", - "Issuer03": "https://kubernetes-oauth.azure.has2xv", - "Subject02": "system:serviceaccount:ns:svcaccount-2s401c", - "appServiceName": "appServicegf62n9", - "userIdentityName02": "identityw6movs", - "associatedResourceResourceGroup": "ar-rg-8or9dp5v", - "userIdentityName03": "identity40avkf", - "location": "Central US", - "associatedResourceIdentityName": "ar-identity6al5po", - "ficName02": "fic-gwpmy6", - "ficResourceGroup": "fic-rg-1znoxkhq", - "appServiceId": "/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-jvsqdw9r/providers/Microsoft.Web/sites/appServicegf62n9", - "Issuer02": "https://kubernetes-oauth.azure.bntxv3", - "Tenant": "a66b4d27-b1b3-4b60-8b06-7fb4fd05bc3c", + "ficName02": "fic-blsv9r", + "Subject02": "system:serviceaccount:ns:svcaccount-f2p1wq", + "Issuer03": "https://kubernetes-oauth.azure.ou68i4", "ficAudience": [ "api://AzureADTokenExchange" ], - "ficName03": "fic-mwuszy", - "Subject03": "system:serviceaccount:ns:svcaccount-n4ugq7", - "resourceGroup": "identity-jvsqdw9r" + "SubscriptionId": "0336439f-0e9d-44ec-975e-62accb9b3901", + "ficUserIdentityName": "fic-identity-oqecha", + "resourceGroup": "identity-wmbx18cj", + "location": "Central US", + "Subject03": "system:serviceaccount:ns:svcaccount-dgysew", + "associatedResourceIdentityName": "ar-identityidcz62", + "Issuer01": "https://kubernetes-oauth.azure.pc6txw", + "ficName03": "fic-bqo1ic", + "userIdentityName01": "identitybsw8q5", + "userIdentityName03": "identity4qpm3e", + "ficName01": "fic-mdkys2", + "appServicePlanName": "appServicePlani9g7zq", + "userIdentityName02": "identityeo64yq", + "appServiceName": "appService1l9p6y", + "appServiceId": "/subscriptions/0336439f-0e9d-44ec-975e-62accb9b3901/resourceGroups/identity-wmbx18cj/providers/Microsoft.Web/sites/appService1l9p6y", + "Tenant": "a66b4d27-b1b3-4b60-8b06-7fb4fd05bc3c", + "Issuer02": "https://kubernetes-oauth.azure.npolvx", + "associatedResourceResourceGroup": "ar-rg-xh7yipq8", + "ficResourceGroup": "fic-rg-49ei1m3y", + "Subject01": "system:serviceaccount:ns:svcaccount-dq1fse" } diff --git a/src/Monitor/ActivityLogAlert.Autorest/docs/New-AzActivityLogAlertActionGroupObject.md b/src/Monitor/ActivityLogAlert.Autorest/docs/New-AzActivityLogAlertActionGroupObject.md index 07dc32f413df..80947870aefb 100644 --- a/src/Monitor/ActivityLogAlert.Autorest/docs/New-AzActivityLogAlertActionGroupObject.md +++ b/src/Monitor/ActivityLogAlert.Autorest/docs/New-AzActivityLogAlertActionGroupObject.md @@ -1,7 +1,7 @@ --- external help file: Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/az.ActivityLogAlert/new-AzActivityLogAlertActionGroupObject +online version: https://learn.microsoft.com/powershell/module/az.monitor/new-azactivitylogalertactiongroupobject schema: 2.0.0 --- diff --git a/src/Monitor/ActivityLogAlert.Autorest/docs/New-AzActivityLogAlertAlertRuleAnyOfOrLeafConditionObject.md b/src/Monitor/ActivityLogAlert.Autorest/docs/New-AzActivityLogAlertAlertRuleAnyOfOrLeafConditionObject.md index 25552c80823a..c1487bdb83ae 100644 --- a/src/Monitor/ActivityLogAlert.Autorest/docs/New-AzActivityLogAlertAlertRuleAnyOfOrLeafConditionObject.md +++ b/src/Monitor/ActivityLogAlert.Autorest/docs/New-AzActivityLogAlertAlertRuleAnyOfOrLeafConditionObject.md @@ -1,7 +1,7 @@ --- external help file: Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/az.ActivityLogAlert/new-AzActivityLogAlertAlertRuleAnyOfOrLeafConditionObject +online version: https://learn.microsoft.com/powershell/module/az.monitor/new-azactivitylogalertalertruleanyoforleafconditionobject schema: 2.0.0 --- diff --git a/src/Monitor/ActivityLogAlert.Autorest/docs/New-AzActivityLogAlertAlertRuleLeafConditionObject.md b/src/Monitor/ActivityLogAlert.Autorest/docs/New-AzActivityLogAlertAlertRuleLeafConditionObject.md index 90d1b8b37d32..9854b8385d70 100644 --- a/src/Monitor/ActivityLogAlert.Autorest/docs/New-AzActivityLogAlertAlertRuleLeafConditionObject.md +++ b/src/Monitor/ActivityLogAlert.Autorest/docs/New-AzActivityLogAlertAlertRuleLeafConditionObject.md @@ -1,7 +1,7 @@ --- external help file: Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/az.ActivityLogAlert/new-AzActivityLogAlertAlertRuleLeafConditionObject +online version: https://learn.microsoft.com/powershell/module/az.monitor/new-azactivitylogalertalertruleleafconditionobject schema: 2.0.0 --- diff --git a/src/Monitor/Autoscale.Autorest/docs/New-AzAutoscaleNotificationObject.md b/src/Monitor/Autoscale.Autorest/docs/New-AzAutoscaleNotificationObject.md index 81a3602bb5dd..3b41decf8cc8 100644 --- a/src/Monitor/Autoscale.Autorest/docs/New-AzAutoscaleNotificationObject.md +++ b/src/Monitor/Autoscale.Autorest/docs/New-AzAutoscaleNotificationObject.md @@ -1,7 +1,7 @@ --- external help file: Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/az.Autoscale/new-AzAutoscaleNotificationObject +online version: https://learn.microsoft.com/powershell/module/az.monitor/new-azautoscalenotificationobject schema: 2.0.0 --- diff --git a/src/Monitor/Autoscale.Autorest/docs/New-AzAutoscaleProfileObject.md b/src/Monitor/Autoscale.Autorest/docs/New-AzAutoscaleProfileObject.md index 56287dd1963d..58f51cd39255 100644 --- a/src/Monitor/Autoscale.Autorest/docs/New-AzAutoscaleProfileObject.md +++ b/src/Monitor/Autoscale.Autorest/docs/New-AzAutoscaleProfileObject.md @@ -1,7 +1,7 @@ --- external help file: Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/az.Autoscale/new-AzAutoscaleProfileObject +online version: https://learn.microsoft.com/powershell/module/az.monitor/new-azautoscaleprofileobject schema: 2.0.0 --- diff --git a/src/Monitor/Autoscale.Autorest/docs/New-AzAutoscaleScaleRuleMetricDimensionObject.md b/src/Monitor/Autoscale.Autorest/docs/New-AzAutoscaleScaleRuleMetricDimensionObject.md index ec604b719f1e..26bf49f0b3ba 100644 --- a/src/Monitor/Autoscale.Autorest/docs/New-AzAutoscaleScaleRuleMetricDimensionObject.md +++ b/src/Monitor/Autoscale.Autorest/docs/New-AzAutoscaleScaleRuleMetricDimensionObject.md @@ -1,7 +1,7 @@ --- external help file: Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/az.Autoscale/new-AzAutoscaleScaleRuleMetricDimensionObject +online version: https://learn.microsoft.com/powershell/module/az.monitor/new-azautoscalescalerulemetricdimensionobject schema: 2.0.0 --- diff --git a/src/Monitor/Autoscale.Autorest/docs/New-AzAutoscaleScaleRuleObject.md b/src/Monitor/Autoscale.Autorest/docs/New-AzAutoscaleScaleRuleObject.md index e4b772420349..006e7b05ce71 100644 --- a/src/Monitor/Autoscale.Autorest/docs/New-AzAutoscaleScaleRuleObject.md +++ b/src/Monitor/Autoscale.Autorest/docs/New-AzAutoscaleScaleRuleObject.md @@ -1,7 +1,7 @@ --- external help file: Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/az.Autoscale/new-AzAutoscaleScaleRuleObject +online version: https://learn.microsoft.com/powershell/module/az.monitor/new-azautoscalescaleruleobject schema: 2.0.0 --- diff --git a/src/Monitor/Autoscale.Autorest/docs/New-AzAutoscaleWebhookNotificationObject.md b/src/Monitor/Autoscale.Autorest/docs/New-AzAutoscaleWebhookNotificationObject.md index ea59fd0f9978..965e3c8be50e 100644 --- a/src/Monitor/Autoscale.Autorest/docs/New-AzAutoscaleWebhookNotificationObject.md +++ b/src/Monitor/Autoscale.Autorest/docs/New-AzAutoscaleWebhookNotificationObject.md @@ -1,7 +1,7 @@ --- external help file: Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/az.Autoscale/new-AzAutoscaleWebhookNotificationObject +online version: https://learn.microsoft.com/powershell/module/az.monitor/new-azautoscalewebhooknotificationobject schema: 2.0.0 --- diff --git a/src/Monitor/DiagnosticSetting.Autorest/docs/New-AzDiagnosticSettingLogSettingsObject.md b/src/Monitor/DiagnosticSetting.Autorest/docs/New-AzDiagnosticSettingLogSettingsObject.md index 49199c9c1fa9..11fb202216e9 100644 --- a/src/Monitor/DiagnosticSetting.Autorest/docs/New-AzDiagnosticSettingLogSettingsObject.md +++ b/src/Monitor/DiagnosticSetting.Autorest/docs/New-AzDiagnosticSettingLogSettingsObject.md @@ -1,7 +1,7 @@ --- external help file: Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/az.DiagnosticSetting/new-AzDiagnosticSettingLogSettingsObject +online version: https://learn.microsoft.com/powershell/module/az.monitor/new-azdiagnosticsettinglogsettingsobject schema: 2.0.0 --- diff --git a/src/Monitor/DiagnosticSetting.Autorest/docs/New-AzDiagnosticSettingMetricSettingsObject.md b/src/Monitor/DiagnosticSetting.Autorest/docs/New-AzDiagnosticSettingMetricSettingsObject.md index 1c3560d9e34f..94005397e5a0 100644 --- a/src/Monitor/DiagnosticSetting.Autorest/docs/New-AzDiagnosticSettingMetricSettingsObject.md +++ b/src/Monitor/DiagnosticSetting.Autorest/docs/New-AzDiagnosticSettingMetricSettingsObject.md @@ -1,7 +1,7 @@ --- external help file: Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/az.DiagnosticSetting/new-AzDiagnosticSettingMetricSettingsObject +online version: https://learn.microsoft.com/powershell/module/az.monitor/new-azdiagnosticsettingmetricsettingsobject schema: 2.0.0 --- diff --git a/src/Monitor/DiagnosticSetting.Autorest/docs/New-AzDiagnosticSettingSubscriptionLogSettingsObject.md b/src/Monitor/DiagnosticSetting.Autorest/docs/New-AzDiagnosticSettingSubscriptionLogSettingsObject.md index e98817451535..c813939ba09c 100644 --- a/src/Monitor/DiagnosticSetting.Autorest/docs/New-AzDiagnosticSettingSubscriptionLogSettingsObject.md +++ b/src/Monitor/DiagnosticSetting.Autorest/docs/New-AzDiagnosticSettingSubscriptionLogSettingsObject.md @@ -1,7 +1,7 @@ --- external help file: Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/az.DiagnosticSetting/new-AzDiagnosticSettingSubscriptionLogSettingsObject +online version: https://learn.microsoft.com/powershell/module/az.monitor/new-azdiagnosticsettingsubscriptionlogsettingsobject schema: 2.0.0 --- diff --git a/src/Monitor/Monitor/help/New-AzActivityLogAlertActionGroupObject.md b/src/Monitor/Monitor/help/New-AzActivityLogAlertActionGroupObject.md index 64948a9b4d86..f8b869da0f28 100644 --- a/src/Monitor/Monitor/help/New-AzActivityLogAlertActionGroupObject.md +++ b/src/Monitor/Monitor/help/New-AzActivityLogAlertActionGroupObject.md @@ -1,7 +1,7 @@ --- external help file: Az.ActivityLogAlert.psm1-help.xml Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/az.ActivityLogAlert/new-AzActivityLogAlertActionGroupObject +online version: https://learn.microsoft.com/powershell/module/az.monitor/new-azactivitylogalertactiongroupobject schema: 2.0.0 --- diff --git a/src/Monitor/Monitor/help/New-AzActivityLogAlertAlertRuleAnyOfOrLeafConditionObject.md b/src/Monitor/Monitor/help/New-AzActivityLogAlertAlertRuleAnyOfOrLeafConditionObject.md index d2d2e9a7df11..0746b76b9262 100644 --- a/src/Monitor/Monitor/help/New-AzActivityLogAlertAlertRuleAnyOfOrLeafConditionObject.md +++ b/src/Monitor/Monitor/help/New-AzActivityLogAlertAlertRuleAnyOfOrLeafConditionObject.md @@ -1,7 +1,7 @@ --- external help file: Az.ActivityLogAlert.psm1-help.xml Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/az.ActivityLogAlert/new-AzActivityLogAlertAlertRuleAnyOfOrLeafConditionObject +online version: https://learn.microsoft.com/powershell/module/az.monitor/new-azactivitylogalertalertruleanyoforleafconditionobject schema: 2.0.0 --- diff --git a/src/Monitor/Monitor/help/New-AzActivityLogAlertAlertRuleLeafConditionObject.md b/src/Monitor/Monitor/help/New-AzActivityLogAlertAlertRuleLeafConditionObject.md index 12344414b702..16bf1eacf652 100644 --- a/src/Monitor/Monitor/help/New-AzActivityLogAlertAlertRuleLeafConditionObject.md +++ b/src/Monitor/Monitor/help/New-AzActivityLogAlertAlertRuleLeafConditionObject.md @@ -1,7 +1,7 @@ --- external help file: Az.ActivityLogAlert.psm1-help.xml Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/az.ActivityLogAlert/new-AzActivityLogAlertAlertRuleLeafConditionObject +online version: https://learn.microsoft.com/powershell/module/az.monitor/new-azactivitylogalertalertruleleafconditionobject schema: 2.0.0 --- diff --git a/src/Monitor/Monitor/help/New-AzAutoscaleNotificationObject.md b/src/Monitor/Monitor/help/New-AzAutoscaleNotificationObject.md index 89f53657b4ea..4afb29b74a6c 100644 --- a/src/Monitor/Monitor/help/New-AzAutoscaleNotificationObject.md +++ b/src/Monitor/Monitor/help/New-AzAutoscaleNotificationObject.md @@ -1,7 +1,7 @@ --- external help file: Az.Autoscale.psm1-help.xml Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/az.Autoscale/new-AzAutoscaleNotificationObject +online version: https://learn.microsoft.com/powershell/module/az.monitor/new-azautoscalenotificationobject schema: 2.0.0 --- diff --git a/src/Monitor/Monitor/help/New-AzAutoscaleProfileObject.md b/src/Monitor/Monitor/help/New-AzAutoscaleProfileObject.md index 553f7fb3282b..c85245a19bc8 100644 --- a/src/Monitor/Monitor/help/New-AzAutoscaleProfileObject.md +++ b/src/Monitor/Monitor/help/New-AzAutoscaleProfileObject.md @@ -1,7 +1,7 @@ --- external help file: Az.Autoscale.psm1-help.xml Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/az.Autoscale/new-AzAutoscaleProfileObject +online version: https://learn.microsoft.com/powershell/module/az.monitor/new-azautoscaleprofileobject schema: 2.0.0 --- diff --git a/src/Monitor/Monitor/help/New-AzAutoscaleScaleRuleMetricDimensionObject.md b/src/Monitor/Monitor/help/New-AzAutoscaleScaleRuleMetricDimensionObject.md index 5678d10fbc7b..9c3dc0a9586a 100644 --- a/src/Monitor/Monitor/help/New-AzAutoscaleScaleRuleMetricDimensionObject.md +++ b/src/Monitor/Monitor/help/New-AzAutoscaleScaleRuleMetricDimensionObject.md @@ -1,7 +1,7 @@ --- external help file: Az.Autoscale.psm1-help.xml Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/az.Autoscale/new-AzAutoscaleScaleRuleMetricDimensionObject +online version: https://learn.microsoft.com/powershell/module/az.monitor/new-azautoscalescalerulemetricdimensionobject schema: 2.0.0 --- diff --git a/src/Monitor/Monitor/help/New-AzAutoscaleScaleRuleObject.md b/src/Monitor/Monitor/help/New-AzAutoscaleScaleRuleObject.md index af056c830d18..25aa321b1824 100644 --- a/src/Monitor/Monitor/help/New-AzAutoscaleScaleRuleObject.md +++ b/src/Monitor/Monitor/help/New-AzAutoscaleScaleRuleObject.md @@ -1,7 +1,7 @@ --- external help file: Az.Autoscale.psm1-help.xml Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/az.Autoscale/new-AzAutoscaleScaleRuleObject +online version: https://learn.microsoft.com/powershell/module/az.monitor/new-azautoscalescaleruleobject schema: 2.0.0 --- diff --git a/src/Monitor/Monitor/help/New-AzAutoscaleWebhookNotificationObject.md b/src/Monitor/Monitor/help/New-AzAutoscaleWebhookNotificationObject.md index 80fef48980cc..0e7dfde5f486 100644 --- a/src/Monitor/Monitor/help/New-AzAutoscaleWebhookNotificationObject.md +++ b/src/Monitor/Monitor/help/New-AzAutoscaleWebhookNotificationObject.md @@ -1,7 +1,7 @@ --- external help file: Az.Autoscale.psm1-help.xml Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/az.Autoscale/new-AzAutoscaleWebhookNotificationObject +online version: https://learn.microsoft.com/powershell/module/az.monitor/new-azautoscalewebhooknotificationobject schema: 2.0.0 --- diff --git a/src/Monitor/Monitor/help/New-AzDiagnosticSettingLogSettingsObject.md b/src/Monitor/Monitor/help/New-AzDiagnosticSettingLogSettingsObject.md index 841a7b428356..b656df053e4f 100644 --- a/src/Monitor/Monitor/help/New-AzDiagnosticSettingLogSettingsObject.md +++ b/src/Monitor/Monitor/help/New-AzDiagnosticSettingLogSettingsObject.md @@ -1,7 +1,7 @@ --- external help file: Az.DiagnosticSetting.psm1-help.xml Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/az.DiagnosticSetting/new-AzDiagnosticSettingLogSettingsObject +online version: https://learn.microsoft.com/powershell/module/az.monitor/new-azdiagnosticsettinglogsettingsobject schema: 2.0.0 --- diff --git a/src/Monitor/Monitor/help/New-AzDiagnosticSettingMetricSettingsObject.md b/src/Monitor/Monitor/help/New-AzDiagnosticSettingMetricSettingsObject.md index 3661b6eb07cd..f73f76a3f3a9 100644 --- a/src/Monitor/Monitor/help/New-AzDiagnosticSettingMetricSettingsObject.md +++ b/src/Monitor/Monitor/help/New-AzDiagnosticSettingMetricSettingsObject.md @@ -1,7 +1,7 @@ --- external help file: Az.DiagnosticSetting.psm1-help.xml Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/az.DiagnosticSetting/new-AzDiagnosticSettingMetricSettingsObject +online version: https://learn.microsoft.com/powershell/module/az.monitor/new-azdiagnosticsettingmetricsettingsobject schema: 2.0.0 --- diff --git a/src/Monitor/Monitor/help/New-AzDiagnosticSettingSubscriptionLogSettingsObject.md b/src/Monitor/Monitor/help/New-AzDiagnosticSettingSubscriptionLogSettingsObject.md index cc086e310974..8fa93f4e0f4e 100644 --- a/src/Monitor/Monitor/help/New-AzDiagnosticSettingSubscriptionLogSettingsObject.md +++ b/src/Monitor/Monitor/help/New-AzDiagnosticSettingSubscriptionLogSettingsObject.md @@ -1,7 +1,7 @@ --- external help file: Az.DiagnosticSetting.psm1-help.xml Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/az.DiagnosticSetting/new-AzDiagnosticSettingSubscriptionLogSettingsObject +online version: https://learn.microsoft.com/powershell/module/az.monitor/new-azdiagnosticsettingsubscriptionlogsettingsobject schema: 2.0.0 --- diff --git a/src/Monitor/Monitor/help/New-AzScheduledQueryRuleConditionObject.md b/src/Monitor/Monitor/help/New-AzScheduledQueryRuleConditionObject.md index 29092f00d351..ff9c974d4a40 100644 --- a/src/Monitor/Monitor/help/New-AzScheduledQueryRuleConditionObject.md +++ b/src/Monitor/Monitor/help/New-AzScheduledQueryRuleConditionObject.md @@ -1,7 +1,7 @@ --- external help file: Az.ScheduledQueryRule.psm1-help.xml Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/az.ScheduledQueryRule/new-AzScheduledQueryRuleConditionObject +online version: https://learn.microsoft.com/powershell/module/az.monitor/new-azscheduledqueryruleconditionobject schema: 2.0.0 --- diff --git a/src/Monitor/Monitor/help/New-AzScheduledQueryRuleDimensionObject.md b/src/Monitor/Monitor/help/New-AzScheduledQueryRuleDimensionObject.md index ccaad52e1276..3353ee56a88d 100644 --- a/src/Monitor/Monitor/help/New-AzScheduledQueryRuleDimensionObject.md +++ b/src/Monitor/Monitor/help/New-AzScheduledQueryRuleDimensionObject.md @@ -1,7 +1,7 @@ --- external help file: Az.ScheduledQueryRule.psm1-help.xml Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/az.ScheduledQueryRule/new-AzScheduledQueryRuleDimensionObject +online version: https://learn.microsoft.com/powershell/module/az.monitor/new-azscheduledqueryruledimensionobject schema: 2.0.0 --- diff --git a/src/Monitor/ScheduledQueryRule.Autorest/docs/New-AzScheduledQueryRuleConditionObject.md b/src/Monitor/ScheduledQueryRule.Autorest/docs/New-AzScheduledQueryRuleConditionObject.md index c594849e3b75..4c635f76ad92 100644 --- a/src/Monitor/ScheduledQueryRule.Autorest/docs/New-AzScheduledQueryRuleConditionObject.md +++ b/src/Monitor/ScheduledQueryRule.Autorest/docs/New-AzScheduledQueryRuleConditionObject.md @@ -1,7 +1,7 @@ --- external help file: Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/az.ScheduledQueryRule/new-AzScheduledQueryRuleConditionObject +online version: https://learn.microsoft.com/powershell/module/az.monitor/new-azscheduledqueryruleconditionobject schema: 2.0.0 --- diff --git a/src/Monitor/ScheduledQueryRule.Autorest/docs/New-AzScheduledQueryRuleDimensionObject.md b/src/Monitor/ScheduledQueryRule.Autorest/docs/New-AzScheduledQueryRuleDimensionObject.md index 9200fc4e768e..cef1eaa280ad 100644 --- a/src/Monitor/ScheduledQueryRule.Autorest/docs/New-AzScheduledQueryRuleDimensionObject.md +++ b/src/Monitor/ScheduledQueryRule.Autorest/docs/New-AzScheduledQueryRuleDimensionObject.md @@ -1,7 +1,7 @@ --- external help file: Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/az.ScheduledQueryRule/new-AzScheduledQueryRuleDimensionObject +online version: https://learn.microsoft.com/powershell/module/az.monitor/new-azscheduledqueryruledimensionobject schema: 2.0.0 --- diff --git a/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesSubvolumeMetadata.md b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesSubvolumeMetadata.md index ef660b60e538..f6f5cea35fb0 100644 --- a/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesSubvolumeMetadata.md +++ b/src/NetAppFiles/NetAppFiles/help/Get-AzNetAppFilesSubvolumeMetadata.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.NetAppFiles.dll-Help.xml Module Name: Az.NetAppFiles -online version: +online version: https://learn.microsoft.com/powershell/module/az.netappfiles/get-aznetappfilessubvolumemetadata schema: 2.0.0 --- @@ -201,4 +201,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [New-AzNetAppFilesSubvolume](./New-AzNetAppFilesSubvolume.md) [Update-AzNetAppFilesSubvolume](./Update-AzNetAppFilesSubvolume.md) [Remove-AzNetAppFilesSubvolume](./Remove-AzNetAppFilesSubvolume.md) -[Get-AzNetAppFilesSubvolume](./Get-AzNetAppFilesSubvolume.md) \ No newline at end of file +[Get-AzNetAppFilesSubvolume](./Get-AzNetAppFilesSubvolume.md) diff --git a/src/Network/Network.Test/ScenarioTests/AzureFirewallPolicyTests.cs b/src/Network/Network.Test/ScenarioTests/AzureFirewallPolicyTests.cs index 7de3b1d20beb..2e04cf963834 100644 --- a/src/Network/Network.Test/ScenarioTests/AzureFirewallPolicyTests.cs +++ b/src/Network/Network.Test/ScenarioTests/AzureFirewallPolicyTests.cs @@ -172,5 +172,13 @@ public void TestAzureFirewallPolicyRuleDescription() { TestRunner.RunTestScript("Test-AzureFirewallPolicyRuleDescription"); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.Owner, NrpTeamAlias.azurefirewall)] + public void TestAzureFirewallSnat() + { + TestRunner.RunTestScript("Test-AzureFirewallSnat"); + } } } diff --git a/src/Network/Network.Test/ScenarioTests/AzureFirewallPolicyTests.ps1 b/src/Network/Network.Test/ScenarioTests/AzureFirewallPolicyTests.ps1 index f20996802c19..99bd06b57f62 100644 --- a/src/Network/Network.Test/ScenarioTests/AzureFirewallPolicyTests.ps1 +++ b/src/Network/Network.Test/ScenarioTests/AzureFirewallPolicyTests.ps1 @@ -1764,4 +1764,57 @@ function Test-AzureFirewallPolicyRuleDescription { # Cleanup Clean-ResourceGroup $rgname } +} + +<# +.SYNOPSIS +Tests AzureFirewall SNAT +#> +function Test-AzureFirewallSnat { + $rgname = Get-ResourceGroupName + $azureFirewallPolicyName = Get-ResourceName + $resourceTypeParent = "Microsoft.Network/FirewallPolicies" + $location = "westus2" + $vnetName = Get-ResourceName + $privateRange = @("3.3.0.0/24", "98.0.0.0/8","10.227.16.0/20") + $privateRange2 = @("0.0.0.0/0", "66.92.0.0/16") + + try { + + # Create the resource group + $resourceGroup = New-AzResourceGroup -Name $rgname -Location $location -Tags @{ testtag = "testval" } + + $snat = New-AzFirewallPolicySnat -PrivateRange $privateRange -AutoLearnPrivateRange + + # Create AzureFirewallPolicy (with SNAT) + $azureFirewallPolicy = New-AzFirewallPolicy -Name $azureFirewallPolicyName -ResourceGroupName $rgname -Location $location -Snat $snat + + # Get AzureFirewallPolicy + $getAzureFirewallPolicy = Get-AzFirewallPolicy -Name $azureFirewallPolicyName -ResourceGroupName $rgname + + + #verification + Assert-AreEqual $rgName $getAzureFirewallPolicy.ResourceGroupName + Assert-AreEqual $azureFirewallPolicyName $getAzureFirewallPolicy.Name + Assert-NotNull $getAzureFirewallPolicy.Location + Assert-AreEqual (Normalize-Location $location) $getAzureFirewallPolicy.Location + Assert-NotNull $getAzureFirewallPolicy.Snat + Assert-AreEqualArray $privateRange $getAzureFirewallPolicy.Snat.PrivateRanges + Assert-AreEqual "Enabled" $getAzureFirewallPolicy.Snat.AutoLearnPrivateRanges + + # Modify + $snat = New-AzFirewallPolicySnat -PrivateRange $privateRange2 + # Set AzureFirewallPolicy + $azureFirewallPolicy.Snat = $snat + Set-AzFirewallPolicy -InputObject $azureFirewallPolicy + $policy = Get-AzFirewallPolicy -Name $azureFirewallPolicyName -ResourceGroupName $rgname + + Assert-NotNull $policy.Snat + Assert-AreEqualArray $privateRange2 $policy.Snat.PrivateRanges + Assert-AreEqual "Disabled" $policy.Snat.AutoLearnPrivateRanges + } + finally { + # Cleanup + Clean-ResourceGroup $rgname + } } \ No newline at end of file diff --git a/src/Network/Network.Test/ScenarioTests/NetworkManagerTests.ps1 b/src/Network/Network.Test/ScenarioTests/NetworkManagerTests.ps1 index 7e74cf36a9a2..b2d74561b007 100644 --- a/src/Network/Network.Test/ScenarioTests/NetworkManagerTests.ps1 +++ b/src/Network/Network.Test/ScenarioTests/NetworkManagerTests.ps1 @@ -23,8 +23,8 @@ function Test-NetworkManagerCRUD $rgName = Get-ResourceGroupName $networkManagerName = Get-ResourceName $rglocation = "centraluseuap" - $subscriptionId = "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884" - $managementGroupId = "/providers/Microsoft.Management/managementGroups/PowerShellTest" + $subscriptionId = "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52" + $managementGroupId = "/providers/Microsoft.Management/managementGroups/SwaggerStackTestMG" try{ #Create the resource group @@ -78,7 +78,7 @@ function Test-NetworkManagerGroupCRUD $networkManagerName = Get-ResourceName $networkGroupName = Get-ResourceName $rglocation = "centraluseuap" - $subscriptionId = "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884" + $subscriptionId = "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52" try{ #Create the resource group @@ -139,8 +139,8 @@ function Test-NetworkManagerStaticMemberCRUD $networkGroupName = Get-ResourceName $staticMemberName = Get-ResourceName $rglocation = "centraluseuap" - $subscriptionId = "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884" - $vnetId = "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/virtualNetworks/powerShellTestVnet" + $subscriptionId = "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52" + $vnetId = "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/virtualNetworks/SwaggerStackVnet" try{ #Create the resource group @@ -199,18 +199,18 @@ Tests creating new simple public networkmanager Connectivity Configuration function Test-NetworkManagerConnectivityConfigurationCRUD { # Setup - # Please pre create vnet and hub vnet before running test in live mode, also please update subscriptionId and uncomment 10 mins sleep code + # Please update subscriptionId and uncomment 1 mins sleep code $rgName = Get-ResourceGroupName $networkManagerName = Get-ResourceName $networkGroupName = Get-ResourceName $staticMemberName = Get-ResourceName $connectivityConfigurationName = Get-ResourceName $rglocation = "centraluseuap" - $subscriptionId = "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884" - $vnetId = "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/virtualNetworks/powerShellTestVnet" - $hubId = "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/virtualNetworks/powerShellTestVnetHub" - $vnet = "powerShellTestVnet" - $vnetRG = "jaredgorthy-PowerShellTestResources" + $subscriptionId = "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52" + $vnetId = "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/virtualNetworks/SwaggerStackVnet" + $hubId = "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/virtualNetworks/SwaggerStackVnet-Hub" + $vnetName = "SwaggerStackVnet" + $vnetRGName = "SwaggerStackRG" try{ #Create the resource group @@ -290,7 +290,7 @@ function Test-NetworkManagerConnectivityConfigurationCRUD Assert-AreEqual "False" $activeConnectivityConfig.Value[0].IsGlobal; Assert-AreEqual "True" $activeConnectivityConfig.Value[0].DeleteExistingPeering; - $effectiveConnectivityConfig = Get-AzNetworkManagerEffectiveConnectivityConfiguration -VirtualNetworkName $vnet -VirtualNetworkResourceGroupName $vnetRG + $effectiveConnectivityConfig = Get-AzNetworkManagerEffectiveConnectivityConfiguration -VirtualNetworkName $vnetName -VirtualNetworkResourceGroupName $vnetRGName Assert-NotNull $effectiveConnectivityConfig; Assert-AreEqual $newConnConfig.Id $effectiveConnectivityConfig.Value[0].Id; Assert-AreEqual $networkGroup.Id $effectiveConnectivityConfig.Value[0].ConfigurationGroups[0].Id; @@ -346,10 +346,10 @@ function Test-NetworkManagerSecurityAdminRuleCRUD $RuleCollectionName = Get-ResourceName $RuleName = Get-ResourceName $rglocation = "centraluseuap" - $subscriptionId = "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884" - $vnetId = "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/virtualNetworks/powerShellTestVnet" - $vnetName = "powerShellTestVnet" - $vnetRG = "jaredgorthy-PowerShellTestResources" + $subscriptionId = "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52" + $vnetId = "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/virtualNetworks/SwaggerStackVnet" + $vnetName = "SwaggerStackVnet" + $vnetRGName = "SwaggerStackRG" try{ #Create the resource group @@ -460,41 +460,26 @@ function Test-NetworkManagerSecurityAdminRuleCRUD Assert-AreEqual "10.0.0.1" $activeSecurityAdminRule.Value[0].Destinations[0].AddressPrefix Assert-AreEqual "Internet" $activeSecurityAdminRule.Value[0].Sources[0].AddressPrefix - $effectiveSecurityAdminRuleList = Get-AzNetworkManagerEffectiveSecurityAdminRule -VirtualNetworkName $vnetName -VirtualNetworkResourceGroupName $vnetRG + $effectiveSecurityAdminRuleList = Get-AzNetworkManagerEffectiveSecurityAdminRule -VirtualNetworkName $vnetName -VirtualNetworkResourceGroupName $vnetRGName Assert-NotNull $effectiveSecurityAdminRuleList; - <# - # Network manager at AVNM testing MG will apply rules on this vnet; extract the rule this test has applied - [Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityBaseAdminRule]$effectiveSecurityAdminRule = $null - foreach ($rule in $effectiveSecurityAdminRuleList) - { - Write-Host rule.Id - if ($rule.Id -eq $newAdminRule.Id) - { - $effectiveSecurityAdminRule = $rule; - break; - } - } - Assert-NotNull $effectiveSecurityAdminRule; - #> - - Assert-AreEqual $newAdminRule.Id $effectiveSecurityAdminRuleList.Value[3].Id; - Assert-AreEqual $networkGroup.Id $effectiveSecurityAdminRuleList.Value[3].RuleGroups[0].Id; - Assert-AreEqual $networkGroup.Id $effectiveSecurityAdminRuleList.Value[3].RuleCollectionAppliesToGroups[0].NetworkGroupId; + Assert-AreEqual $newAdminRule.Id $effectiveSecurityAdminRuleList.Value[0].Id; + Assert-AreEqual $networkGroup.Id $effectiveSecurityAdminRuleList.Value[0].RuleGroups[0].Id; + Assert-AreEqual $networkGroup.Id $effectiveSecurityAdminRuleList.Value[0].RuleCollectionAppliesToGroups[0].NetworkGroupId; - Assert-AreEqual $securityConfig.Description $effectiveSecurityAdminRuleList.Value[3].ConfigurationDescription; - Assert-AreEqual $ruleCollection.Description $effectiveSecurityAdminRuleList.Value[3].RuleCollectionDescription; + Assert-AreEqual $securityConfig.Description $effectiveSecurityAdminRuleList.Value[0].ConfigurationDescription; + Assert-AreEqual $ruleCollection.Description $effectiveSecurityAdminRuleList.Value[0].RuleCollectionDescription; - Assert-AreEqual "TCP" $effectiveSecurityAdminRuleList.Value[3].Protocol - Assert-AreEqual "Inbound" $effectiveSecurityAdminRuleList.Value[3].Direction - Assert-AreEqual "Allow" $effectiveSecurityAdminRuleList.Value[3].Access - Assert-AreEqual 100 $effectiveSecurityAdminRuleList.Value[3].Priority + Assert-AreEqual "TCP" $effectiveSecurityAdminRuleList.Value[0].Protocol + Assert-AreEqual "Inbound" $effectiveSecurityAdminRuleList.Value[0].Direction + Assert-AreEqual "Allow" $effectiveSecurityAdminRuleList.Value[0].Access + Assert-AreEqual 0 $effectiveSecurityAdminRuleList.Value[0].Priority - Assert-AreEqual "100" $effectiveSecurityAdminRuleList.Value[3].SourcePortRanges[0] - Assert-AreEqual "99" $effectiveSecurityAdminRuleList.Value[3].DestinationPortRanges[0] - Assert-AreEqual "10.0.0.1" $effectiveSecurityAdminRuleList.Value[3].Destinations[0].AddressPrefix - Assert-AreEqual "Internet" $effectiveSecurityAdminRuleList.Value[3].Sources[0].AddressPrefix + Assert-AreEqual "100" $effectiveSecurityAdminRuleList.Value[0].SourcePortRanges[0] + Assert-AreEqual "99" $effectiveSecurityAdminRuleList.Value[0].DestinationPortRanges[0] + Assert-AreEqual "10.0.0.1" $effectiveSecurityAdminRuleList.Value[0].Destinations[0].AddressPrefix + Assert-AreEqual "Internet" $effectiveSecurityAdminRuleList.Value[0].Sources[0].AddressPrefix Deploy-AzNetworkManagerCommit -ResourceGroupName $rgname -Name $networkManagerName -TargetLocation $regions -CommitType "SecurityAdmin" @@ -543,7 +528,7 @@ function Test-NetworkManagerScopeConnectionCRUD $networkManagerName = Get-ResourceName $scopeConnectionName = Get-ResourceName $rglocation = "centraluseuap" - $subscriptionId = "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884" + $subscriptionId = "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52" try{ #Create the resource group @@ -594,7 +579,7 @@ function Test-NetworkManagerSubscriptionConnectionCRUD { # Setup $networkManagerConnectionName = Get-ResourceName - $networkManagerId = "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/networkManagers/PowerShellTestNM-DO-NOT-DELETE" + $networkManagerId = "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/networkManagers/SwaggerStackNetworkManager" try{ New-AzNetworkManagerSubscriptionConnection -Name $networkManagerConnectionName -NetworkManagerId $networkManagerId -Description "SampleDescription" @@ -624,8 +609,8 @@ function Test-NetworkManagerManagementGroupConnectionCRUD { # Setup $networkManagerConnectionName = Get-ResourceName - $networkManagerId = "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/networkManagers/PowerShellTestNM-DO-NOT-DELETE" - $managementGroupId = "PowerShellTestNMConection" + $networkManagerId = "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/networkManagers/SwaggerStackNetworkManager" + $managementGroupId = "SwaggerStackTestMG" try{ New-AzNetworkManagerManagementGroupConnection -ManagementGroupId $managementGroupId -Name $networkManagerConnectionName -NetworkManagerId $networkManagerId -Description "SampleDescription" @@ -664,8 +649,8 @@ function Test-NetworkManagerResourceMinimumParameterCreate $RuleName = Get-ResourceName $scopeConnectionName = Get-ResourceName $rglocation = "centraluseuap" - $subscriptionId = "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884" - $vnetId = "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/virtualNetworks/powerShellTestVnet" + $subscriptionId = "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52" + $vnetId = "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/virtualNetworks/SwaggerStackVnet" try{ #Create the resource group diff --git a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.AzureFirewallPolicyTests/TestAzureFirewallSnat.json b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.AzureFirewallPolicyTests/TestAzureFirewallSnat.json new file mode 100644 index 000000000000..0c4ddff1fb97 --- /dev/null +++ b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.AzureFirewallPolicyTests/TestAzureFirewallSnat.json @@ -0,0 +1,1206 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourcegroups/ps8945?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlZ3JvdXBzL3BzODk0NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "34058f95-568a-4eba-97d2-f7d8db093dc4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "74" + ] + }, + "RequestBody": "{\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "6421549a-a54d-41eb-a5e5-4a5bf8d0cf6c" + ], + "x-ms-correlation-request-id": [ + "6421549a-a54d-41eb-a5e5-4a5bf8d0cf6c" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230204T211423Z:6421549a-a54d-41eb-a5e5-4a5bf8d0cf6c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 04 Feb 2023 21:14:23 GMT" + ], + "Content-Length": [ + "377" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8945\",\r\n \"name\": \"ps8945\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"testtag\": \"testval\",\r\n \"AdminEmail\": \"cnfwoncall@microsoft.com\",\r\n \"AlertDaysBeforeDeletion\": \"5\",\r\n \"Created\": \"2023-02-04T21:14:22.1488309Z\",\r\n \"CreationDate\": \"2023-02-04T21:14:22.1488214Z\",\r\n \"DaysUntilDeletion\": \"20\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8945/providers/Microsoft.Network/firewallPolicies/ps2993?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzODk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZmlyZXdhbGxQb2xpY2llcy9wczI5OTM/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d8e72f5f-aeeb-4f6e-9fcf-82b507ea283b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "9111664c-24c5-40b0-aa4e-506fc0842880" + ], + "x-ms-correlation-request-id": [ + "9111664c-24c5-40b0-aa4e-506fc0842880" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230204T211433Z:9111664c-24c5-40b0-aa4e-506fc0842880" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 04 Feb 2023 21:14:32 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "219" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/firewallPolicies/ps2993' under resource group 'ps8945' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8945/providers/Microsoft.Network/firewallPolicies/ps2993?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzODk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZmlyZXdhbGxQb2xpY2llcy9wczI5OTM/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d8e72f5f-aeeb-4f6e-9fcf-82b507ea283b" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"c2717386-7959-4f47-8648-116dbc8dd9f7\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "dfd4189a-726e-404e-bfd9-9bb53b65e2a8" + ], + "x-ms-correlation-request-id": [ + "dfd4189a-726e-404e-bfd9-9bb53b65e2a8" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230204T211449Z:dfd4189a-726e-404e-bfd9-9bb53b65e2a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 04 Feb 2023 21:14:48 GMT" + ], + "Content-Length": [ + "687" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"tier\": \"Standard\"\r\n },\r\n \"childPolicies\": [],\r\n \"ruleCollectionGroups\": [],\r\n \"firewalls\": [],\r\n \"threatIntelMode\": \"Alert\",\r\n \"snat\": {\r\n \"privateRanges\": [\r\n \"3.3.0.0/24\",\r\n \"98.0.0.0/8\",\r\n \"10.227.16.0/20\"\r\n ],\r\n \"autoLearnPrivateRanges\": \"Enabled\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8945/providers/Microsoft.Network/firewallPolicies/ps2993\",\r\n \"name\": \"ps2993\",\r\n \"type\": \"Microsoft.Network/FirewallPolicies\",\r\n \"etag\": \"c2717386-7959-4f47-8648-116dbc8dd9f7\",\r\n \"location\": \"westus2\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8945/providers/Microsoft.Network/firewallPolicies/ps2993?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzODk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZmlyZXdhbGxQb2xpY2llcy9wczI5OTM/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d8e72f5f-aeeb-4f6e-9fcf-82b507ea283b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"c2717386-7959-4f47-8648-116dbc8dd9f7\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "f67ed8c9-5edd-4307-a190-286c2a97e35f" + ], + "x-ms-correlation-request-id": [ + "f67ed8c9-5edd-4307-a190-286c2a97e35f" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230204T211459Z:f67ed8c9-5edd-4307-a190-286c2a97e35f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 04 Feb 2023 21:14:58 GMT" + ], + "Content-Length": [ + "687" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"tier\": \"Standard\"\r\n },\r\n \"childPolicies\": [],\r\n \"ruleCollectionGroups\": [],\r\n \"firewalls\": [],\r\n \"threatIntelMode\": \"Alert\",\r\n \"snat\": {\r\n \"privateRanges\": [\r\n \"3.3.0.0/24\",\r\n \"98.0.0.0/8\",\r\n \"10.227.16.0/20\"\r\n ],\r\n \"autoLearnPrivateRanges\": \"Enabled\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8945/providers/Microsoft.Network/firewallPolicies/ps2993\",\r\n \"name\": \"ps2993\",\r\n \"type\": \"Microsoft.Network/FirewallPolicies\",\r\n \"etag\": \"c2717386-7959-4f47-8648-116dbc8dd9f7\",\r\n \"location\": \"westus2\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8945/providers/Microsoft.Network/firewallPolicies/ps2993?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzODk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZmlyZXdhbGxQb2xpY2llcy9wczI5OTM/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fdb219dd-e800-4499-8a37-3183d7529f7f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"c2717386-7959-4f47-8648-116dbc8dd9f7\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "616a6d26-57fb-4d43-9ea2-b0ce010bd4aa" + ], + "x-ms-correlation-request-id": [ + "616a6d26-57fb-4d43-9ea2-b0ce010bd4aa" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230204T211503Z:616a6d26-57fb-4d43-9ea2-b0ce010bd4aa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 04 Feb 2023 21:15:03 GMT" + ], + "Content-Length": [ + "687" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"tier\": \"Standard\"\r\n },\r\n \"childPolicies\": [],\r\n \"ruleCollectionGroups\": [],\r\n \"firewalls\": [],\r\n \"threatIntelMode\": \"Alert\",\r\n \"snat\": {\r\n \"privateRanges\": [\r\n \"3.3.0.0/24\",\r\n \"98.0.0.0/8\",\r\n \"10.227.16.0/20\"\r\n ],\r\n \"autoLearnPrivateRanges\": \"Enabled\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8945/providers/Microsoft.Network/firewallPolicies/ps2993\",\r\n \"name\": \"ps2993\",\r\n \"type\": \"Microsoft.Network/FirewallPolicies\",\r\n \"etag\": \"c2717386-7959-4f47-8648-116dbc8dd9f7\",\r\n \"location\": \"westus2\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8945/providers/Microsoft.Network/firewallPolicies/ps2993?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzODk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZmlyZXdhbGxQb2xpY2llcy9wczI5OTM/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d522ef81-66e0-4089-a46e-849503b0b9a8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"c2717386-7959-4f47-8648-116dbc8dd9f7\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "78032046-3a73-4f45-8e34-7018f274a9ea" + ], + "x-ms-correlation-request-id": [ + "78032046-3a73-4f45-8e34-7018f274a9ea" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230204T211512Z:78032046-3a73-4f45-8e34-7018f274a9ea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 04 Feb 2023 21:15:12 GMT" + ], + "Content-Length": [ + "687" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"tier\": \"Standard\"\r\n },\r\n \"childPolicies\": [],\r\n \"ruleCollectionGroups\": [],\r\n \"firewalls\": [],\r\n \"threatIntelMode\": \"Alert\",\r\n \"snat\": {\r\n \"privateRanges\": [\r\n \"3.3.0.0/24\",\r\n \"98.0.0.0/8\",\r\n \"10.227.16.0/20\"\r\n ],\r\n \"autoLearnPrivateRanges\": \"Enabled\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8945/providers/Microsoft.Network/firewallPolicies/ps2993\",\r\n \"name\": \"ps2993\",\r\n \"type\": \"Microsoft.Network/FirewallPolicies\",\r\n \"etag\": \"c2717386-7959-4f47-8648-116dbc8dd9f7\",\r\n \"location\": \"westus2\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8945/providers/Microsoft.Network/firewallPolicies/ps2993?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzODk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZmlyZXdhbGxQb2xpY2llcy9wczI5OTM/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d522ef81-66e0-4089-a46e-849503b0b9a8" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"b8a9d585-971c-48ad-a55d-f8e8d5f320d3\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "9b1fb8c7-b5c1-4a4e-a49b-bed21fbcc4fa" + ], + "x-ms-correlation-request-id": [ + "9b1fb8c7-b5c1-4a4e-a49b-bed21fbcc4fa" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230204T211525Z:9b1fb8c7-b5c1-4a4e-a49b-bed21fbcc4fa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 04 Feb 2023 21:15:24 GMT" + ], + "Content-Length": [ + "617" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"tier\": \"Standard\"\r\n },\r\n \"childPolicies\": [],\r\n \"ruleCollectionGroups\": [],\r\n \"firewalls\": [],\r\n \"threatIntelMode\": \"Alert\",\r\n \"snat\": {\r\n \"privateRanges\": [\r\n \"0.0.0.0/0\",\r\n \"66.92.0.0/16\"\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8945/providers/Microsoft.Network/firewallPolicies/ps2993\",\r\n \"name\": \"ps2993\",\r\n \"type\": \"Microsoft.Network/FirewallPolicies\",\r\n \"etag\": \"b8a9d585-971c-48ad-a55d-f8e8d5f320d3\",\r\n \"location\": \"westus2\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8945/providers/Microsoft.Network/firewallPolicies/ps2993?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzODk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZmlyZXdhbGxQb2xpY2llcy9wczI5OTM/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d522ef81-66e0-4089-a46e-849503b0b9a8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"b8a9d585-971c-48ad-a55d-f8e8d5f320d3\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "3c02c030-22e7-45f9-a65c-d5022e856002" + ], + "x-ms-correlation-request-id": [ + "3c02c030-22e7-45f9-a65c-d5022e856002" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230204T211533Z:3c02c030-22e7-45f9-a65c-d5022e856002" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 04 Feb 2023 21:15:32 GMT" + ], + "Content-Length": [ + "617" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"tier\": \"Standard\"\r\n },\r\n \"childPolicies\": [],\r\n \"ruleCollectionGroups\": [],\r\n \"firewalls\": [],\r\n \"threatIntelMode\": \"Alert\",\r\n \"snat\": {\r\n \"privateRanges\": [\r\n \"0.0.0.0/0\",\r\n \"66.92.0.0/16\"\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8945/providers/Microsoft.Network/firewallPolicies/ps2993\",\r\n \"name\": \"ps2993\",\r\n \"type\": \"Microsoft.Network/FirewallPolicies\",\r\n \"etag\": \"b8a9d585-971c-48ad-a55d-f8e8d5f320d3\",\r\n \"location\": \"westus2\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8945/providers/Microsoft.Network/firewallPolicies/ps2993?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzODk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZmlyZXdhbGxQb2xpY2llcy9wczI5OTM/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5e922229-4d66-4149-9478-f610735c5005" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"b8a9d585-971c-48ad-a55d-f8e8d5f320d3\"" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "a0f449f6-15de-4bed-92d2-4960e0f22fab" + ], + "x-ms-correlation-request-id": [ + "a0f449f6-15de-4bed-92d2-4960e0f22fab" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230204T211658Z:a0f449f6-15de-4bed-92d2-4960e0f22fab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 04 Feb 2023 21:16:58 GMT" + ], + "Content-Length": [ + "617" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"tier\": \"Standard\"\r\n },\r\n \"childPolicies\": [],\r\n \"ruleCollectionGroups\": [],\r\n \"firewalls\": [],\r\n \"threatIntelMode\": \"Alert\",\r\n \"snat\": {\r\n \"privateRanges\": [\r\n \"0.0.0.0/0\",\r\n \"66.92.0.0/16\"\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8945/providers/Microsoft.Network/firewallPolicies/ps2993\",\r\n \"name\": \"ps2993\",\r\n \"type\": \"Microsoft.Network/FirewallPolicies\",\r\n \"etag\": \"b8a9d585-971c-48ad-a55d-f8e8d5f320d3\",\r\n \"location\": \"westus2\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8945/providers/Microsoft.Network/firewallPolicies/ps2993?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzODk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZmlyZXdhbGxQb2xpY2llcy9wczI5OTM/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d8e72f5f-aeeb-4f6e-9fcf-82b507ea283b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "308" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"threatIntelMode\": \"Alert\",\r\n \"snat\": {\r\n \"privateRanges\": [\r\n \"3.3.0.0/24\",\r\n \"98.0.0.0/8\",\r\n \"10.227.16.0/20\"\r\n ],\r\n \"autoLearnPrivateRanges\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n \"location\": \"westus2\"\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fce0374c-e061-45ad-bf00-499ed1efded1", + "fce0374c-e061-45ad-bf00-499ed1efded1" + ], + "x-ms-correlation-request-id": [ + "ff8cd206-83c1-4322-8a99-f8173dc7e4bd" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/westus2/nfvOperations/fce0374c-e061-45ad-bf00-499ed1efded1?api-version=2022-07-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230204T211438Z:ff8cd206-83c1-4322-8a99-f8173dc7e4bd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 04 Feb 2023 21:14:37 GMT" + ], + "Content-Length": [ + "686" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"tier\": \"Standard\"\r\n },\r\n \"childPolicies\": [],\r\n \"ruleCollectionGroups\": [],\r\n \"firewalls\": [],\r\n \"threatIntelMode\": \"Alert\",\r\n \"snat\": {\r\n \"privateRanges\": [\r\n \"3.3.0.0/24\",\r\n \"98.0.0.0/8\",\r\n \"10.227.16.0/20\"\r\n ],\r\n \"autoLearnPrivateRanges\": \"Enabled\"\r\n },\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8945/providers/Microsoft.Network/firewallPolicies/ps2993\",\r\n \"name\": \"ps2993\",\r\n \"type\": \"Microsoft.Network/FirewallPolicies\",\r\n \"etag\": \"c2717386-7959-4f47-8648-116dbc8dd9f7\",\r\n \"location\": \"westus2\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8945/providers/Microsoft.Network/firewallPolicies/ps2993?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlR3JvdXBzL3BzODk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvZmlyZXdhbGxQb2xpY2llcy9wczI5OTM/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d522ef81-66e0-4089-a46e-849503b0b9a8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "283" + ] + }, + "RequestBody": "{\r\n \"properties\": {\r\n \"threatIntelMode\": \"Alert\",\r\n \"snat\": {\r\n \"privateRanges\": [\r\n \"0.0.0.0/0\",\r\n \"66.92.0.0/16\"\r\n ],\r\n \"autoLearnPrivateRanges\": \"Disabled\"\r\n },\r\n \"sku\": {\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n \"location\": \"westus2\"\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0057fd48-c6d0-4daa-8651-da4b82f0ffed", + "0057fd48-c6d0-4daa-8651-da4b82f0ffed" + ], + "x-ms-correlation-request-id": [ + "8ad9ab66-490d-4aa6-aa80-2e6dee8903bb" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/westus2/nfvOperations/0057fd48-c6d0-4daa-8651-da4b82f0ffed?api-version=2022-07-01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230204T211514Z:8ad9ab66-490d-4aa6-aa80-2e6dee8903bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 04 Feb 2023 21:15:13 GMT" + ], + "Content-Length": [ + "616" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"tier\": \"Standard\"\r\n },\r\n \"childPolicies\": [],\r\n \"ruleCollectionGroups\": [],\r\n \"firewalls\": [],\r\n \"threatIntelMode\": \"Alert\",\r\n \"snat\": {\r\n \"privateRanges\": [\r\n \"0.0.0.0/0\",\r\n \"66.92.0.0/16\"\r\n ]\r\n },\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourceGroups/ps8945/providers/Microsoft.Network/firewallPolicies/ps2993\",\r\n \"name\": \"ps2993\",\r\n \"type\": \"Microsoft.Network/FirewallPolicies\",\r\n \"etag\": \"b8a9d585-971c-48ad-a55d-f8e8d5f320d3\",\r\n \"location\": \"westus2\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/westus2/nfvOperations/fce0374c-e061-45ad-bf00-499ed1efded1?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9uZnZPcGVyYXRpb25zL2ZjZTAzNzRjLWUwNjEtNDVhZC1iZjAwLTQ5OWVkMWVmZGVkMT9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d8e72f5f-aeeb-4f6e-9fcf-82b507ea283b" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "28107b1d-3b48-47cc-82fc-be955659c76e", + "28107b1d-3b48-47cc-82fc-be955659c76e" + ], + "x-ms-correlation-request-id": [ + "304beaba-5f47-4675-bb30-b1730c34f793" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230204T211449Z:304beaba-5f47-4675-bb30-b1730c34f793" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 04 Feb 2023 21:14:48 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/providers/Microsoft.Network/locations/westus2/nfvOperations/0057fd48-c6d0-4daa-8651-da4b82f0ffed?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzMi9uZnZPcGVyYXRpb25zLzAwNTdmZDQ4LWM2ZDAtNGRhYS04NjUxLWRhNGI4MmYwZmZlZD9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d522ef81-66e0-4089-a46e-849503b0b9a8" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "dd4ffb60-8017-48dc-b47e-7d79abc8a361", + "dd4ffb60-8017-48dc-b47e-7d79abc8a361" + ], + "x-ms-correlation-request-id": [ + "310973d2-7ef8-4a7f-b0be-32b2570380a2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230204T211524Z:310973d2-7ef8-4a7f-b0be-32b2570380a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 04 Feb 2023 21:15:24 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/resourcegroups/ps8945?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL3Jlc291cmNlZ3JvdXBzL3BzODk0NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0e14bcc3-6ae1-44dd-8064-8beaee18abbd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5NDUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "404664b7-0ad2-4961-ac91-3fbb91443d6b" + ], + "x-ms-correlation-request-id": [ + "404664b7-0ad2-4961-ac91-3fbb91443d6b" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230204T211735Z:404664b7-0ad2-4961-ac91-3fbb91443d6b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 04 Feb 2023 21:17:34 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5NDUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU5EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5NDUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "b0bc4d41-45d2-48c7-86ad-db2150f93ea0" + ], + "x-ms-correlation-request-id": [ + "b0bc4d41-45d2-48c7-86ad-db2150f93ea0" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230204T211750Z:b0bc4d41-45d2-48c7-86ad-db2150f93ea0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 04 Feb 2023 21:17:49 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5NDUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU5EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5NDUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "264ab206-008e-4283-931a-54e3955dd0ef" + ], + "x-ms-correlation-request-id": [ + "264ab206-008e-4283-931a-54e3955dd0ef" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230204T211806Z:264ab206-008e-4283-931a-54e3955dd0ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 04 Feb 2023 21:18:05 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5NDUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU5EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5NDUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "2f0a8936-196d-4bf2-95f9-f3dde15a442c" + ], + "x-ms-correlation-request-id": [ + "2f0a8936-196d-4bf2-95f9-f3dde15a442c" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230204T211821Z:2f0a8936-196d-4bf2-95f9-f3dde15a442c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 04 Feb 2023 21:18:20 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5NDUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU5EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "2f1ce5ca-f192-4173-bceb-88a6be61e5ce" + ], + "x-ms-correlation-request-id": [ + "2f1ce5ca-f192-4173-bceb-88a6be61e5ce" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230204T211836Z:2f1ce5ca-f192-4173-bceb-88a6be61e5ce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 04 Feb 2023 21:18:36 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/aeb5b02a-0f18-45a4-86d6-81808115cacf/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5NDUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYWViNWIwMmEtMGYxOC00NWE0LTg2ZDYtODE4MDgxMTVjYWNmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU5EVXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "a80a1192-43a3-4573-a6d1-6e38cb5c88df" + ], + "x-ms-correlation-request-id": [ + "a80a1192-43a3-4573-a6d1-6e38cb5c88df" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230204T211837Z:a80a1192-43a3-4573-a6d1-6e38cb5c88df" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 04 Feb 2023 21:18:37 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-AzureFirewallSnat": [ + "ps8945", + "ps2993", + "ps8531" + ] + }, + "Variables": { + "SubscriptionId": "aeb5b02a-0f18-45a4-86d6-81808115cacf" + } +} \ No newline at end of file diff --git a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkManagerTests/NetworkManagerManagementGroupConnectionCRUD.json b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkManagerTests/NetworkManagerManagementGroupConnectionCRUD.json index 1eeef96187db..ea7a679a3709 100644 --- a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkManagerTests/NetworkManagerManagementGroupConnectionCRUD.json +++ b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkManagerTests/NetworkManagerManagementGroupConnectionCRUD.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/providers/Microsoft.Management/managementGroups/PowerShellTestNMConection/providers/Microsoft.Network/networkManagerConnections/ps6331?api-version=2022-01-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL1Bvd2VyU2hlbGxUZXN0Tk1Db25lY3Rpb24vcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtNYW5hZ2VyQ29ubmVjdGlvbnMvcHM2MzMxP2FwaS12ZXJzaW9uPTIwMjItMDEtMDE=", + "RequestUri": "/providers/Microsoft.Management/managementGroups/SwaggerStackTestMG/providers/Microsoft.Network/networkManagerConnections/ps2786?api-version=2022-07-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL1N3YWdnZXJTdGFja1Rlc3RNRy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJDb25uZWN0aW9ucy9wczI3ODY/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "41cb34d9-aa7d-4991-8ded-eb98171dc8d8" + "d0d410d7-8c8e-4915-a612-e46f5f085b65" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -36,22 +36,22 @@ "Kestrel" ], "x-ms-request-id": [ - "bb550e5a-7f71-4213-b8ee-d5784b099b19" + "c609dc83-b445-4382-b7c3-bbef9815bb3f" ], "x-ms-correlation-request-id": [ - "bb550e5a-7f71-4213-b8ee-d5784b099b19" + "c609dc83-b445-4382-b7c3-bbef9815bb3f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175636Z:bb550e5a-7f71-4213-b8ee-d5784b099b19" + "WESTUS:20230219T024405Z:c609dc83-b445-4382-b7c3-bbef9815bb3f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:56:35 GMT" + "Sun, 19 Feb 2023 02:44:04 GMT" ], "Content-Length": [ - "223" + "216" ], "Content-Type": [ "application/json; charset=utf-8" @@ -60,25 +60,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"Resource [/providers/Microsoft.Management/managementGroups/PowerShellTestNMConection/providers/Microsoft.Network/networkManagerConnections/ps6331] does not exist or has been deleted\",\r\n \"code\": \"NotFound\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"Resource [/providers/Microsoft.Management/managementGroups/SwaggerStackTestMG/providers/Microsoft.Network/networkManagerConnections/ps2786] does not exist or has been deleted\",\r\n \"code\": \"NotFound\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/providers/Microsoft.Management/managementGroups/PowerShellTestNMConection/providers/Microsoft.Network/networkManagerConnections/ps6331?api-version=2022-01-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL1Bvd2VyU2hlbGxUZXN0Tk1Db25lY3Rpb24vcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtNYW5hZ2VyQ29ubmVjdGlvbnMvcHM2MzMxP2FwaS12ZXJzaW9uPTIwMjItMDEtMDE=", + "RequestUri": "/providers/Microsoft.Management/managementGroups/SwaggerStackTestMG/providers/Microsoft.Network/networkManagerConnections/ps2786?api-version=2022-07-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL1N3YWdnZXJTdGFja1Rlc3RNRy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJDb25uZWN0aW9ucy9wczI3ODY/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "41cb34d9-aa7d-4991-8ded-eb98171dc8d8" + "d0d410d7-8c8e-4915-a612-e46f5f085b65" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -99,22 +99,22 @@ "Kestrel" ], "x-ms-request-id": [ - "21450260-f4a4-4946-b2bf-a057c36b7550" + "ae4d2008-f4fb-4b14-abcd-905f139b0728" ], "x-ms-correlation-request-id": [ - "21450260-f4a4-4946-b2bf-a057c36b7550" + "ae4d2008-f4fb-4b14-abcd-905f139b0728" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175639Z:21450260-f4a4-4946-b2bf-a057c36b7550" + "WESTUS:20230219T024407Z:ae4d2008-f4fb-4b14-abcd-905f139b0728" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:56:38 GMT" + "Sun, 19 Feb 2023 02:44:06 GMT" ], "Content-Length": [ - "503" + "749" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,25 +123,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/PowerShellTestNMConection/providers/Microsoft.Network/networkManagerConnections/ps6331\",\r\n \"name\": \"ps6331\",\r\n \"type\": \"Microsoft.Network/networkManagerConnections\",\r\n \"location\": \"\",\r\n \"properties\": {\r\n \"networkManagerId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/networkManagers/PowerShellTestNM-DO-NOT-DELETE\",\r\n \"connectionState\": \"Pending\",\r\n \"description\": \"SampleDescription\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/SwaggerStackTestMG/providers/Microsoft.Network/networkManagerConnections/ps2786\",\r\n \"name\": \"ps2786\",\r\n \"type\": \"Microsoft.Network/networkManagerConnections\",\r\n \"location\": \"\",\r\n \"properties\": {\r\n \"networkManagerId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/networkManagers/SwaggerStackNetworkManager\",\r\n \"connectionState\": \"Pending\",\r\n \"description\": \"SampleDescription\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:44:05.677901Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:44:05.677901Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/providers/Microsoft.Management/managementGroups/PowerShellTestNMConection/providers/Microsoft.Network/networkManagerConnections/ps6331?api-version=2022-01-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL1Bvd2VyU2hlbGxUZXN0Tk1Db25lY3Rpb24vcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtNYW5hZ2VyQ29ubmVjdGlvbnMvcHM2MzMxP2FwaS12ZXJzaW9uPTIwMjItMDEtMDE=", + "RequestUri": "/providers/Microsoft.Management/managementGroups/SwaggerStackTestMG/providers/Microsoft.Network/networkManagerConnections/ps2786?api-version=2022-07-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL1N3YWdnZXJTdGFja1Rlc3RNRy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJDb25uZWN0aW9ucy9wczI3ODY/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "c54b90d3-684a-4b60-b722-33078c0607f2" + "8d4cd3cf-a16f-4904-9f85-8f440bb937cf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -162,22 +162,22 @@ "Kestrel" ], "x-ms-request-id": [ - "b4c15cce-691a-4700-a17f-0b94a7193696" + "ec3d6571-30f1-4dc8-b9a1-24800ac8f213" ], "x-ms-correlation-request-id": [ - "b4c15cce-691a-4700-a17f-0b94a7193696" + "ec3d6571-30f1-4dc8-b9a1-24800ac8f213" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175639Z:b4c15cce-691a-4700-a17f-0b94a7193696" + "WESTUS:20230219T024408Z:ec3d6571-30f1-4dc8-b9a1-24800ac8f213" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:56:39 GMT" + "Sun, 19 Feb 2023 02:44:07 GMT" ], "Content-Length": [ - "503" + "749" ], "Content-Type": [ "application/json; charset=utf-8" @@ -186,25 +186,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/PowerShellTestNMConection/providers/Microsoft.Network/networkManagerConnections/ps6331\",\r\n \"name\": \"ps6331\",\r\n \"type\": \"Microsoft.Network/networkManagerConnections\",\r\n \"location\": \"\",\r\n \"properties\": {\r\n \"networkManagerId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/networkManagers/PowerShellTestNM-DO-NOT-DELETE\",\r\n \"connectionState\": \"Pending\",\r\n \"description\": \"SampleDescription\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/SwaggerStackTestMG/providers/Microsoft.Network/networkManagerConnections/ps2786\",\r\n \"name\": \"ps2786\",\r\n \"type\": \"Microsoft.Network/networkManagerConnections\",\r\n \"location\": \"\",\r\n \"properties\": {\r\n \"networkManagerId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/networkManagers/SwaggerStackNetworkManager\",\r\n \"connectionState\": \"Pending\",\r\n \"description\": \"SampleDescription\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:44:05.677901Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:44:05.677901Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/providers/Microsoft.Management/managementGroups/PowerShellTestNMConection/providers/Microsoft.Network/networkManagerConnections/ps6331?api-version=2022-01-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL1Bvd2VyU2hlbGxUZXN0Tk1Db25lY3Rpb24vcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtNYW5hZ2VyQ29ubmVjdGlvbnMvcHM2MzMxP2FwaS12ZXJzaW9uPTIwMjItMDEtMDE=", + "RequestUri": "/providers/Microsoft.Management/managementGroups/SwaggerStackTestMG/providers/Microsoft.Network/networkManagerConnections/ps2786?api-version=2022-07-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL1N3YWdnZXJTdGFja1Rlc3RNRy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJDb25uZWN0aW9ucy9wczI3ODY/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "2adc9be3-c8ab-48c4-a44b-d72f8ebfe969" + "cce648fe-01a0-4594-9226-27a8142795e6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -225,22 +225,22 @@ "Kestrel" ], "x-ms-request-id": [ - "d530656b-4534-437f-a554-cae598a056c4" + "4bf51ecd-c7c2-4fa2-b16f-deb3d6ad944b" ], "x-ms-correlation-request-id": [ - "d530656b-4534-437f-a554-cae598a056c4" + "4bf51ecd-c7c2-4fa2-b16f-deb3d6ad944b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175640Z:d530656b-4534-437f-a554-cae598a056c4" + "WESTUS:20230219T024408Z:4bf51ecd-c7c2-4fa2-b16f-deb3d6ad944b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:56:39 GMT" + "Sun, 19 Feb 2023 02:44:07 GMT" ], "Content-Length": [ - "503" + "749" ], "Content-Type": [ "application/json; charset=utf-8" @@ -249,25 +249,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/PowerShellTestNMConection/providers/Microsoft.Network/networkManagerConnections/ps6331\",\r\n \"name\": \"ps6331\",\r\n \"type\": \"Microsoft.Network/networkManagerConnections\",\r\n \"location\": \"\",\r\n \"properties\": {\r\n \"networkManagerId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/networkManagers/PowerShellTestNM-DO-NOT-DELETE\",\r\n \"connectionState\": \"Pending\",\r\n \"description\": \"SampleDescription\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/SwaggerStackTestMG/providers/Microsoft.Network/networkManagerConnections/ps2786\",\r\n \"name\": \"ps2786\",\r\n \"type\": \"Microsoft.Network/networkManagerConnections\",\r\n \"location\": \"\",\r\n \"properties\": {\r\n \"networkManagerId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/networkManagers/SwaggerStackNetworkManager\",\r\n \"connectionState\": \"Pending\",\r\n \"description\": \"SampleDescription\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:44:05.677901Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:44:05.677901Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/providers/Microsoft.Management/managementGroups/PowerShellTestNMConection/providers/Microsoft.Network/networkManagerConnections/ps6331?api-version=2022-01-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL1Bvd2VyU2hlbGxUZXN0Tk1Db25lY3Rpb24vcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtNYW5hZ2VyQ29ubmVjdGlvbnMvcHM2MzMxP2FwaS12ZXJzaW9uPTIwMjItMDEtMDE=", + "RequestUri": "/providers/Microsoft.Management/managementGroups/SwaggerStackTestMG/providers/Microsoft.Network/networkManagerConnections/ps2786?api-version=2022-07-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL1N3YWdnZXJTdGFja1Rlc3RNRy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJDb25uZWN0aW9ucy9wczI3ODY/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "2adc9be3-c8ab-48c4-a44b-d72f8ebfe969" + "cce648fe-01a0-4594-9226-27a8142795e6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -288,22 +288,22 @@ "Kestrel" ], "x-ms-request-id": [ - "0331ab17-71a6-4fe1-8aba-85d2501df75e" + "da01616d-d9e5-4c09-8c88-aa0eebf6f472" ], "x-ms-correlation-request-id": [ - "0331ab17-71a6-4fe1-8aba-85d2501df75e" + "da01616d-d9e5-4c09-8c88-aa0eebf6f472" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175641Z:0331ab17-71a6-4fe1-8aba-85d2501df75e" + "WESTUS:20230219T024409Z:da01616d-d9e5-4c09-8c88-aa0eebf6f472" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:56:41 GMT" + "Sun, 19 Feb 2023 02:44:09 GMT" ], "Content-Length": [ - "510" + "756" ], "Content-Type": [ "application/json; charset=utf-8" @@ -312,34 +312,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/PowerShellTestNMConection/providers/Microsoft.Network/networkManagerConnections/ps6331\",\r\n \"name\": \"ps6331\",\r\n \"type\": \"Microsoft.Network/networkManagerConnections\",\r\n \"location\": \"\",\r\n \"properties\": {\r\n \"networkManagerId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/networkManagers/PowerShellTestNM-DO-NOT-DELETE\",\r\n \"connectionState\": \"Pending\",\r\n \"description\": \"A Different Description.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/SwaggerStackTestMG/providers/Microsoft.Network/networkManagerConnections/ps2786\",\r\n \"name\": \"ps2786\",\r\n \"type\": \"Microsoft.Network/networkManagerConnections\",\r\n \"location\": \"\",\r\n \"properties\": {\r\n \"networkManagerId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/networkManagers/SwaggerStackNetworkManager\",\r\n \"connectionState\": \"Pending\",\r\n \"description\": \"A Different Description.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:44:05.677901Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:44:08.4796051Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/providers/Microsoft.Management/managementGroups/PowerShellTestNMConection/providers/Microsoft.Network/networkManagerConnections/ps6331?api-version=2022-01-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL1Bvd2VyU2hlbGxUZXN0Tk1Db25lY3Rpb24vcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtNYW5hZ2VyQ29ubmVjdGlvbnMvcHM2MzMxP2FwaS12ZXJzaW9uPTIwMjItMDEtMDE=", + "RequestUri": "/providers/Microsoft.Management/managementGroups/SwaggerStackTestMG/providers/Microsoft.Network/networkManagerConnections/ps2786?api-version=2022-07-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL1N3YWdnZXJTdGFja1Rlc3RNRy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJDb25uZWN0aW9ucy9wczI3ODY/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "41cb34d9-aa7d-4991-8ded-eb98171dc8d8" + "d0d410d7-8c8e-4915-a612-e46f5f085b65" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "274" + "249" ] }, - "RequestBody": "{\r\n \"properties\": {\r\n \"networkManagerId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/networkManagers/PowerShellTestNM-DO-NOT-DELETE\",\r\n \"description\": \"SampleDescription\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkManagerId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/networkManagers/SwaggerStackNetworkManager\",\r\n \"description\": \"SampleDescription\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -357,22 +357,22 @@ "Kestrel" ], "x-ms-request-id": [ - "70694980-c7eb-46b9-874e-ccd3fa0f8255" + "843129ae-2a94-4062-a411-81d7208f6c0d" ], "x-ms-correlation-request-id": [ - "70694980-c7eb-46b9-874e-ccd3fa0f8255" + "843129ae-2a94-4062-a411-81d7208f6c0d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175639Z:70694980-c7eb-46b9-874e-ccd3fa0f8255" + "WESTUS:20230219T024407Z:843129ae-2a94-4062-a411-81d7208f6c0d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:56:38 GMT" + "Sun, 19 Feb 2023 02:44:06 GMT" ], "Content-Length": [ - "503" + "749" ], "Content-Type": [ "application/json; charset=utf-8" @@ -381,34 +381,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/PowerShellTestNMConection/providers/Microsoft.Network/networkManagerConnections/ps6331\",\r\n \"name\": \"ps6331\",\r\n \"type\": \"Microsoft.Network/networkManagerConnections\",\r\n \"location\": \"\",\r\n \"properties\": {\r\n \"networkManagerId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/networkManagers/PowerShellTestNM-DO-NOT-DELETE\",\r\n \"connectionState\": \"Pending\",\r\n \"description\": \"SampleDescription\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/SwaggerStackTestMG/providers/Microsoft.Network/networkManagerConnections/ps2786\",\r\n \"name\": \"ps2786\",\r\n \"type\": \"Microsoft.Network/networkManagerConnections\",\r\n \"location\": \"\",\r\n \"properties\": {\r\n \"networkManagerId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/networkManagers/SwaggerStackNetworkManager\",\r\n \"connectionState\": \"Pending\",\r\n \"description\": \"SampleDescription\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:44:05.677901Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:44:05.677901Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/providers/Microsoft.Management/managementGroups/PowerShellTestNMConection/providers/Microsoft.Network/networkManagerConnections/ps6331?api-version=2022-01-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL1Bvd2VyU2hlbGxUZXN0Tk1Db25lY3Rpb24vcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtNYW5hZ2VyQ29ubmVjdGlvbnMvcHM2MzMxP2FwaS12ZXJzaW9uPTIwMjItMDEtMDE=", + "RequestUri": "/providers/Microsoft.Management/managementGroups/SwaggerStackTestMG/providers/Microsoft.Network/networkManagerConnections/ps2786?api-version=2022-07-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL1N3YWdnZXJTdGFja1Rlc3RNRy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJDb25uZWN0aW9ucy9wczI3ODY/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "2adc9be3-c8ab-48c4-a44b-d72f8ebfe969" + "cce648fe-01a0-4594-9226-27a8142795e6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "316" + "291" ] }, - "RequestBody": "{\r\n \"properties\": {\r\n \"networkManagerId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/networkManagers/PowerShellTestNM-DO-NOT-DELETE\",\r\n \"connectionState\": \"Pending\",\r\n \"description\": \"A Different Description.\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkManagerId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/networkManagers/SwaggerStackNetworkManager\",\r\n \"connectionState\": \"Pending\",\r\n \"description\": \"A Different Description.\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -426,22 +426,22 @@ "Kestrel" ], "x-ms-request-id": [ - "b9a5f6ec-4c4c-495c-87f7-bc338c980e8c" + "8b555161-90c0-4aef-9d6f-33ec65f0ad73" ], "x-ms-correlation-request-id": [ - "b9a5f6ec-4c4c-495c-87f7-bc338c980e8c" + "8b555161-90c0-4aef-9d6f-33ec65f0ad73" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175641Z:b9a5f6ec-4c4c-495c-87f7-bc338c980e8c" + "WESTUS:20230219T024409Z:8b555161-90c0-4aef-9d6f-33ec65f0ad73" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:56:41 GMT" + "Sun, 19 Feb 2023 02:44:09 GMT" ], "Content-Length": [ - "510" + "756" ], "Content-Type": [ "application/json; charset=utf-8" @@ -450,25 +450,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/PowerShellTestNMConection/providers/Microsoft.Network/networkManagerConnections/ps6331\",\r\n \"name\": \"ps6331\",\r\n \"type\": \"Microsoft.Network/networkManagerConnections\",\r\n \"location\": \"\",\r\n \"properties\": {\r\n \"networkManagerId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/networkManagers/PowerShellTestNM-DO-NOT-DELETE\",\r\n \"connectionState\": \"Pending\",\r\n \"description\": \"A Different Description.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/SwaggerStackTestMG/providers/Microsoft.Network/networkManagerConnections/ps2786\",\r\n \"name\": \"ps2786\",\r\n \"type\": \"Microsoft.Network/networkManagerConnections\",\r\n \"location\": \"\",\r\n \"properties\": {\r\n \"networkManagerId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/networkManagers/SwaggerStackNetworkManager\",\r\n \"connectionState\": \"Pending\",\r\n \"description\": \"A Different Description.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:44:05.677901Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:44:08.4796051Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/providers/Microsoft.Management/managementGroups/PowerShellTestNMConection/providers/Microsoft.Network/networkManagerConnections/ps6331?api-version=2022-01-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL1Bvd2VyU2hlbGxUZXN0Tk1Db25lY3Rpb24vcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtNYW5hZ2VyQ29ubmVjdGlvbnMvcHM2MzMxP2FwaS12ZXJzaW9uPTIwMjItMDEtMDE=", + "RequestUri": "/providers/Microsoft.Management/managementGroups/SwaggerStackTestMG/providers/Microsoft.Network/networkManagerConnections/ps2786?api-version=2022-07-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL1N3YWdnZXJTdGFja1Rlc3RNRy9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJDb25uZWN0aW9ucy9wczI3ODY/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "dcd5d480-a22b-452f-992a-f27381f2f6a8" + "ddd7b2a9-cc3a-49d6-bb9a-ecf86c26e105" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -489,19 +489,19 @@ "14999" ], "x-ms-request-id": [ - "678b54a5-c1b3-4fb0-a8a5-871730ed5bd1" + "a9e9f4bb-f084-468f-a34d-83c25ba825c0" ], "x-ms-correlation-request-id": [ - "678b54a5-c1b3-4fb0-a8a5-871730ed5bd1" + "a9e9f4bb-f084-468f-a34d-83c25ba825c0" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175644Z:678b54a5-c1b3-4fb0-a8a5-871730ed5bd1" + "WESTUS:20230219T024411Z:a9e9f4bb-f084-468f-a34d-83c25ba825c0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:56:43 GMT" + "Sun, 19 Feb 2023 02:44:11 GMT" ], "Expires": [ "-1" @@ -516,10 +516,10 @@ ], "Names": { "Test-NetworkManagerManagementGroupConnectionCRUD": [ - "ps6331" + "ps2786" ] }, "Variables": { - "SubscriptionId": "0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884" + "SubscriptionId": "08615b4b-bc9c-4a70-be1b-2ea10bc97b52" } } \ No newline at end of file diff --git a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkManagerTests/NetworkManagerResourceMinimumParameterCreate.json b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkManagerTests/NetworkManagerResourceMinimumParameterCreate.json index b40c12d3face..22cb224aae9d 100644 --- a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkManagerTests/NetworkManagerResourceMinimumParameterCreate.json +++ b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkManagerTests/NetworkManagerResourceMinimumParameterCreate.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourcegroups/ps4969?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlZ3JvdXBzL3BzNDk2OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourcegroups/ps7724?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlZ3JvdXBzL3BzNzcyND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "96f8f8ac-3cc0-4502-a8db-d7fe81239374" + "78003568-b31b-4b49-a2ff-3827a986deee" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.61" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "1806a87a-b5ad-4cd6-8427-f2408e616042" + "88a33e29-bdda-4d71-aee9-5132b7011efd" ], "x-ms-correlation-request-id": [ - "1806a87a-b5ad-4cd6-8427-f2408e616042" + "88a33e29-bdda-4d71-aee9-5132b7011efd" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175750Z:1806a87a-b5ad-4cd6-8427-f2408e616042" + "WESTCENTRALUS:20230219T023650Z:88a33e29-bdda-4d71-aee9-5132b7011efd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:57:49 GMT" + "Sun, 19 Feb 2023 02:36:49 GMT" ], "Content-Length": [ - "201" + "242" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,25 +63,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969\",\r\n \"name\": \"ps4969\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724\",\r\n \"name\": \"ps7724\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"testtag\": \"testval\",\r\n \"Created\": \"2023-02-19T02:36:49.7766945Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNDk2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzOTY3Mz9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNzcyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzMxNz9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "cd42d8ed-0668-4803-9769-b2b86dac7c5c" + "bb75b822-e28f-4f3f-8730-422451540740" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "425c0ef2-b79f-43f1-a9ac-7dfb13d71628" + "33be7c71-43c4-44b5-ba2f-500c8ea5836b" ], "x-ms-correlation-request-id": [ - "425c0ef2-b79f-43f1-a9ac-7dfb13d71628" + "33be7c71-43c4-44b5-ba2f-500c8ea5836b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175751Z:425c0ef2-b79f-43f1-a9ac-7dfb13d71628" + "WESTCENTRALUS:20230219T023650Z:33be7c71-43c4-44b5-ba2f-500c8ea5836b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:57:50 GMT" + "Sun, 19 Feb 2023 02:36:50 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,25 +123,25 @@ "218" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkManagers/ps9673' under resource group 'ps4969' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkManagers/ps3317' under resource group 'ps7724' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNDk2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzOTY3Mz9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNzcyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzMxNz9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "cd42d8ed-0668-4803-9769-b2b86dac7c5c" + "bb75b822-e28f-4f3f-8730-422451540740" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -153,7 +153,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -162,22 +162,22 @@ "Kestrel" ], "x-ms-request-id": [ - "0e1e6291-ff88-43ea-bb12-ca2e561404af" + "c11294d6-3948-44b3-b806-f2629e813cf6" ], "x-ms-correlation-request-id": [ - "0e1e6291-ff88-43ea-bb12-ca2e561404af" + "c11294d6-3948-44b3-b806-f2629e813cf6" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175756Z:0e1e6291-ff88-43ea-bb12-ca2e561404af" + "WESTCENTRALUS:20230219T023653Z:c11294d6-3948-44b3-b806-f2629e813cf6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:57:55 GMT" + "Sun, 19 Feb 2023 02:36:52 GMT" ], "Content-Length": [ - "897" + "880" ], "Content-Type": [ "application/json; charset=utf-8" @@ -186,25 +186,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps9673\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"0000e01b-0000-3300-0000-632ca2230000\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\",\r\n \"SecurityAdmin\"\r\n ],\r\n \"resourceGuid\": \"c4676071-1f7c-43c9-b5e4-16d2fe974caa\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-22T17:57:53.7761188Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-22T17:57:53.7761188Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps3317\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"5600c3bc-0000-3300-0000-63f18b440000\\\"\",\r\n \"properties\": {\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\",\r\n \"SecurityAdmin\"\r\n ],\r\n \"resourceGuid\": \"d3939a26-043e-421f-8f67-4a39e4087c82\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:36:52.0310519Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:36:52.0310519Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNDk2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzOTY3Mz9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNzcyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzMxNz9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "cd42d8ed-0668-4803-9769-b2b86dac7c5c" + "bb75b822-e28f-4f3f-8730-422451540740" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -213,7 +213,7 @@ "319" ] }, - "RequestBody": "{\r\n \"properties\": {\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884\"\r\n ]\r\n },\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\",\r\n \"SecurityAdmin\"\r\n ]\r\n },\r\n \"location\": \"centraluseuap\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52\"\r\n ]\r\n },\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\",\r\n \"SecurityAdmin\"\r\n ]\r\n },\r\n \"location\": \"centraluseuap\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -222,7 +222,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -231,22 +231,22 @@ "Kestrel" ], "x-ms-request-id": [ - "f59f4195-8379-49a1-bc1f-c4ab249ff697" + "6347b7fc-8c93-4ed1-a98c-34f157a7d222" ], "x-ms-correlation-request-id": [ - "f59f4195-8379-49a1-bc1f-c4ab249ff697" + "6347b7fc-8c93-4ed1-a98c-34f157a7d222" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175756Z:f59f4195-8379-49a1-bc1f-c4ab249ff697" + "WESTCENTRALUS:20230219T023653Z:6347b7fc-8c93-4ed1-a98c-34f157a7d222" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:57:55 GMT" + "Sun, 19 Feb 2023 02:36:52 GMT" ], "Content-Length": [ - "857" + "840" ], "Content-Type": [ "application/json; charset=utf-8" @@ -255,25 +255,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps9673\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\",\r\n \"SecurityAdmin\"\r\n ],\r\n \"resourceGuid\": \"c4676071-1f7c-43c9-b5e4-16d2fe974caa\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-22T17:57:53.7761188Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-22T17:57:53.7761188Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps3317\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\",\r\n \"SecurityAdmin\"\r\n ],\r\n \"resourceGuid\": \"d3939a26-043e-421f-8f67-4a39e4087c82\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:36:52.0310519Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:36:52.0310519Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/networkGroups/ps2288?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNDk2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzOTY3My9uZXR3b3JrR3JvdXBzL3BzMjI4OD9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/networkGroups/ps5659?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNzcyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzMxNy9uZXR3b3JrR3JvdXBzL3BzNTY1OT9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "3cd2d97f-7b19-4030-882f-4b2be84b87cf" + "c5edf394-25c4-4e1d-9964-7c2022443b8f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -285,7 +285,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -294,19 +294,19 @@ "Kestrel" ], "x-ms-request-id": [ - "c43e88e8-0df3-4ccc-959a-e3391266c620" + "1d35bfa2-aa97-4262-bac8-72c58231fa07" ], "x-ms-correlation-request-id": [ - "c43e88e8-0df3-4ccc-959a-e3391266c620" + "1d35bfa2-aa97-4262-bac8-72c58231fa07" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175757Z:c43e88e8-0df3-4ccc-959a-e3391266c620" + "WESTCENTRALUS:20230219T023654Z:1d35bfa2-aa97-4262-bac8-72c58231fa07" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:57:57 GMT" + "Sun, 19 Feb 2023 02:36:53 GMT" ], "Content-Length": [ "233" @@ -318,25 +318,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"Resource [/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/networkGroups/ps2288] does not exist or has been deleted\",\r\n \"code\": \"NotFound\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"Resource [/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/networkGroups/ps5659] does not exist or has been deleted\",\r\n \"code\": \"NotFound\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/networkGroups/ps2288?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNDk2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzOTY3My9uZXR3b3JrR3JvdXBzL3BzMjI4OD9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/networkGroups/ps5659?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNzcyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzMxNy9uZXR3b3JrR3JvdXBzL3BzNTY1OT9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "3cd2d97f-7b19-4030-882f-4b2be84b87cf" + "c5edf394-25c4-4e1d-9964-7c2022443b8f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -348,7 +348,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -357,22 +357,22 @@ "Kestrel" ], "x-ms-request-id": [ - "4202ef4e-c952-4c18-adfe-2b8a765dd3bb" + "23985f07-6705-4864-8320-ffde859f4604" ], "x-ms-correlation-request-id": [ - "4202ef4e-c952-4c18-adfe-2b8a765dd3bb" + "23985f07-6705-4864-8320-ffde859f4604" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175759Z:4202ef4e-c952-4c18-adfe-2b8a765dd3bb" + "WESTCENTRALUS:20230219T023655Z:23985f07-6705-4864-8320-ffde859f4604" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:57:58 GMT" + "Sun, 19 Feb 2023 02:36:55 GMT" ], "Content-Length": [ - "690" + "673" ], "Content-Type": [ "application/json; charset=utf-8" @@ -381,25 +381,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps2288\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/networkGroups/ps2288\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups\",\r\n \"etag\": \"\\\"0000e11b-0000-3300-0000-632ca2260000\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"05f8eaf2-a745-4ad2-b4e1-59c57b9d25b5\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-22T17:57:58.0259696Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-22T17:57:58.0259696Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5659\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/networkGroups/ps5659\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups\",\r\n \"etag\": \"\\\"5600ccbc-0000-3300-0000-63f18b460000\\\"\",\r\n \"properties\": {\r\n \"description\": \"\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c29edfd8-392e-4661-bd66-3947e2ae4f57\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:36:54.7665134Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:36:54.7665134Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/networkGroups/ps2288?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNDk2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzOTY3My9uZXR3b3JrR3JvdXBzL3BzMjI4OD9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/networkGroups/ps5659?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNzcyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzMxNy9uZXR3b3JrR3JvdXBzL3BzNTY1OT9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "cf04b396-3962-4a47-b7fb-9f7b85f69713" + "0ea6b660-7e5d-4ff1-8ac9-8189b3fed45f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -411,7 +411,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -420,22 +420,22 @@ "Kestrel" ], "x-ms-request-id": [ - "aa9b48c4-5019-4d1c-bfa5-3ccac6ec2ab7" + "b9364eb3-da7b-49ee-97aa-b3b0751d292b" ], "x-ms-correlation-request-id": [ - "aa9b48c4-5019-4d1c-bfa5-3ccac6ec2ab7" + "b9364eb3-da7b-49ee-97aa-b3b0751d292b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175802Z:aa9b48c4-5019-4d1c-bfa5-3ccac6ec2ab7" + "WESTCENTRALUS:20230219T023657Z:b9364eb3-da7b-49ee-97aa-b3b0751d292b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:58:01 GMT" + "Sun, 19 Feb 2023 02:36:57 GMT" ], "Content-Length": [ - "690" + "673" ], "Content-Type": [ "application/json; charset=utf-8" @@ -444,25 +444,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps2288\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/networkGroups/ps2288\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups\",\r\n \"etag\": \"\\\"0000e11b-0000-3300-0000-632ca2260000\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"05f8eaf2-a745-4ad2-b4e1-59c57b9d25b5\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-22T17:57:58.0259696Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-22T17:57:58.0259696Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5659\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/networkGroups/ps5659\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups\",\r\n \"etag\": \"\\\"5600ccbc-0000-3300-0000-63f18b460000\\\"\",\r\n \"properties\": {\r\n \"description\": \"\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c29edfd8-392e-4661-bd66-3947e2ae4f57\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:36:54.7665134Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:36:54.7665134Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/networkGroups/ps2288?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNDk2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzOTY3My9uZXR3b3JrR3JvdXBzL3BzMjI4OD9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/networkGroups/ps5659?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNzcyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzMxNy9uZXR3b3JrR3JvdXBzL3BzNTY1OT9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "3cd2d97f-7b19-4030-882f-4b2be84b87cf" + "c5edf394-25c4-4e1d-9964-7c2022443b8f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -480,7 +480,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -489,22 +489,22 @@ "Kestrel" ], "x-ms-request-id": [ - "e27c3a49-c454-43ec-b987-9f825e97b086" + "d6d4330c-08ee-4e20-8b55-18846f447b4f" ], "x-ms-correlation-request-id": [ - "e27c3a49-c454-43ec-b987-9f825e97b086" + "d6d4330c-08ee-4e20-8b55-18846f447b4f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175758Z:e27c3a49-c454-43ec-b987-9f825e97b086" + "WESTCENTRALUS:20230219T023655Z:d6d4330c-08ee-4e20-8b55-18846f447b4f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:57:58 GMT" + "Sun, 19 Feb 2023 02:36:55 GMT" ], "Content-Length": [ - "650" + "633" ], "Content-Type": [ "application/json; charset=utf-8" @@ -513,25 +513,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps2288\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/networkGroups/ps2288\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"05f8eaf2-a745-4ad2-b4e1-59c57b9d25b5\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-22T17:57:58.0259696Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-22T17:57:58.0259696Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5659\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/networkGroups/ps5659\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"description\": \"\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c29edfd8-392e-4661-bd66-3947e2ae4f57\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:36:54.7665134Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:36:54.7665134Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/networkGroups/ps2288/staticMembers/ps135?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNDk2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzOTY3My9uZXR3b3JrR3JvdXBzL3BzMjI4OC9zdGF0aWNNZW1iZXJzL3BzMTM1P2FwaS12ZXJzaW9uPTIwMjItMDEtMDE=", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/networkGroups/ps5659/staticMembers/ps9763?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNzcyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzMxNy9uZXR3b3JrR3JvdXBzL3BzNTY1OS9zdGF0aWNNZW1iZXJzL3BzOTc2Mz9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "b2c3711f-f318-4cf6-957d-9f7dccef4335" + "a5ab7e15-ff73-4165-995a-acfc538f9a52" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -552,22 +552,22 @@ "Kestrel" ], "x-ms-request-id": [ - "09a144a9-3aa9-4e65-bae1-23b64e47e7d3" + "6f6a8961-a74a-4985-ac14-4bd1ea68d0ed" ], "x-ms-correlation-request-id": [ - "09a144a9-3aa9-4e65-bae1-23b64e47e7d3" + "6f6a8961-a74a-4985-ac14-4bd1ea68d0ed" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175800Z:09a144a9-3aa9-4e65-bae1-23b64e47e7d3" + "WESTCENTRALUS:20230219T023656Z:6f6a8961-a74a-4985-ac14-4bd1ea68d0ed" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:58:00 GMT" + "Sun, 19 Feb 2023 02:36:56 GMT" ], "Content-Length": [ - "252" + "253" ], "Content-Type": [ "application/json; charset=utf-8" @@ -576,25 +576,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"Resource [/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/networkGroups/ps2288/staticMembersps135] does not exist or has been deleted\",\r\n \"code\": \"NotFound\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"Resource [/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/networkGroups/ps5659/staticMembersps9763] does not exist or has been deleted\",\r\n \"code\": \"NotFound\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/networkGroups/ps2288/staticMembers/ps135?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNDk2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzOTY3My9uZXR3b3JrR3JvdXBzL3BzMjI4OC9zdGF0aWNNZW1iZXJzL3BzMTM1P2FwaS12ZXJzaW9uPTIwMjItMDEtMDE=", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/networkGroups/ps5659/staticMembers/ps9763?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNzcyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzMxNy9uZXR3b3JrR3JvdXBzL3BzNTY1OS9zdGF0aWNNZW1iZXJzL3BzOTc2Mz9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "b2c3711f-f318-4cf6-957d-9f7dccef4335" + "a5ab7e15-ff73-4165-995a-acfc538f9a52" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -615,22 +615,22 @@ "Kestrel" ], "x-ms-request-id": [ - "e33f9c48-a793-4d64-a1c8-a771d6f57a38" + "1747338c-8227-44eb-9f8e-254c5af9581b" ], "x-ms-correlation-request-id": [ - "e33f9c48-a793-4d64-a1c8-a771d6f57a38" + "1747338c-8227-44eb-9f8e-254c5af9581b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175802Z:e33f9c48-a793-4d64-a1c8-a771d6f57a38" + "WESTCENTRALUS:20230219T023657Z:1747338c-8227-44eb-9f8e-254c5af9581b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:58:01 GMT" + "Sun, 19 Feb 2023 02:36:57 GMT" ], "Content-Length": [ - "829" + "808" ], "Content-Type": [ "application/json; charset=utf-8" @@ -639,34 +639,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps135\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/networkGroups/ps2288/staticMembers/ps135\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups/staticMembers\",\r\n \"etag\": \"\\\"0000e21b-0000-3300-0000-632ca2290000\\\"\",\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/virtualNetworks/powerShellTestVnet\",\r\n \"provisioningState\": \"Updating\",\r\n \"location\": \"\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-22T17:58:00.7169489Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-22T17:58:00.7169489Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps9763\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/networkGroups/ps5659/staticMembers/ps9763\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups/staticMembers\",\r\n \"etag\": \"\\\"5600d0bc-0000-3300-0000-63f18b480000\\\"\",\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/virtualNetworks/SwaggerStackVnet\",\r\n \"provisioningState\": \"Updating\",\r\n \"location\": \"\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:36:56.6678657Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:36:56.6678657Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/networkGroups/ps2288/staticMembers/ps135?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNDk2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzOTY3My9uZXR3b3JrR3JvdXBzL3BzMjI4OC9zdGF0aWNNZW1iZXJzL3BzMTM1P2FwaS12ZXJzaW9uPTIwMjItMDEtMDE=", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/networkGroups/ps5659/staticMembers/ps9763?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNzcyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzMxNy9uZXR3b3JrR3JvdXBzL3BzNTY1OS9zdGF0aWNNZW1iZXJzL3BzOTc2Mz9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "b2c3711f-f318-4cf6-957d-9f7dccef4335" + "a5ab7e15-ff73-4165-995a-acfc538f9a52" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "215" + "192" ] }, - "RequestBody": "{\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/virtualNetworks/powerShellTestVnet\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/virtualNetworks/SwaggerStackVnet\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -684,22 +684,22 @@ "Kestrel" ], "x-ms-request-id": [ - "f562794c-7760-4c0b-9a74-0f342e703530" + "6eb19dd8-384b-4b9c-9638-7eb75cea25c8" ], "x-ms-correlation-request-id": [ - "f562794c-7760-4c0b-9a74-0f342e703530" + "6eb19dd8-384b-4b9c-9638-7eb75cea25c8" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175801Z:f562794c-7760-4c0b-9a74-0f342e703530" + "WESTCENTRALUS:20230219T023657Z:6eb19dd8-384b-4b9c-9638-7eb75cea25c8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:58:01 GMT" + "Sun, 19 Feb 2023 02:36:57 GMT" ], "Content-Length": [ - "789" + "768" ], "Content-Type": [ "application/json; charset=utf-8" @@ -708,25 +708,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps135\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/networkGroups/ps2288/staticMembers/ps135\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups/staticMembers\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/virtualNetworks/powerShellTestVnet\",\r\n \"provisioningState\": \"Updating\",\r\n \"location\": \"\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-22T17:58:00.7169489Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-22T17:58:00.7169489Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps9763\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/networkGroups/ps5659/staticMembers/ps9763\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups/staticMembers\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/virtualNetworks/SwaggerStackVnet\",\r\n \"provisioningState\": \"Updating\",\r\n \"location\": \"\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:36:56.6678657Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:36:56.6678657Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/connectivityConfigurations/ps5357?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNDk2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzOTY3My9jb25uZWN0aXZpdHlDb25maWd1cmF0aW9ucy9wczUzNTc/YXBpLXZlcnNpb249MjAyMi0wMS0wMQ==", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/connectivityConfigurations/ps327?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNzcyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzMxNy9jb25uZWN0aXZpdHlDb25maWd1cmF0aW9ucy9wczMyNz9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "2e712fb0-4558-401e-84e3-e80ccb6c0c44" + "84c89292-aa61-4529-a8ca-e830ff834a10" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -738,7 +738,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -747,22 +747,22 @@ "Kestrel" ], "x-ms-request-id": [ - "cd467e60-7212-4166-a428-d2ee97677156" + "3b7ca102-5474-4226-8069-75c7e3a4f8a9" ], "x-ms-correlation-request-id": [ - "cd467e60-7212-4166-a428-d2ee97677156" + "3b7ca102-5474-4226-8069-75c7e3a4f8a9" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175803Z:cd467e60-7212-4166-a428-d2ee97677156" + "WESTCENTRALUS:20230219T023658Z:3b7ca102-5474-4226-8069-75c7e3a4f8a9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:58:03 GMT" + "Sun, 19 Feb 2023 02:36:58 GMT" ], "Content-Length": [ - "246" + "245" ], "Content-Type": [ "application/json; charset=utf-8" @@ -771,25 +771,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"Resource [/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/connectivityConfigurations/ps5357] does not exist or has been deleted\",\r\n \"code\": \"NotFound\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"Resource [/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/connectivityConfigurations/ps327] does not exist or has been deleted\",\r\n \"code\": \"NotFound\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/connectivityConfigurations/ps5357?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNDk2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzOTY3My9jb25uZWN0aXZpdHlDb25maWd1cmF0aW9ucy9wczUzNTc/YXBpLXZlcnNpb249MjAyMi0wMS0wMQ==", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/connectivityConfigurations/ps327?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNzcyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzMxNy9jb25uZWN0aXZpdHlDb25maWd1cmF0aW9ucy9wczMyNz9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "2e712fb0-4558-401e-84e3-e80ccb6c0c44" + "84c89292-aa61-4529-a8ca-e830ff834a10" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -801,7 +801,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -810,22 +810,22 @@ "Kestrel" ], "x-ms-request-id": [ - "cec54b68-305c-4d36-9c41-856d7bfa9bb7" + "946a6050-b5c4-42d1-bc13-e6d9da269fe4" ], "x-ms-correlation-request-id": [ - "cec54b68-305c-4d36-9c41-856d7bfa9bb7" + "946a6050-b5c4-42d1-bc13-e6d9da269fe4" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175805Z:cec54b68-305c-4d36-9c41-856d7bfa9bb7" + "WESTCENTRALUS:20230219T023659Z:946a6050-b5c4-42d1-bc13-e6d9da269fe4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:58:05 GMT" + "Sun, 19 Feb 2023 02:36:59 GMT" ], "Content-Length": [ - "1063" + "1044" ], "Content-Type": [ "application/json; charset=utf-8" @@ -834,25 +834,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps5357\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/connectivityConfigurations/ps5357\",\r\n \"type\": \"Microsoft.Network/networkManagers/connectivityConfigurations\",\r\n \"etag\": \"\\\"0000e41b-0000-3300-0000-632ca22c0000\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"connectivityTopology\": \"Mesh\",\r\n \"hubs\": [],\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/networkGroups/ps2288\",\r\n \"groupConnectivity\": \"None\",\r\n \"useHubGateway\": \"False\",\r\n \"isGlobal\": \"False\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"deleteExistingPeering\": \"True\",\r\n \"isGlobal\": \"False\",\r\n \"resourceGuid\": \"4f54afff-2548-4a22-9be7-7d27e4e31e1d\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-22T17:58:04.6082911Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-22T17:58:04.6082911Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps327\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/connectivityConfigurations/ps327\",\r\n \"type\": \"Microsoft.Network/networkManagers/connectivityConfigurations\",\r\n \"etag\": \"\\\"5600d6bc-0000-3300-0000-63f18b4b0000\\\"\",\r\n \"properties\": {\r\n \"description\": \"\",\r\n \"connectivityTopology\": \"Mesh\",\r\n \"hubs\": [],\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/networkGroups/ps5659\",\r\n \"groupConnectivity\": \"None\",\r\n \"useHubGateway\": \"False\",\r\n \"isGlobal\": \"False\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"deleteExistingPeering\": \"True\",\r\n \"isGlobal\": \"False\",\r\n \"resourceGuid\": \"a2e36c30-0d72-4140-b6a8-e43aadfaf677\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:36:59.2219641Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:36:59.2219641Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/connectivityConfigurations/ps5357?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNDk2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzOTY3My9jb25uZWN0aXZpdHlDb25maWd1cmF0aW9ucy9wczUzNTc/YXBpLXZlcnNpb249MjAyMi0wMS0wMQ==", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/connectivityConfigurations/ps327?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNzcyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzMxNy9jb25uZWN0aXZpdHlDb25maWd1cmF0aW9ucy9wczMyNz9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "2e712fb0-4558-401e-84e3-e80ccb6c0c44" + "84c89292-aa61-4529-a8ca-e830ff834a10" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -861,7 +861,7 @@ "475" ] }, - "RequestBody": "{\r\n \"properties\": {\r\n \"connectivityTopology\": \"Mesh\",\r\n \"hubs\": [],\r\n \"isGlobal\": \"False\",\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/networkGroups/ps2288\",\r\n \"useHubGateway\": \"False\",\r\n \"isGlobal\": \"False\",\r\n \"groupConnectivity\": \"None\"\r\n }\r\n ],\r\n \"deleteExistingPeering\": \"True\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"connectivityTopology\": \"Mesh\",\r\n \"hubs\": [],\r\n \"isGlobal\": \"False\",\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/networkGroups/ps5659\",\r\n \"useHubGateway\": \"False\",\r\n \"isGlobal\": \"False\",\r\n \"groupConnectivity\": \"None\"\r\n }\r\n ],\r\n \"deleteExistingPeering\": \"True\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -870,7 +870,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -879,22 +879,22 @@ "Kestrel" ], "x-ms-request-id": [ - "d7239265-1e07-4934-8ef7-f6d3831fc775" + "081e1d8e-ef2b-4d7c-accf-9bd784e8348b" ], "x-ms-correlation-request-id": [ - "d7239265-1e07-4934-8ef7-f6d3831fc775" + "081e1d8e-ef2b-4d7c-accf-9bd784e8348b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175805Z:d7239265-1e07-4934-8ef7-f6d3831fc775" + "WESTCENTRALUS:20230219T023659Z:081e1d8e-ef2b-4d7c-accf-9bd784e8348b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:58:04 GMT" + "Sun, 19 Feb 2023 02:36:59 GMT" ], "Content-Length": [ - "1023" + "1004" ], "Content-Type": [ "application/json; charset=utf-8" @@ -903,25 +903,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps5357\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/connectivityConfigurations/ps5357\",\r\n \"type\": \"Microsoft.Network/networkManagers/connectivityConfigurations\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"connectivityTopology\": \"Mesh\",\r\n \"hubs\": [],\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/networkGroups/ps2288\",\r\n \"groupConnectivity\": \"None\",\r\n \"useHubGateway\": \"False\",\r\n \"isGlobal\": \"False\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"deleteExistingPeering\": \"True\",\r\n \"isGlobal\": \"False\",\r\n \"resourceGuid\": \"4f54afff-2548-4a22-9be7-7d27e4e31e1d\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-22T17:58:04.6082911Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-22T17:58:04.6082911Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps327\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/connectivityConfigurations/ps327\",\r\n \"type\": \"Microsoft.Network/networkManagers/connectivityConfigurations\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"description\": \"\",\r\n \"connectivityTopology\": \"Mesh\",\r\n \"hubs\": [],\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/networkGroups/ps5659\",\r\n \"groupConnectivity\": \"None\",\r\n \"useHubGateway\": \"False\",\r\n \"isGlobal\": \"False\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"deleteExistingPeering\": \"True\",\r\n \"isGlobal\": \"False\",\r\n \"resourceGuid\": \"a2e36c30-0d72-4140-b6a8-e43aadfaf677\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:36:59.2219641Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:36:59.2219641Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/securityAdminConfigurations/ps8129?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNDk2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzOTY3My9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM4MTI5P2FwaS12ZXJzaW9uPTIwMjItMDEtMDE=", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/securityAdminConfigurations/ps9845?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNzcyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzMxNy9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM5ODQ1P2FwaS12ZXJzaW9uPTIwMjItMDctMDE=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "7e0bf907-cf0d-4909-bc0e-1633f201ffde" + "42671994-fc37-467b-b3b7-9b484378c0be" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -942,19 +942,19 @@ "Kestrel" ], "x-ms-request-id": [ - "4743f677-bec2-4899-b036-4d6512e97fd4" + "39f4683c-c00e-4f4d-8c86-1691531f9b09" ], "x-ms-correlation-request-id": [ - "4743f677-bec2-4899-b036-4d6512e97fd4" + "39f4683c-c00e-4f4d-8c86-1691531f9b09" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175806Z:4743f677-bec2-4899-b036-4d6512e97fd4" + "WESTCENTRALUS:20230219T023700Z:39f4683c-c00e-4f4d-8c86-1691531f9b09" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:58:05 GMT" + "Sun, 19 Feb 2023 02:36:59 GMT" ], "Content-Length": [ "247" @@ -966,25 +966,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"Resource [/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/securityAdminConfigurations/ps8129] does not exist or has been deleted\",\r\n \"code\": \"NotFound\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"Resource [/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/securityAdminConfigurations/ps9845] does not exist or has been deleted\",\r\n \"code\": \"NotFound\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/securityAdminConfigurations/ps8129?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNDk2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzOTY3My9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM4MTI5P2FwaS12ZXJzaW9uPTIwMjItMDEtMDE=", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/securityAdminConfigurations/ps9845?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNzcyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzMxNy9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM5ODQ1P2FwaS12ZXJzaW9uPTIwMjItMDctMDE=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "7e0bf907-cf0d-4909-bc0e-1633f201ffde" + "42671994-fc37-467b-b3b7-9b484378c0be" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -1005,22 +1005,22 @@ "Kestrel" ], "x-ms-request-id": [ - "7f193112-383a-449f-a73e-084f843b654a" + "c4c68307-ec32-490a-92af-7cef70bea05c" ], "x-ms-correlation-request-id": [ - "7f193112-383a-449f-a73e-084f843b654a" + "c4c68307-ec32-490a-92af-7cef70bea05c" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175813Z:7f193112-383a-449f-a73e-084f843b654a" + "WESTCENTRALUS:20230219T023701Z:c4c68307-ec32-490a-92af-7cef70bea05c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:58:13 GMT" + "Sun, 19 Feb 2023 02:37:00 GMT" ], "Content-Length": [ - "763" + "746" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1029,25 +1029,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps8129\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/securityAdminConfigurations/ps8129\",\r\n \"type\": \"Microsoft.Network/networkManagers/securityAdminConfigurations\",\r\n \"etag\": \"\\\"0000e51b-0000-3300-0000-632ca22f0000\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ea89207a-8ce5-4ff9-93d8-70b5cde3963f\",\r\n \"applyOnNetworkIntentPolicyBasedServices\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-22T17:58:07.1225735Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-22T17:58:07.1225735Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps9845\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/securityAdminConfigurations/ps9845\",\r\n \"type\": \"Microsoft.Network/networkManagers/securityAdminConfigurations\",\r\n \"etag\": \"\\\"5600d9bc-0000-3300-0000-63f18b4c0000\\\"\",\r\n \"properties\": {\r\n \"description\": \"\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2d7b20b7-effe-4b07-b947-8ff90ca1534c\",\r\n \"applyOnNetworkIntentPolicyBasedServices\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:37:00.4422801Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:37:00.4422801Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/securityAdminConfigurations/ps8129?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNDk2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzOTY3My9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM4MTI5P2FwaS12ZXJzaW9uPTIwMjItMDEtMDE=", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/securityAdminConfigurations/ps9845?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNzcyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzMxNy9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM5ODQ1P2FwaS12ZXJzaW9uPTIwMjItMDctMDE=", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "7e0bf907-cf0d-4909-bc0e-1633f201ffde" + "42671994-fc37-467b-b3b7-9b484378c0be" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1074,22 +1074,22 @@ "Kestrel" ], "x-ms-request-id": [ - "b6d517d9-33eb-4d96-8c7e-cc5002606ec1" + "2bba3d41-f655-43e6-8dc5-fe742e8e42ae" ], "x-ms-correlation-request-id": [ - "b6d517d9-33eb-4d96-8c7e-cc5002606ec1" + "2bba3d41-f655-43e6-8dc5-fe742e8e42ae" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175813Z:b6d517d9-33eb-4d96-8c7e-cc5002606ec1" + "WESTCENTRALUS:20230219T023701Z:2bba3d41-f655-43e6-8dc5-fe742e8e42ae" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:58:12 GMT" + "Sun, 19 Feb 2023 02:37:00 GMT" ], "Content-Length": [ - "723" + "706" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1098,25 +1098,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps8129\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/securityAdminConfigurations/ps8129\",\r\n \"type\": \"Microsoft.Network/networkManagers/securityAdminConfigurations\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ea89207a-8ce5-4ff9-93d8-70b5cde3963f\",\r\n \"applyOnNetworkIntentPolicyBasedServices\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-22T17:58:07.1225735Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-22T17:58:07.1225735Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps9845\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/securityAdminConfigurations/ps9845\",\r\n \"type\": \"Microsoft.Network/networkManagers/securityAdminConfigurations\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"description\": \"\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2d7b20b7-effe-4b07-b947-8ff90ca1534c\",\r\n \"applyOnNetworkIntentPolicyBasedServices\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:37:00.4422801Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:37:00.4422801Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/securityAdminConfigurations/ps8129/ruleCollections/ps94?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNDk2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzOTY3My9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM4MTI5L3J1bGVDb2xsZWN0aW9ucy9wczk0P2FwaS12ZXJzaW9uPTIwMjItMDEtMDE=", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/securityAdminConfigurations/ps9845/ruleCollections/ps6210?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNzcyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzMxNy9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM5ODQ1L3J1bGVDb2xsZWN0aW9ucy9wczYyMTA/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "e76ca1e2-8777-446f-ba4e-706a00a52c67" + "965cbd9b-d63c-441f-b918-549bd8274bab" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -1128,7 +1128,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1137,22 +1137,22 @@ "Kestrel" ], "x-ms-request-id": [ - "d03d2a45-45f3-4e29-89db-f2de19f5f9a8" + "d6702ea2-c1c6-4ba2-b487-f1afe15b2a24" ], "x-ms-correlation-request-id": [ - "d03d2a45-45f3-4e29-89db-f2de19f5f9a8" + "d6702ea2-c1c6-4ba2-b487-f1afe15b2a24" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175814Z:d03d2a45-45f3-4e29-89db-f2de19f5f9a8" + "WESTCENTRALUS:20230219T023702Z:d6702ea2-c1c6-4ba2-b487-f1afe15b2a24" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:58:13 GMT" + "Sun, 19 Feb 2023 02:37:01 GMT" ], "Content-Length": [ - "268" + "270" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1161,25 +1161,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"Resource [/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/securityAdminConfigurations/ps8129/ruleCollections/ps94] does not exist or has been deleted\",\r\n \"code\": \"NotFound\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"Resource [/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/securityAdminConfigurations/ps9845/ruleCollections/ps6210] does not exist or has been deleted\",\r\n \"code\": \"NotFound\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/securityAdminConfigurations/ps8129/ruleCollections/ps94?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNDk2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzOTY3My9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM4MTI5L3J1bGVDb2xsZWN0aW9ucy9wczk0P2FwaS12ZXJzaW9uPTIwMjItMDEtMDE=", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/securityAdminConfigurations/ps9845/ruleCollections/ps6210?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNzcyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzMxNy9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM5ODQ1L3J1bGVDb2xsZWN0aW9ucy9wczYyMTA/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "e76ca1e2-8777-446f-ba4e-706a00a52c67" + "965cbd9b-d63c-441f-b918-549bd8274bab" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -1191,7 +1191,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1200,22 +1200,22 @@ "Kestrel" ], "x-ms-request-id": [ - "e6bbbad9-afce-4b95-9513-08b0eda9b207" + "0a7e221f-6409-4a33-96fc-389e58a3acd2" ], "x-ms-correlation-request-id": [ - "e6bbbad9-afce-4b95-9513-08b0eda9b207" + "0a7e221f-6409-4a33-96fc-389e58a3acd2" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175816Z:e6bbbad9-afce-4b95-9513-08b0eda9b207" + "WESTCENTRALUS:20230219T023703Z:0a7e221f-6409-4a33-96fc-389e58a3acd2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:58:15 GMT" + "Sun, 19 Feb 2023 02:37:02 GMT" ], "Content-Length": [ - "940" + "927" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1224,25 +1224,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps94\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/securityAdminConfigurations/ps8129/ruleCollections/ps94\",\r\n \"type\": \"Microsoft.Network/networkManagers/securityAdminConfigurations/ruleCollections\",\r\n \"etag\": \"\\\"0000e61b-0000-3300-0000-632ca2370000\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/networkGroups/ps2288\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"22d0fa8d-12b1-434d-b85c-a7a13b92bae7\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-22T17:58:15.2377624Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-22T17:58:15.2377624Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps6210\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/securityAdminConfigurations/ps9845/ruleCollections/ps6210\",\r\n \"type\": \"Microsoft.Network/networkManagers/securityAdminConfigurations/ruleCollections\",\r\n \"etag\": \"\\\"5600ddbc-0000-3300-0000-63f18b4e0000\\\"\",\r\n \"properties\": {\r\n \"description\": \"\",\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/networkGroups/ps5659\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"998f5aec-6eda-4509-94ff-eba39068a9c7\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:37:02.5059965Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:37:02.5059965Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/securityAdminConfigurations/ps8129/ruleCollections/ps94?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNDk2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzOTY3My9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM4MTI5L3J1bGVDb2xsZWN0aW9ucy9wczk0P2FwaS12ZXJzaW9uPTIwMjItMDEtMDE=", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/securityAdminConfigurations/ps9845/ruleCollections/ps6210?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNzcyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzMxNy9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM5ODQ1L3J1bGVDb2xsZWN0aW9ucy9wczYyMTA/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "e76ca1e2-8777-446f-ba4e-706a00a52c67" + "965cbd9b-d63c-441f-b918-549bd8274bab" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1251,7 +1251,7 @@ "254" ] }, - "RequestBody": "{\r\n \"properties\": {\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/networkGroups/ps2288\"\r\n }\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/networkGroups/ps5659\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1269,22 +1269,22 @@ "Kestrel" ], "x-ms-request-id": [ - "02dd8c06-67c7-40fd-8f1a-2821fa908afc" + "93484068-0ee6-456a-85fa-05b8a6dcfb43" ], "x-ms-correlation-request-id": [ - "02dd8c06-67c7-40fd-8f1a-2821fa908afc" + "93484068-0ee6-456a-85fa-05b8a6dcfb43" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175815Z:02dd8c06-67c7-40fd-8f1a-2821fa908afc" + "WESTCENTRALUS:20230219T023702Z:93484068-0ee6-456a-85fa-05b8a6dcfb43" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:58:15 GMT" + "Sun, 19 Feb 2023 02:37:02 GMT" ], "Content-Length": [ - "900" + "887" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1293,25 +1293,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps94\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/securityAdminConfigurations/ps8129/ruleCollections/ps94\",\r\n \"type\": \"Microsoft.Network/networkManagers/securityAdminConfigurations/ruleCollections\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/networkGroups/ps2288\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"22d0fa8d-12b1-434d-b85c-a7a13b92bae7\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-22T17:58:15.2377624Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-22T17:58:15.2377624Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps6210\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/securityAdminConfigurations/ps9845/ruleCollections/ps6210\",\r\n \"type\": \"Microsoft.Network/networkManagers/securityAdminConfigurations/ruleCollections\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"description\": \"\",\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/networkGroups/ps5659\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"998f5aec-6eda-4509-94ff-eba39068a9c7\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:37:02.5059965Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:37:02.5059965Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/securityAdminConfigurations/ps8129/ruleCollections/ps94/rules/ps4999?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNDk2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzOTY3My9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM4MTI5L3J1bGVDb2xsZWN0aW9ucy9wczk0L3J1bGVzL3BzNDk5OT9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/securityAdminConfigurations/ps9845/ruleCollections/ps6210/rules/ps1996?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNzcyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzMxNy9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM5ODQ1L3J1bGVDb2xsZWN0aW9ucy9wczYyMTAvcnVsZXMvcHMxOTk2P2FwaS12ZXJzaW9uPTIwMjItMDctMDE=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "b79548c5-4c6c-4b1a-8032-301961e9a1aa" + "2ef372c5-8bb0-4c3b-a3a3-3fe283cca8cb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -1323,7 +1323,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1332,22 +1332,22 @@ "Kestrel" ], "x-ms-request-id": [ - "15fbec1a-7ceb-4489-a854-b0c2f257f81f" + "a39c3494-6121-45e1-addc-9491ab70294c" ], "x-ms-correlation-request-id": [ - "15fbec1a-7ceb-4489-a854-b0c2f257f81f" + "a39c3494-6121-45e1-addc-9491ab70294c" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175817Z:15fbec1a-7ceb-4489-a854-b0c2f257f81f" + "WESTCENTRALUS:20230219T023707Z:a39c3494-6121-45e1-addc-9491ab70294c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:58:17 GMT" + "Sun, 19 Feb 2023 02:37:06 GMT" ], "Content-Length": [ - "281" + "283" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1356,25 +1356,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"Resource [/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/securityAdminConfigurations/ps8129/ruleCollections/ps94/rules/ps4999] does not exist or has been deleted\",\r\n \"code\": \"NotFound\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"Resource [/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/securityAdminConfigurations/ps9845/ruleCollections/ps6210/rules/ps1996] does not exist or has been deleted\",\r\n \"code\": \"NotFound\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/securityAdminConfigurations/ps8129/ruleCollections/ps94/rules/ps4999?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNDk2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzOTY3My9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM4MTI5L3J1bGVDb2xsZWN0aW9ucy9wczk0L3J1bGVzL3BzNDk5OT9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/securityAdminConfigurations/ps9845/ruleCollections/ps6210/rules/ps1996?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNzcyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzMxNy9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM5ODQ1L3J1bGVDb2xsZWN0aW9ucy9wczYyMTAvcnVsZXMvcHMxOTk2P2FwaS12ZXJzaW9uPTIwMjItMDctMDE=", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "b79548c5-4c6c-4b1a-8032-301961e9a1aa" + "2ef372c5-8bb0-4c3b-a3a3-3fe283cca8cb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1401,22 +1401,22 @@ "Kestrel" ], "x-ms-request-id": [ - "6e2b0aaf-fbd4-4645-a2e4-01b57e0109eb" + "f75c2ccc-7534-4fd1-b386-f83fe2aa9c94" ], "x-ms-correlation-request-id": [ - "6e2b0aaf-fbd4-4645-a2e4-01b57e0109eb" + "f75c2ccc-7534-4fd1-b386-f83fe2aa9c94" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175818Z:6e2b0aaf-fbd4-4645-a2e4-01b57e0109eb" + "WESTCENTRALUS:20230219T023708Z:f75c2ccc-7534-4fd1-b386-f83fe2aa9c94" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:58:18 GMT" + "Sun, 19 Feb 2023 02:37:07 GMT" ], "Content-Length": [ - "911" + "896" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1425,25 +1425,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps4999\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/securityAdminConfigurations/ps8129/ruleCollections/ps94/rules/ps4999\",\r\n \"type\": \"Microsoft.Network/networkManagers/securityAdminConfigurations/ruleCollections/rules\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"flag\": \"\",\r\n \"priority\": 100,\r\n \"protocol\": \"Tcp\",\r\n \"direction\": \"Inbound\",\r\n \"access\": \"Allow\",\r\n \"sources\": [],\r\n \"destinations\": [],\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"67ccc22c-bc83-494a-ad35-a341e0d82ad0\"\r\n },\r\n \"kind\": \"Custom\",\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-22T17:58:17.7222121Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-22T17:58:17.7222121Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps1996\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/securityAdminConfigurations/ps9845/ruleCollections/ps6210/rules/ps1996\",\r\n \"type\": \"Microsoft.Network/networkManagers/securityAdminConfigurations/ruleCollections/rules\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"description\": \"\",\r\n \"flag\": \"\",\r\n \"priority\": 100,\r\n \"protocol\": \"Tcp\",\r\n \"direction\": \"Inbound\",\r\n \"access\": \"Allow\",\r\n \"sources\": [],\r\n \"destinations\": [],\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3467a440-85fe-4ec4-8830-1e63b0d30695\"\r\n },\r\n \"kind\": \"Custom\",\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:37:07.8954698Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:37:07.8954698Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/scopeConnections/ps8234?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNDk2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzOTY3My9zY29wZUNvbm5lY3Rpb25zL3BzODIzND9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/scopeConnections/ps5810?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNzcyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzMxNy9zY29wZUNvbm5lY3Rpb25zL3BzNTgxMD9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "38c14688-41b0-4c2f-903b-4537ae6ea5f4" + "9291eb03-7574-4f29-bf87-0dd30347a936" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -1464,19 +1464,19 @@ "Kestrel" ], "x-ms-request-id": [ - "fc8e238a-8d13-4ab8-84f4-2090d340a953" + "46858f6a-03d6-4d71-8daf-fa7656aba74d" ], "x-ms-correlation-request-id": [ - "fc8e238a-8d13-4ab8-84f4-2090d340a953" + "46858f6a-03d6-4d71-8daf-fa7656aba74d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175820Z:fc8e238a-8d13-4ab8-84f4-2090d340a953" + "WESTCENTRALUS:20230219T023708Z:46858f6a-03d6-4d71-8daf-fa7656aba74d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:58:19 GMT" + "Sun, 19 Feb 2023 02:37:08 GMT" ], "Content-Length": [ "236" @@ -1488,25 +1488,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"Resource [/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/scopeConnections/ps8234] does not exist or has been deleted\",\r\n \"code\": \"NotFound\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"Resource [/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/scopeConnections/ps5810] does not exist or has been deleted\",\r\n \"code\": \"NotFound\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/scopeConnections/ps8234?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNDk2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzOTY3My9zY29wZUNvbm5lY3Rpb25zL3BzODIzND9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/scopeConnections/ps5810?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNzcyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzMxNy9zY29wZUNvbm5lY3Rpb25zL3BzNTgxMD9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "38c14688-41b0-4c2f-903b-4537ae6ea5f4" + "9291eb03-7574-4f29-bf87-0dd30347a936" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -1527,19 +1527,19 @@ "Kestrel" ], "x-ms-request-id": [ - "2736aa3a-e3fa-4750-b1cf-bc414b0f0bfe" + "2c18059c-a14b-427f-a81a-7fe73406db09" ], "x-ms-correlation-request-id": [ - "2736aa3a-e3fa-4750-b1cf-bc414b0f0bfe" + "2c18059c-a14b-427f-a81a-7fe73406db09" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175821Z:2736aa3a-e3fa-4750-b1cf-bc414b0f0bfe" + "WESTCENTRALUS:20230219T023709Z:2c18059c-a14b-427f-a81a-7fe73406db09" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:58:21 GMT" + "Sun, 19 Feb 2023 02:37:09 GMT" ], "Content-Length": [ "688" @@ -1551,25 +1551,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/scopeConnections/ps8234\",\r\n \"name\": \"ps8234\",\r\n \"type\": \"Microsoft.Network/networkManagers/scopeConnections\",\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"resourceId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884\",\r\n \"connectionState\": \"Pending\",\r\n \"description\": \"\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-22T17:58:20.6973865Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-22T17:58:20.6973865Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/scopeConnections/ps5810\",\r\n \"name\": \"ps5810\",\r\n \"type\": \"Microsoft.Network/networkManagers/scopeConnections\",\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"resourceId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52\",\r\n \"connectionState\": \"Pending\",\r\n \"description\": \"\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:37:09.0765853Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:37:09.0765853Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/scopeConnections/ps8234?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNDk2OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzOTY3My9zY29wZUNvbm5lY3Rpb25zL3BzODIzND9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/scopeConnections/ps5810?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNzcyNC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzMxNy9zY29wZUNvbm5lY3Rpb25zL3BzNTgxMD9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "38c14688-41b0-4c2f-903b-4537ae6ea5f4" + "9291eb03-7574-4f29-bf87-0dd30347a936" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1578,7 +1578,7 @@ "158" ] }, - "RequestBody": "{\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"resourceId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"resourceId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1587,7 +1587,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1596,19 +1596,19 @@ "Kestrel" ], "x-ms-request-id": [ - "8e993613-e06b-492d-a2d4-924329e6fc18" + "1ca9b925-dfe0-4526-99e1-ffde41f8f57b" ], "x-ms-correlation-request-id": [ - "8e993613-e06b-492d-a2d4-924329e6fc18" + "1ca9b925-dfe0-4526-99e1-ffde41f8f57b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175821Z:8e993613-e06b-492d-a2d4-924329e6fc18" + "WESTCENTRALUS:20230219T023709Z:1ca9b925-dfe0-4526-99e1-ffde41f8f57b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:58:21 GMT" + "Sun, 19 Feb 2023 02:37:08 GMT" ], "Content-Length": [ "688" @@ -1620,25 +1620,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4969/providers/Microsoft.Network/networkManagers/ps9673/scopeConnections/ps8234\",\r\n \"name\": \"ps8234\",\r\n \"type\": \"Microsoft.Network/networkManagers/scopeConnections\",\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"resourceId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884\",\r\n \"connectionState\": \"Pending\",\r\n \"description\": \"\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-22T17:58:20.6973865Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-22T17:58:20.6973865Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps7724/providers/Microsoft.Network/networkManagers/ps3317/scopeConnections/ps5810\",\r\n \"name\": \"ps5810\",\r\n \"type\": \"Microsoft.Network/networkManagers/scopeConnections\",\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"resourceId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52\",\r\n \"connectionState\": \"Pending\",\r\n \"description\": \"\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:37:09.0765853Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:37:09.0765853Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourcegroups/ps4969?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlZ3JvdXBzL3BzNDk2OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourcegroups/ps7724?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlZ3JvdXBzL3BzNzcyND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "c1ff6414-9934-477b-b8de-e30ef68a2908" + "98943b1a-f7b4-4a43-bf72-22e0e84ead51" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.61" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, "RequestBody": "", @@ -1650,7 +1650,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5NjktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MjQtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1659,13 +1659,13 @@ "14999" ], "x-ms-request-id": [ - "caec23c8-7389-474d-ae96-ab9a73e8888c" + "b545dbde-6e79-4f3e-ad92-1fde7e2890aa" ], "x-ms-correlation-request-id": [ - "caec23c8-7389-474d-ae96-ab9a73e8888c" + "b545dbde-6e79-4f3e-ad92-1fde7e2890aa" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175823Z:caec23c8-7389-474d-ae96-ab9a73e8888c" + "WESTCENTRALUS:20230219T023710Z:b545dbde-6e79-4f3e-ad92-1fde7e2890aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1674,7 +1674,7 @@ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:58:22 GMT" + "Sun, 19 Feb 2023 02:37:10 GMT" ], "Expires": [ "-1" @@ -1687,15 +1687,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5NjktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU5qa3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MjQtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM01qUXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.61" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, "RequestBody": "", @@ -1707,22 +1707,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5NjktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MjQtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-request-id": [ - "6b2b0a6c-7b07-465b-a9af-1b014464a129" + "96bc88ac-3a7c-4921-bcbb-fe0a3d4362c0" ], "x-ms-correlation-request-id": [ - "6b2b0a6c-7b07-465b-a9af-1b014464a129" + "96bc88ac-3a7c-4921-bcbb-fe0a3d4362c0" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175838Z:6b2b0a6c-7b07-465b-a9af-1b014464a129" + "WESTCENTRALUS:20230219T023725Z:96bc88ac-3a7c-4921-bcbb-fe0a3d4362c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1731,7 +1731,7 @@ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:58:38 GMT" + "Sun, 19 Feb 2023 02:37:25 GMT" ], "Expires": [ "-1" @@ -1744,15 +1744,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5NjktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU5qa3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MjQtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM01qUXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.61" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, "RequestBody": "", @@ -1764,22 +1764,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5NjktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MjQtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-request-id": [ - "2ea01e98-c864-48fd-b519-4ce309c6ed3b" + "bad4a861-74c9-4105-b47d-d954d4870daa" ], "x-ms-correlation-request-id": [ - "2ea01e98-c864-48fd-b519-4ce309c6ed3b" + "bad4a861-74c9-4105-b47d-d954d4870daa" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175853Z:2ea01e98-c864-48fd-b519-4ce309c6ed3b" + "WESTCENTRALUS:20230219T023740Z:bad4a861-74c9-4105-b47d-d954d4870daa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1788,7 +1788,7 @@ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:58:52 GMT" + "Sun, 19 Feb 2023 02:37:40 GMT" ], "Expires": [ "-1" @@ -1801,15 +1801,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5NjktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU5qa3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MjQtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM01qUXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.61" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, "RequestBody": "", @@ -1821,22 +1821,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5NjktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MjQtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11997" ], "x-ms-request-id": [ - "5acf8d69-2b9e-4cd2-8287-958e2ae5ca58" + "de213006-9367-4786-b51b-dd5200c61b5e" ], "x-ms-correlation-request-id": [ - "5acf8d69-2b9e-4cd2-8287-958e2ae5ca58" + "de213006-9367-4786-b51b-dd5200c61b5e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175908Z:5acf8d69-2b9e-4cd2-8287-958e2ae5ca58" + "WESTCENTRALUS:20230219T023756Z:de213006-9367-4786-b51b-dd5200c61b5e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1845,7 +1845,7 @@ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:59:07 GMT" + "Sun, 19 Feb 2023 02:37:55 GMT" ], "Expires": [ "-1" @@ -1858,15 +1858,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5NjktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU5qa3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MjQtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM01qUXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.61" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, "RequestBody": "", @@ -1878,22 +1878,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5NjktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MjQtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11996" ], "x-ms-request-id": [ - "b4df5e89-fee2-4a8d-af59-6e4eb66f5b5b" + "4521bb6d-bb28-4665-8fdc-6b942fd4b354" ], "x-ms-correlation-request-id": [ - "b4df5e89-fee2-4a8d-af59-6e4eb66f5b5b" + "4521bb6d-bb28-4665-8fdc-6b942fd4b354" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175923Z:b4df5e89-fee2-4a8d-af59-6e4eb66f5b5b" + "WESTCENTRALUS:20230219T023811Z:4521bb6d-bb28-4665-8fdc-6b942fd4b354" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1902,7 +1902,7 @@ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:59:23 GMT" + "Sun, 19 Feb 2023 02:38:10 GMT" ], "Expires": [ "-1" @@ -1915,15 +1915,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5NjktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU5qa3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MjQtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM01qUXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.61" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, "RequestBody": "", @@ -1935,16 +1935,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11995" ], "x-ms-request-id": [ - "abdc03cd-ac49-4c2b-8aef-b3da6557ef94" + "935451a9-b430-4c54-a40e-f9c28687f1ee" ], "x-ms-correlation-request-id": [ - "abdc03cd-ac49-4c2b-8aef-b3da6557ef94" + "935451a9-b430-4c54-a40e-f9c28687f1ee" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175939Z:abdc03cd-ac49-4c2b-8aef-b3da6557ef94" + "WESTCENTRALUS:20230219T023835Z:935451a9-b430-4c54-a40e-f9c28687f1ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1953,7 +1953,7 @@ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:59:38 GMT" + "Sun, 19 Feb 2023 02:38:34 GMT" ], "Expires": [ "-1" @@ -1966,15 +1966,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ5NjktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNU5qa3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MjQtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM01qUXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.61" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, "RequestBody": "", @@ -1986,16 +1986,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11994" ], "x-ms-request-id": [ - "da85e465-4790-4652-bc9b-32c0736ade61" + "a0bda8cf-2e2a-479c-9cd9-d407038ff063" ], "x-ms-correlation-request-id": [ - "da85e465-4790-4652-bc9b-32c0736ade61" + "a0bda8cf-2e2a-479c-9cd9-d407038ff063" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175939Z:da85e465-4790-4652-bc9b-32c0736ade61" + "WESTCENTRALUS:20230219T023835Z:a0bda8cf-2e2a-479c-9cd9-d407038ff063" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2004,7 +2004,7 @@ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:59:38 GMT" + "Sun, 19 Feb 2023 02:38:34 GMT" ], "Expires": [ "-1" @@ -2019,18 +2019,18 @@ ], "Names": { "Test-NetworkManagerResourceMinimumParameterCreate": [ - "ps4969", - "ps9673", - "ps2288", - "ps135", - "ps5357", - "ps8129", - "ps94", - "ps4999", - "ps8234" + "ps7724", + "ps3317", + "ps5659", + "ps9763", + "ps327", + "ps9845", + "ps6210", + "ps1996", + "ps5810" ] }, "Variables": { - "SubscriptionId": "0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884" + "SubscriptionId": "08615b4b-bc9c-4a70-be1b-2ea10bc97b52" } } \ No newline at end of file diff --git a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkManagerTests/NetworkManagerScopeConnectionCRUD.json b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkManagerTests/NetworkManagerScopeConnectionCRUD.json index 16ff8ad063e6..03d7c3abc42e 100644 --- a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkManagerTests/NetworkManagerScopeConnectionCRUD.json +++ b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkManagerTests/NetworkManagerScopeConnectionCRUD.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourcegroups/ps4631?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlZ3JvdXBzL3BzNDYzMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourcegroups/ps676?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlZ3JvdXBzL3BzNjc2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "6d7ea8df-7dbe-4c6e-8566-b5316702126a" + "8ab0c253-15f6-45b3-be74-c1e74914a077" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.61" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "8443a381-b8ed-4261-b389-a42ceb92e886" + "aec24da5-968c-4be5-a66f-0782386b0c02" ], "x-ms-correlation-request-id": [ - "8443a381-b8ed-4261-b389-a42ceb92e886" + "aec24da5-968c-4be5-a66f-0782386b0c02" ], "x-ms-routing-request-id": [ - "WESTUS:20220922T175333Z:8443a381-b8ed-4261-b389-a42ceb92e886" + "WESTUS:20230219T023333Z:aec24da5-968c-4be5-a66f-0782386b0c02" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:53:33 GMT" + "Sun, 19 Feb 2023 02:33:33 GMT" ], "Content-Length": [ - "201" + "240" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,25 +63,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4631\",\r\n \"name\": \"ps4631\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps676\",\r\n \"name\": \"ps676\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"testtag\": \"testval\",\r\n \"Created\": \"2023-02-19T02:33:32.6800282Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4631/providers/Microsoft.Network/networkManagers/ps320?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNDYzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzIwP2FwaS12ZXJzaW9uPTIwMjItMDEtMDE=", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps676/providers/Microsoft.Network/networkManagers/ps7113?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNjc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrTWFuYWdlcnMvcHM3MTEzP2FwaS12ZXJzaW9uPTIwMjItMDctMDE=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "491409ba-526d-46cd-a2ae-0b0f5f33ab9d" + "f43db755-f67d-49d2-89a4-7db66eba1a77" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "fad078d9-1da6-4464-a436-353f60ce0c37" + "cc7ad2b6-ff04-47f2-a886-c9c8b6c4c461" ], "x-ms-correlation-request-id": [ - "fad078d9-1da6-4464-a436-353f60ce0c37" + "cc7ad2b6-ff04-47f2-a886-c9c8b6c4c461" ], "x-ms-routing-request-id": [ - "WESTUS:20220922T175334Z:fad078d9-1da6-4464-a436-353f60ce0c37" + "WESTUS:20230219T023334Z:cc7ad2b6-ff04-47f2-a886-c9c8b6c4c461" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:53:33 GMT" + "Sun, 19 Feb 2023 02:33:33 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,25 +123,25 @@ "217" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkManagers/ps320' under resource group 'ps4631' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkManagers/ps7113' under resource group 'ps676' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4631/providers/Microsoft.Network/networkManagers/ps320?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNDYzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzIwP2FwaS12ZXJzaW9uPTIwMjItMDEtMDE=", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps676/providers/Microsoft.Network/networkManagers/ps7113?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNjc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrTWFuYWdlcnMvcHM3MTEzP2FwaS12ZXJzaW9uPTIwMjItMDctMDE=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "491409ba-526d-46cd-a2ae-0b0f5f33ab9d" + "f43db755-f67d-49d2-89a4-7db66eba1a77" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -162,22 +162,22 @@ "Kestrel" ], "x-ms-request-id": [ - "49600738-8edd-47ec-b8d8-52edd967cde8" + "c0a99afe-ac48-471b-914b-a72b490a1a21" ], "x-ms-correlation-request-id": [ - "49600738-8edd-47ec-b8d8-52edd967cde8" + "c0a99afe-ac48-471b-914b-a72b490a1a21" ], "x-ms-routing-request-id": [ - "WESTUS:20220922T175341Z:49600738-8edd-47ec-b8d8-52edd967cde8" + "WESTUS:20230219T023338Z:c0a99afe-ac48-471b-914b-a72b490a1a21" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:53:40 GMT" + "Sun, 19 Feb 2023 02:33:38 GMT" ], "Content-Length": [ - "879" + "863" ], "Content-Type": [ "application/json; charset=utf-8" @@ -186,25 +186,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps320\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4631/providers/Microsoft.Network/networkManagers/ps320\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"00007b1b-0000-3300-0000-632ca1240000\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\"\r\n ],\r\n \"resourceGuid\": \"f4e443a1-6ea0-4be7-a3b6-49efa41a7a67\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-22T17:53:37.0726632Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-22T17:53:37.0726632Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps7113\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps676/providers/Microsoft.Network/networkManagers/ps7113\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"5600a0b9-0000-3300-0000-63f18a810000\\\"\",\r\n \"properties\": {\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\"\r\n ],\r\n \"resourceGuid\": \"ff1850b0-af98-4500-9854-6eec07131d28\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:33:36.7245844Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:33:36.7245844Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4631/providers/Microsoft.Network/networkManagers/ps320?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNDYzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzIwP2FwaS12ZXJzaW9uPTIwMjItMDEtMDE=", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps676/providers/Microsoft.Network/networkManagers/ps7113?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNjc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrTWFuYWdlcnMvcHM3MTEzP2FwaS12ZXJzaW9uPTIwMjItMDctMDE=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "d9c80266-3b3e-4508-817a-e9145a1804af" + "58937b80-db91-4dcf-947c-d43154bcc594" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -225,22 +225,22 @@ "Kestrel" ], "x-ms-request-id": [ - "eca927e0-5bf3-409f-9b4e-351ee2473021" + "d5bb7153-d7b4-4075-81b1-00e4b47770ab" ], "x-ms-correlation-request-id": [ - "eca927e0-5bf3-409f-9b4e-351ee2473021" + "d5bb7153-d7b4-4075-81b1-00e4b47770ab" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175342Z:eca927e0-5bf3-409f-9b4e-351ee2473021" + "WESTUS:20230219T023340Z:d5bb7153-d7b4-4075-81b1-00e4b47770ab" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:53:42 GMT" + "Sun, 19 Feb 2023 02:33:40 GMT" ], "Content-Length": [ - "879" + "863" ], "Content-Type": [ "application/json; charset=utf-8" @@ -249,25 +249,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps320\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4631/providers/Microsoft.Network/networkManagers/ps320\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"00007b1b-0000-3300-0000-632ca1240000\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\"\r\n ],\r\n \"resourceGuid\": \"f4e443a1-6ea0-4be7-a3b6-49efa41a7a67\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-22T17:53:37.0726632Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-22T17:53:37.0726632Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps7113\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps676/providers/Microsoft.Network/networkManagers/ps7113\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"5600a0b9-0000-3300-0000-63f18a810000\\\"\",\r\n \"properties\": {\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\"\r\n ],\r\n \"resourceGuid\": \"ff1850b0-af98-4500-9854-6eec07131d28\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:33:36.7245844Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:33:36.7245844Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4631/providers/Microsoft.Network/networkManagers/ps320?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNDYzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzIwP2FwaS12ZXJzaW9uPTIwMjItMDEtMDE=", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps676/providers/Microsoft.Network/networkManagers/ps7113?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNjc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrTWFuYWdlcnMvcHM3MTEzP2FwaS12ZXJzaW9uPTIwMjItMDctMDE=", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "491409ba-526d-46cd-a2ae-0b0f5f33ab9d" + "f43db755-f67d-49d2-89a4-7db66eba1a77" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -276,7 +276,7 @@ "295" ] }, - "RequestBody": "{\r\n \"properties\": {\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884\"\r\n ]\r\n },\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\"\r\n ]\r\n },\r\n \"location\": \"centraluseuap\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52\"\r\n ]\r\n },\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\"\r\n ]\r\n },\r\n \"location\": \"centraluseuap\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -294,22 +294,22 @@ "Kestrel" ], "x-ms-request-id": [ - "f4817bac-4df3-49c5-a32c-c8d18734ad9b" + "8e25f290-0b8d-4c8a-91ad-0d5fb7d223d9" ], "x-ms-correlation-request-id": [ - "f4817bac-4df3-49c5-a32c-c8d18734ad9b" + "8e25f290-0b8d-4c8a-91ad-0d5fb7d223d9" ], "x-ms-routing-request-id": [ - "WESTUS:20220922T175340Z:f4817bac-4df3-49c5-a32c-c8d18734ad9b" + "WESTUS:20230219T023338Z:8e25f290-0b8d-4c8a-91ad-0d5fb7d223d9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:53:40 GMT" + "Sun, 19 Feb 2023 02:33:38 GMT" ], "Content-Length": [ - "839" + "823" ], "Content-Type": [ "application/json; charset=utf-8" @@ -318,25 +318,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps320\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4631/providers/Microsoft.Network/networkManagers/ps320\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\"\r\n ],\r\n \"resourceGuid\": \"f4e443a1-6ea0-4be7-a3b6-49efa41a7a67\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-22T17:53:37.0726632Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-22T17:53:37.0726632Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps7113\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps676/providers/Microsoft.Network/networkManagers/ps7113\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\"\r\n ],\r\n \"resourceGuid\": \"ff1850b0-af98-4500-9854-6eec07131d28\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:33:36.7245844Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:33:36.7245844Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4631/providers/Microsoft.Network/networkManagers/ps320/scopeConnections/ps6364?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNDYzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzIwL3Njb3BlQ29ubmVjdGlvbnMvcHM2MzY0P2FwaS12ZXJzaW9uPTIwMjItMDEtMDE=", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps676/providers/Microsoft.Network/networkManagers/ps7113/scopeConnections/ps4437?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNjc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrTWFuYWdlcnMvcHM3MTEzL3Njb3BlQ29ubmVjdGlvbnMvcHM0NDM3P2FwaS12ZXJzaW9uPTIwMjItMDctMDE=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "c4a3b407-2747-47c5-bc30-d82a4078b029" + "ed0c3f1b-3bac-4ac3-be75-5824830447e7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -348,7 +348,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11999" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -357,19 +357,19 @@ "Kestrel" ], "x-ms-request-id": [ - "d374661a-185c-454b-8bee-f881c91147e1" + "60d9b462-a762-4d42-95be-5d2d3bf2f9a3" ], "x-ms-correlation-request-id": [ - "d374661a-185c-454b-8bee-f881c91147e1" + "60d9b462-a762-4d42-95be-5d2d3bf2f9a3" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175343Z:d374661a-185c-454b-8bee-f881c91147e1" + "WESTUS:20230219T023341Z:60d9b462-a762-4d42-95be-5d2d3bf2f9a3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:53:42 GMT" + "Sun, 19 Feb 2023 02:33:41 GMT" ], "Content-Length": [ "235" @@ -381,25 +381,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"Resource [/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4631/providers/Microsoft.Network/networkManagers/ps320/scopeConnections/ps6364] does not exist or has been deleted\",\r\n \"code\": \"NotFound\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"Resource [/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps676/providers/Microsoft.Network/networkManagers/ps7113/scopeConnections/ps4437] does not exist or has been deleted\",\r\n \"code\": \"NotFound\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4631/providers/Microsoft.Network/networkManagers/ps320/scopeConnections/ps6364?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNDYzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzIwL3Njb3BlQ29ubmVjdGlvbnMvcHM2MzY0P2FwaS12ZXJzaW9uPTIwMjItMDEtMDE=", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps676/providers/Microsoft.Network/networkManagers/ps7113/scopeConnections/ps4437?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNjc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrTWFuYWdlcnMvcHM3MTEzL3Njb3BlQ29ubmVjdGlvbnMvcHM0NDM3P2FwaS12ZXJzaW9uPTIwMjItMDctMDE=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "c4a3b407-2747-47c5-bc30-d82a4078b029" + "ed0c3f1b-3bac-4ac3-be75-5824830447e7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -411,7 +411,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11998" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -420,19 +420,19 @@ "Kestrel" ], "x-ms-request-id": [ - "ae723a2a-52e2-4491-88bb-1f11d396cc18" + "943961b6-b858-4458-afc9-c3b8cbca6f15" ], "x-ms-correlation-request-id": [ - "ae723a2a-52e2-4491-88bb-1f11d396cc18" + "943961b6-b858-4458-afc9-c3b8cbca6f15" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175344Z:ae723a2a-52e2-4491-88bb-1f11d396cc18" + "WESTUS:20230219T023342Z:943961b6-b858-4458-afc9-c3b8cbca6f15" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:53:44 GMT" + "Sun, 19 Feb 2023 02:33:42 GMT" ], "Content-Length": [ "704" @@ -444,25 +444,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4631/providers/Microsoft.Network/networkManagers/ps320/scopeConnections/ps6364\",\r\n \"name\": \"ps6364\",\r\n \"type\": \"Microsoft.Network/networkManagers/scopeConnections\",\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"resourceId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884\",\r\n \"connectionState\": \"Pending\",\r\n \"description\": \"SampleDescription\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-22T17:53:43.6468786Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-22T17:53:43.6468786Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps676/providers/Microsoft.Network/networkManagers/ps7113/scopeConnections/ps4437\",\r\n \"name\": \"ps4437\",\r\n \"type\": \"Microsoft.Network/networkManagers/scopeConnections\",\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"resourceId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52\",\r\n \"connectionState\": \"Pending\",\r\n \"description\": \"SampleDescription\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:33:41.72584Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:33:41.72584Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4631/providers/Microsoft.Network/networkManagers/ps320/scopeConnections/ps6364?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNDYzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzIwL3Njb3BlQ29ubmVjdGlvbnMvcHM2MzY0P2FwaS12ZXJzaW9uPTIwMjItMDEtMDE=", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps676/providers/Microsoft.Network/networkManagers/ps7113/scopeConnections/ps4437?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNjc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrTWFuYWdlcnMvcHM3MTEzL3Njb3BlQ29ubmVjdGlvbnMvcHM0NDM3P2FwaS12ZXJzaW9uPTIwMjItMDctMDE=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "33290940-9ade-4d19-93a4-acfb8116e2f5" + "1fb51dd0-661d-44c5-8b53-b7e59c7bb62e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -483,22 +483,22 @@ "Kestrel" ], "x-ms-request-id": [ - "7eb6b460-7ff4-44b3-9033-2627f20870c7" + "93756d3a-4631-41aa-a465-3a1e283894af" ], "x-ms-correlation-request-id": [ - "7eb6b460-7ff4-44b3-9033-2627f20870c7" + "93756d3a-4631-41aa-a465-3a1e283894af" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175345Z:7eb6b460-7ff4-44b3-9033-2627f20870c7" + "WESTUS:20230219T023344Z:93756d3a-4631-41aa-a465-3a1e283894af" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:53:45 GMT" + "Sun, 19 Feb 2023 02:33:43 GMT" ], "Content-Length": [ - "704" + "706" ], "Content-Type": [ "application/json; charset=utf-8" @@ -507,25 +507,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4631/providers/Microsoft.Network/networkManagers/ps320/scopeConnections/ps6364\",\r\n \"name\": \"ps6364\",\r\n \"type\": \"Microsoft.Network/networkManagers/scopeConnections\",\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"resourceId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884\",\r\n \"connectionState\": \"Pending\",\r\n \"description\": \"SampleDescription\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-22T17:53:43.6468786Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-22T17:53:43.6468786Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps676/providers/Microsoft.Network/networkManagers/ps7113/scopeConnections/ps4437\",\r\n \"name\": \"ps4437\",\r\n \"type\": \"Microsoft.Network/networkManagers/scopeConnections\",\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"resourceId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52\",\r\n \"connectionState\": \"Connected\",\r\n \"description\": \"SampleDescription\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:33:41.72584Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:33:41.72584Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4631/providers/Microsoft.Network/networkManagers/ps320/scopeConnections/ps6364?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNDYzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzIwL3Njb3BlQ29ubmVjdGlvbnMvcHM2MzY0P2FwaS12ZXJzaW9uPTIwMjItMDEtMDE=", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps676/providers/Microsoft.Network/networkManagers/ps7113/scopeConnections/ps4437?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNjc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrTWFuYWdlcnMvcHM3MTEzL3Njb3BlQ29ubmVjdGlvbnMvcHM0NDM3P2FwaS12ZXJzaW9uPTIwMjItMDctMDE=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "03b75e8c-7420-4b68-811b-04428610d525" + "d84d6269-be4e-411e-b612-9e9b3747b1cf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -537,7 +537,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -546,22 +546,22 @@ "Kestrel" ], "x-ms-request-id": [ - "7169e6cb-b33b-4f98-960d-5589f0155eb5" + "a95f914f-809b-41ee-a517-a23468600d7a" ], "x-ms-correlation-request-id": [ - "7169e6cb-b33b-4f98-960d-5589f0155eb5" + "a95f914f-809b-41ee-a517-a23468600d7a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175346Z:7169e6cb-b33b-4f98-960d-5589f0155eb5" + "WESTUS:20230219T023344Z:a95f914f-809b-41ee-a517-a23468600d7a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:53:45 GMT" + "Sun, 19 Feb 2023 02:33:44 GMT" ], "Content-Length": [ - "704" + "706" ], "Content-Type": [ "application/json; charset=utf-8" @@ -570,25 +570,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4631/providers/Microsoft.Network/networkManagers/ps320/scopeConnections/ps6364\",\r\n \"name\": \"ps6364\",\r\n \"type\": \"Microsoft.Network/networkManagers/scopeConnections\",\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"resourceId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884\",\r\n \"connectionState\": \"Pending\",\r\n \"description\": \"SampleDescription\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-22T17:53:43.6468786Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-22T17:53:43.6468786Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps676/providers/Microsoft.Network/networkManagers/ps7113/scopeConnections/ps4437\",\r\n \"name\": \"ps4437\",\r\n \"type\": \"Microsoft.Network/networkManagers/scopeConnections\",\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"resourceId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52\",\r\n \"connectionState\": \"Connected\",\r\n \"description\": \"SampleDescription\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:33:41.72584Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:33:41.72584Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4631/providers/Microsoft.Network/networkManagers/ps320/scopeConnections/ps6364?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNDYzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzIwL3Njb3BlQ29ubmVjdGlvbnMvcHM2MzY0P2FwaS12ZXJzaW9uPTIwMjItMDEtMDE=", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps676/providers/Microsoft.Network/networkManagers/ps7113/scopeConnections/ps4437?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNjc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrTWFuYWdlcnMvcHM3MTEzL3Njb3BlQ29ubmVjdGlvbnMvcHM0NDM3P2FwaS12ZXJzaW9uPTIwMjItMDctMDE=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "03b75e8c-7420-4b68-811b-04428610d525" + "d84d6269-be4e-411e-b612-9e9b3747b1cf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -600,7 +600,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -609,22 +609,22 @@ "Kestrel" ], "x-ms-request-id": [ - "4f6894c1-b64d-4d70-82f6-afe5fd9ac183" + "1bcadade-7bcd-4dd1-8d1b-15bcb1c7c528" ], "x-ms-correlation-request-id": [ - "4f6894c1-b64d-4d70-82f6-afe5fd9ac183" + "1bcadade-7bcd-4dd1-8d1b-15bcb1c7c528" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175347Z:4f6894c1-b64d-4d70-82f6-afe5fd9ac183" + "WESTUS:20230219T023345Z:1bcadade-7bcd-4dd1-8d1b-15bcb1c7c528" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:53:46 GMT" + "Sun, 19 Feb 2023 02:33:45 GMT" ], "Content-Length": [ - "711" + "713" ], "Content-Type": [ "application/json; charset=utf-8" @@ -633,25 +633,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4631/providers/Microsoft.Network/networkManagers/ps320/scopeConnections/ps6364\",\r\n \"name\": \"ps6364\",\r\n \"type\": \"Microsoft.Network/networkManagers/scopeConnections\",\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"resourceId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884\",\r\n \"connectionState\": \"Pending\",\r\n \"description\": \"A Different Description.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-22T17:53:46.8625253Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-22T17:53:46.8625253Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps676/providers/Microsoft.Network/networkManagers/ps7113/scopeConnections/ps4437\",\r\n \"name\": \"ps4437\",\r\n \"type\": \"Microsoft.Network/networkManagers/scopeConnections\",\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"resourceId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52\",\r\n \"connectionState\": \"Connected\",\r\n \"description\": \"A Different Description.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:33:44.9354617Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:33:44.9354617Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4631/providers/Microsoft.Network/networkManagers/ps320/scopeConnections/ps6364?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNDYzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzIwL3Njb3BlQ29ubmVjdGlvbnMvcHM2MzY0P2FwaS12ZXJzaW9uPTIwMjItMDEtMDE=", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps676/providers/Microsoft.Network/networkManagers/ps7113/scopeConnections/ps4437?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNjc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrTWFuYWdlcnMvcHM3MTEzL3Njb3BlQ29ubmVjdGlvbnMvcHM0NDM3P2FwaS12ZXJzaW9uPTIwMjItMDctMDE=", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "c4a3b407-2747-47c5-bc30-d82a4078b029" + "ed0c3f1b-3bac-4ac3-be75-5824830447e7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -660,7 +660,7 @@ "199" ] }, - "RequestBody": "{\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"resourceId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884\",\r\n \"description\": \"SampleDescription\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"resourceId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52\",\r\n \"description\": \"SampleDescription\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -669,7 +669,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -678,19 +678,19 @@ "Kestrel" ], "x-ms-request-id": [ - "496821a0-9fa9-4bf7-9ed9-46e5535cb36a" + "9881d9ec-f7c6-4fe0-aa25-bc06b38768b0" ], "x-ms-correlation-request-id": [ - "496821a0-9fa9-4bf7-9ed9-46e5535cb36a" + "9881d9ec-f7c6-4fe0-aa25-bc06b38768b0" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175344Z:496821a0-9fa9-4bf7-9ed9-46e5535cb36a" + "WESTUS:20230219T023342Z:9881d9ec-f7c6-4fe0-aa25-bc06b38768b0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:53:43 GMT" + "Sun, 19 Feb 2023 02:33:42 GMT" ], "Content-Length": [ "704" @@ -702,25 +702,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4631/providers/Microsoft.Network/networkManagers/ps320/scopeConnections/ps6364\",\r\n \"name\": \"ps6364\",\r\n \"type\": \"Microsoft.Network/networkManagers/scopeConnections\",\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"resourceId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884\",\r\n \"connectionState\": \"Pending\",\r\n \"description\": \"SampleDescription\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-22T17:53:43.6468786Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-22T17:53:43.6468786Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps676/providers/Microsoft.Network/networkManagers/ps7113/scopeConnections/ps4437\",\r\n \"name\": \"ps4437\",\r\n \"type\": \"Microsoft.Network/networkManagers/scopeConnections\",\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"resourceId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52\",\r\n \"connectionState\": \"Pending\",\r\n \"description\": \"SampleDescription\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:33:41.72584Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:33:41.72584Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4631/providers/Microsoft.Network/networkManagers/ps320/scopeConnections/ps6364?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNDYzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzIwL3Njb3BlQ29ubmVjdGlvbnMvcHM2MzY0P2FwaS12ZXJzaW9uPTIwMjItMDEtMDE=", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps676/providers/Microsoft.Network/networkManagers/ps7113/scopeConnections/ps4437?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNjc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrTWFuYWdlcnMvcHM3MTEzL3Njb3BlQ29ubmVjdGlvbnMvcHM0NDM3P2FwaS12ZXJzaW9uPTIwMjItMDctMDE=", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "03b75e8c-7420-4b68-811b-04428610d525" + "d84d6269-be4e-411e-b612-9e9b3747b1cf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -729,7 +729,7 @@ "206" ] }, - "RequestBody": "{\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"resourceId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884\",\r\n \"description\": \"A Different Description.\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"resourceId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52\",\r\n \"description\": \"A Different Description.\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -747,22 +747,22 @@ "Kestrel" ], "x-ms-request-id": [ - "8e8d3d87-98fa-467f-bcd7-76c6fc4ccc76" + "1b5040ee-b99e-4c7a-aa36-ca457d78151e" ], "x-ms-correlation-request-id": [ - "8e8d3d87-98fa-467f-bcd7-76c6fc4ccc76" + "1b5040ee-b99e-4c7a-aa36-ca457d78151e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175347Z:8e8d3d87-98fa-467f-bcd7-76c6fc4ccc76" + "WESTUS:20230219T023345Z:1b5040ee-b99e-4c7a-aa36-ca457d78151e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:53:46 GMT" + "Sun, 19 Feb 2023 02:33:44 GMT" ], "Content-Length": [ - "711" + "713" ], "Content-Type": [ "application/json; charset=utf-8" @@ -771,25 +771,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4631/providers/Microsoft.Network/networkManagers/ps320/scopeConnections/ps6364\",\r\n \"name\": \"ps6364\",\r\n \"type\": \"Microsoft.Network/networkManagers/scopeConnections\",\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"resourceId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884\",\r\n \"connectionState\": \"Pending\",\r\n \"description\": \"A Different Description.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-22T17:53:46.8625253Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-22T17:53:46.8625253Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps676/providers/Microsoft.Network/networkManagers/ps7113/scopeConnections/ps4437\",\r\n \"name\": \"ps4437\",\r\n \"type\": \"Microsoft.Network/networkManagers/scopeConnections\",\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"resourceId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52\",\r\n \"connectionState\": \"Connected\",\r\n \"description\": \"A Different Description.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:33:44.9354617Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:33:44.9354617Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4631/providers/Microsoft.Network/networkManagers/ps320/scopeConnections/ps6364?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNDYzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzIwL3Njb3BlQ29ubmVjdGlvbnMvcHM2MzY0P2FwaS12ZXJzaW9uPTIwMjItMDEtMDE=", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps676/providers/Microsoft.Network/networkManagers/ps7113/scopeConnections/ps4437?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNjc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrTWFuYWdlcnMvcHM3MTEzL3Njb3BlQ29ubmVjdGlvbnMvcHM0NDM3P2FwaS12ZXJzaW9uPTIwMjItMDctMDE=", "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "c855a206-e48b-4081-bab7-e813917772e7" + "2cb1efd9-18a8-4046-a1ad-dd513526b1c4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -807,22 +807,22 @@ "Kestrel" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-request-id": [ - "dcdf607e-4c6d-41c0-8544-8753793ce5fa" + "a2110fa1-d907-46e9-acce-b4d22b910bd4" ], "x-ms-correlation-request-id": [ - "dcdf607e-4c6d-41c0-8544-8753793ce5fa" + "a2110fa1-d907-46e9-acce-b4d22b910bd4" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175348Z:dcdf607e-4c6d-41c0-8544-8753793ce5fa" + "WESTUS:20230219T023346Z:a2110fa1-d907-46e9-acce-b4d22b910bd4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:53:48 GMT" + "Sun, 19 Feb 2023 02:33:46 GMT" ], "Expires": [ "-1" @@ -835,21 +835,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps4631/providers/Microsoft.Network/networkManagers/ps320?force=false&api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNDYzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzIwP2ZvcmNlPWZhbHNlJmFwaS12ZXJzaW9uPTIwMjItMDEtMDE=", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps676/providers/Microsoft.Network/networkManagers/ps7113?force=false&api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNjc2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrTWFuYWdlcnMvcHM3MTEzP2ZvcmNlPWZhbHNlJmFwaS12ZXJzaW9uPTIwMjItMDctMDE=", "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "1f3e3136-11c0-420e-a22f-99cb83b2d83d" + "386eb7ee-87bd-4243-9fc6-6594bd40920d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -867,22 +867,22 @@ "Kestrel" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-request-id": [ - "58f59009-7f5b-458d-851a-dfa31aefc073" + "70de5a4f-9a9a-47c2-a27b-8a2cda7040b3" ], "x-ms-correlation-request-id": [ - "58f59009-7f5b-458d-851a-dfa31aefc073" + "70de5a4f-9a9a-47c2-a27b-8a2cda7040b3" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175351Z:58f59009-7f5b-458d-851a-dfa31aefc073" + "WESTUS:20230219T023348Z:70de5a4f-9a9a-47c2-a27b-8a2cda7040b3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:53:51 GMT" + "Sun, 19 Feb 2023 02:33:48 GMT" ], "Expires": [ "-1" @@ -895,21 +895,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourcegroups/ps4631?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlZ3JvdXBzL3BzNDYzMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourcegroups/ps676?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlZ3JvdXBzL3BzNjc2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "38b6662e-d4af-4bcf-b84d-bb0106dd5455" + "51324ff7-8c8f-4583-9cb6-960c6b3a56b8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.61" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, "RequestBody": "", @@ -921,7 +921,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ2MzEtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3Ni1DRU5UUkFMVVNFVUFQIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXNldWFwIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -930,13 +930,13 @@ "14999" ], "x-ms-request-id": [ - "387df599-6fe9-4fd1-bc38-6fd417070ad5" + "ec8c4d90-9300-4050-84e2-4c8f61864a08" ], "x-ms-correlation-request-id": [ - "387df599-6fe9-4fd1-bc38-6fd417070ad5" + "ec8c4d90-9300-4050-84e2-4c8f61864a08" ], "x-ms-routing-request-id": [ - "WESTUS:20220922T175353Z:387df599-6fe9-4fd1-bc38-6fd417070ad5" + "WESTUS:20230219T023350Z:ec8c4d90-9300-4050-84e2-4c8f61864a08" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -945,7 +945,7 @@ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:53:53 GMT" + "Sun, 19 Feb 2023 02:33:49 GMT" ], "Expires": [ "-1" @@ -958,15 +958,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ2MzEtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMk16RXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3Ni1DRU5UUkFMVVNFVUFQIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXNldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM05pMURSVTVVVWtGTVZWTkZWVUZRSWl3aWFtOWlURzlqWVhScGIyNGlPaUpqWlc1MGNtRnNkWE5sZFdGd0luMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.61" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, "RequestBody": "", @@ -977,23 +977,17 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ2MzEtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-request-id": [ - "8988b6ea-3107-4997-a1f4-889f784593cc" + "0abd435b-f71b-4ab3-ac8a-a64188cfccfb" ], "x-ms-correlation-request-id": [ - "8988b6ea-3107-4997-a1f4-889f784593cc" + "0abd435b-f71b-4ab3-ac8a-a64188cfccfb" ], "x-ms-routing-request-id": [ - "WESTUS:20220922T175408Z:8988b6ea-3107-4997-a1f4-889f784593cc" + "WESTUS:20230219T023405Z:0abd435b-f71b-4ab3-ac8a-a64188cfccfb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1002,229 +996,7 @@ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:54:08 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ2MzEtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMk16RXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.22.41602", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.61" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ2MzEtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-request-id": [ - "6c5e63b2-95f3-4d17-a9cd-1121a6247834" - ], - "x-ms-correlation-request-id": [ - "6c5e63b2-95f3-4d17-a9cd-1121a6247834" - ], - "x-ms-routing-request-id": [ - "WESTUS:20220922T175423Z:6c5e63b2-95f3-4d17-a9cd-1121a6247834" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Sep 2022 17:54:23 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ2MzEtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMk16RXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.22.41602", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.61" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ2MzEtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-request-id": [ - "376ed300-0a8e-4e72-9c31-ec1d245b2075" - ], - "x-ms-correlation-request-id": [ - "376ed300-0a8e-4e72-9c31-ec1d245b2075" - ], - "x-ms-routing-request-id": [ - "WESTUS:20220922T175439Z:376ed300-0a8e-4e72-9c31-ec1d245b2075" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Sep 2022 17:54:38 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ2MzEtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMk16RXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.22.41602", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.61" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ2MzEtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-request-id": [ - "40092754-eb64-424e-bc12-d346b336781f" - ], - "x-ms-correlation-request-id": [ - "40092754-eb64-424e-bc12-d346b336781f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20220922T175454Z:40092754-eb64-424e-bc12-d346b336781f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Sep 2022 17:54:53 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ2MzEtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMk16RXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.22.41602", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.61" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-request-id": [ - "002271d6-05c8-4bf1-b48a-0993556ecde7" - ], - "x-ms-correlation-request-id": [ - "002271d6-05c8-4bf1-b48a-0993556ecde7" - ], - "x-ms-routing-request-id": [ - "WESTUS:20220922T175509Z:002271d6-05c8-4bf1-b48a-0993556ecde7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Sep 2022 17:55:08 GMT" + "Sun, 19 Feb 2023 02:34:04 GMT" ], "Expires": [ "-1" @@ -1237,15 +1009,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ2MzEtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRMk16RXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY3Ni1DRU5UUkFMVVNFVUFQIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXNldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZM05pMURSVTVVVWtGTVZWTkZWVUZRSWl3aWFtOWlURzlqWVhScGIyNGlPaUpqWlc1MGNtRnNkWE5sZFdGd0luMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.61" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, "RequestBody": "", @@ -1257,16 +1029,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11998" ], "x-ms-request-id": [ - "38e8b008-baed-4f74-890e-9feeda99b2fc" + "dc91fe7f-82b7-4a34-ba98-f7c286d3dade" ], "x-ms-correlation-request-id": [ - "38e8b008-baed-4f74-890e-9feeda99b2fc" + "dc91fe7f-82b7-4a34-ba98-f7c286d3dade" ], "x-ms-routing-request-id": [ - "WESTUS:20220922T175509Z:38e8b008-baed-4f74-890e-9feeda99b2fc" + "WESTUS:20230219T023405Z:dc91fe7f-82b7-4a34-ba98-f7c286d3dade" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1275,7 +1047,7 @@ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:55:08 GMT" + "Sun, 19 Feb 2023 02:34:04 GMT" ], "Expires": [ "-1" @@ -1290,12 +1062,12 @@ ], "Names": { "Test-NetworkManagerScopeConnectionCRUD": [ - "ps4631", - "ps320", - "ps6364" + "ps676", + "ps7113", + "ps4437" ] }, "Variables": { - "SubscriptionId": "0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884" + "SubscriptionId": "08615b4b-bc9c-4a70-be1b-2ea10bc97b52" } } \ No newline at end of file diff --git a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkManagerTests/NetworkManagerSecurityAdminRuleCRUD.json b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkManagerTests/NetworkManagerSecurityAdminRuleCRUD.json index 9d88e1c4128f..b2843c6233fe 100644 --- a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkManagerTests/NetworkManagerSecurityAdminRuleCRUD.json +++ b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkManagerTests/NetworkManagerSecurityAdminRuleCRUD.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourcegroups/ps3945?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlZ3JvdXBzL3BzMzk0NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourcegroups/ps8841?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlZ3JvdXBzL3BzODg0MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "ddd02394-65fa-4235-a6c4-fac1ad5c8748" + "563d0228-b0aa-4ff6-8292-d49eeb450abd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.61" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "79dc9dbe-aa86-4710-8fc9-a2b68f116447" + "5a4b847f-c3d3-4c02-bb3a-f9586a43aa08" ], "x-ms-correlation-request-id": [ - "79dc9dbe-aa86-4710-8fc9-a2b68f116447" + "5a4b847f-c3d3-4c02-bb3a-f9586a43aa08" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T232744Z:79dc9dbe-aa86-4710-8fc9-a2b68f116447" + "WESTUS:20230219T023409Z:5a4b847f-c3d3-4c02-bb3a-f9586a43aa08" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:27:43 GMT" + "Sun, 19 Feb 2023 02:34:09 GMT" ], "Content-Length": [ - "201" + "242" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,25 +63,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945\",\r\n \"name\": \"ps3945\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841\",\r\n \"name\": \"ps8841\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"testtag\": \"testval\",\r\n \"Created\": \"2023-02-19T02:34:08.897573Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMzk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTI2MT9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzODg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTQ1MD9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "0d34e41e-25a1-42a2-9e22-b664ed22eba9" + "958c338b-09b0-42d2-9d3f-7f72019f82f1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "271a40f9-9695-4dcb-8a73-47df957a63e2" + "54dab733-d590-4606-a0f6-f2cc9d81c8c9" ], "x-ms-correlation-request-id": [ - "271a40f9-9695-4dcb-8a73-47df957a63e2" + "54dab733-d590-4606-a0f6-f2cc9d81c8c9" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T232745Z:271a40f9-9695-4dcb-8a73-47df957a63e2" + "WESTUS:20230219T023410Z:54dab733-d590-4606-a0f6-f2cc9d81c8c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:27:44 GMT" + "Sun, 19 Feb 2023 02:34:10 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,25 +123,25 @@ "218" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkManagers/ps1261' under resource group 'ps3945' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkManagers/ps1450' under resource group 'ps8841' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMzk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTI2MT9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzODg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTQ1MD9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "0d34e41e-25a1-42a2-9e22-b664ed22eba9" + "958c338b-09b0-42d2-9d3f-7f72019f82f1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -162,22 +162,22 @@ "Kestrel" ], "x-ms-request-id": [ - "17d3631c-d9b3-4dc8-bfe7-eba6e33c9acb" + "15cc6df1-0431-4a69-a3dc-9ba1b03b1ce5" ], "x-ms-correlation-request-id": [ - "17d3631c-d9b3-4dc8-bfe7-eba6e33c9acb" + "15cc6df1-0431-4a69-a3dc-9ba1b03b1ce5" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T232749Z:17d3631c-d9b3-4dc8-bfe7-eba6e33c9acb" + "WESTUS:20230219T023413Z:15cc6df1-0431-4a69-a3dc-9ba1b03b1ce5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:27:48 GMT" + "Sun, 19 Feb 2023 02:34:13 GMT" ], "Content-Length": [ - "882" + "865" ], "Content-Type": [ "application/json; charset=utf-8" @@ -186,25 +186,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps1261\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"0000db88-0000-3300-0000-632e40f40000\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"SecurityAdmin\"\r\n ],\r\n \"resourceGuid\": \"f342f4bb-6e23-4996-8e45-92b51a22aef2\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-23T23:27:48.2415948Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-23T23:27:48.2415948Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps1450\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"560045ba-0000-3300-0000-63f18aa40000\\\"\",\r\n \"properties\": {\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"SecurityAdmin\"\r\n ],\r\n \"resourceGuid\": \"4036d455-c97a-43f9-84ee-adc36c39969e\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:34:11.8855326Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:34:11.8855326Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMzk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTI2MT9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzODg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTQ1MD9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "c8ff3e52-d24d-4a19-9190-80f644fc313d" + "93063078-f1ba-407b-ba5d-a33f78fd9d33" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -216,7 +216,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -225,22 +225,22 @@ "Kestrel" ], "x-ms-request-id": [ - "7aeeeff6-9d44-457d-b208-c2156c8cca1e" + "7c49c9af-dd4e-490d-9881-5a0921c634d7" ], "x-ms-correlation-request-id": [ - "7aeeeff6-9d44-457d-b208-c2156c8cca1e" + "7c49c9af-dd4e-490d-9881-5a0921c634d7" ], "x-ms-routing-request-id": [ - "WESTUS:20220923T232750Z:7aeeeff6-9d44-457d-b208-c2156c8cca1e" + "WESTUS:20230219T023414Z:7c49c9af-dd4e-490d-9881-5a0921c634d7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:27:49 GMT" + "Sun, 19 Feb 2023 02:34:14 GMT" ], "Content-Length": [ - "882" + "865" ], "Content-Type": [ "application/json; charset=utf-8" @@ -249,25 +249,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps1261\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"0000db88-0000-3300-0000-632e40f40000\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"SecurityAdmin\"\r\n ],\r\n \"resourceGuid\": \"f342f4bb-6e23-4996-8e45-92b51a22aef2\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-23T23:27:48.2415948Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-23T23:27:48.2415948Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps1450\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"560045ba-0000-3300-0000-63f18aa40000\\\"\",\r\n \"properties\": {\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"SecurityAdmin\"\r\n ],\r\n \"resourceGuid\": \"4036d455-c97a-43f9-84ee-adc36c39969e\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:34:11.8855326Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:34:11.8855326Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMzk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTI2MT9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzODg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTQ1MD9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "0d34e41e-25a1-42a2-9e22-b664ed22eba9" + "958c338b-09b0-42d2-9d3f-7f72019f82f1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -276,7 +276,7 @@ "296" ] }, - "RequestBody": "{\r\n \"properties\": {\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884\"\r\n ]\r\n },\r\n \"networkManagerScopeAccesses\": [\r\n \"SecurityAdmin\"\r\n ]\r\n },\r\n \"location\": \"centraluseuap\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52\"\r\n ]\r\n },\r\n \"networkManagerScopeAccesses\": [\r\n \"SecurityAdmin\"\r\n ]\r\n },\r\n \"location\": \"centraluseuap\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -294,22 +294,22 @@ "Kestrel" ], "x-ms-request-id": [ - "33b2140e-37ca-468e-9e66-825857687cfa" + "128f6a48-2304-4933-afab-24a0d7c0d4d0" ], "x-ms-correlation-request-id": [ - "33b2140e-37ca-468e-9e66-825857687cfa" + "128f6a48-2304-4933-afab-24a0d7c0d4d0" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T232749Z:33b2140e-37ca-468e-9e66-825857687cfa" + "WESTUS:20230219T023413Z:128f6a48-2304-4933-afab-24a0d7c0d4d0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:27:48 GMT" + "Sun, 19 Feb 2023 02:34:12 GMT" ], "Content-Length": [ - "842" + "825" ], "Content-Type": [ "application/json; charset=utf-8" @@ -318,25 +318,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps1261\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"SecurityAdmin\"\r\n ],\r\n \"resourceGuid\": \"f342f4bb-6e23-4996-8e45-92b51a22aef2\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-23T23:27:48.2415948Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-23T23:27:48.2415948Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps1450\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"SecurityAdmin\"\r\n ],\r\n \"resourceGuid\": \"4036d455-c97a-43f9-84ee-adc36c39969e\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:34:11.8855326Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:34:11.8855326Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/networkGroups/ps9934?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMzk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTI2MS9uZXR3b3JrR3JvdXBzL3BzOTkzND9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/networkGroups/ps2941?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzODg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTQ1MC9uZXR3b3JrR3JvdXBzL3BzMjk0MT9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "b91dc709-d9ce-4e6c-9225-f1e515d49106" + "ceb5a054-f178-4b40-9e3c-21a5263f00fc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -357,19 +357,19 @@ "Kestrel" ], "x-ms-request-id": [ - "99f35780-982d-4f45-a752-a573344d0245" + "a8c415fd-5203-414a-88b4-374fb5ca3894" ], "x-ms-correlation-request-id": [ - "99f35780-982d-4f45-a752-a573344d0245" + "a8c415fd-5203-414a-88b4-374fb5ca3894" ], "x-ms-routing-request-id": [ - "WESTUS:20220923T232751Z:99f35780-982d-4f45-a752-a573344d0245" + "WESTCENTRALUS:20230219T023415Z:a8c415fd-5203-414a-88b4-374fb5ca3894" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:27:51 GMT" + "Sun, 19 Feb 2023 02:34:15 GMT" ], "Content-Length": [ "233" @@ -381,25 +381,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"Resource [/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/networkGroups/ps9934] does not exist or has been deleted\",\r\n \"code\": \"NotFound\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"Resource [/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/networkGroups/ps2941] does not exist or has been deleted\",\r\n \"code\": \"NotFound\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/networkGroups/ps9934?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMzk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTI2MS9uZXR3b3JrR3JvdXBzL3BzOTkzND9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/networkGroups/ps2941?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzODg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTQ1MC9uZXR3b3JrR3JvdXBzL3BzMjk0MT9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "b91dc709-d9ce-4e6c-9225-f1e515d49106" + "ceb5a054-f178-4b40-9e3c-21a5263f00fc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -420,22 +420,22 @@ "Kestrel" ], "x-ms-request-id": [ - "784faa9d-63ca-4812-8e46-d0a7a06d6e62" + "e0327d89-90b9-4573-94c1-71898313a31f" ], "x-ms-correlation-request-id": [ - "784faa9d-63ca-4812-8e46-d0a7a06d6e62" + "e0327d89-90b9-4573-94c1-71898313a31f" ], "x-ms-routing-request-id": [ - "WESTUS:20220923T232752Z:784faa9d-63ca-4812-8e46-d0a7a06d6e62" + "WESTCENTRALUS:20230219T023417Z:e0327d89-90b9-4573-94c1-71898313a31f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:27:52 GMT" + "Sun, 19 Feb 2023 02:34:16 GMT" ], "Content-Length": [ - "713" + "696" ], "Content-Type": [ "application/json; charset=utf-8" @@ -444,25 +444,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps9934\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/networkGroups/ps9934\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups\",\r\n \"etag\": \"\\\"0000dc88-0000-3300-0000-632e40f80000\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"SampleConfigDESCRIption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0f48d1b5-2283-4573-9ecd-41d5e3a9710b\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-23T23:27:52.1667686Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-23T23:27:52.1667686Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps2941\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/networkGroups/ps2941\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups\",\r\n \"etag\": \"\\\"560057ba-0000-3300-0000-63f18aa80000\\\"\",\r\n \"properties\": {\r\n \"description\": \"SampleConfigDESCRIption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d4078161-ad44-479d-b0d3-8f09d4cb32bd\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:34:16.3942521Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:34:16.3942521Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/networkGroups/ps9934?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMzk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTI2MS9uZXR3b3JrR3JvdXBzL3BzOTkzND9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/networkGroups/ps2941?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzODg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTQ1MC9uZXR3b3JrR3JvdXBzL3BzMjk0MT9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "ba554633-9d94-44be-a5ab-fb06eeb7ab91" + "643c2416-c177-47cf-9903-ab60d062db2c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -483,22 +483,22 @@ "Kestrel" ], "x-ms-request-id": [ - "3c82c686-f467-449a-9498-32463a89fbdb" + "5b5434ae-9bac-47b6-bcd2-f903f2e8b218" ], "x-ms-correlation-request-id": [ - "3c82c686-f467-449a-9498-32463a89fbdb" + "5b5434ae-9bac-47b6-bcd2-f903f2e8b218" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T232756Z:3c82c686-f467-449a-9498-32463a89fbdb" + "WESTCENTRALUS:20230219T023419Z:5b5434ae-9bac-47b6-bcd2-f903f2e8b218" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:27:55 GMT" + "Sun, 19 Feb 2023 02:34:18 GMT" ], "Content-Length": [ - "713" + "696" ], "Content-Type": [ "application/json; charset=utf-8" @@ -507,25 +507,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps9934\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/networkGroups/ps9934\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups\",\r\n \"etag\": \"\\\"0000dc88-0000-3300-0000-632e40f80000\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"SampleConfigDESCRIption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0f48d1b5-2283-4573-9ecd-41d5e3a9710b\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-23T23:27:52.1667686Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-23T23:27:52.1667686Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps2941\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/networkGroups/ps2941\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups\",\r\n \"etag\": \"\\\"560057ba-0000-3300-0000-63f18aa80000\\\"\",\r\n \"properties\": {\r\n \"description\": \"SampleConfigDESCRIption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d4078161-ad44-479d-b0d3-8f09d4cb32bd\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:34:16.3942521Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:34:16.3942521Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/networkGroups/ps9934?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMzk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTI2MS9uZXR3b3JrR3JvdXBzL3BzOTkzND9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/networkGroups/ps2941?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzODg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTQ1MC9uZXR3b3JrR3JvdXBzL3BzMjk0MT9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "b91dc709-d9ce-4e6c-9225-f1e515d49106" + "ceb5a054-f178-4b40-9e3c-21a5263f00fc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -552,22 +552,22 @@ "Kestrel" ], "x-ms-request-id": [ - "6e408f11-65e6-44aa-a1b1-d328d44e1e81" + "e1c90409-dff5-4cb4-8aee-154db5853b33" ], "x-ms-correlation-request-id": [ - "6e408f11-65e6-44aa-a1b1-d328d44e1e81" + "e1c90409-dff5-4cb4-8aee-154db5853b33" ], "x-ms-routing-request-id": [ - "WESTUS:20220923T232752Z:6e408f11-65e6-44aa-a1b1-d328d44e1e81" + "WESTCENTRALUS:20230219T023417Z:e1c90409-dff5-4cb4-8aee-154db5853b33" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:27:51 GMT" + "Sun, 19 Feb 2023 02:34:16 GMT" ], "Content-Length": [ - "673" + "656" ], "Content-Type": [ "application/json; charset=utf-8" @@ -576,25 +576,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps9934\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/networkGroups/ps9934\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"SampleConfigDESCRIption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0f48d1b5-2283-4573-9ecd-41d5e3a9710b\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-23T23:27:52.1667686Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-23T23:27:52.1667686Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps2941\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/networkGroups/ps2941\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"description\": \"SampleConfigDESCRIption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d4078161-ad44-479d-b0d3-8f09d4cb32bd\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:34:16.3942521Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:34:16.3942521Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/networkGroups/ps9934/staticMembers/ps8656?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMzk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTI2MS9uZXR3b3JrR3JvdXBzL3BzOTkzNC9zdGF0aWNNZW1iZXJzL3BzODY1Nj9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/networkGroups/ps2941/staticMembers/ps5944?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzODg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTQ1MC9uZXR3b3JrR3JvdXBzL3BzMjk0MS9zdGF0aWNNZW1iZXJzL3BzNTk0ND9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "7fa1204e-edba-4ca5-a055-016975c26953" + "f195e1ce-3149-4629-bc56-bc77d4c0cd9b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -606,7 +606,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11994" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -615,19 +615,19 @@ "Kestrel" ], "x-ms-request-id": [ - "a0ccd4f2-3ef7-4951-b7f6-33ad028b168c" + "5abae71e-7a9e-4ff8-9926-2a91f71ff08c" ], "x-ms-correlation-request-id": [ - "a0ccd4f2-3ef7-4951-b7f6-33ad028b168c" + "5abae71e-7a9e-4ff8-9926-2a91f71ff08c" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T232753Z:a0ccd4f2-3ef7-4951-b7f6-33ad028b168c" + "WESTCENTRALUS:20230219T023417Z:5abae71e-7a9e-4ff8-9926-2a91f71ff08c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:27:53 GMT" + "Sun, 19 Feb 2023 02:34:17 GMT" ], "Content-Length": [ "253" @@ -639,25 +639,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"Resource [/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/networkGroups/ps9934/staticMembersps8656] does not exist or has been deleted\",\r\n \"code\": \"NotFound\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"Resource [/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/networkGroups/ps2941/staticMembersps5944] does not exist or has been deleted\",\r\n \"code\": \"NotFound\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/networkGroups/ps9934/staticMembers/ps8656?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMzk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTI2MS9uZXR3b3JrR3JvdXBzL3BzOTkzNC9zdGF0aWNNZW1iZXJzL3BzODY1Nj9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/networkGroups/ps2941/staticMembers/ps5944?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzODg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTQ1MC9uZXR3b3JrR3JvdXBzL3BzMjk0MS9zdGF0aWNNZW1iZXJzL3BzNTk0ND9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "7fa1204e-edba-4ca5-a055-016975c26953" + "f195e1ce-3149-4629-bc56-bc77d4c0cd9b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -669,7 +669,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11993" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -678,22 +678,22 @@ "Kestrel" ], "x-ms-request-id": [ - "514c9d22-5772-4192-9d1c-058e373c63b9" + "90f91a6b-fa51-4cc7-a6e2-16f1c65ab197" ], "x-ms-correlation-request-id": [ - "514c9d22-5772-4192-9d1c-058e373c63b9" + "90f91a6b-fa51-4cc7-a6e2-16f1c65ab197" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T232755Z:514c9d22-5772-4192-9d1c-058e373c63b9" + "WESTCENTRALUS:20230219T023418Z:90f91a6b-fa51-4cc7-a6e2-16f1c65ab197" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:27:55 GMT" + "Sun, 19 Feb 2023 02:34:18 GMT" ], "Content-Length": [ - "831" + "808" ], "Content-Type": [ "application/json; charset=utf-8" @@ -702,34 +702,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps8656\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/networkGroups/ps9934/staticMembers/ps8656\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups/staticMembers\",\r\n \"etag\": \"\\\"0000de88-0000-3300-0000-632e40fa0000\\\"\",\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/virtualNetworks/powerShellTestVnet\",\r\n \"provisioningState\": \"Updating\",\r\n \"location\": \"\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-23T23:27:54.6077999Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-23T23:27:54.6077999Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5944\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/networkGroups/ps2941/staticMembers/ps5944\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups/staticMembers\",\r\n \"etag\": \"\\\"560060ba-0000-3300-0000-63f18aaa0000\\\"\",\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/virtualNetworks/SwaggerStackVnet\",\r\n \"provisioningState\": \"Updating\",\r\n \"location\": \"\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:34:18.0102489Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:34:18.0102489Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/networkGroups/ps9934/staticMembers/ps8656?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMzk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTI2MS9uZXR3b3JrR3JvdXBzL3BzOTkzNC9zdGF0aWNNZW1iZXJzL3BzODY1Nj9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/networkGroups/ps2941/staticMembers/ps5944?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzODg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTQ1MC9uZXR3b3JrR3JvdXBzL3BzMjk0MS9zdGF0aWNNZW1iZXJzL3BzNTk0ND9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "7fa1204e-edba-4ca5-a055-016975c26953" + "f195e1ce-3149-4629-bc56-bc77d4c0cd9b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "215" + "192" ] }, - "RequestBody": "{\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/virtualNetworks/powerShellTestVnet\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/virtualNetworks/SwaggerStackVnet\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -738,7 +738,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -747,22 +747,22 @@ "Kestrel" ], "x-ms-request-id": [ - "f407d49b-64b1-499a-96cb-a28974282320" + "7fa325d7-2aa4-4ae9-93ea-44b3a3ea3cc3" ], "x-ms-correlation-request-id": [ - "f407d49b-64b1-499a-96cb-a28974282320" + "7fa325d7-2aa4-4ae9-93ea-44b3a3ea3cc3" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T232755Z:f407d49b-64b1-499a-96cb-a28974282320" + "WESTCENTRALUS:20230219T023418Z:7fa325d7-2aa4-4ae9-93ea-44b3a3ea3cc3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:27:54 GMT" + "Sun, 19 Feb 2023 02:34:18 GMT" ], "Content-Length": [ - "791" + "768" ], "Content-Type": [ "application/json; charset=utf-8" @@ -771,25 +771,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps8656\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/networkGroups/ps9934/staticMembers/ps8656\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups/staticMembers\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/virtualNetworks/powerShellTestVnet\",\r\n \"provisioningState\": \"Updating\",\r\n \"location\": \"\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-23T23:27:54.6077999Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-23T23:27:54.6077999Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5944\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/networkGroups/ps2941/staticMembers/ps5944\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups/staticMembers\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/virtualNetworks/SwaggerStackVnet\",\r\n \"provisioningState\": \"Updating\",\r\n \"location\": \"\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:34:18.0102489Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:34:18.0102489Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/securityAdminConfigurations/ps9980?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMzk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTI2MS9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM5OTgwP2FwaS12ZXJzaW9uPTIwMjItMDEtMDE=", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/securityAdminConfigurations/ps8837?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzODg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTQ1MC9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM4ODM3P2FwaS12ZXJzaW9uPTIwMjItMDctMDE=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "470fe079-f60a-4f80-8820-2f0400a67abd" + "8a40c026-3df8-4dd4-933e-3597c8ecf8ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -801,7 +801,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11996" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -810,19 +810,19 @@ "Kestrel" ], "x-ms-request-id": [ - "d487a3fe-fe06-4d8a-93f2-bd0db3327f44" + "de384170-9adb-4905-a790-ccc7bea058a4" ], "x-ms-correlation-request-id": [ - "d487a3fe-fe06-4d8a-93f2-bd0db3327f44" + "de384170-9adb-4905-a790-ccc7bea058a4" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T232756Z:d487a3fe-fe06-4d8a-93f2-bd0db3327f44" + "WESTCENTRALUS:20230219T023419Z:de384170-9adb-4905-a790-ccc7bea058a4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:27:56 GMT" + "Sun, 19 Feb 2023 02:34:18 GMT" ], "Content-Length": [ "247" @@ -834,25 +834,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"Resource [/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/securityAdminConfigurations/ps9980] does not exist or has been deleted\",\r\n \"code\": \"NotFound\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"Resource [/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/securityAdminConfigurations/ps8837] does not exist or has been deleted\",\r\n \"code\": \"NotFound\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/securityAdminConfigurations/ps9980?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMzk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTI2MS9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM5OTgwP2FwaS12ZXJzaW9uPTIwMjItMDEtMDE=", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/securityAdminConfigurations/ps8837?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzODg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTQ1MC9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM4ODM3P2FwaS12ZXJzaW9uPTIwMjItMDctMDE=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "470fe079-f60a-4f80-8820-2f0400a67abd" + "8a40c026-3df8-4dd4-933e-3597c8ecf8ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -864,7 +864,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11995" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -873,22 +873,22 @@ "Kestrel" ], "x-ms-request-id": [ - "308617a8-cc90-479f-991c-5042f2543b9e" + "bb0d1a49-ce95-4bf5-8833-a18f0a65b805" ], "x-ms-correlation-request-id": [ - "308617a8-cc90-479f-991c-5042f2543b9e" + "bb0d1a49-ce95-4bf5-8833-a18f0a65b805" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T232758Z:308617a8-cc90-479f-991c-5042f2543b9e" + "WESTCENTRALUS:20230219T023420Z:bb0d1a49-ce95-4bf5-8833-a18f0a65b805" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:27:57 GMT" + "Sun, 19 Feb 2023 02:34:19 GMT" ], "Content-Length": [ - "780" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -897,25 +897,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps9980\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/securityAdminConfigurations/ps9980\",\r\n \"type\": \"Microsoft.Network/networkManagers/securityAdminConfigurations\",\r\n \"etag\": \"\\\"0000df88-0000-3300-0000-632e40fd0000\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"DESCription\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1a3c504c-c6e7-4977-b6e6-567f8660fc71\",\r\n \"applyOnNetworkIntentPolicyBasedServices\": [\r\n \"None\"\r\n ]\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-23T23:27:57.5574981Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-23T23:27:57.5574981Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps8837\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/securityAdminConfigurations/ps8837\",\r\n \"type\": \"Microsoft.Network/networkManagers/securityAdminConfigurations\",\r\n \"etag\": \"\\\"560068ba-0000-3300-0000-63f18aac0000\\\"\",\r\n \"properties\": {\r\n \"description\": \"DESCription\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d69ab9d7-43a1-4fbe-a39b-a621cfefe56a\",\r\n \"applyOnNetworkIntentPolicyBasedServices\": [\r\n \"None\"\r\n ]\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:34:20.1729717Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:34:20.1729717Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/securityAdminConfigurations/ps9980?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMzk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTI2MS9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM5OTgwP2FwaS12ZXJzaW9uPTIwMjItMDEtMDE=", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/securityAdminConfigurations/ps8837?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzODg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTQ1MC9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM4ODM3P2FwaS12ZXJzaW9uPTIwMjItMDctMDE=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "ef5aa39d-86d8-4139-8b1c-0b30ea99bc6e" + "ecdcb9ad-9c09-48a7-86fe-0f2c65d0ed91" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -927,7 +927,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11979" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -936,22 +936,22 @@ "Kestrel" ], "x-ms-request-id": [ - "b31d00c7-b649-4be6-ab87-f05f84898153" + "97acc633-0f9a-41a9-b16a-15852e72ec47" ], "x-ms-correlation-request-id": [ - "b31d00c7-b649-4be6-ab87-f05f84898153" + "97acc633-0f9a-41a9-b16a-15852e72ec47" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T232759Z:b31d00c7-b649-4be6-ab87-f05f84898153" + "WESTCENTRALUS:20230219T023422Z:97acc633-0f9a-41a9-b16a-15852e72ec47" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:27:59 GMT" + "Sun, 19 Feb 2023 02:34:21 GMT" ], "Content-Length": [ - "780" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -960,25 +960,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps9980\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/securityAdminConfigurations/ps9980\",\r\n \"type\": \"Microsoft.Network/networkManagers/securityAdminConfigurations\",\r\n \"etag\": \"\\\"0000df88-0000-3300-0000-632e40fd0000\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"DESCription\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1a3c504c-c6e7-4977-b6e6-567f8660fc71\",\r\n \"applyOnNetworkIntentPolicyBasedServices\": [\r\n \"None\"\r\n ]\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-23T23:27:57.5574981Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-23T23:27:57.5574981Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps8837\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/securityAdminConfigurations/ps8837\",\r\n \"type\": \"Microsoft.Network/networkManagers/securityAdminConfigurations\",\r\n \"etag\": \"\\\"560068ba-0000-3300-0000-63f18aac0000\\\"\",\r\n \"properties\": {\r\n \"description\": \"DESCription\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d69ab9d7-43a1-4fbe-a39b-a621cfefe56a\",\r\n \"applyOnNetworkIntentPolicyBasedServices\": [\r\n \"None\"\r\n ]\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:34:20.1729717Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:34:20.1729717Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/securityAdminConfigurations/ps9980?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMzk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTI2MS9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM5OTgwP2FwaS12ZXJzaW9uPTIwMjItMDEtMDE=", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/securityAdminConfigurations/ps8837?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzODg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTQ1MC9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM4ODM3P2FwaS12ZXJzaW9uPTIwMjItMDctMDE=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "11fd86dc-ea2e-46fe-9b3e-02a4c0ac2e4f" + "02dbd755-a781-4278-9418-d1de7ec0a6a9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -990,7 +990,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -999,22 +999,22 @@ "Kestrel" ], "x-ms-request-id": [ - "fd969778-f996-484b-85d1-6aee21f7bbe5" + "61cf6f17-afd7-4872-8dc5-ba42f505effe" ], "x-ms-correlation-request-id": [ - "fd969778-f996-484b-85d1-6aee21f7bbe5" + "61cf6f17-afd7-4872-8dc5-ba42f505effe" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T232759Z:fd969778-f996-484b-85d1-6aee21f7bbe5" + "WESTCENTRALUS:20230219T023423Z:61cf6f17-afd7-4872-8dc5-ba42f505effe" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:27:59 GMT" + "Sun, 19 Feb 2023 02:34:22 GMT" ], "Content-Length": [ - "780" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1023,25 +1023,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps9980\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/securityAdminConfigurations/ps9980\",\r\n \"type\": \"Microsoft.Network/networkManagers/securityAdminConfigurations\",\r\n \"etag\": \"\\\"0000df88-0000-3300-0000-632e40fd0000\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"DESCription\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1a3c504c-c6e7-4977-b6e6-567f8660fc71\",\r\n \"applyOnNetworkIntentPolicyBasedServices\": [\r\n \"None\"\r\n ]\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-23T23:27:57.5574981Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-23T23:27:57.5574981Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps8837\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/securityAdminConfigurations/ps8837\",\r\n \"type\": \"Microsoft.Network/networkManagers/securityAdminConfigurations\",\r\n \"etag\": \"\\\"560068ba-0000-3300-0000-63f18aac0000\\\"\",\r\n \"properties\": {\r\n \"description\": \"DESCription\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d69ab9d7-43a1-4fbe-a39b-a621cfefe56a\",\r\n \"applyOnNetworkIntentPolicyBasedServices\": [\r\n \"None\"\r\n ]\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:34:20.1729717Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:34:20.1729717Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/securityAdminConfigurations/ps9980?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMzk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTI2MS9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM5OTgwP2FwaS12ZXJzaW9uPTIwMjItMDEtMDE=", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/securityAdminConfigurations/ps8837?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzODg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTQ1MC9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM4ODM3P2FwaS12ZXJzaW9uPTIwMjItMDctMDE=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "11fd86dc-ea2e-46fe-9b3e-02a4c0ac2e4f" + "02dbd755-a781-4278-9418-d1de7ec0a6a9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -1053,7 +1053,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1062,22 +1062,22 @@ "Kestrel" ], "x-ms-request-id": [ - "749572e7-8994-4297-a281-9063fd2a4bb2" + "14bb4a5a-44fe-4f55-8bcf-a69b9edaef9b" ], "x-ms-correlation-request-id": [ - "749572e7-8994-4297-a281-9063fd2a4bb2" + "14bb4a5a-44fe-4f55-8bcf-a69b9edaef9b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T232801Z:749572e7-8994-4297-a281-9063fd2a4bb2" + "WESTCENTRALUS:20230219T023423Z:14bb4a5a-44fe-4f55-8bcf-a69b9edaef9b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:28:00 GMT" + "Sun, 19 Feb 2023 02:34:23 GMT" ], "Content-Length": [ - "787" + "770" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1086,25 +1086,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps9980\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/securityAdminConfigurations/ps9980\",\r\n \"type\": \"Microsoft.Network/networkManagers/securityAdminConfigurations\",\r\n \"etag\": \"\\\"0000e288-0000-3300-0000-632e41000000\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"A different description.\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1a3c504c-c6e7-4977-b6e6-567f8660fc71\",\r\n \"applyOnNetworkIntentPolicyBasedServices\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-23T23:27:57.5574981Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-23T23:28:00.3553984Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps8837\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/securityAdminConfigurations/ps8837\",\r\n \"type\": \"Microsoft.Network/networkManagers/securityAdminConfigurations\",\r\n \"etag\": \"\\\"56007aba-0000-3300-0000-63f18aaf0000\\\"\",\r\n \"properties\": {\r\n \"description\": \"A different description.\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d69ab9d7-43a1-4fbe-a39b-a621cfefe56a\",\r\n \"applyOnNetworkIntentPolicyBasedServices\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:34:20.1729717Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:34:23.3179649Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/securityAdminConfigurations/ps9980?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMzk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTI2MS9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM5OTgwP2FwaS12ZXJzaW9uPTIwMjItMDEtMDE=", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/securityAdminConfigurations/ps8837?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzODg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTQ1MC9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM4ODM3P2FwaS12ZXJzaW9uPTIwMjItMDctMDE=", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "470fe079-f60a-4f80-8820-2f0400a67abd" + "8a40c026-3df8-4dd4-933e-3597c8ecf8ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1122,7 +1122,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1131,22 +1131,22 @@ "Kestrel" ], "x-ms-request-id": [ - "29c51746-b5ac-441f-942c-3fd112a71ef0" + "5a06638a-70d9-4215-a131-7fe983e994b9" ], "x-ms-correlation-request-id": [ - "29c51746-b5ac-441f-942c-3fd112a71ef0" + "5a06638a-70d9-4215-a131-7fe983e994b9" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T232758Z:29c51746-b5ac-441f-942c-3fd112a71ef0" + "WESTCENTRALUS:20230219T023420Z:5a06638a-70d9-4215-a131-7fe983e994b9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:27:57 GMT" + "Sun, 19 Feb 2023 02:34:19 GMT" ], "Content-Length": [ - "740" + "723" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1155,25 +1155,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps9980\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/securityAdminConfigurations/ps9980\",\r\n \"type\": \"Microsoft.Network/networkManagers/securityAdminConfigurations\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"DESCription\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1a3c504c-c6e7-4977-b6e6-567f8660fc71\",\r\n \"applyOnNetworkIntentPolicyBasedServices\": [\r\n \"None\"\r\n ]\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-23T23:27:57.5574981Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-23T23:27:57.5574981Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps8837\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/securityAdminConfigurations/ps8837\",\r\n \"type\": \"Microsoft.Network/networkManagers/securityAdminConfigurations\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"description\": \"DESCription\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d69ab9d7-43a1-4fbe-a39b-a621cfefe56a\",\r\n \"applyOnNetworkIntentPolicyBasedServices\": [\r\n \"None\"\r\n ]\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:34:20.1729717Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:34:20.1729717Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/securityAdminConfigurations/ps9980?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMzk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTI2MS9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM5OTgwP2FwaS12ZXJzaW9uPTIwMjItMDEtMDE=", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/securityAdminConfigurations/ps8837?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzODg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTQ1MC9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM4ODM3P2FwaS12ZXJzaW9uPTIwMjItMDctMDE=", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "11fd86dc-ea2e-46fe-9b3e-02a4c0ac2e4f" + "02dbd755-a781-4278-9418-d1de7ec0a6a9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1200,22 +1200,22 @@ "Kestrel" ], "x-ms-request-id": [ - "8eba5f9f-2027-4767-982e-febd3310faa7" + "ef86c178-5049-4c2b-8ee6-c9c6b82f3972" ], "x-ms-correlation-request-id": [ - "8eba5f9f-2027-4767-982e-febd3310faa7" + "ef86c178-5049-4c2b-8ee6-c9c6b82f3972" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T232800Z:8eba5f9f-2027-4767-982e-febd3310faa7" + "WESTCENTRALUS:20230219T023423Z:ef86c178-5049-4c2b-8ee6-c9c6b82f3972" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:28:00 GMT" + "Sun, 19 Feb 2023 02:34:23 GMT" ], "Content-Length": [ - "747" + "730" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1224,25 +1224,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps9980\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/securityAdminConfigurations/ps9980\",\r\n \"type\": \"Microsoft.Network/networkManagers/securityAdminConfigurations\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"A different description.\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1a3c504c-c6e7-4977-b6e6-567f8660fc71\",\r\n \"applyOnNetworkIntentPolicyBasedServices\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-23T23:27:57.5574981Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-23T23:28:00.3553984Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps8837\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/securityAdminConfigurations/ps8837\",\r\n \"type\": \"Microsoft.Network/networkManagers/securityAdminConfigurations\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"description\": \"A different description.\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d69ab9d7-43a1-4fbe-a39b-a621cfefe56a\",\r\n \"applyOnNetworkIntentPolicyBasedServices\": []\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:34:20.1729717Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:34:23.3179649Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/securityAdminConfigurations/ps9980/ruleCollections/ps6740?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMzk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTI2MS9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM5OTgwL3J1bGVDb2xsZWN0aW9ucy9wczY3NDA/YXBpLXZlcnNpb249MjAyMi0wMS0wMQ==", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/securityAdminConfigurations/ps8837/ruleCollections/ps1080?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzODg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTQ1MC9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM4ODM3L3J1bGVDb2xsZWN0aW9ucy9wczEwODA/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "0f81122d-0120-4922-af28-a0765c6035a4" + "a68ce3f9-c56b-436a-a025-e077cb2ae6c4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -1254,7 +1254,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11995" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1263,19 +1263,19 @@ "Kestrel" ], "x-ms-request-id": [ - "754ec991-0794-4d13-86ee-a4f7345a4738" + "e4800096-20a5-4544-8ee9-dbcda27b3500" ], "x-ms-correlation-request-id": [ - "754ec991-0794-4d13-86ee-a4f7345a4738" + "e4800096-20a5-4544-8ee9-dbcda27b3500" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T232802Z:754ec991-0794-4d13-86ee-a4f7345a4738" + "WESTCENTRALUS:20230219T023424Z:e4800096-20a5-4544-8ee9-dbcda27b3500" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:28:01 GMT" + "Sun, 19 Feb 2023 02:34:24 GMT" ], "Content-Length": [ "270" @@ -1287,25 +1287,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"Resource [/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/securityAdminConfigurations/ps9980/ruleCollections/ps6740] does not exist or has been deleted\",\r\n \"code\": \"NotFound\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"Resource [/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/securityAdminConfigurations/ps8837/ruleCollections/ps1080] does not exist or has been deleted\",\r\n \"code\": \"NotFound\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/securityAdminConfigurations/ps9980/ruleCollections/ps6740?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMzk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTI2MS9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM5OTgwL3J1bGVDb2xsZWN0aW9ucy9wczY3NDA/YXBpLXZlcnNpb249MjAyMi0wMS0wMQ==", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/securityAdminConfigurations/ps8837/ruleCollections/ps1080?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzODg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTQ1MC9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM4ODM3L3J1bGVDb2xsZWN0aW9ucy9wczEwODA/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "0f81122d-0120-4922-af28-a0765c6035a4" + "a68ce3f9-c56b-436a-a025-e077cb2ae6c4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -1317,7 +1317,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11994" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1326,22 +1326,22 @@ "Kestrel" ], "x-ms-request-id": [ - "744e7e61-28bd-4c27-935b-15038b9348a7" + "669f096d-3167-4474-b945-d369e4a9e562" ], "x-ms-correlation-request-id": [ - "744e7e61-28bd-4c27-935b-15038b9348a7" + "669f096d-3167-4474-b945-d369e4a9e562" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T232805Z:744e7e61-28bd-4c27-935b-15038b9348a7" + "WESTCENTRALUS:20230219T023425Z:669f096d-3167-4474-b945-d369e4a9e562" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:28:04 GMT" + "Sun, 19 Feb 2023 02:34:25 GMT" ], "Content-Length": [ - "944" + "927" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1350,25 +1350,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps6740\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/securityAdminConfigurations/ps9980/ruleCollections/ps6740\",\r\n \"type\": \"Microsoft.Network/networkManagers/securityAdminConfigurations/ruleCollections\",\r\n \"etag\": \"\\\"0000e388-0000-3300-0000-632e41020000\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/networkGroups/ps9934\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ccb7e371-5a65-4153-9bf7-732dca1161ef\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-23T23:28:02.570744Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-23T23:28:02.570744Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps1080\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/securityAdminConfigurations/ps8837/ruleCollections/ps1080\",\r\n \"type\": \"Microsoft.Network/networkManagers/securityAdminConfigurations/ruleCollections\",\r\n \"etag\": \"\\\"560083ba-0000-3300-0000-63f18ab10000\\\"\",\r\n \"properties\": {\r\n \"description\": \"\",\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/networkGroups/ps2941\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"94018a34-6a56-4c79-be36-874ae3ec9f74\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:34:25.1743366Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:34:25.1743366Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/securityAdminConfigurations/ps9980/ruleCollections/ps6740?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMzk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTI2MS9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM5OTgwL3J1bGVDb2xsZWN0aW9ucy9wczY3NDA/YXBpLXZlcnNpb249MjAyMi0wMS0wMQ==", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/securityAdminConfigurations/ps8837/ruleCollections/ps1080?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzODg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTQ1MC9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM4ODM3L3J1bGVDb2xsZWN0aW9ucy9wczEwODA/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "d94b6124-e0f0-4caf-a016-62220d0b9934" + "9db8bb28-0061-4cd2-971d-451eb63c4baf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -1380,7 +1380,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1389,22 +1389,22 @@ "Kestrel" ], "x-ms-request-id": [ - "b6999bbc-8cfa-4a90-b0dc-0b7cd9bccc73" + "922b5cb0-58e9-402b-9b67-7932912f90a5" ], "x-ms-correlation-request-id": [ - "b6999bbc-8cfa-4a90-b0dc-0b7cd9bccc73" + "922b5cb0-58e9-402b-9b67-7932912f90a5" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T232805Z:b6999bbc-8cfa-4a90-b0dc-0b7cd9bccc73" + "WESTCENTRALUS:20230219T023426Z:922b5cb0-58e9-402b-9b67-7932912f90a5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:28:05 GMT" + "Sun, 19 Feb 2023 02:34:26 GMT" ], "Content-Length": [ - "944" + "927" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1413,25 +1413,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps6740\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/securityAdminConfigurations/ps9980/ruleCollections/ps6740\",\r\n \"type\": \"Microsoft.Network/networkManagers/securityAdminConfigurations/ruleCollections\",\r\n \"etag\": \"\\\"0000e388-0000-3300-0000-632e41020000\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/networkGroups/ps9934\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ccb7e371-5a65-4153-9bf7-732dca1161ef\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-23T23:28:02.570744Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-23T23:28:02.570744Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps1080\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/securityAdminConfigurations/ps8837/ruleCollections/ps1080\",\r\n \"type\": \"Microsoft.Network/networkManagers/securityAdminConfigurations/ruleCollections\",\r\n \"etag\": \"\\\"560083ba-0000-3300-0000-63f18ab10000\\\"\",\r\n \"properties\": {\r\n \"description\": \"\",\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/networkGroups/ps2941\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"94018a34-6a56-4c79-be36-874ae3ec9f74\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:34:25.1743366Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:34:25.1743366Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/securityAdminConfigurations/ps9980/ruleCollections/ps6740?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMzk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTI2MS9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM5OTgwL3J1bGVDb2xsZWN0aW9ucy9wczY3NDA/YXBpLXZlcnNpb249MjAyMi0wMS0wMQ==", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/securityAdminConfigurations/ps8837/ruleCollections/ps1080?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzODg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTQ1MC9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM4ODM3L3J1bGVDb2xsZWN0aW9ucy9wczEwODA/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "6f758e18-3c48-41ba-bdb8-13367c8a45e1" + "14d42ae1-b893-497c-bb3e-c6a09b592905" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -1452,22 +1452,22 @@ "Kestrel" ], "x-ms-request-id": [ - "8b3f02e8-3ef2-41d2-b1df-2c0e918e0a37" + "2e8fdda5-2c75-4e17-afca-8ad09d1a4c63" ], "x-ms-correlation-request-id": [ - "8b3f02e8-3ef2-41d2-b1df-2c0e918e0a37" + "2e8fdda5-2c75-4e17-afca-8ad09d1a4c63" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T232806Z:8b3f02e8-3ef2-41d2-b1df-2c0e918e0a37" + "WESTCENTRALUS:20230219T023427Z:2e8fdda5-2c75-4e17-afca-8ad09d1a4c63" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:28:05 GMT" + "Sun, 19 Feb 2023 02:34:27 GMT" ], "Content-Length": [ - "944" + "927" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1476,25 +1476,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps6740\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/securityAdminConfigurations/ps9980/ruleCollections/ps6740\",\r\n \"type\": \"Microsoft.Network/networkManagers/securityAdminConfigurations/ruleCollections\",\r\n \"etag\": \"\\\"0000e388-0000-3300-0000-632e41020000\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/networkGroups/ps9934\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ccb7e371-5a65-4153-9bf7-732dca1161ef\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-23T23:28:02.570744Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-23T23:28:02.570744Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps1080\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/securityAdminConfigurations/ps8837/ruleCollections/ps1080\",\r\n \"type\": \"Microsoft.Network/networkManagers/securityAdminConfigurations/ruleCollections\",\r\n \"etag\": \"\\\"560083ba-0000-3300-0000-63f18ab10000\\\"\",\r\n \"properties\": {\r\n \"description\": \"\",\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/networkGroups/ps2941\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"94018a34-6a56-4c79-be36-874ae3ec9f74\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:34:25.1743366Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:34:25.1743366Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/securityAdminConfigurations/ps9980/ruleCollections/ps6740?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMzk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTI2MS9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM5OTgwL3J1bGVDb2xsZWN0aW9ucy9wczY3NDA/YXBpLXZlcnNpb249MjAyMi0wMS0wMQ==", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/securityAdminConfigurations/ps8837/ruleCollections/ps1080?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzODg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTQ1MC9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM4ODM3L3J1bGVDb2xsZWN0aW9ucy9wczEwODA/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "6f758e18-3c48-41ba-bdb8-13367c8a45e1" + "14d42ae1-b893-497c-bb3e-c6a09b592905" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -1515,22 +1515,22 @@ "Kestrel" ], "x-ms-request-id": [ - "0b20521c-86aa-412b-9383-b34d8b39a13f" + "0482cfa6-cc4a-42f8-8530-a810822beabd" ], "x-ms-correlation-request-id": [ - "0b20521c-86aa-412b-9383-b34d8b39a13f" + "0482cfa6-cc4a-42f8-8530-a810822beabd" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T232808Z:0b20521c-86aa-412b-9383-b34d8b39a13f" + "WESTCENTRALUS:20230219T023428Z:0482cfa6-cc4a-42f8-8530-a810822beabd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:28:07 GMT" + "Sun, 19 Feb 2023 02:34:28 GMT" ], "Content-Length": [ - "978" + "961" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1539,25 +1539,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps6740\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/securityAdminConfigurations/ps9980/ruleCollections/ps6740\",\r\n \"type\": \"Microsoft.Network/networkManagers/securityAdminConfigurations/ruleCollections\",\r\n \"etag\": \"\\\"0000e488-0000-3300-0000-632e41070000\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"Sample rule Collection Description\",\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/networkGroups/ps9934\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ccb7e371-5a65-4153-9bf7-732dca1161ef\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-23T23:28:02.570744Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-23T23:28:07.1125092Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps1080\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/securityAdminConfigurations/ps8837/ruleCollections/ps1080\",\r\n \"type\": \"Microsoft.Network/networkManagers/securityAdminConfigurations/ruleCollections\",\r\n \"etag\": \"\\\"560094ba-0000-3300-0000-63f18ab40000\\\"\",\r\n \"properties\": {\r\n \"description\": \"Sample rule Collection Description\",\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/networkGroups/ps2941\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"94018a34-6a56-4c79-be36-874ae3ec9f74\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:34:25.1743366Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:34:28.1566286Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/securityAdminConfigurations/ps9980/ruleCollections/ps6740?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMzk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTI2MS9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM5OTgwL3J1bGVDb2xsZWN0aW9ucy9wczY3NDA/YXBpLXZlcnNpb249MjAyMi0wMS0wMQ==", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/securityAdminConfigurations/ps8837/ruleCollections/ps1080?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzODg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTQ1MC9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM4ODM3L3J1bGVDb2xsZWN0aW9ucy9wczEwODA/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "0f81122d-0120-4922-af28-a0765c6035a4" + "a68ce3f9-c56b-436a-a025-e077cb2ae6c4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1566,7 +1566,7 @@ "254" ] }, - "RequestBody": "{\r\n \"properties\": {\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/networkGroups/ps9934\"\r\n }\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/networkGroups/ps2941\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1575,7 +1575,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1584,22 +1584,22 @@ "Kestrel" ], "x-ms-request-id": [ - "55af7212-b5f4-44a2-8083-9656517cd4c6" + "27638581-466f-43b9-b774-4614d6327937" ], "x-ms-correlation-request-id": [ - "55af7212-b5f4-44a2-8083-9656517cd4c6" + "27638581-466f-43b9-b774-4614d6327937" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T232804Z:55af7212-b5f4-44a2-8083-9656517cd4c6" + "WESTCENTRALUS:20230219T023425Z:27638581-466f-43b9-b774-4614d6327937" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:28:04 GMT" + "Sun, 19 Feb 2023 02:34:25 GMT" ], "Content-Length": [ - "904" + "887" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1608,25 +1608,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps6740\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/securityAdminConfigurations/ps9980/ruleCollections/ps6740\",\r\n \"type\": \"Microsoft.Network/networkManagers/securityAdminConfigurations/ruleCollections\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/networkGroups/ps9934\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ccb7e371-5a65-4153-9bf7-732dca1161ef\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-23T23:28:02.570744Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-23T23:28:02.570744Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps1080\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/securityAdminConfigurations/ps8837/ruleCollections/ps1080\",\r\n \"type\": \"Microsoft.Network/networkManagers/securityAdminConfigurations/ruleCollections\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"description\": \"\",\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/networkGroups/ps2941\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"94018a34-6a56-4c79-be36-874ae3ec9f74\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:34:25.1743366Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:34:25.1743366Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/securityAdminConfigurations/ps9980/ruleCollections/ps6740?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMzk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTI2MS9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM5OTgwL3J1bGVDb2xsZWN0aW9ucy9wczY3NDA/YXBpLXZlcnNpb249MjAyMi0wMS0wMQ==", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/securityAdminConfigurations/ps8837/ruleCollections/ps1080?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzODg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTQ1MC9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM4ODM3L3J1bGVDb2xsZWN0aW9ucy9wczEwODA/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "6f758e18-3c48-41ba-bdb8-13367c8a45e1" + "14d42ae1-b893-497c-bb3e-c6a09b592905" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1635,7 +1635,7 @@ "312" ] }, - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"Sample rule Collection Description\",\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/networkGroups/ps9934\"\r\n }\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"Sample rule Collection Description\",\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/networkGroups/ps2941\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1653,22 +1653,22 @@ "Kestrel" ], "x-ms-request-id": [ - "c910efa4-fc87-489e-9e4c-2793d6d53dac" + "b245a045-c46b-4be4-a5ed-46299267316d" ], "x-ms-correlation-request-id": [ - "c910efa4-fc87-489e-9e4c-2793d6d53dac" + "b245a045-c46b-4be4-a5ed-46299267316d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T232807Z:c910efa4-fc87-489e-9e4c-2793d6d53dac" + "WESTCENTRALUS:20230219T023428Z:b245a045-c46b-4be4-a5ed-46299267316d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:28:06 GMT" + "Sun, 19 Feb 2023 02:34:28 GMT" ], "Content-Length": [ - "938" + "921" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1677,25 +1677,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps6740\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/securityAdminConfigurations/ps9980/ruleCollections/ps6740\",\r\n \"type\": \"Microsoft.Network/networkManagers/securityAdminConfigurations/ruleCollections\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"Sample rule Collection Description\",\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/networkGroups/ps9934\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ccb7e371-5a65-4153-9bf7-732dca1161ef\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-23T23:28:02.570744Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-23T23:28:07.1125092Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps1080\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/securityAdminConfigurations/ps8837/ruleCollections/ps1080\",\r\n \"type\": \"Microsoft.Network/networkManagers/securityAdminConfigurations/ruleCollections\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"description\": \"Sample rule Collection Description\",\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/networkGroups/ps2941\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"94018a34-6a56-4c79-be36-874ae3ec9f74\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:34:25.1743366Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:34:28.1566286Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/securityAdminConfigurations/ps9980/ruleCollections/ps6740/rules/ps1215?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMzk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTI2MS9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM5OTgwL3J1bGVDb2xsZWN0aW9ucy9wczY3NDAvcnVsZXMvcHMxMjE1P2FwaS12ZXJzaW9uPTIwMjItMDEtMDE=", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/securityAdminConfigurations/ps8837/ruleCollections/ps1080/rules/ps209?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzODg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTQ1MC9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM4ODM3L3J1bGVDb2xsZWN0aW9ucy9wczEwODAvcnVsZXMvcHMyMDk/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "39a39ee5-7685-4930-a4f1-3bdc4f7931b4" + "efa6037c-fa2e-4f71-ac7c-931cc1afba7b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -1716,22 +1716,22 @@ "Kestrel" ], "x-ms-request-id": [ - "bd3ba3f7-6f5a-47a9-be50-7a37bc0a3259" + "142014ea-b5ef-4092-915c-3010ffc8202a" ], "x-ms-correlation-request-id": [ - "bd3ba3f7-6f5a-47a9-be50-7a37bc0a3259" + "142014ea-b5ef-4092-915c-3010ffc8202a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T232808Z:bd3ba3f7-6f5a-47a9-be50-7a37bc0a3259" + "WESTCENTRALUS:20230219T023429Z:142014ea-b5ef-4092-915c-3010ffc8202a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:28:08 GMT" + "Sun, 19 Feb 2023 02:34:29 GMT" ], "Content-Length": [ - "283" + "282" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1740,25 +1740,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"Resource [/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/securityAdminConfigurations/ps9980/ruleCollections/ps6740/rules/ps1215] does not exist or has been deleted\",\r\n \"code\": \"NotFound\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"Resource [/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/securityAdminConfigurations/ps8837/ruleCollections/ps1080/rules/ps209] does not exist or has been deleted\",\r\n \"code\": \"NotFound\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/securityAdminConfigurations/ps9980/ruleCollections/ps6740/rules/ps1215?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMzk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTI2MS9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM5OTgwL3J1bGVDb2xsZWN0aW9ucy9wczY3NDAvcnVsZXMvcHMxMjE1P2FwaS12ZXJzaW9uPTIwMjItMDEtMDE=", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/securityAdminConfigurations/ps8837/ruleCollections/ps1080/rules/ps209?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzODg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTQ1MC9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM4ODM3L3J1bGVDb2xsZWN0aW9ucy9wczEwODAvcnVsZXMvcHMyMDk/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "fb77fa02-8459-415c-a9af-81631ab4a628" + "3dabe88b-5ad0-49b3-85ec-9f87fd192de1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -1779,22 +1779,22 @@ "Kestrel" ], "x-ms-request-id": [ - "91c6929a-8b42-4b13-bed9-aba48c4404fa" + "83004a0e-a539-4363-a0f8-fad660b3c9d3" ], "x-ms-correlation-request-id": [ - "91c6929a-8b42-4b13-bed9-aba48c4404fa" + "83004a0e-a539-4363-a0f8-fad660b3c9d3" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T232810Z:91c6929a-8b42-4b13-bed9-aba48c4404fa" + "WESTCENTRALUS:20230219T023431Z:83004a0e-a539-4363-a0f8-fad660b3c9d3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:28:10 GMT" + "Sun, 19 Feb 2023 02:34:31 GMT" ], "Content-Length": [ - "1093" + "1074" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1803,25 +1803,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps1215\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/securityAdminConfigurations/ps9980/ruleCollections/ps6740/rules/ps1215\",\r\n \"type\": \"Microsoft.Network/networkManagers/securityAdminConfigurations/ruleCollections/rules\",\r\n \"etag\": \"\\\"0000e588-0000-3300-0000-632e41090000\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"Description\",\r\n \"flag\": \"\",\r\n \"priority\": 100,\r\n \"protocol\": \"Tcp\",\r\n \"direction\": \"Inbound\",\r\n \"access\": \"Allow\",\r\n \"sources\": [\r\n {\r\n \"addressPrefixType\": \"ServiceTag\",\r\n \"addressPrefix\": \"Internet\"\r\n }\r\n ],\r\n \"destinations\": [\r\n {\r\n \"addressPrefixType\": \"IPPrefix\",\r\n \"addressPrefix\": \"10.0.0.1\"\r\n }\r\n ],\r\n \"sourcePortRanges\": [\r\n \"100\"\r\n ],\r\n \"destinationPortRanges\": [\r\n \"99\"\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4d60794b-7835-4a70-a95c-bc9a4eff2fe3\"\r\n },\r\n \"kind\": \"Custom\",\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-23T23:28:09.3404166Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-23T23:28:09.3404166Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps209\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/securityAdminConfigurations/ps8837/ruleCollections/ps1080/rules/ps209\",\r\n \"type\": \"Microsoft.Network/networkManagers/securityAdminConfigurations/ruleCollections/rules\",\r\n \"etag\": \"\\\"56009cba-0000-3300-0000-63f18ab60000\\\"\",\r\n \"properties\": {\r\n \"description\": \"Description\",\r\n \"flag\": \"\",\r\n \"priority\": 100,\r\n \"protocol\": \"Tcp\",\r\n \"direction\": \"Inbound\",\r\n \"access\": \"Allow\",\r\n \"sources\": [\r\n {\r\n \"addressPrefixType\": \"ServiceTag\",\r\n \"addressPrefix\": \"Internet\"\r\n }\r\n ],\r\n \"destinations\": [\r\n {\r\n \"addressPrefixType\": \"IPPrefix\",\r\n \"addressPrefix\": \"10.0.0.1\"\r\n }\r\n ],\r\n \"sourcePortRanges\": [\r\n \"100\"\r\n ],\r\n \"destinationPortRanges\": [\r\n \"99\"\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8659da9e-b4ea-4f53-8628-05e94f51ec69\"\r\n },\r\n \"kind\": \"Custom\",\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:34:30.3346268Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:34:30.3346268Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/securityAdminConfigurations/ps9980/ruleCollections/ps6740/rules/ps1215?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMzk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTI2MS9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM5OTgwL3J1bGVDb2xsZWN0aW9ucy9wczY3NDAvcnVsZXMvcHMxMjE1P2FwaS12ZXJzaW9uPTIwMjItMDEtMDE=", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/securityAdminConfigurations/ps8837/ruleCollections/ps1080/rules/ps209?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzODg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTQ1MC9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM4ODM3L3J1bGVDb2xsZWN0aW9ucy9wczEwODAvcnVsZXMvcHMyMDk/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "39a39ee5-7685-4930-a4f1-3bdc4f7931b4" + "efa6037c-fa2e-4f71-ac7c-931cc1afba7b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1848,22 +1848,22 @@ "Kestrel" ], "x-ms-request-id": [ - "bc26b67c-f1e5-45a9-9dcd-6de2a78bcc03" + "298c44f6-1955-48dd-b3f0-82d6273aa03e" ], "x-ms-correlation-request-id": [ - "bc26b67c-f1e5-45a9-9dcd-6de2a78bcc03" + "298c44f6-1955-48dd-b3f0-82d6273aa03e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T232810Z:bc26b67c-f1e5-45a9-9dcd-6de2a78bcc03" + "WESTCENTRALUS:20230219T023430Z:298c44f6-1955-48dd-b3f0-82d6273aa03e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:28:09 GMT" + "Sun, 19 Feb 2023 02:34:30 GMT" ], "Content-Length": [ - "1053" + "1034" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1872,25 +1872,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps1215\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/securityAdminConfigurations/ps9980/ruleCollections/ps6740/rules/ps1215\",\r\n \"type\": \"Microsoft.Network/networkManagers/securityAdminConfigurations/ruleCollections/rules\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"Description\",\r\n \"flag\": \"\",\r\n \"priority\": 100,\r\n \"protocol\": \"Tcp\",\r\n \"direction\": \"Inbound\",\r\n \"access\": \"Allow\",\r\n \"sources\": [\r\n {\r\n \"addressPrefixType\": \"ServiceTag\",\r\n \"addressPrefix\": \"Internet\"\r\n }\r\n ],\r\n \"destinations\": [\r\n {\r\n \"addressPrefixType\": \"IPPrefix\",\r\n \"addressPrefix\": \"10.0.0.1\"\r\n }\r\n ],\r\n \"sourcePortRanges\": [\r\n \"100\"\r\n ],\r\n \"destinationPortRanges\": [\r\n \"99\"\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4d60794b-7835-4a70-a95c-bc9a4eff2fe3\"\r\n },\r\n \"kind\": \"Custom\",\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-23T23:28:09.3404166Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-23T23:28:09.3404166Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps209\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/securityAdminConfigurations/ps8837/ruleCollections/ps1080/rules/ps209\",\r\n \"type\": \"Microsoft.Network/networkManagers/securityAdminConfigurations/ruleCollections/rules\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"description\": \"Description\",\r\n \"flag\": \"\",\r\n \"priority\": 100,\r\n \"protocol\": \"Tcp\",\r\n \"direction\": \"Inbound\",\r\n \"access\": \"Allow\",\r\n \"sources\": [\r\n {\r\n \"addressPrefixType\": \"ServiceTag\",\r\n \"addressPrefix\": \"Internet\"\r\n }\r\n ],\r\n \"destinations\": [\r\n {\r\n \"addressPrefixType\": \"IPPrefix\",\r\n \"addressPrefix\": \"10.0.0.1\"\r\n }\r\n ],\r\n \"sourcePortRanges\": [\r\n \"100\"\r\n ],\r\n \"destinationPortRanges\": [\r\n \"99\"\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8659da9e-b4ea-4f53-8628-05e94f51ec69\"\r\n },\r\n \"kind\": \"Custom\",\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:34:30.3346268Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:34:30.3346268Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/securityAdminConfigurations/ps9980/ruleCollections/ps6740/rules/ps1215?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMzk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTI2MS9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM5OTgwL3J1bGVDb2xsZWN0aW9ucy9wczY3NDAvcnVsZXMvcHMxMjE1P2FwaS12ZXJzaW9uPTIwMjItMDEtMDE=", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/securityAdminConfigurations/ps8837/ruleCollections/ps1080/rules/ps209?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzODg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTQ1MC9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM4ODM3L3J1bGVDb2xsZWN0aW9ucy9wczEwODAvcnVsZXMvcHMyMDk/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "b162b19f-16a7-4632-b179-6eaaa4fb63fb" + "453491d1-5e4e-49eb-bad2-e892a557bd2e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1908,7 +1908,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1917,22 +1917,22 @@ "Kestrel" ], "x-ms-request-id": [ - "90347315-4287-43c9-bdd0-54b0f3c2d2bf" + "555cd33f-f451-44d2-a55a-5682353db128" ], "x-ms-correlation-request-id": [ - "90347315-4287-43c9-bdd0-54b0f3c2d2bf" + "555cd33f-f451-44d2-a55a-5682353db128" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T232812Z:90347315-4287-43c9-bdd0-54b0f3c2d2bf" + "WESTUS:20230219T023433Z:555cd33f-f451-44d2-a55a-5682353db128" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:28:12 GMT" + "Sun, 19 Feb 2023 02:34:32 GMT" ], "Content-Length": [ - "1053" + "1034" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1941,25 +1941,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps1215\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/securityAdminConfigurations/ps9980/ruleCollections/ps6740/rules/ps1215\",\r\n \"type\": \"Microsoft.Network/networkManagers/securityAdminConfigurations/ruleCollections/rules\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"Description\",\r\n \"flag\": \"\",\r\n \"priority\": 100,\r\n \"protocol\": \"Tcp\",\r\n \"direction\": \"Inbound\",\r\n \"access\": \"Allow\",\r\n \"sources\": [\r\n {\r\n \"addressPrefixType\": \"ServiceTag\",\r\n \"addressPrefix\": \"Internet\"\r\n }\r\n ],\r\n \"destinations\": [\r\n {\r\n \"addressPrefixType\": \"IPPrefix\",\r\n \"addressPrefix\": \"10.0.0.1\"\r\n }\r\n ],\r\n \"sourcePortRanges\": [\r\n \"100\"\r\n ],\r\n \"destinationPortRanges\": [\r\n \"99\"\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4d60794b-7835-4a70-a95c-bc9a4eff2fe3\"\r\n },\r\n \"kind\": \"Custom\",\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-23T23:28:09.3404166Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-23T23:28:11.7205897Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps209\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/securityAdminConfigurations/ps8837/ruleCollections/ps1080/rules/ps209\",\r\n \"type\": \"Microsoft.Network/networkManagers/securityAdminConfigurations/ruleCollections/rules\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"description\": \"Description\",\r\n \"flag\": \"\",\r\n \"priority\": 100,\r\n \"protocol\": \"Tcp\",\r\n \"direction\": \"Inbound\",\r\n \"access\": \"Allow\",\r\n \"sources\": [\r\n {\r\n \"addressPrefixType\": \"ServiceTag\",\r\n \"addressPrefix\": \"Internet\"\r\n }\r\n ],\r\n \"destinations\": [\r\n {\r\n \"addressPrefixType\": \"IPPrefix\",\r\n \"addressPrefix\": \"10.0.0.1\"\r\n }\r\n ],\r\n \"sourcePortRanges\": [\r\n \"100\"\r\n ],\r\n \"destinationPortRanges\": [\r\n \"99\"\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8659da9e-b4ea-4f53-8628-05e94f51ec69\"\r\n },\r\n \"kind\": \"Custom\",\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:34:30.3346268Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:34:32.6210789Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/commit?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMzk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTI2MS9jb21taXQ/YXBpLXZlcnNpb249MjAyMi0wMS0wMQ==", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/commit?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzODg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTQ1MC9jb21taXQ/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "POST", "RequestHeaders": { "x-ms-client-request-id": [ - "d3ead702-423d-4a99-92cf-c5cc8ade3f46" + "5d8da3cd-66a5-452a-8d6b-dd85f0d49067" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1968,7 +1968,7 @@ "286" ] }, - "RequestBody": "{\r\n \"targetLocations\": [\r\n \"centraluseuap\"\r\n ],\r\n \"configurationIds\": [\r\n \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/securityAdminConfigurations/ps9980\"\r\n ],\r\n \"commitType\": \"SecurityAdmin\"\r\n}", + "RequestBody": "{\r\n \"targetLocations\": [\r\n \"centraluseuap\"\r\n ],\r\n \"configurationIds\": [\r\n \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/securityAdminConfigurations/ps8837\"\r\n ],\r\n \"commitType\": \"SecurityAdmin\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1977,7 +1977,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/operationResults/00000000-0000-0000-0000-000000000000?api-version=2022-01-01" + "https://management.azure.com/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/operationResults/00000000-0000-0000-0000-000000000000?api-version=2022-07-01" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" @@ -1989,22 +1989,22 @@ "Kestrel" ], "x-ms-request-id": [ - "220d78e6-6414-4457-bf8f-78c4c4f95715" + "907bab12-48c8-4c9b-9dc2-69add044a898" ], "x-ms-correlation-request-id": [ - "220d78e6-6414-4457-bf8f-78c4c4f95715" + "907bab12-48c8-4c9b-9dc2-69add044a898" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T232813Z:220d78e6-6414-4457-bf8f-78c4c4f95715" + "WESTUS:20230219T023434Z:907bab12-48c8-4c9b-9dc2-69add044a898" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:28:12 GMT" + "Sun, 19 Feb 2023 02:34:34 GMT" ], "Content-Length": [ - "475" + "607" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2013,25 +2013,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/commit/82bd03a0-b32d-4e76-b66b-86dd65de2482\",\r\n \"type\": \"Microsoft.Network/networkManagers/commit\",\r\n \"configurationIds\": [\r\n \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/securityAdminConfigurations/ps9980\"\r\n ],\r\n \"targetLocations\": [\r\n \"centraluseuap\"\r\n ],\r\n \"commitType\": \"SecurityAdmin\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/commit/efb90e67-dfe0-41fc-b8ee-e6c66dc0b2cf\",\r\n \"configurationIds\": [\r\n \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/securityAdminConfigurations/ps8837\"\r\n ],\r\n \"targetLocations\": [\r\n \"centraluseuap\"\r\n ],\r\n \"commitType\": \"SecurityAdmin\",\r\n \"commitId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/commit/efb90e67-dfe0-41fc-b8ee-e6c66dc0b2cf\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/commit?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMzk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTI2MS9jb21taXQ/YXBpLXZlcnNpb249MjAyMi0wMS0wMQ==", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/commit?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzODg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTQ1MC9jb21taXQ/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "POST", "RequestHeaders": { "x-ms-client-request-id": [ - "b694921a-632d-42d3-b38a-2310bc20bc6b" + "ed1baad1-de05-41ae-8a9e-d7b82fede7c1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2049,7 +2049,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/operationResults/00000000-0000-0000-0000-000000000000?api-version=2022-01-01" + "https://management.azure.com/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/operationResults/00000000-0000-0000-0000-000000000000?api-version=2022-07-01" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" @@ -2061,22 +2061,22 @@ "Kestrel" ], "x-ms-request-id": [ - "bcb35e89-82c6-4c3b-9c24-d868b69c5f8f" + "3b084707-e463-448f-8170-469293b03a7f" ], "x-ms-correlation-request-id": [ - "bcb35e89-82c6-4c3b-9c24-d868b69c5f8f" + "3b084707-e463-448f-8170-469293b03a7f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T232848Z:bcb35e89-82c6-4c3b-9c24-d868b69c5f8f" + "WESTCENTRALUS:20230219T023509Z:3b084707-e463-448f-8170-469293b03a7f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:28:48 GMT" + "Sun, 19 Feb 2023 02:35:09 GMT" ], "Content-Length": [ - "314" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2085,22 +2085,22 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/commit/27337e1c-4ca9-4854-9886-83ba2792c9fc\",\r\n \"type\": \"Microsoft.Network/networkManagers/commit\",\r\n \"configurationIds\": [],\r\n \"targetLocations\": [\r\n \"centraluseuap\"\r\n ],\r\n \"commitType\": \"SecurityAdmin\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/commit/d5591f78-59ea-4ae7-9042-94496ebf68d0\",\r\n \"configurationIds\": [],\r\n \"targetLocations\": [\r\n \"centraluseuap\"\r\n ],\r\n \"commitType\": \"SecurityAdmin\",\r\n \"commitId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/commit/d5591f78-59ea-4ae7-9042-94496ebf68d0\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/operationResults/00000000-0000-0000-0000-000000000000?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMzk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTI2MS9vcGVyYXRpb25SZXN1bHRzLzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMD9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/operationResults/00000000-0000-0000-0000-000000000000?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzODg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTQ1MC9vcGVyYXRpb25SZXN1bHRzLzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMD9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "d3ead702-423d-4a99-92cf-c5cc8ade3f46" + "5d8da3cd-66a5-452a-8d6b-dd85f0d49067" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -2118,22 +2118,22 @@ "Kestrel" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-request-id": [ - "6bfa8fe4-396a-43ac-80d8-9fff8bb3dcf1" + "9d630780-3130-48fb-92d9-6287fc711c27" ], "x-ms-correlation-request-id": [ - "6bfa8fe4-396a-43ac-80d8-9fff8bb3dcf1" + "9d630780-3130-48fb-92d9-6287fc711c27" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T232843Z:6bfa8fe4-396a-43ac-80d8-9fff8bb3dcf1" + "WESTUS:20230219T023505Z:9d630780-3130-48fb-92d9-6287fc711c27" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:28:43 GMT" + "Sun, 19 Feb 2023 02:35:04 GMT" ], "Expires": [ "-1" @@ -2143,18 +2143,18 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/operationResults/00000000-0000-0000-0000-000000000000?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMzk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTI2MS9vcGVyYXRpb25SZXN1bHRzLzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMD9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/operationResults/00000000-0000-0000-0000-000000000000?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzODg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTQ1MC9vcGVyYXRpb25SZXN1bHRzLzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMD9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "d3ead702-423d-4a99-92cf-c5cc8ade3f46" + "5d8da3cd-66a5-452a-8d6b-dd85f0d49067" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -2172,22 +2172,22 @@ "Kestrel" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-request-id": [ - "f22b4484-015f-4fde-9f71-b8f549421f51" + "32c83d3a-1ff8-4704-b107-5c35350ec205" ], "x-ms-correlation-request-id": [ - "f22b4484-015f-4fde-9f71-b8f549421f51" + "32c83d3a-1ff8-4704-b107-5c35350ec205" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T232843Z:f22b4484-015f-4fde-9f71-b8f549421f51" + "WESTUS:20230219T023505Z:32c83d3a-1ff8-4704-b107-5c35350ec205" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:28:43 GMT" + "Sun, 19 Feb 2023 02:35:04 GMT" ], "Expires": [ "-1" @@ -2197,18 +2197,18 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/operationResults/00000000-0000-0000-0000-000000000000?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMzk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTI2MS9vcGVyYXRpb25SZXN1bHRzLzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMD9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/operationResults/00000000-0000-0000-0000-000000000000?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzODg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTQ1MC9vcGVyYXRpb25SZXN1bHRzLzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMD9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "b694921a-632d-42d3-b38a-2310bc20bc6b" + "ed1baad1-de05-41ae-8a9e-d7b82fede7c1" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -2229,19 +2229,19 @@ "11999" ], "x-ms-request-id": [ - "3a56ac45-17ad-45f5-bc2b-63fde5bff397" + "489d6332-c4f3-4d5d-af7a-41a573f09913" ], "x-ms-correlation-request-id": [ - "3a56ac45-17ad-45f5-bc2b-63fde5bff397" + "489d6332-c4f3-4d5d-af7a-41a573f09913" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T232918Z:3a56ac45-17ad-45f5-bc2b-63fde5bff397" + "WESTCENTRALUS:20230219T023540Z:489d6332-c4f3-4d5d-af7a-41a573f09913" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:29:18 GMT" + "Sun, 19 Feb 2023 02:35:40 GMT" ], "Expires": [ "-1" @@ -2251,18 +2251,18 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/operationResults/00000000-0000-0000-0000-000000000000?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMzk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTI2MS9vcGVyYXRpb25SZXN1bHRzLzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMD9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/operationResults/00000000-0000-0000-0000-000000000000?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzODg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTQ1MC9vcGVyYXRpb25SZXN1bHRzLzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMD9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "b694921a-632d-42d3-b38a-2310bc20bc6b" + "ed1baad1-de05-41ae-8a9e-d7b82fede7c1" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -2283,19 +2283,19 @@ "11998" ], "x-ms-request-id": [ - "979f6aac-095b-4848-9b3c-d816d25ec51a" + "bcde6cc3-3c43-46bd-b34c-d7cc98051e58" ], "x-ms-correlation-request-id": [ - "979f6aac-095b-4848-9b3c-d816d25ec51a" + "bcde6cc3-3c43-46bd-b34c-d7cc98051e58" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T232919Z:979f6aac-095b-4848-9b3c-d816d25ec51a" + "WESTCENTRALUS:20230219T023540Z:bcde6cc3-3c43-46bd-b34c-d7cc98051e58" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:29:18 GMT" + "Sun, 19 Feb 2023 02:35:40 GMT" ], "Expires": [ "-1" @@ -2305,21 +2305,21 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/listDeploymentStatus?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMzk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTI2MS9saXN0RGVwbG95bWVudFN0YXR1cz9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/listDeploymentStatus?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzODg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTQ1MC9saXN0RGVwbG95bWVudFN0YXR1cz9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "POST", "RequestHeaders": { "x-ms-client-request-id": [ - "49926c71-df83-4308-b303-6e89b9c1a412" + "bc0e31c2-da2b-49ad-8083-c74b6a2de3df" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2346,19 +2346,19 @@ "Kestrel" ], "x-ms-request-id": [ - "1e56844b-0e02-46ac-9ac0-227c9cb867ca" + "b800703e-37fe-4d24-b459-486e65c70da5" ], "x-ms-correlation-request-id": [ - "1e56844b-0e02-46ac-9ac0-227c9cb867ca" + "b800703e-37fe-4d24-b459-486e65c70da5" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T232844Z:1e56844b-0e02-46ac-9ac0-227c9cb867ca" + "WESTCENTRALUS:20230219T023506Z:b800703e-37fe-4d24-b459-486e65c70da5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:28:44 GMT" + "Sun, 19 Feb 2023 02:35:06 GMT" ], "Content-Length": [ "361" @@ -2370,25 +2370,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"skipToken\": \"\",\r\n \"value\": [\r\n {\r\n \"deploymentType\": \"SecurityAdmin\",\r\n \"configurationIds\": [\r\n \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/securityAdminConfigurations/ps9980\"\r\n ],\r\n \"region\": \"centraluseuap\",\r\n \"deploymentStatus\": \"Deployed\",\r\n \"errorMessage\": \"\",\r\n \"commitTime\": \"2022-09-23T23:28:12Z\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"skipToken\": \"\",\r\n \"value\": [\r\n {\r\n \"deploymentType\": \"SecurityAdmin\",\r\n \"configurationIds\": [\r\n \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/securityAdminConfigurations/ps8837\"\r\n ],\r\n \"region\": \"centraluseuap\",\r\n \"deploymentStatus\": \"Deployed\",\r\n \"errorMessage\": \"\",\r\n \"commitTime\": \"2023-02-19T02:34:34Z\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/listActiveSecurityAdminRules?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMzk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTI2MS9saXN0QWN0aXZlU2VjdXJpdHlBZG1pblJ1bGVzP2FwaS12ZXJzaW9uPTIwMjItMDEtMDE=", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/listActiveSecurityAdminRules?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzODg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTQ1MC9saXN0QWN0aXZlU2VjdXJpdHlBZG1pblJ1bGVzP2FwaS12ZXJzaW9uPTIwMjItMDctMDE=", "RequestMethod": "POST", "RequestHeaders": { "x-ms-client-request-id": [ - "bdbecf46-49c7-4abd-9ad7-69a111db15fa" + "107c2be2-b1e3-41fa-9aaa-204c14a60f98" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2405,8 +2405,8 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2415,22 +2415,22 @@ "Kestrel" ], "x-ms-request-id": [ - "347084eb-7959-4adb-95ec-9afffbd140b6" + "8f809c3f-7129-4383-9b67-e1713feaa4c4" ], "x-ms-correlation-request-id": [ - "347084eb-7959-4adb-95ec-9afffbd140b6" + "8f809c3f-7129-4383-9b67-e1713feaa4c4" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T232846Z:347084eb-7959-4adb-95ec-9afffbd140b6" + "WESTCENTRALUS:20230219T023507Z:8f809c3f-7129-4383-9b67-e1713feaa4c4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:28:45 GMT" + "Sun, 19 Feb 2023 02:35:07 GMT" ], "Content-Length": [ - "1492" + "1396" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2439,25 +2439,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"skipToken\": \"\",\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/securityAdminConfigurations/ps9980/ruleCollections/ps6740/rules/ps1215\",\r\n \"region\": \"centraluseuap\",\r\n \"configurationDisplayName\": \"\",\r\n \"configurationDescription\": \"A different description.\",\r\n \"ruleCollectionDisplayName\": \"\",\r\n \"ruleCollectionDescription\": \"Sample rule Collection Description\",\r\n \"kind\": \"Custom\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"Description\",\r\n \"flag\": \"\",\r\n \"priority\": 100,\r\n \"protocol\": \"Tcp\",\r\n \"direction\": \"Inbound\",\r\n \"access\": \"Allow\",\r\n \"sources\": [\r\n {\r\n \"addressPrefixType\": \"ServiceTag\",\r\n \"addressPrefix\": \"Internet\"\r\n }\r\n ],\r\n \"destinations\": [\r\n {\r\n \"addressPrefixType\": \"IPPrefix\",\r\n \"addressPrefix\": \"10.0.0.1\"\r\n }\r\n ],\r\n \"sourcePortRanges\": [\r\n \"100\"\r\n ],\r\n \"destinationPortRanges\": [\r\n \"99\"\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4d60794b-7835-4a70-a95c-bc9a4eff2fe3\"\r\n },\r\n \"ruleCollectionAppliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/networkGroups/ps9934\"\r\n }\r\n ],\r\n \"ruleGroups\": [\r\n {\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/networkGroups/ps9934\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"SampleConfigDESCRIption\",\r\n \"groupMembers\": [],\r\n \"conditionalMembership\": \"\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"memberType\": \"VirtualNetwork\",\r\n \"resourceGuid\": \"0f48d1b5-2283-4573-9ecd-41d5e3a9710b\"\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"skipToken\": \"\",\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/securityAdminConfigurations/ps8837/ruleCollections/ps1080/rules/ps209\",\r\n \"region\": \"centraluseuap\",\r\n \"configurationDescription\": \"A different description.\",\r\n \"ruleCollectionDescription\": \"Sample rule Collection Description\",\r\n \"kind\": \"Custom\",\r\n \"properties\": {\r\n \"description\": \"Description\",\r\n \"flag\": \"\",\r\n \"priority\": 100,\r\n \"protocol\": \"Tcp\",\r\n \"direction\": \"Inbound\",\r\n \"access\": \"Allow\",\r\n \"sources\": [\r\n {\r\n \"addressPrefixType\": \"ServiceTag\",\r\n \"addressPrefix\": \"Internet\"\r\n }\r\n ],\r\n \"destinations\": [\r\n {\r\n \"addressPrefixType\": \"IPPrefix\",\r\n \"addressPrefix\": \"10.0.0.1\"\r\n }\r\n ],\r\n \"sourcePortRanges\": [\r\n \"100\"\r\n ],\r\n \"destinationPortRanges\": [\r\n \"99\"\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8659da9e-b4ea-4f53-8628-05e94f51ec69\"\r\n },\r\n \"ruleCollectionAppliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/networkGroups/ps2941\"\r\n }\r\n ],\r\n \"ruleGroups\": [\r\n {\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/networkGroups/ps2941\",\r\n \"properties\": {\r\n \"description\": \"SampleConfigDESCRIption\",\r\n \"groupMembers\": [],\r\n \"conditionalMembership\": \"\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"memberType\": \"VirtualNetwork\",\r\n \"resourceGuid\": \"d4078161-ad44-479d-b0d3-8f09d4cb32bd\"\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/virtualNetworks/powerShellTestVnet/listNetworkManagerEffectiveSecurityAdminRules?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL2phcmVkZ29ydGh5LVBvd2VyU2hlbGxUZXN0UmVzb3VyY2VzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvcG93ZXJTaGVsbFRlc3RWbmV0L2xpc3ROZXR3b3JrTWFuYWdlckVmZmVjdGl2ZVNlY3VyaXR5QWRtaW5SdWxlcz9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/virtualNetworks/SwaggerStackVnet/listNetworkManagerEffectiveSecurityAdminRules?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL1N3YWdnZXJTdGFja1JHL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvU3dhZ2dlclN0YWNrVm5ldC9saXN0TmV0d29ya01hbmFnZXJFZmZlY3RpdmVTZWN1cml0eUFkbWluUnVsZXM/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "POST", "RequestHeaders": { "x-ms-client-request-id": [ - "fe4cd3a5-a966-464b-af68-e2b0fd4acec7" + "af680c06-c202-47ad-8363-a41ba443bbd8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2474,8 +2474,8 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2484,22 +2484,22 @@ "Kestrel" ], "x-ms-request-id": [ - "b1a9a367-4241-4a16-a6df-ce49367ea328" + "98f1aead-1d27-47c9-8108-c04e9a996318" ], "x-ms-correlation-request-id": [ - "b1a9a367-4241-4a16-a6df-ce49367ea328" + "98f1aead-1d27-47c9-8108-c04e9a996318" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T232847Z:b1a9a367-4241-4a16-a6df-ce49367ea328" + "WESTCENTRALUS:20230219T023508Z:98f1aead-1d27-47c9-8108-c04e9a996318" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:28:46 GMT" + "Sun, 19 Feb 2023 02:35:08 GMT" ], "Content-Length": [ - "5650" + "1369" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2508,25 +2508,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"skipToken\": \"\",\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/AnmInfraControlNM/providers/Microsoft.Network/networkManagers/AnmEndToEndControlNM/securityAdminConfigurations/DefaultSecurity/ruleCollections/DefaultSecurity/rules/AllowsRdpFromSAW\",\r\n \"configurationDisplayName\": \"\",\r\n \"configurationDescription\": \"\",\r\n \"ruleCollectionDisplayName\": \"\",\r\n \"ruleCollectionDescription\": \"\",\r\n \"kind\": \"Custom\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"flag\": \"\",\r\n \"priority\": 100,\r\n \"protocol\": \"Tcp\",\r\n \"direction\": \"Inbound\",\r\n \"access\": \"Allow\",\r\n \"sources\": [\r\n {\r\n \"addressPrefixType\": \"ServiceTag\",\r\n \"addressPrefix\": \"CorpNetSAW\"\r\n }\r\n ],\r\n \"destinations\": [],\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [\r\n \"3389\"\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"daf966a1-513a-409e-9cdb-0d9d43c55c16\"\r\n },\r\n \"ruleCollectionAppliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/AnmInfraControlNM/providers/Microsoft.Network/networkManagers/AnmEndToEndControlNM/networkGroups/AllVnets\"\r\n }\r\n ],\r\n \"ruleGroups\": [\r\n {\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/AnmInfraControlNM/providers/Microsoft.Network/networkManagers/AnmEndToEndControlNM/networkGroups/AllVnets\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"groupMembers\": [],\r\n \"conditionalMembership\": \"\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"memberType\": \"VirtualNetwork\",\r\n \"resourceGuid\": \"4d269a60-0e3a-4f9a-92f9-f3b068310024\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/AnmInfraControlNM/providers/Microsoft.Network/networkManagers/AnmEndToEndControlNM/securityAdminConfigurations/DefaultSecurity/ruleCollections/DefaultSecurity/rules/AllowSshFromSAW\",\r\n \"configurationDisplayName\": \"\",\r\n \"configurationDescription\": \"\",\r\n \"ruleCollectionDisplayName\": \"\",\r\n \"ruleCollectionDescription\": \"\",\r\n \"kind\": \"Custom\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"flag\": \"\",\r\n \"priority\": 101,\r\n \"protocol\": \"Tcp\",\r\n \"direction\": \"Inbound\",\r\n \"access\": \"Allow\",\r\n \"sources\": [\r\n {\r\n \"addressPrefixType\": \"ServiceTag\",\r\n \"addressPrefix\": \"CorpNetSAW\"\r\n }\r\n ],\r\n \"destinations\": [],\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [\r\n \"22\"\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ad969767-886e-492c-a457-d206c9c1a284\"\r\n },\r\n \"ruleCollectionAppliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/AnmInfraControlNM/providers/Microsoft.Network/networkManagers/AnmEndToEndControlNM/networkGroups/AllVnets\"\r\n }\r\n ],\r\n \"ruleGroups\": [\r\n {\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/AnmInfraControlNM/providers/Microsoft.Network/networkManagers/AnmEndToEndControlNM/networkGroups/AllVnets\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"groupMembers\": [],\r\n \"conditionalMembership\": \"\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"memberType\": \"VirtualNetwork\",\r\n \"resourceGuid\": \"4d269a60-0e3a-4f9a-92f9-f3b068310024\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/AnmInfraControlNM/providers/Microsoft.Network/networkManagers/AnmEndToEndControlNM/securityAdminConfigurations/DefaultSecurity/ruleCollections/DefaultSecurity/rules/BlockInternet\",\r\n \"configurationDisplayName\": \"\",\r\n \"configurationDescription\": \"\",\r\n \"ruleCollectionDisplayName\": \"\",\r\n \"ruleCollectionDescription\": \"\",\r\n \"kind\": \"Custom\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"flag\": \"\",\r\n \"priority\": 4000,\r\n \"protocol\": \"Any\",\r\n \"direction\": \"Inbound\",\r\n \"access\": \"Deny\",\r\n \"sources\": [\r\n {\r\n \"addressPrefixType\": \"ServiceTag\",\r\n \"addressPrefix\": \"Internet\"\r\n }\r\n ],\r\n \"destinations\": [],\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [\r\n \"0-65535\"\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"de229720-e1a3-4b88-819e-715870e0b460\"\r\n },\r\n \"ruleCollectionAppliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/AnmInfraControlNM/providers/Microsoft.Network/networkManagers/AnmEndToEndControlNM/networkGroups/AllVnets\"\r\n }\r\n ],\r\n \"ruleGroups\": [\r\n {\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/AnmInfraControlNM/providers/Microsoft.Network/networkManagers/AnmEndToEndControlNM/networkGroups/AllVnets\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"groupMembers\": [],\r\n \"conditionalMembership\": \"\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"memberType\": \"VirtualNetwork\",\r\n \"resourceGuid\": \"4d269a60-0e3a-4f9a-92f9-f3b068310024\"\r\n }\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/securityAdminConfigurations/ps9980/ruleCollections/ps6740/rules/ps1215\",\r\n \"configurationDisplayName\": \"\",\r\n \"configurationDescription\": \"A different description.\",\r\n \"ruleCollectionDisplayName\": \"\",\r\n \"ruleCollectionDescription\": \"Sample rule Collection Description\",\r\n \"kind\": \"Custom\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"Description\",\r\n \"flag\": \"\",\r\n \"priority\": 100,\r\n \"protocol\": \"Tcp\",\r\n \"direction\": \"Inbound\",\r\n \"access\": \"Allow\",\r\n \"sources\": [\r\n {\r\n \"addressPrefixType\": \"ServiceTag\",\r\n \"addressPrefix\": \"Internet\"\r\n }\r\n ],\r\n \"destinations\": [\r\n {\r\n \"addressPrefixType\": \"IPPrefix\",\r\n \"addressPrefix\": \"10.0.0.1\"\r\n }\r\n ],\r\n \"sourcePortRanges\": [\r\n \"100\"\r\n ],\r\n \"destinationPortRanges\": [\r\n \"99\"\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4d60794b-7835-4a70-a95c-bc9a4eff2fe3\"\r\n },\r\n \"ruleCollectionAppliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/networkGroups/ps9934\"\r\n }\r\n ],\r\n \"ruleGroups\": [\r\n {\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/networkGroups/ps9934\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"SampleConfigDESCRIption\",\r\n \"groupMembers\": [],\r\n \"conditionalMembership\": \"\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"memberType\": \"VirtualNetwork\",\r\n \"resourceGuid\": \"0f48d1b5-2283-4573-9ecd-41d5e3a9710b\"\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"skipToken\": \"\",\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/securityAdminConfigurations/ps8837/ruleCollections/ps1080/rules/ps209\",\r\n \"configurationDescription\": \"A different description.\",\r\n \"ruleCollectionDescription\": \"Sample rule Collection Description\",\r\n \"kind\": \"Custom\",\r\n \"properties\": {\r\n \"description\": \"Description\",\r\n \"flag\": \"\",\r\n \"priority\": 0,\r\n \"protocol\": \"Tcp\",\r\n \"direction\": \"Inbound\",\r\n \"access\": \"Allow\",\r\n \"sources\": [\r\n {\r\n \"addressPrefixType\": \"ServiceTag\",\r\n \"addressPrefix\": \"Internet\"\r\n }\r\n ],\r\n \"destinations\": [\r\n {\r\n \"addressPrefixType\": \"IPPrefix\",\r\n \"addressPrefix\": \"10.0.0.1\"\r\n }\r\n ],\r\n \"sourcePortRanges\": [\r\n \"100\"\r\n ],\r\n \"destinationPortRanges\": [\r\n \"99\"\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8659da9e-b4ea-4f53-8628-05e94f51ec69\"\r\n },\r\n \"ruleCollectionAppliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/networkGroups/ps2941\"\r\n }\r\n ],\r\n \"ruleGroups\": [\r\n {\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/networkGroups/ps2941\",\r\n \"properties\": {\r\n \"description\": \"SampleConfigDESCRIption\",\r\n \"groupMembers\": [],\r\n \"conditionalMembership\": \"\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"memberType\": \"VirtualNetwork\",\r\n \"resourceGuid\": \"d4078161-ad44-479d-b0d3-8f09d4cb32bd\"\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/securityAdminConfigurations/ps9980/ruleCollections/ps6740/rules/ps1215?force=true&api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMzk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTI2MS9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM5OTgwL3J1bGVDb2xsZWN0aW9ucy9wczY3NDAvcnVsZXMvcHMxMjE1P2ZvcmNlPXRydWUmYXBpLXZlcnNpb249MjAyMi0wMS0wMQ==", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/securityAdminConfigurations/ps8837/ruleCollections/ps1080/rules/ps209?force=true&api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzODg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTQ1MC9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM4ODM3L3J1bGVDb2xsZWN0aW9ucy9wczEwODAvcnVsZXMvcHMyMDk/Zm9yY2U9dHJ1ZSZhcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "671f7a3a-99e4-4fd8-8ea9-ef6f6958fe9a" + "b2236829-a495-48ad-aed2-00cd8502d1ba" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -2547,19 +2547,19 @@ "14999" ], "x-ms-request-id": [ - "0165ce5d-987d-4a73-8122-91d9e1a54e85" + "8f912b08-1f88-44a2-be71-d06757676b6e" ], "x-ms-correlation-request-id": [ - "0165ce5d-987d-4a73-8122-91d9e1a54e85" + "8f912b08-1f88-44a2-be71-d06757676b6e" ], "x-ms-routing-request-id": [ - "WESTUS:20220923T232920Z:0165ce5d-987d-4a73-8122-91d9e1a54e85" + "WESTCENTRALUS:20230219T023541Z:8f912b08-1f88-44a2-be71-d06757676b6e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:29:19 GMT" + "Sun, 19 Feb 2023 02:35:40 GMT" ], "Expires": [ "-1" @@ -2572,21 +2572,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/securityAdminConfigurations/ps9980/ruleCollections/ps6740?force=true&api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMzk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTI2MS9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM5OTgwL3J1bGVDb2xsZWN0aW9ucy9wczY3NDA/Zm9yY2U9dHJ1ZSZhcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/securityAdminConfigurations/ps8837/ruleCollections/ps1080?force=true&api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzODg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTQ1MC9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM4ODM3L3J1bGVDb2xsZWN0aW9ucy9wczEwODA/Zm9yY2U9dHJ1ZSZhcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "81da7daf-a70c-4d54-8267-41ac9b13829c" + "13ae51ad-32f2-4d63-ac39-883085fb90d0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -2607,19 +2607,19 @@ "14999" ], "x-ms-request-id": [ - "ef4b3ad7-6525-4a20-b9be-404efb634606" + "68e89a2a-aa46-47b2-8373-2299224378bf" ], "x-ms-correlation-request-id": [ - "ef4b3ad7-6525-4a20-b9be-404efb634606" + "68e89a2a-aa46-47b2-8373-2299224378bf" ], "x-ms-routing-request-id": [ - "WESTUS:20220923T232921Z:ef4b3ad7-6525-4a20-b9be-404efb634606" + "WESTCENTRALUS:20230219T023543Z:68e89a2a-aa46-47b2-8373-2299224378bf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:29:21 GMT" + "Sun, 19 Feb 2023 02:35:42 GMT" ], "Expires": [ "-1" @@ -2632,21 +2632,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/securityAdminConfigurations/ps9980?force=true&api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMzk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTI2MS9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM5OTgwP2ZvcmNlPXRydWUmYXBpLXZlcnNpb249MjAyMi0wMS0wMQ==", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/securityAdminConfigurations/ps8837?force=true&api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzODg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTQ1MC9zZWN1cml0eUFkbWluQ29uZmlndXJhdGlvbnMvcHM4ODM3P2ZvcmNlPXRydWUmYXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "d0b9f88c-b295-44b2-8b11-30ffa1673902" + "b03517f1-1f38-473a-adb7-4a394ce9647a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -2667,19 +2667,19 @@ "14999" ], "x-ms-request-id": [ - "1bf7cd70-04d6-4ec7-a85c-ceac41ba7a0e" + "2117664b-d8ac-4d99-9e63-a1d76e6da1b7" ], "x-ms-correlation-request-id": [ - "1bf7cd70-04d6-4ec7-a85c-ceac41ba7a0e" + "2117664b-d8ac-4d99-9e63-a1d76e6da1b7" ], "x-ms-routing-request-id": [ - "WESTUS:20220923T232922Z:1bf7cd70-04d6-4ec7-a85c-ceac41ba7a0e" + "WESTCENTRALUS:20230219T023544Z:2117664b-d8ac-4d99-9e63-a1d76e6da1b7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:29:22 GMT" + "Sun, 19 Feb 2023 02:35:44 GMT" ], "Expires": [ "-1" @@ -2692,21 +2692,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/networkGroups/ps9934/staticMembers/ps8656?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMzk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTI2MS9uZXR3b3JrR3JvdXBzL3BzOTkzNC9zdGF0aWNNZW1iZXJzL3BzODY1Nj9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/networkGroups/ps2941/staticMembers/ps5944?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzODg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTQ1MC9uZXR3b3JrR3JvdXBzL3BzMjk0MS9zdGF0aWNNZW1iZXJzL3BzNTk0ND9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "abd18db1-e95a-4e1e-a3b2-6a48a0e5f05a" + "d7c242e6-28b1-4d59-bd25-5aa7a007c564" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -2727,19 +2727,19 @@ "14999" ], "x-ms-request-id": [ - "c847f5b6-8feb-4b93-9e16-d77a0ea082c1" + "7a6e3fea-b6bd-4294-b261-818b336286e3" ], "x-ms-correlation-request-id": [ - "c847f5b6-8feb-4b93-9e16-d77a0ea082c1" + "7a6e3fea-b6bd-4294-b261-818b336286e3" ], "x-ms-routing-request-id": [ - "WESTUS:20220923T232923Z:c847f5b6-8feb-4b93-9e16-d77a0ea082c1" + "WESTCENTRALUS:20230219T023545Z:7a6e3fea-b6bd-4294-b261-818b336286e3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:29:22 GMT" + "Sun, 19 Feb 2023 02:35:44 GMT" ], "Expires": [ "-1" @@ -2752,21 +2752,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261/networkGroups/ps9934?force=false&api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMzk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTI2MS9uZXR3b3JrR3JvdXBzL3BzOTkzND9mb3JjZT1mYWxzZSZhcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450/networkGroups/ps2941?force=false&api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzODg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTQ1MC9uZXR3b3JrR3JvdXBzL3BzMjk0MT9mb3JjZT1mYWxzZSZhcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "ca3dc905-7ada-46ae-b42f-e4f589a9029b" + "22157477-7843-46ca-b313-2866fe15bcd3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -2787,19 +2787,19 @@ "14999" ], "x-ms-request-id": [ - "698cd4f6-9ff7-4339-9872-6bfb1bc3f8e0" + "47e66017-deef-4da4-a894-79c7b6dabb64" ], "x-ms-correlation-request-id": [ - "698cd4f6-9ff7-4339-9872-6bfb1bc3f8e0" + "47e66017-deef-4da4-a894-79c7b6dabb64" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T232924Z:698cd4f6-9ff7-4339-9872-6bfb1bc3f8e0" + "WESTCENTRALUS:20230219T023546Z:47e66017-deef-4da4-a894-79c7b6dabb64" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:29:24 GMT" + "Sun, 19 Feb 2023 02:35:46 GMT" ], "Expires": [ "-1" @@ -2812,21 +2812,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps3945/providers/Microsoft.Network/networkManagers/ps1261?force=false&api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMzk0NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTI2MT9mb3JjZT1mYWxzZSZhcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps8841/providers/Microsoft.Network/networkManagers/ps1450?force=false&api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzODg0MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMTQ1MD9mb3JjZT1mYWxzZSZhcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "eae728ce-85a5-4048-9b49-a426edb4fb6a" + "eea85c14-5d26-4b30-be5e-12ad37086e58" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -2847,19 +2847,19 @@ "14999" ], "x-ms-request-id": [ - "ee30a93f-e538-46be-8b82-be50616ccdec" + "18441d7f-03af-402b-ba14-e8de094cd95d" ], "x-ms-correlation-request-id": [ - "ee30a93f-e538-46be-8b82-be50616ccdec" + "18441d7f-03af-402b-ba14-e8de094cd95d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T232927Z:ee30a93f-e538-46be-8b82-be50616ccdec" + "WESTCENTRALUS:20230219T023549Z:18441d7f-03af-402b-ba14-e8de094cd95d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:29:27 GMT" + "Sun, 19 Feb 2023 02:35:48 GMT" ], "Expires": [ "-1" @@ -2872,21 +2872,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourcegroups/ps3945?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlZ3JvdXBzL3BzMzk0NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourcegroups/ps8841?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlZ3JvdXBzL3BzODg0MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "bd557b1c-67c7-4d9a-8038-5214d02fe1e4" + "717330f7-2036-400c-8f37-21e3a5023ef6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.61" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, "RequestBody": "", @@ -2898,7 +2898,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM5NDUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4NDEtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2907,13 +2907,13 @@ "14999" ], "x-ms-request-id": [ - "d95cec26-4e12-47f2-85b7-46da883b88fd" + "9d412b31-8cf7-473b-bcd3-e2af0cfc1f70" ], "x-ms-correlation-request-id": [ - "d95cec26-4e12-47f2-85b7-46da883b88fd" + "9d412b31-8cf7-473b-bcd3-e2af0cfc1f70" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T232928Z:d95cec26-4e12-47f2-85b7-46da883b88fd" + "WESTUS:20230219T023553Z:9d412b31-8cf7-473b-bcd3-e2af0cfc1f70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2922,7 +2922,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:29:28 GMT" + "Sun, 19 Feb 2023 02:35:53 GMT" ], "Expires": [ "-1" @@ -2935,15 +2935,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM5NDUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNU5EVXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4NDEtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNE5ERXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.61" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, "RequestBody": "", @@ -2958,13 +2958,13 @@ "11999" ], "x-ms-request-id": [ - "6862504e-3d65-48fd-bb1b-39b31abfd0f0" + "200205ee-a7c5-47da-8381-4423f95cb830" ], "x-ms-correlation-request-id": [ - "6862504e-3d65-48fd-bb1b-39b31abfd0f0" + "200205ee-a7c5-47da-8381-4423f95cb830" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T232944Z:6862504e-3d65-48fd-bb1b-39b31abfd0f0" + "WESTUS:20230219T023608Z:200205ee-a7c5-47da-8381-4423f95cb830" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2973,7 +2973,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:29:43 GMT" + "Sun, 19 Feb 2023 02:36:08 GMT" ], "Expires": [ "-1" @@ -2986,15 +2986,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM5NDUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNNU5EVXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg4NDEtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNE5ERXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.61" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, "RequestBody": "", @@ -3009,13 +3009,13 @@ "11998" ], "x-ms-request-id": [ - "5afbdf82-3305-4e4c-b8eb-a2be706f869c" + "7aba6ee6-e365-4bb0-83d8-532b9d3ee995" ], "x-ms-correlation-request-id": [ - "5afbdf82-3305-4e4c-b8eb-a2be706f869c" + "7aba6ee6-e365-4bb0-83d8-532b9d3ee995" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T232944Z:5afbdf82-3305-4e4c-b8eb-a2be706f869c" + "WESTUS:20230219T023609Z:7aba6ee6-e365-4bb0-83d8-532b9d3ee995" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3024,7 +3024,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:29:43 GMT" + "Sun, 19 Feb 2023 02:36:08 GMT" ], "Expires": [ "-1" @@ -3039,16 +3039,16 @@ ], "Names": { "Test-NetworkManagerSecurityAdminRuleCRUD": [ - "ps3945", - "ps1261", - "ps9934", - "ps9980", - "ps8656", - "ps6740", - "ps1215" + "ps8841", + "ps1450", + "ps2941", + "ps8837", + "ps5944", + "ps1080", + "ps209" ] }, "Variables": { - "SubscriptionId": "0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884" + "SubscriptionId": "08615b4b-bc9c-4a70-be1b-2ea10bc97b52" } } \ No newline at end of file diff --git a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkManagerTests/NetworkManagerSubcriptionConnectionCRUD.json b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkManagerTests/NetworkManagerSubcriptionConnectionCRUD.json index c001ca2adea4..d16a65fe40d3 100644 --- a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkManagerTests/NetworkManagerSubcriptionConnectionCRUD.json +++ b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkManagerTests/NetworkManagerSubcriptionConnectionCRUD.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/providers/Microsoft.Network/networkManagerConnections/ps9174?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrTWFuYWdlckNvbm5lY3Rpb25zL3BzOTE3ND9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/providers/Microsoft.Network/networkManagerConnections/ps7306?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrTWFuYWdlckNvbm5lY3Rpb25zL3BzNzMwNj9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "ece1897d-a778-4a1a-9d93-4a2c2b9f3108" + "c8959e3b-2cc7-4ff8-b1e7-22fefaec96d6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -36,19 +36,19 @@ "Kestrel" ], "x-ms-request-id": [ - "d856312f-9692-45e2-9232-af486e6ddb3f" + "0b2c483a-926c-4abf-8ae5-3d4cf5b9504f" ], "x-ms-correlation-request-id": [ - "d856312f-9692-45e2-9232-af486e6ddb3f" + "0b2c483a-926c-4abf-8ae5-3d4cf5b9504f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175538Z:d856312f-9692-45e2-9232-af486e6ddb3f" + "WESTUS:20230219T023912Z:0b2c483a-926c-4abf-8ae5-3d4cf5b9504f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:55:38 GMT" + "Sun, 19 Feb 2023 02:39:12 GMT" ], "Content-Length": [ "200" @@ -60,25 +60,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"Resource [/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/providers/Microsoft.Network/networkManagerConnections/ps9174] does not exist or has been deleted\",\r\n \"code\": \"NotFound\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"Resource [/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/providers/Microsoft.Network/networkManagerConnections/ps7306] does not exist or has been deleted\",\r\n \"code\": \"NotFound\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/providers/Microsoft.Network/networkManagerConnections/ps9174?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrTWFuYWdlckNvbm5lY3Rpb25zL3BzOTE3ND9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/providers/Microsoft.Network/networkManagerConnections/ps7306?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrTWFuYWdlckNvbm5lY3Rpb25zL3BzNzMwNj9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "ece1897d-a778-4a1a-9d93-4a2c2b9f3108" + "c8959e3b-2cc7-4ff8-b1e7-22fefaec96d6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -99,22 +99,22 @@ "Kestrel" ], "x-ms-request-id": [ - "520dc751-7e29-46c7-b81b-d865ce721b4e" + "f750d920-3960-47d4-a0c0-8c519d4dfd6b" ], "x-ms-correlation-request-id": [ - "520dc751-7e29-46c7-b81b-d865ce721b4e" + "f750d920-3960-47d4-a0c0-8c519d4dfd6b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175543Z:520dc751-7e29-46c7-b81b-d865ce721b4e" + "WESTUS:20230219T023913Z:f750d920-3960-47d4-a0c0-8c519d4dfd6b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:55:43 GMT" + "Sun, 19 Feb 2023 02:39:13 GMT" ], "Content-Length": [ - "480" + "733" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,25 +123,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/providers/Microsoft.Network/networkManagerConnections/ps9174\",\r\n \"name\": \"ps9174\",\r\n \"type\": \"Microsoft.Network/networkManagerConnections\",\r\n \"location\": \"\",\r\n \"properties\": {\r\n \"networkManagerId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/networkManagers/PowerShellTestNM-DO-NOT-DELETE\",\r\n \"connectionState\": \"Pending\",\r\n \"description\": \"SampleDescription\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/providers/Microsoft.Network/networkManagerConnections/ps7306\",\r\n \"name\": \"ps7306\",\r\n \"type\": \"Microsoft.Network/networkManagerConnections\",\r\n \"location\": \"\",\r\n \"properties\": {\r\n \"networkManagerId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/networkManagers/SwaggerStackNetworkManager\",\r\n \"connectionState\": \"Pending\",\r\n \"description\": \"SampleDescription\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:39:13.0140127Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:39:13.0140127Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/providers/Microsoft.Network/networkManagerConnections/ps9174?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrTWFuYWdlckNvbm5lY3Rpb25zL3BzOTE3ND9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/providers/Microsoft.Network/networkManagerConnections/ps7306?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrTWFuYWdlckNvbm5lY3Rpb25zL3BzNzMwNj9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "afce076d-3583-477f-90bb-e64c156fb47a" + "9a9a2cde-eb47-48ed-9bc6-c0d179a183c4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -162,22 +162,22 @@ "Kestrel" ], "x-ms-request-id": [ - "ec542b01-590e-429a-bd48-92998ba73692" + "af7fff9c-7c48-433d-a68e-0ffd7af61605" ], "x-ms-correlation-request-id": [ - "ec542b01-590e-429a-bd48-92998ba73692" + "af7fff9c-7c48-433d-a68e-0ffd7af61605" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175543Z:ec542b01-590e-429a-bd48-92998ba73692" + "WESTUS:20230219T023914Z:af7fff9c-7c48-433d-a68e-0ffd7af61605" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:55:43 GMT" + "Sun, 19 Feb 2023 02:39:13 GMT" ], "Content-Length": [ - "480" + "733" ], "Content-Type": [ "application/json; charset=utf-8" @@ -186,25 +186,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/providers/Microsoft.Network/networkManagerConnections/ps9174\",\r\n \"name\": \"ps9174\",\r\n \"type\": \"Microsoft.Network/networkManagerConnections\",\r\n \"location\": \"\",\r\n \"properties\": {\r\n \"networkManagerId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/networkManagers/PowerShellTestNM-DO-NOT-DELETE\",\r\n \"connectionState\": \"Pending\",\r\n \"description\": \"SampleDescription\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/providers/Microsoft.Network/networkManagerConnections/ps7306\",\r\n \"name\": \"ps7306\",\r\n \"type\": \"Microsoft.Network/networkManagerConnections\",\r\n \"location\": \"\",\r\n \"properties\": {\r\n \"networkManagerId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/networkManagers/SwaggerStackNetworkManager\",\r\n \"connectionState\": \"Pending\",\r\n \"description\": \"SampleDescription\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:39:13.0140127Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:39:13.0140127Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/providers/Microsoft.Network/networkManagerConnections/ps9174?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrTWFuYWdlckNvbm5lY3Rpb25zL3BzOTE3ND9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/providers/Microsoft.Network/networkManagerConnections/ps7306?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrTWFuYWdlckNvbm5lY3Rpb25zL3BzNzMwNj9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "b929c6b4-8dbc-4540-ba37-60d4af7c5ff9" + "cc9aac59-4b57-492a-9216-4e46155095a5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -225,22 +225,22 @@ "Kestrel" ], "x-ms-request-id": [ - "7e0748ee-7289-4452-8554-e85f0396ae1a" + "0926c1c2-bdf3-4c17-898a-85d4cee528a3" ], "x-ms-correlation-request-id": [ - "7e0748ee-7289-4452-8554-e85f0396ae1a" + "0926c1c2-bdf3-4c17-898a-85d4cee528a3" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175544Z:7e0748ee-7289-4452-8554-e85f0396ae1a" + "WESTUS:20230219T023915Z:0926c1c2-bdf3-4c17-898a-85d4cee528a3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:55:44 GMT" + "Sun, 19 Feb 2023 02:39:14 GMT" ], "Content-Length": [ - "480" + "733" ], "Content-Type": [ "application/json; charset=utf-8" @@ -249,25 +249,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/providers/Microsoft.Network/networkManagerConnections/ps9174\",\r\n \"name\": \"ps9174\",\r\n \"type\": \"Microsoft.Network/networkManagerConnections\",\r\n \"location\": \"\",\r\n \"properties\": {\r\n \"networkManagerId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/networkManagers/PowerShellTestNM-DO-NOT-DELETE\",\r\n \"connectionState\": \"Pending\",\r\n \"description\": \"SampleDescription\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/providers/Microsoft.Network/networkManagerConnections/ps7306\",\r\n \"name\": \"ps7306\",\r\n \"type\": \"Microsoft.Network/networkManagerConnections\",\r\n \"location\": \"\",\r\n \"properties\": {\r\n \"networkManagerId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/networkManagers/SwaggerStackNetworkManager\",\r\n \"connectionState\": \"Pending\",\r\n \"description\": \"SampleDescription\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:39:13.0140127Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:39:13.0140127Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/providers/Microsoft.Network/networkManagerConnections/ps9174?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrTWFuYWdlckNvbm5lY3Rpb25zL3BzOTE3ND9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/providers/Microsoft.Network/networkManagerConnections/ps7306?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrTWFuYWdlckNvbm5lY3Rpb25zL3BzNzMwNj9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "b929c6b4-8dbc-4540-ba37-60d4af7c5ff9" + "cc9aac59-4b57-492a-9216-4e46155095a5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -288,22 +288,22 @@ "Kestrel" ], "x-ms-request-id": [ - "5a550d9e-3d04-4ebf-a235-fa10d16cb18b" + "99d4c1c5-308f-4522-af20-aa63cf78e6f0" ], "x-ms-correlation-request-id": [ - "5a550d9e-3d04-4ebf-a235-fa10d16cb18b" + "99d4c1c5-308f-4522-af20-aa63cf78e6f0" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175546Z:5a550d9e-3d04-4ebf-a235-fa10d16cb18b" + "WESTUS:20230219T023917Z:99d4c1c5-308f-4522-af20-aa63cf78e6f0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:55:46 GMT" + "Sun, 19 Feb 2023 02:39:16 GMT" ], "Content-Length": [ - "487" + "740" ], "Content-Type": [ "application/json; charset=utf-8" @@ -312,34 +312,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/providers/Microsoft.Network/networkManagerConnections/ps9174\",\r\n \"name\": \"ps9174\",\r\n \"type\": \"Microsoft.Network/networkManagerConnections\",\r\n \"location\": \"\",\r\n \"properties\": {\r\n \"networkManagerId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/networkManagers/PowerShellTestNM-DO-NOT-DELETE\",\r\n \"connectionState\": \"Pending\",\r\n \"description\": \"A Different Description.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/providers/Microsoft.Network/networkManagerConnections/ps7306\",\r\n \"name\": \"ps7306\",\r\n \"type\": \"Microsoft.Network/networkManagerConnections\",\r\n \"location\": \"\",\r\n \"properties\": {\r\n \"networkManagerId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/networkManagers/SwaggerStackNetworkManager\",\r\n \"connectionState\": \"Pending\",\r\n \"description\": \"A Different Description.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:39:13.0140127Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:39:15.365953Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/providers/Microsoft.Network/networkManagerConnections/ps9174?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrTWFuYWdlckNvbm5lY3Rpb25zL3BzOTE3ND9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/providers/Microsoft.Network/networkManagerConnections/ps7306?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrTWFuYWdlckNvbm5lY3Rpb25zL3BzNzMwNj9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "ece1897d-a778-4a1a-9d93-4a2c2b9f3108" + "c8959e3b-2cc7-4ff8-b1e7-22fefaec96d6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "274" + "249" ] }, - "RequestBody": "{\r\n \"properties\": {\r\n \"networkManagerId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/networkManagers/PowerShellTestNM-DO-NOT-DELETE\",\r\n \"description\": \"SampleDescription\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkManagerId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/networkManagers/SwaggerStackNetworkManager\",\r\n \"description\": \"SampleDescription\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -357,22 +357,22 @@ "Kestrel" ], "x-ms-request-id": [ - "f81bbf97-614d-4818-9a06-81cf35595e1c" + "0442ee0e-d80b-4427-a631-e60b5784a55c" ], "x-ms-correlation-request-id": [ - "f81bbf97-614d-4818-9a06-81cf35595e1c" + "0442ee0e-d80b-4427-a631-e60b5784a55c" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175542Z:f81bbf97-614d-4818-9a06-81cf35595e1c" + "WESTUS:20230219T023913Z:0442ee0e-d80b-4427-a631-e60b5784a55c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:55:42 GMT" + "Sun, 19 Feb 2023 02:39:13 GMT" ], "Content-Length": [ - "480" + "733" ], "Content-Type": [ "application/json; charset=utf-8" @@ -381,34 +381,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/providers/Microsoft.Network/networkManagerConnections/ps9174\",\r\n \"name\": \"ps9174\",\r\n \"type\": \"Microsoft.Network/networkManagerConnections\",\r\n \"location\": \"\",\r\n \"properties\": {\r\n \"networkManagerId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/networkManagers/PowerShellTestNM-DO-NOT-DELETE\",\r\n \"connectionState\": \"Pending\",\r\n \"description\": \"SampleDescription\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/providers/Microsoft.Network/networkManagerConnections/ps7306\",\r\n \"name\": \"ps7306\",\r\n \"type\": \"Microsoft.Network/networkManagerConnections\",\r\n \"location\": \"\",\r\n \"properties\": {\r\n \"networkManagerId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/networkManagers/SwaggerStackNetworkManager\",\r\n \"connectionState\": \"Pending\",\r\n \"description\": \"SampleDescription\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:39:13.0140127Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:39:13.0140127Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/providers/Microsoft.Network/networkManagerConnections/ps9174?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrTWFuYWdlckNvbm5lY3Rpb25zL3BzOTE3ND9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/providers/Microsoft.Network/networkManagerConnections/ps7306?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrTWFuYWdlckNvbm5lY3Rpb25zL3BzNzMwNj9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "b929c6b4-8dbc-4540-ba37-60d4af7c5ff9" + "cc9aac59-4b57-492a-9216-4e46155095a5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "316" + "291" ] }, - "RequestBody": "{\r\n \"properties\": {\r\n \"networkManagerId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/networkManagers/PowerShellTestNM-DO-NOT-DELETE\",\r\n \"connectionState\": \"Pending\",\r\n \"description\": \"A Different Description.\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkManagerId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/networkManagers/SwaggerStackNetworkManager\",\r\n \"connectionState\": \"Pending\",\r\n \"description\": \"A Different Description.\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -426,22 +426,22 @@ "Kestrel" ], "x-ms-request-id": [ - "7a6a43cd-29df-4e9c-8b3d-08f2264bf7a4" + "c5eb3bcf-0836-4688-871e-404ceab14e34" ], "x-ms-correlation-request-id": [ - "7a6a43cd-29df-4e9c-8b3d-08f2264bf7a4" + "c5eb3bcf-0836-4688-871e-404ceab14e34" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175546Z:7a6a43cd-29df-4e9c-8b3d-08f2264bf7a4" + "WESTUS:20230219T023917Z:c5eb3bcf-0836-4688-871e-404ceab14e34" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:55:46 GMT" + "Sun, 19 Feb 2023 02:39:16 GMT" ], "Content-Length": [ - "487" + "740" ], "Content-Type": [ "application/json; charset=utf-8" @@ -450,25 +450,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/providers/Microsoft.Network/networkManagerConnections/ps9174\",\r\n \"name\": \"ps9174\",\r\n \"type\": \"Microsoft.Network/networkManagerConnections\",\r\n \"location\": \"\",\r\n \"properties\": {\r\n \"networkManagerId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/networkManagers/PowerShellTestNM-DO-NOT-DELETE\",\r\n \"connectionState\": \"Pending\",\r\n \"description\": \"A Different Description.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/providers/Microsoft.Network/networkManagerConnections/ps7306\",\r\n \"name\": \"ps7306\",\r\n \"type\": \"Microsoft.Network/networkManagerConnections\",\r\n \"location\": \"\",\r\n \"properties\": {\r\n \"networkManagerId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/networkManagers/SwaggerStackNetworkManager\",\r\n \"connectionState\": \"Pending\",\r\n \"description\": \"A Different Description.\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:39:13.0140127Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:39:15.365953Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/providers/Microsoft.Network/networkManagerConnections/ps9174?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrTWFuYWdlckNvbm5lY3Rpb25zL3BzOTE3ND9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/providers/Microsoft.Network/networkManagerConnections/ps7306?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrTWFuYWdlckNvbm5lY3Rpb25zL3BzNzMwNj9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "f399f47a-32da-4e88-a24e-2157f9ba10a3" + "dd54c33b-d47b-4d2a-84ae-344ae9ab90d1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -489,19 +489,19 @@ "14999" ], "x-ms-request-id": [ - "6ec55186-d659-4306-b59d-8c640e38e7f1" + "cf017489-7506-4427-b91e-02ebf98950fe" ], "x-ms-correlation-request-id": [ - "6ec55186-d659-4306-b59d-8c640e38e7f1" + "cf017489-7506-4427-b91e-02ebf98950fe" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T175548Z:6ec55186-d659-4306-b59d-8c640e38e7f1" + "WESTCENTRALUS:20230219T023918Z:cf017489-7506-4427-b91e-02ebf98950fe" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:55:48 GMT" + "Sun, 19 Feb 2023 02:39:18 GMT" ], "Expires": [ "-1" @@ -516,10 +516,10 @@ ], "Names": { "Test-NetworkManagerSubscriptionConnectionCRUD": [ - "ps9174" + "ps7306" ] }, "Variables": { - "SubscriptionId": "0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884" + "SubscriptionId": "08615b4b-bc9c-4a70-be1b-2ea10bc97b52" } } \ No newline at end of file diff --git a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkManagerTests/TestNetworkManagerCRUD.json b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkManagerTests/TestNetworkManagerCRUD.json index 8f2233734611..99be56fd7383 100644 --- a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkManagerTests/TestNetworkManagerCRUD.json +++ b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkManagerTests/TestNetworkManagerCRUD.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourcegroups/ps1764?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlZ3JvdXBzL3BzMTc2ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourcegroups/ps4865?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlZ3JvdXBzL3BzNDg2NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "287d091d-611b-4a80-be76-9a76e682f4e9" + "fb499a29-ff7c-43b7-86ba-02144711ef2f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.61" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "3b24d1e6-a534-4a21-ab2d-cb6343f93b1e" + "dac51d8f-faf8-4715-a0c8-2d23e31a88c1" ], "x-ms-correlation-request-id": [ - "3b24d1e6-a534-4a21-ab2d-cb6343f93b1e" + "dac51d8f-faf8-4715-a0c8-2d23e31a88c1" ], "x-ms-routing-request-id": [ - "WESTUS:20220923T233326Z:3b24d1e6-a534-4a21-ab2d-cb6343f93b1e" + "WESTUS:20230219T024236Z:dac51d8f-faf8-4715-a0c8-2d23e31a88c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:33:26 GMT" + "Sun, 19 Feb 2023 02:42:36 GMT" ], "Content-Length": [ - "201" + "242" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,25 +63,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps1764\",\r\n \"name\": \"ps1764\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4865\",\r\n \"name\": \"ps4865\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"testtag\": \"testval\",\r\n \"Created\": \"2023-02-19T02:42:35.288065Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps1764/providers/Microsoft.Network/networkManagers/ps9013?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMTc2NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzOTAxMz9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4865/providers/Microsoft.Network/networkManagers/ps5465?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNDg2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNTQ2NT9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "743a9171-ddd6-4710-af12-22cd4fdad977" + "40935857-48f5-41db-b6db-4e0639f107ae" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "54049964-a9d9-407f-b908-6f4eb5f58a3e" + "21db30b5-2ef8-45b2-b0fb-fba900270a01" ], "x-ms-correlation-request-id": [ - "54049964-a9d9-407f-b908-6f4eb5f58a3e" + "21db30b5-2ef8-45b2-b0fb-fba900270a01" ], "x-ms-routing-request-id": [ - "WESTUS:20220923T233327Z:54049964-a9d9-407f-b908-6f4eb5f58a3e" + "WESTCENTRALUS:20230219T024236Z:21db30b5-2ef8-45b2-b0fb-fba900270a01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:33:27 GMT" + "Sun, 19 Feb 2023 02:42:36 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,25 +123,25 @@ "218" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkManagers/ps9013' under resource group 'ps1764' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkManagers/ps5465' under resource group 'ps4865' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps1764/providers/Microsoft.Network/networkManagers/ps9013?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMTc2NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzOTAxMz9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4865/providers/Microsoft.Network/networkManagers/ps5465?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNDg2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNTQ2NT9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "743a9171-ddd6-4710-af12-22cd4fdad977" + "40935857-48f5-41db-b6db-4e0639f107ae" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -162,22 +162,22 @@ "Kestrel" ], "x-ms-request-id": [ - "17405652-f29d-4fe7-a4c0-14f3c93fb2fb" + "1fccdffd-4970-4ca2-a19c-1fdee3a81d4f" ], "x-ms-correlation-request-id": [ - "17405652-f29d-4fe7-a4c0-14f3c93fb2fb" + "1fccdffd-4970-4ca2-a19c-1fdee3a81d4f" ], "x-ms-routing-request-id": [ - "WESTUS:20220923T233332Z:17405652-f29d-4fe7-a4c0-14f3c93fb2fb" + "WESTCENTRALUS:20230219T024239Z:1fccdffd-4970-4ca2-a19c-1fdee3a81d4f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:33:32 GMT" + "Sun, 19 Feb 2023 02:42:39 GMT" ], "Content-Length": [ - "946" + "933" ], "Content-Type": [ "application/json; charset=utf-8" @@ -186,25 +186,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps9013\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps1764/providers/Microsoft.Network/networkManagers/ps9013\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"00002489-0000-3300-0000-632e424b0000\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [\r\n \"/providers/Microsoft.Management/managementGroups/PowerShellTest\"\r\n ],\r\n \"subscriptions\": [\r\n \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\"\r\n ],\r\n \"resourceGuid\": \"6a2ada8f-0c2d-4e05-b992-468b8998d2ea\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-23T23:33:31.0321914Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-23T23:33:31.0321914Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5465\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4865/providers/Microsoft.Network/networkManagers/ps5465\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"560011c2-0000-3300-0000-63f18c9e0000\\\"\",\r\n \"properties\": {\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [\r\n \"/providers/Microsoft.Management/managementGroups/SwaggerStackTestMG\"\r\n ],\r\n \"subscriptions\": [\r\n \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\"\r\n ],\r\n \"resourceGuid\": \"93cdc929-2ae7-415e-8f2a-5517252ee43a\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:42:37.9621183Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:42:37.9621183Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps1764/providers/Microsoft.Network/networkManagers/ps9013?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMTc2NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzOTAxMz9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4865/providers/Microsoft.Network/networkManagers/ps5465?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNDg2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNTQ2NT9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "340303b5-c94d-4e5b-b721-cdceb8951ec6" + "f6678590-3a66-45b9-9b26-453d056cc219" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -225,22 +225,22 @@ "Kestrel" ], "x-ms-request-id": [ - "a66ba563-8e65-46d4-967b-d2b9b4b32d0d" + "9aafc0a7-b8d3-4041-8ca8-c54284e4f9e4" ], "x-ms-correlation-request-id": [ - "a66ba563-8e65-46d4-967b-d2b9b4b32d0d" + "9aafc0a7-b8d3-4041-8ca8-c54284e4f9e4" ], "x-ms-routing-request-id": [ - "WESTUS:20220923T233334Z:a66ba563-8e65-46d4-967b-d2b9b4b32d0d" + "WESTUS:20230219T024240Z:9aafc0a7-b8d3-4041-8ca8-c54284e4f9e4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:33:33 GMT" + "Sun, 19 Feb 2023 02:42:40 GMT" ], "Content-Length": [ - "946" + "933" ], "Content-Type": [ "application/json; charset=utf-8" @@ -249,25 +249,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps9013\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps1764/providers/Microsoft.Network/networkManagers/ps9013\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"00002489-0000-3300-0000-632e424b0000\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [\r\n \"/providers/Microsoft.Management/managementGroups/PowerShellTest\"\r\n ],\r\n \"subscriptions\": [\r\n \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\"\r\n ],\r\n \"resourceGuid\": \"6a2ada8f-0c2d-4e05-b992-468b8998d2ea\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-23T23:33:31.0321914Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-23T23:33:31.0321914Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5465\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4865/providers/Microsoft.Network/networkManagers/ps5465\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"560011c2-0000-3300-0000-63f18c9e0000\\\"\",\r\n \"properties\": {\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [\r\n \"/providers/Microsoft.Management/managementGroups/SwaggerStackTestMG\"\r\n ],\r\n \"subscriptions\": [\r\n \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\"\r\n ],\r\n \"resourceGuid\": \"93cdc929-2ae7-415e-8f2a-5517252ee43a\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:42:37.9621183Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:42:37.9621183Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps1764/providers/Microsoft.Network/networkManagers/ps9013?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMTc2NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzOTAxMz9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4865/providers/Microsoft.Network/networkManagers/ps5465?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNDg2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNTQ2NT9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "c99ac62a-e795-4b10-99aa-bca1621052e0" + "73771f55-7eab-4d66-a107-65fe6d99395d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -279,7 +279,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -288,22 +288,22 @@ "Kestrel" ], "x-ms-request-id": [ - "54b9f173-2557-4ff1-97ed-b66b849e54e2" + "855ebeff-8b0b-45c8-9437-e9cd8eea328f" ], "x-ms-correlation-request-id": [ - "54b9f173-2557-4ff1-97ed-b66b849e54e2" + "855ebeff-8b0b-45c8-9437-e9cd8eea328f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T233335Z:54b9f173-2557-4ff1-97ed-b66b849e54e2" + "WESTUS:20230219T024241Z:855ebeff-8b0b-45c8-9437-e9cd8eea328f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:33:35 GMT" + "Sun, 19 Feb 2023 02:42:40 GMT" ], "Content-Length": [ - "946" + "933" ], "Content-Type": [ "application/json; charset=utf-8" @@ -312,25 +312,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps9013\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps1764/providers/Microsoft.Network/networkManagers/ps9013\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"00002489-0000-3300-0000-632e424b0000\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [\r\n \"/providers/Microsoft.Management/managementGroups/PowerShellTest\"\r\n ],\r\n \"subscriptions\": [\r\n \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\"\r\n ],\r\n \"resourceGuid\": \"6a2ada8f-0c2d-4e05-b992-468b8998d2ea\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-23T23:33:31.0321914Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-23T23:33:31.0321914Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5465\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4865/providers/Microsoft.Network/networkManagers/ps5465\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"560011c2-0000-3300-0000-63f18c9e0000\\\"\",\r\n \"properties\": {\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [\r\n \"/providers/Microsoft.Management/managementGroups/SwaggerStackTestMG\"\r\n ],\r\n \"subscriptions\": [\r\n \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\"\r\n ],\r\n \"resourceGuid\": \"93cdc929-2ae7-415e-8f2a-5517252ee43a\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:42:37.9621183Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:42:37.9621183Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps1764/providers/Microsoft.Network/networkManagers/ps9013?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMTc2NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzOTAxMz9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4865/providers/Microsoft.Network/networkManagers/ps5465?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNDg2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNTQ2NT9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "c99ac62a-e795-4b10-99aa-bca1621052e0" + "73771f55-7eab-4d66-a107-65fe6d99395d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -342,7 +342,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11996" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -351,22 +351,22 @@ "Kestrel" ], "x-ms-request-id": [ - "72693510-7e88-4024-84a3-1508a1870f86" + "3087161f-cbe8-44cf-acf7-e36d1f3aa231" ], "x-ms-correlation-request-id": [ - "72693510-7e88-4024-84a3-1508a1870f86" + "3087161f-cbe8-44cf-acf7-e36d1f3aa231" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T233338Z:72693510-7e88-4024-84a3-1508a1870f86" + "WESTUS:20230219T024242Z:3087161f-cbe8-44cf-acf7-e36d1f3aa231" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:33:37 GMT" + "Sun, 19 Feb 2023 02:42:41 GMT" ], "Content-Length": [ - "962" + "949" ], "Content-Type": [ "application/json; charset=utf-8" @@ -375,34 +375,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps9013\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps1764/providers/Microsoft.Network/networkManagers/ps9013\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"00002589-0000-3300-0000-632e42500000\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [\r\n \"/providers/Microsoft.Management/managementGroups/PowerShellTest\"\r\n ],\r\n \"subscriptions\": [\r\n \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\",\r\n \"SecurityAdmin\"\r\n ],\r\n \"resourceGuid\": \"6a2ada8f-0c2d-4e05-b992-468b8998d2ea\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-23T23:33:31.0321914Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-23T23:33:36.7723341Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5465\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4865/providers/Microsoft.Network/networkManagers/ps5465\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"56001dc2-0000-3300-0000-63f18ca10000\\\"\",\r\n \"properties\": {\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [\r\n \"/providers/Microsoft.Management/managementGroups/SwaggerStackTestMG\"\r\n ],\r\n \"subscriptions\": [\r\n \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\",\r\n \"SecurityAdmin\"\r\n ],\r\n \"resourceGuid\": \"93cdc929-2ae7-415e-8f2a-5517252ee43a\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:42:37.9621183Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:42:41.6727136Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps1764/providers/Microsoft.Network/networkManagers/ps9013?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMTc2NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzOTAxMz9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4865/providers/Microsoft.Network/networkManagers/ps5465?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNDg2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNTQ2NT9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "743a9171-ddd6-4710-af12-22cd4fdad977" + "40935857-48f5-41db-b6db-4e0639f107ae" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "378" + "382" ] }, - "RequestBody": "{\r\n \"properties\": {\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [\r\n \"/providers/Microsoft.Management/managementGroups/PowerShellTest\"\r\n ],\r\n \"subscriptions\": [\r\n \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884\"\r\n ]\r\n },\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\"\r\n ]\r\n },\r\n \"location\": \"centraluseuap\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [\r\n \"/providers/Microsoft.Management/managementGroups/SwaggerStackTestMG\"\r\n ],\r\n \"subscriptions\": [\r\n \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52\"\r\n ]\r\n },\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\"\r\n ]\r\n },\r\n \"location\": \"centraluseuap\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -420,22 +420,22 @@ "Kestrel" ], "x-ms-request-id": [ - "8b7586ce-f44e-40f8-bf88-d492f839f725" + "9f2e8efe-644e-4553-96dd-81515e48acc8" ], "x-ms-correlation-request-id": [ - "8b7586ce-f44e-40f8-bf88-d492f839f725" + "9f2e8efe-644e-4553-96dd-81515e48acc8" ], "x-ms-routing-request-id": [ - "WESTUS:20220923T233332Z:8b7586ce-f44e-40f8-bf88-d492f839f725" + "WESTCENTRALUS:20230219T024239Z:9f2e8efe-644e-4553-96dd-81515e48acc8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:33:32 GMT" + "Sun, 19 Feb 2023 02:42:39 GMT" ], "Content-Length": [ - "906" + "893" ], "Content-Type": [ "application/json; charset=utf-8" @@ -444,34 +444,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps9013\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps1764/providers/Microsoft.Network/networkManagers/ps9013\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [\r\n \"/providers/Microsoft.Management/managementGroups/PowerShellTest\"\r\n ],\r\n \"subscriptions\": [\r\n \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\"\r\n ],\r\n \"resourceGuid\": \"6a2ada8f-0c2d-4e05-b992-468b8998d2ea\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-23T23:33:31.0321914Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-23T23:33:31.0321914Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5465\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4865/providers/Microsoft.Network/networkManagers/ps5465\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [\r\n \"/providers/Microsoft.Management/managementGroups/SwaggerStackTestMG\"\r\n ],\r\n \"subscriptions\": [\r\n \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\"\r\n ],\r\n \"resourceGuid\": \"93cdc929-2ae7-415e-8f2a-5517252ee43a\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:42:37.9621183Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:42:37.9621183Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps1764/providers/Microsoft.Network/networkManagers/ps9013?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMTc2NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzOTAxMz9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4865/providers/Microsoft.Network/networkManagers/ps5465?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNDg2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNTQ2NT9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "c99ac62a-e795-4b10-99aa-bca1621052e0" + "73771f55-7eab-4d66-a107-65fe6d99395d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "578" + "582" ] }, - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [\r\n \"/providers/Microsoft.Management/managementGroups/PowerShellTest\"\r\n ],\r\n \"subscriptions\": [\r\n \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884\"\r\n ]\r\n },\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\",\r\n \"SecurityAdmin\"\r\n ]\r\n },\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps1764/providers/Microsoft.Network/networkManagers/ps9013\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [\r\n \"/providers/Microsoft.Management/managementGroups/SwaggerStackTestMG\"\r\n ],\r\n \"subscriptions\": [\r\n \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52\"\r\n ]\r\n },\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\",\r\n \"SecurityAdmin\"\r\n ]\r\n },\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4865/providers/Microsoft.Network/networkManagers/ps5465\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -489,22 +489,22 @@ "Kestrel" ], "x-ms-request-id": [ - "11146bb2-70a3-4993-bf0c-0d67d011a4ac" + "e7ce90ad-a6d5-43ed-8957-432471d9127e" ], "x-ms-correlation-request-id": [ - "11146bb2-70a3-4993-bf0c-0d67d011a4ac" + "e7ce90ad-a6d5-43ed-8957-432471d9127e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T233337Z:11146bb2-70a3-4993-bf0c-0d67d011a4ac" + "WESTUS:20230219T024241Z:e7ce90ad-a6d5-43ed-8957-432471d9127e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:33:36 GMT" + "Sun, 19 Feb 2023 02:42:41 GMT" ], "Content-Length": [ - "922" + "909" ], "Content-Type": [ "application/json; charset=utf-8" @@ -513,25 +513,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps9013\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps1764/providers/Microsoft.Network/networkManagers/ps9013\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [\r\n \"/providers/Microsoft.Management/managementGroups/PowerShellTest\"\r\n ],\r\n \"subscriptions\": [\r\n \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\",\r\n \"SecurityAdmin\"\r\n ],\r\n \"resourceGuid\": \"6a2ada8f-0c2d-4e05-b992-468b8998d2ea\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-23T23:33:31.0321914Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-23T23:33:36.7723341Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5465\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4865/providers/Microsoft.Network/networkManagers/ps5465\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [\r\n \"/providers/Microsoft.Management/managementGroups/SwaggerStackTestMG\"\r\n ],\r\n \"subscriptions\": [\r\n \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\",\r\n \"SecurityAdmin\"\r\n ],\r\n \"resourceGuid\": \"93cdc929-2ae7-415e-8f2a-5517252ee43a\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:42:37.9621183Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:42:41.6727136Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps1764/providers/Microsoft.Network/networkManagers/ps9013?force=true&api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzMTc2NC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzOTAxMz9mb3JjZT10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDEtMDE=", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4865/providers/Microsoft.Network/networkManagers/ps5465?force=true&api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNDg2NS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNTQ2NT9mb3JjZT10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDctMDE=", "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "930d19ce-ac71-4549-94b0-59d177c54972" + "85477289-d8c2-4213-898b-76d51c57a376" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -552,19 +552,19 @@ "14999" ], "x-ms-request-id": [ - "14e42812-1bce-4184-a7c8-9c35e7c6ae1c" + "bdd00647-34f1-48dc-b4eb-6c22def01f9b" ], "x-ms-correlation-request-id": [ - "14e42812-1bce-4184-a7c8-9c35e7c6ae1c" + "bdd00647-34f1-48dc-b4eb-6c22def01f9b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T233340Z:14e42812-1bce-4184-a7c8-9c35e7c6ae1c" + "WESTUS:20230219T024244Z:bdd00647-34f1-48dc-b4eb-6c22def01f9b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:33:40 GMT" + "Sun, 19 Feb 2023 02:42:43 GMT" ], "Expires": [ "-1" @@ -577,21 +577,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourcegroups/ps1764?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlZ3JvdXBzL3BzMTc2ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourcegroups/ps4865?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlZ3JvdXBzL3BzNDg2NT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "266ca273-1001-4fde-8a69-c773911671de" + "eb0735ca-3bf0-4cd4-a1bd-4f0edb5749df" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.61" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, "RequestBody": "", @@ -603,7 +603,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE3NjQtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NjUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -612,13 +612,13 @@ "14999" ], "x-ms-request-id": [ - "63489724-062a-47ae-a84f-25268d3c2677" + "d8c65bb2-907f-4ae1-ba6b-960b71147ac7" ], "x-ms-correlation-request-id": [ - "63489724-062a-47ae-a84f-25268d3c2677" + "d8c65bb2-907f-4ae1-ba6b-960b71147ac7" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T233342Z:63489724-062a-47ae-a84f-25268d3c2677" + "WESTUS:20230219T024245Z:d8c65bb2-907f-4ae1-ba6b-960b71147ac7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -627,7 +627,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:33:42 GMT" + "Sun, 19 Feb 2023 02:42:44 GMT" ], "Expires": [ "-1" @@ -640,15 +640,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE3NjQtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFM05qUXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NjUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5qVXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.61" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, "RequestBody": "", @@ -659,17 +659,23 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NjUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-request-id": [ - "53f422ca-b341-421b-a1d2-8df7cc5d4ebd" + "3ae4fc7f-0327-4fd8-ba9e-c048a8d179ae" ], "x-ms-correlation-request-id": [ - "53f422ca-b341-421b-a1d2-8df7cc5d4ebd" + "3ae4fc7f-0327-4fd8-ba9e-c048a8d179ae" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T233357Z:53f422ca-b341-421b-a1d2-8df7cc5d4ebd" + "WESTUS:20230219T024300Z:3ae4fc7f-0327-4fd8-ba9e-c048a8d179ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -678,7 +684,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:33:57 GMT" + "Sun, 19 Feb 2023 02:42:59 GMT" ], "Expires": [ "-1" @@ -688,18 +694,18 @@ ] }, "ResponseBody": "", - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE3NjQtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFM05qUXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NjUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5qVXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.61" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, "RequestBody": "", @@ -710,17 +716,239 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NjUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-request-id": [ - "60f97263-350d-48f9-9b70-e3a912bafcb6" + "63614b3c-a62d-40b6-995e-f12921a36b1c" + ], + "x-ms-correlation-request-id": [ + "63614b3c-a62d-40b6-995e-f12921a36b1c" + ], + "x-ms-routing-request-id": [ + "WESTUS:20230219T024315Z:63614b3c-a62d-40b6-995e-f12921a36b1c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 19 Feb 2023 02:43:15 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NjUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5qVXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NjUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "6cd68434-c4db-484c-9cac-6a8b4b63156a" + ], + "x-ms-correlation-request-id": [ + "6cd68434-c4db-484c-9cac-6a8b4b63156a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20230219T024331Z:6cd68434-c4db-484c-9cac-6a8b4b63156a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 19 Feb 2023 02:43:30 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NjUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5qVXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NjUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "f85bfda6-8c3a-4bf4-b5d8-56f37bccd482" + ], + "x-ms-correlation-request-id": [ + "f85bfda6-8c3a-4bf4-b5d8-56f37bccd482" + ], + "x-ms-routing-request-id": [ + "WESTUS:20230219T024346Z:f85bfda6-8c3a-4bf4-b5d8-56f37bccd482" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 19 Feb 2023 02:43:45 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NjUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5qVXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "5e0022d0-d049-44d4-81a0-8fc3d21c8ece" + ], + "x-ms-correlation-request-id": [ + "5e0022d0-d049-44d4-81a0-8fc3d21c8ece" + ], + "x-ms-routing-request-id": [ + "WESTUS:20230219T024401Z:5e0022d0-d049-44d4-81a0-8fc3d21c8ece" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 19 Feb 2023 02:44:00 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ4NjUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRNE5qVXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "ffefb655-2142-42a9-8560-a1bbd444256f" ], "x-ms-correlation-request-id": [ - "60f97263-350d-48f9-9b70-e3a912bafcb6" + "ffefb655-2142-42a9-8560-a1bbd444256f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T233357Z:60f97263-350d-48f9-9b70-e3a912bafcb6" + "WESTUS:20230219T024401Z:ffefb655-2142-42a9-8560-a1bbd444256f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -729,7 +957,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:33:57 GMT" + "Sun, 19 Feb 2023 02:44:00 GMT" ], "Expires": [ "-1" @@ -744,11 +972,11 @@ ], "Names": { "Test-NetworkManagerCRUD": [ - "ps1764", - "ps9013" + "ps4865", + "ps5465" ] }, "Variables": { - "SubscriptionId": "0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884" + "SubscriptionId": "08615b4b-bc9c-4a70-be1b-2ea10bc97b52" } } \ No newline at end of file diff --git a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkManagerTests/TestNetworkManagerConnectivityConfigurationCRUD.json b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkManagerTests/TestNetworkManagerConnectivityConfigurationCRUD.json index 3a31c21ac272..eeefa512fd00 100644 --- a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkManagerTests/TestNetworkManagerConnectivityConfigurationCRUD.json +++ b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkManagerTests/TestNetworkManagerConnectivityConfigurationCRUD.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourcegroups/ps8931?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlZ3JvdXBzL3BzODkzMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourcegroups/ps4311?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlZ3JvdXBzL3BzNDMxMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "81fa57c2-80f3-4bff-afea-d42de800dd60" + "520c6743-4fb2-4861-a8a0-019e24d20f4e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.61" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "d35722d1-ae45-4a2a-b611-35ddc4d0eec7" + "ce1bd1d8-ce1a-45be-80cb-5fc3b7a48d59" ], "x-ms-correlation-request-id": [ - "d35722d1-ae45-4a2a-b611-35ddc4d0eec7" + "ce1bd1d8-ce1a-45be-80cb-5fc3b7a48d59" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T233015Z:d35722d1-ae45-4a2a-b611-35ddc4d0eec7" + "WESTUS:20230219T023922Z:ce1bd1d8-ce1a-45be-80cb-5fc3b7a48d59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:30:14 GMT" + "Sun, 19 Feb 2023 02:39:21 GMT" ], "Content-Length": [ - "201" + "242" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,25 +63,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931\",\r\n \"name\": \"ps8931\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311\",\r\n \"name\": \"ps4311\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"testtag\": \"testval\",\r\n \"Created\": \"2023-02-19T02:39:21.2485321Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzODkzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNzc1Nz9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNDMxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNTI4Nz9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "026717c4-61e1-4e27-a48d-92a1a9d1440d" + "9f57cfc1-f110-474b-bc79-e586f02f643a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "c75b3556-d08d-4a1b-9c68-5dfcb78a365c" + "cb79d3d2-f951-4a51-9c5d-b41f5dfa91e6" ], "x-ms-correlation-request-id": [ - "c75b3556-d08d-4a1b-9c68-5dfcb78a365c" + "cb79d3d2-f951-4a51-9c5d-b41f5dfa91e6" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T233016Z:c75b3556-d08d-4a1b-9c68-5dfcb78a365c" + "WESTUS:20230219T023923Z:cb79d3d2-f951-4a51-9c5d-b41f5dfa91e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:30:16 GMT" + "Sun, 19 Feb 2023 02:39:22 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,25 +123,25 @@ "218" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkManagers/ps7757' under resource group 'ps8931' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkManagers/ps5287' under resource group 'ps4311' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzODkzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNzc1Nz9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNDMxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNTI4Nz9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "026717c4-61e1-4e27-a48d-92a1a9d1440d" + "9f57cfc1-f110-474b-bc79-e586f02f643a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -162,22 +162,22 @@ "Kestrel" ], "x-ms-request-id": [ - "94bd5a31-53fd-47bb-93ea-fcfa506b99ab" + "eb087435-122f-4498-991c-478b2b9bf01a" ], "x-ms-correlation-request-id": [ - "94bd5a31-53fd-47bb-93ea-fcfa506b99ab" + "eb087435-122f-4498-991c-478b2b9bf01a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T233020Z:94bd5a31-53fd-47bb-93ea-fcfa506b99ab" + "WESTUS:20230219T023925Z:eb087435-122f-4498-991c-478b2b9bf01a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:30:20 GMT" + "Sun, 19 Feb 2023 02:39:25 GMT" ], "Content-Length": [ - "881" + "864" ], "Content-Type": [ "application/json; charset=utf-8" @@ -186,25 +186,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps7757\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"0000fe88-0000-3300-0000-632e418b0000\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\"\r\n ],\r\n \"resourceGuid\": \"4b14e2ad-c8bb-471d-b094-53a470196566\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-23T23:30:18.6701128Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-23T23:30:18.6701128Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5287\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"560014bf-0000-3300-0000-63f18bdd0000\\\"\",\r\n \"properties\": {\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\"\r\n ],\r\n \"resourceGuid\": \"ce30819a-321a-43ee-8036-53305374a7ff\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:39:24.2599208Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:39:24.2599208Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzODkzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNzc1Nz9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNDMxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNTI4Nz9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "78c319ae-c5de-43ea-9883-281a701ded8c" + "d9212406-134d-4479-8c79-aa0ea537b1ff" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -216,7 +216,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -225,22 +225,22 @@ "Kestrel" ], "x-ms-request-id": [ - "ff542217-4faa-4e44-b28c-a153a6fa1b58" + "e60e152a-29d2-40e2-83ac-60b1c947ea4a" ], "x-ms-correlation-request-id": [ - "ff542217-4faa-4e44-b28c-a153a6fa1b58" + "e60e152a-29d2-40e2-83ac-60b1c947ea4a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T233021Z:ff542217-4faa-4e44-b28c-a153a6fa1b58" + "WESTUS:20230219T023926Z:e60e152a-29d2-40e2-83ac-60b1c947ea4a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:30:20 GMT" + "Sun, 19 Feb 2023 02:39:26 GMT" ], "Content-Length": [ - "881" + "864" ], "Content-Type": [ "application/json; charset=utf-8" @@ -249,25 +249,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps7757\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"0000fe88-0000-3300-0000-632e418b0000\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\"\r\n ],\r\n \"resourceGuid\": \"4b14e2ad-c8bb-471d-b094-53a470196566\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-23T23:30:18.6701128Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-23T23:30:18.6701128Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5287\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"560014bf-0000-3300-0000-63f18bdd0000\\\"\",\r\n \"properties\": {\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\"\r\n ],\r\n \"resourceGuid\": \"ce30819a-321a-43ee-8036-53305374a7ff\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:39:24.2599208Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:39:24.2599208Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzODkzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNzc1Nz9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNDMxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNTI4Nz9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "026717c4-61e1-4e27-a48d-92a1a9d1440d" + "9f57cfc1-f110-474b-bc79-e586f02f643a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -276,7 +276,7 @@ "295" ] }, - "RequestBody": "{\r\n \"properties\": {\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884\"\r\n ]\r\n },\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\"\r\n ]\r\n },\r\n \"location\": \"centraluseuap\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52\"\r\n ]\r\n },\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\"\r\n ]\r\n },\r\n \"location\": \"centraluseuap\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -294,22 +294,22 @@ "Kestrel" ], "x-ms-request-id": [ - "2e876d5c-4a0c-4b4f-a6dc-8315a1f95326" + "1dd24ad9-4bb4-4842-ad66-d37753351124" ], "x-ms-correlation-request-id": [ - "2e876d5c-4a0c-4b4f-a6dc-8315a1f95326" + "1dd24ad9-4bb4-4842-ad66-d37753351124" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T233019Z:2e876d5c-4a0c-4b4f-a6dc-8315a1f95326" + "WESTUS:20230219T023925Z:1dd24ad9-4bb4-4842-ad66-d37753351124" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:30:19 GMT" + "Sun, 19 Feb 2023 02:39:25 GMT" ], "Content-Length": [ - "841" + "824" ], "Content-Type": [ "application/json; charset=utf-8" @@ -318,25 +318,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps7757\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\"\r\n ],\r\n \"resourceGuid\": \"4b14e2ad-c8bb-471d-b094-53a470196566\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-23T23:30:18.6701128Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-23T23:30:18.6701128Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps5287\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\"\r\n ],\r\n \"resourceGuid\": \"ce30819a-321a-43ee-8036-53305374a7ff\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:39:24.2599208Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:39:24.2599208Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/networkGroups/ps9966?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzODkzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNzc1Ny9uZXR3b3JrR3JvdXBzL3BzOTk2Nj9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/networkGroups/ps3461?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNDMxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNTI4Ny9uZXR3b3JrR3JvdXBzL3BzMzQ2MT9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "37f3a76f-8d40-4c97-842d-70125cce3e1f" + "30623430-3020-4ea9-b0c3-6f53952d83ff" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -348,7 +348,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -357,19 +357,19 @@ "Kestrel" ], "x-ms-request-id": [ - "be911c29-8dab-4185-a677-bf07b11b3fb5" + "c589cd8d-e785-44e9-8607-1d35531c014d" ], "x-ms-correlation-request-id": [ - "be911c29-8dab-4185-a677-bf07b11b3fb5" + "c589cd8d-e785-44e9-8607-1d35531c014d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T233021Z:be911c29-8dab-4185-a677-bf07b11b3fb5" + "WESTUS:20230219T023927Z:c589cd8d-e785-44e9-8607-1d35531c014d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:30:21 GMT" + "Sun, 19 Feb 2023 02:39:26 GMT" ], "Content-Length": [ "233" @@ -381,25 +381,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"Resource [/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/networkGroups/ps9966] does not exist or has been deleted\",\r\n \"code\": \"NotFound\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"Resource [/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/networkGroups/ps3461] does not exist or has been deleted\",\r\n \"code\": \"NotFound\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/networkGroups/ps9966?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzODkzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNzc1Ny9uZXR3b3JrR3JvdXBzL3BzOTk2Nj9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/networkGroups/ps3461?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNDMxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNTI4Ny9uZXR3b3JrR3JvdXBzL3BzMzQ2MT9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "37f3a76f-8d40-4c97-842d-70125cce3e1f" + "30623430-3020-4ea9-b0c3-6f53952d83ff" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -411,7 +411,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -420,22 +420,22 @@ "Kestrel" ], "x-ms-request-id": [ - "85e1218f-b2e3-4aa4-9dbc-d370600827fc" + "0643bdbf-c09f-4618-9c1e-56ac93218cf3" ], "x-ms-correlation-request-id": [ - "85e1218f-b2e3-4aa4-9dbc-d370600827fc" + "0643bdbf-c09f-4618-9c1e-56ac93218cf3" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T233025Z:85e1218f-b2e3-4aa4-9dbc-d370600827fc" + "WESTUS:20230219T023928Z:0643bdbf-c09f-4618-9c1e-56ac93218cf3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:30:24 GMT" + "Sun, 19 Feb 2023 02:39:27 GMT" ], "Content-Length": [ - "707" + "690" ], "Content-Type": [ "application/json; charset=utf-8" @@ -444,25 +444,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps9966\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/networkGroups/ps9966\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups\",\r\n \"etag\": \"\\\"0000ff88-0000-3300-0000-632e418e0000\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"SampleDESCRIption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"67507379-8909-478d-b3bb-901bfd95f1ec\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-23T23:30:22.5296407Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-23T23:30:22.5296407Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps3461\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/networkGroups/ps3461\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups\",\r\n \"etag\": \"\\\"56001fbf-0000-3300-0000-63f18bdf0000\\\"\",\r\n \"properties\": {\r\n \"description\": \"SampleDESCRIption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f3b0045a-2134-40ad-adc5-8d21a8c2f987\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:39:27.45723Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:39:27.45723Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/networkGroups/ps9966?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzODkzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNzc1Ny9uZXR3b3JrR3JvdXBzL3BzOTk2Nj9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/networkGroups/ps3461?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNDMxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNTI4Ny9uZXR3b3JrR3JvdXBzL3BzMzQ2MT9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "c0dcc803-0a3d-4c52-b73e-5738e0bd22f7" + "aedbbc85-d045-47a2-810d-741c78ac79ec" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -483,22 +483,22 @@ "Kestrel" ], "x-ms-request-id": [ - "c0986e94-d316-40ef-b4bc-e398edc6d375" + "6948d332-b443-47b9-9700-7465c7fb7bb9" ], "x-ms-correlation-request-id": [ - "c0986e94-d316-40ef-b4bc-e398edc6d375" + "6948d332-b443-47b9-9700-7465c7fb7bb9" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T233026Z:c0986e94-d316-40ef-b4bc-e398edc6d375" + "WESTUS:20230219T023929Z:6948d332-b443-47b9-9700-7465c7fb7bb9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:30:26 GMT" + "Sun, 19 Feb 2023 02:39:28 GMT" ], "Content-Length": [ - "707" + "690" ], "Content-Type": [ "application/json; charset=utf-8" @@ -507,25 +507,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps9966\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/networkGroups/ps9966\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups\",\r\n \"etag\": \"\\\"0000ff88-0000-3300-0000-632e418e0000\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"SampleDESCRIption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"67507379-8909-478d-b3bb-901bfd95f1ec\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-23T23:30:22.5296407Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-23T23:30:22.5296407Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps3461\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/networkGroups/ps3461\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups\",\r\n \"etag\": \"\\\"56001fbf-0000-3300-0000-63f18bdf0000\\\"\",\r\n \"properties\": {\r\n \"description\": \"SampleDESCRIption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f3b0045a-2134-40ad-adc5-8d21a8c2f987\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:39:27.45723Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:39:27.45723Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/networkGroups/ps9966?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzODkzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNzc1Ny9uZXR3b3JrR3JvdXBzL3BzOTk2Nj9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/networkGroups/ps3461?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNDMxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNTI4Ny9uZXR3b3JrR3JvdXBzL3BzMzQ2MT9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "37f3a76f-8d40-4c97-842d-70125cce3e1f" + "30623430-3020-4ea9-b0c3-6f53952d83ff" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -552,22 +552,22 @@ "Kestrel" ], "x-ms-request-id": [ - "72044fce-1793-4c72-a08c-d26da23c0217" + "f9a5adc7-4d5e-4bed-84bf-4d54f98a47a6" ], "x-ms-correlation-request-id": [ - "72044fce-1793-4c72-a08c-d26da23c0217" + "f9a5adc7-4d5e-4bed-84bf-4d54f98a47a6" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T233025Z:72044fce-1793-4c72-a08c-d26da23c0217" + "WESTUS:20230219T023927Z:f9a5adc7-4d5e-4bed-84bf-4d54f98a47a6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:30:24 GMT" + "Sun, 19 Feb 2023 02:39:27 GMT" ], "Content-Length": [ - "667" + "650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -576,25 +576,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps9966\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/networkGroups/ps9966\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"SampleDESCRIption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"67507379-8909-478d-b3bb-901bfd95f1ec\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-23T23:30:22.5296407Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-23T23:30:22.5296407Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps3461\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/networkGroups/ps3461\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"description\": \"SampleDESCRIption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f3b0045a-2134-40ad-adc5-8d21a8c2f987\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:39:27.45723Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:39:27.45723Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/networkGroups/ps9966/staticMembers/ps9924?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzODkzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNzc1Ny9uZXR3b3JrR3JvdXBzL3BzOTk2Ni9zdGF0aWNNZW1iZXJzL3BzOTkyND9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/networkGroups/ps3461/staticMembers/ps6646?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNDMxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNTI4Ny9uZXR3b3JrR3JvdXBzL3BzMzQ2MS9zdGF0aWNNZW1iZXJzL3BzNjY0Nj9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "e9376615-1467-4ff7-bcdb-3a690eec4c8c" + "b66fa31c-c6f4-4c4a-8fa9-5f4f52e614ef" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -606,7 +606,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -615,19 +615,19 @@ "Kestrel" ], "x-ms-request-id": [ - "031639a1-1ef9-47d0-b65f-25c2b6fdfc45" + "6298b70f-2798-4b74-9a61-c46f1bf23b64" ], "x-ms-correlation-request-id": [ - "031639a1-1ef9-47d0-b65f-25c2b6fdfc45" + "6298b70f-2798-4b74-9a61-c46f1bf23b64" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T233027Z:031639a1-1ef9-47d0-b65f-25c2b6fdfc45" + "WESTUS:20230219T023930Z:6298b70f-2798-4b74-9a61-c46f1bf23b64" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:30:26 GMT" + "Sun, 19 Feb 2023 02:39:30 GMT" ], "Content-Length": [ "253" @@ -639,25 +639,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"Resource [/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/networkGroups/ps9966/staticMembersps9924] does not exist or has been deleted\",\r\n \"code\": \"NotFound\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"Resource [/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/networkGroups/ps3461/staticMembersps6646] does not exist or has been deleted\",\r\n \"code\": \"NotFound\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/networkGroups/ps9966/staticMembers/ps9924?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzODkzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNzc1Ny9uZXR3b3JrR3JvdXBzL3BzOTk2Ni9zdGF0aWNNZW1iZXJzL3BzOTkyND9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/networkGroups/ps3461/staticMembers/ps6646?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNDMxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNTI4Ny9uZXR3b3JrR3JvdXBzL3BzMzQ2MS9zdGF0aWNNZW1iZXJzL3BzNjY0Nj9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "e9376615-1467-4ff7-bcdb-3a690eec4c8c" + "b66fa31c-c6f4-4c4a-8fa9-5f4f52e614ef" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -669,7 +669,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -678,22 +678,22 @@ "Kestrel" ], "x-ms-request-id": [ - "24346fd1-6809-4faf-8bd7-79c1426232d4" + "5b3118e0-de8a-4eb5-ada8-e32a0466ba44" ], "x-ms-correlation-request-id": [ - "24346fd1-6809-4faf-8bd7-79c1426232d4" + "5b3118e0-de8a-4eb5-ada8-e32a0466ba44" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T233028Z:24346fd1-6809-4faf-8bd7-79c1426232d4" + "WESTUS:20230219T023931Z:5b3118e0-de8a-4eb5-ada8-e32a0466ba44" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:30:27 GMT" + "Sun, 19 Feb 2023 02:39:31 GMT" ], "Content-Length": [ - "831" + "808" ], "Content-Type": [ "application/json; charset=utf-8" @@ -702,34 +702,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps9924\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/networkGroups/ps9966/staticMembers/ps9924\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups/staticMembers\",\r\n \"etag\": \"\\\"00000089-0000-3300-0000-632e41930000\\\"\",\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/virtualNetworks/powerShellTestVnet\",\r\n \"provisioningState\": \"Updating\",\r\n \"location\": \"\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-23T23:30:27.7693649Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-23T23:30:27.7693649Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps6646\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/networkGroups/ps3461/staticMembers/ps6646\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups/staticMembers\",\r\n \"etag\": \"\\\"56002fbf-0000-3300-0000-63f18be20000\\\"\",\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/virtualNetworks/SwaggerStackVnet\",\r\n \"provisioningState\": \"Updating\",\r\n \"location\": \"\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:39:30.7215872Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:39:30.7215872Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/networkGroups/ps9966/staticMembers/ps9924?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzODkzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNzc1Ny9uZXR3b3JrR3JvdXBzL3BzOTk2Ni9zdGF0aWNNZW1iZXJzL3BzOTkyND9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/networkGroups/ps3461/staticMembers/ps6646?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNDMxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNTI4Ny9uZXR3b3JrR3JvdXBzL3BzMzQ2MS9zdGF0aWNNZW1iZXJzL3BzNjY0Nj9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "e9376615-1467-4ff7-bcdb-3a690eec4c8c" + "b66fa31c-c6f4-4c4a-8fa9-5f4f52e614ef" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "215" + "192" ] }, - "RequestBody": "{\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/virtualNetworks/powerShellTestVnet\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/virtualNetworks/SwaggerStackVnet\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -738,7 +738,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -747,22 +747,22 @@ "Kestrel" ], "x-ms-request-id": [ - "628bede2-02b7-4f72-bb9a-6ace2035434a" + "0af1c716-83fa-4e7e-9843-b294b2d2fa55" ], "x-ms-correlation-request-id": [ - "628bede2-02b7-4f72-bb9a-6ace2035434a" + "0af1c716-83fa-4e7e-9843-b294b2d2fa55" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T233028Z:628bede2-02b7-4f72-bb9a-6ace2035434a" + "WESTUS:20230219T023931Z:0af1c716-83fa-4e7e-9843-b294b2d2fa55" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:30:27 GMT" + "Sun, 19 Feb 2023 02:39:30 GMT" ], "Content-Length": [ - "791" + "768" ], "Content-Type": [ "application/json; charset=utf-8" @@ -771,25 +771,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps9924\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/networkGroups/ps9966/staticMembers/ps9924\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups/staticMembers\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/virtualNetworks/powerShellTestVnet\",\r\n \"provisioningState\": \"Updating\",\r\n \"location\": \"\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-23T23:30:27.7693649Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-23T23:30:27.7693649Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps6646\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/networkGroups/ps3461/staticMembers/ps6646\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups/staticMembers\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/virtualNetworks/SwaggerStackVnet\",\r\n \"provisioningState\": \"Updating\",\r\n \"location\": \"\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:39:30.7215872Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:39:30.7215872Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/connectivityConfigurations/ps7423?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzODkzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNzc1Ny9jb25uZWN0aXZpdHlDb25maWd1cmF0aW9ucy9wczc0MjM/YXBpLXZlcnNpb249MjAyMi0wMS0wMQ==", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/connectivityConfigurations/ps4886?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNDMxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNTI4Ny9jb25uZWN0aXZpdHlDb25maWd1cmF0aW9ucy9wczQ4ODY/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "6d94ef97-5b15-453c-9860-38ea9b3b5d32" + "958d2a14-66f0-4732-ac89-23b0c79fa3ca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -801,7 +801,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -810,19 +810,19 @@ "Kestrel" ], "x-ms-request-id": [ - "4f326466-ab28-4676-963b-05832ca317cf" + "8a35c311-2e66-4f77-8f9b-4b8f46f7c0c7" ], "x-ms-correlation-request-id": [ - "4f326466-ab28-4676-963b-05832ca317cf" + "8a35c311-2e66-4f77-8f9b-4b8f46f7c0c7" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T233029Z:4f326466-ab28-4676-963b-05832ca317cf" + "WESTUS:20230219T023933Z:8a35c311-2e66-4f77-8f9b-4b8f46f7c0c7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:30:28 GMT" + "Sun, 19 Feb 2023 02:39:32 GMT" ], "Content-Length": [ "246" @@ -834,25 +834,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"Resource [/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/connectivityConfigurations/ps7423] does not exist or has been deleted\",\r\n \"code\": \"NotFound\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"Resource [/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/connectivityConfigurations/ps4886] does not exist or has been deleted\",\r\n \"code\": \"NotFound\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/connectivityConfigurations/ps7423?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzODkzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNzc1Ny9jb25uZWN0aXZpdHlDb25maWd1cmF0aW9ucy9wczc0MjM/YXBpLXZlcnNpb249MjAyMi0wMS0wMQ==", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/connectivityConfigurations/ps4886?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNDMxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNTI4Ny9jb25uZWN0aXZpdHlDb25maWd1cmF0aW9ucy9wczQ4ODY/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "6d94ef97-5b15-453c-9860-38ea9b3b5d32" + "958d2a14-66f0-4732-ac89-23b0c79fa3ca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -864,7 +864,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -873,22 +873,22 @@ "Kestrel" ], "x-ms-request-id": [ - "7e35b040-0873-4822-abbe-603fa6e80aa8" + "bf28f5f9-1b2c-4383-9488-b0b65d308b25" ], "x-ms-correlation-request-id": [ - "7e35b040-0873-4822-abbe-603fa6e80aa8" + "bf28f5f9-1b2c-4383-9488-b0b65d308b25" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T233030Z:7e35b040-0873-4822-abbe-603fa6e80aa8" + "WESTUS:20230219T023933Z:bf28f5f9-1b2c-4383-9488-b0b65d308b25" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:30:30 GMT" + "Sun, 19 Feb 2023 02:39:33 GMT" ], "Content-Length": [ - "1306" + "1267" ], "Content-Type": [ "application/json; charset=utf-8" @@ -897,25 +897,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps7423\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/connectivityConfigurations/ps7423\",\r\n \"type\": \"Microsoft.Network/networkManagers/connectivityConfigurations\",\r\n \"etag\": \"\\\"00000189-0000-3300-0000-632e41950000\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"connectivityTopology\": \"HubAndSpoke\",\r\n \"hubs\": [\r\n {\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/virtualNetworks/powerShellTestVnetHub\"\r\n }\r\n ],\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/networkGroups/ps9966\",\r\n \"groupConnectivity\": \"None\",\r\n \"useHubGateway\": \"False\",\r\n \"isGlobal\": \"False\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"deleteExistingPeering\": \"True\",\r\n \"isGlobal\": \"False\",\r\n \"resourceGuid\": \"b1371f84-140c-4476-a66a-be720f72350c\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-23T23:30:29.7454161Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-23T23:30:29.7454161Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps4886\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/connectivityConfigurations/ps4886\",\r\n \"type\": \"Microsoft.Network/networkManagers/connectivityConfigurations\",\r\n \"etag\": \"\\\"56003dbf-0000-3300-0000-63f18be50000\\\"\",\r\n \"properties\": {\r\n \"description\": \"\",\r\n \"connectivityTopology\": \"HubAndSpoke\",\r\n \"hubs\": [\r\n {\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/virtualNetworks/SwaggerStackVnet-Hub\"\r\n }\r\n ],\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/networkGroups/ps3461\",\r\n \"groupConnectivity\": \"None\",\r\n \"useHubGateway\": \"False\",\r\n \"isGlobal\": \"False\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"deleteExistingPeering\": \"True\",\r\n \"isGlobal\": \"False\",\r\n \"resourceGuid\": \"44275c3e-ce3c-41b6-b774-b86dcde2a0a1\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:39:33.1432218Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:39:33.1432218Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/connectivityConfigurations/ps7423?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzODkzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNzc1Ny9jb25uZWN0aXZpdHlDb25maWd1cmF0aW9ucy9wczc0MjM/YXBpLXZlcnNpb249MjAyMi0wMS0wMQ==", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/connectivityConfigurations/ps4886?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNDMxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNTI4Ny9jb25uZWN0aXZpdHlDb25maWd1cmF0aW9ucy9wczQ4ODY/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "4ccd5525-833a-4c4c-a2fd-6c4d55d165be" + "f43390dd-b11a-4578-a4e8-486c01c253a8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -936,22 +936,22 @@ "Kestrel" ], "x-ms-request-id": [ - "1497ece7-245d-466f-acdd-42f81f0522e3" + "5b3029c8-a55b-4cd9-bb2f-b713d28855a4" ], "x-ms-correlation-request-id": [ - "1497ece7-245d-466f-acdd-42f81f0522e3" + "5b3029c8-a55b-4cd9-bb2f-b713d28855a4" ], "x-ms-routing-request-id": [ - "WESTUS:20220923T233031Z:1497ece7-245d-466f-acdd-42f81f0522e3" + "WESTUS:20230219T023935Z:5b3029c8-a55b-4cd9-bb2f-b713d28855a4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:30:31 GMT" + "Sun, 19 Feb 2023 02:39:34 GMT" ], "Content-Length": [ - "1306" + "1267" ], "Content-Type": [ "application/json; charset=utf-8" @@ -960,25 +960,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps7423\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/connectivityConfigurations/ps7423\",\r\n \"type\": \"Microsoft.Network/networkManagers/connectivityConfigurations\",\r\n \"etag\": \"\\\"00000189-0000-3300-0000-632e41950000\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"connectivityTopology\": \"HubAndSpoke\",\r\n \"hubs\": [\r\n {\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/virtualNetworks/powerShellTestVnetHub\"\r\n }\r\n ],\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/networkGroups/ps9966\",\r\n \"groupConnectivity\": \"None\",\r\n \"useHubGateway\": \"False\",\r\n \"isGlobal\": \"False\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"deleteExistingPeering\": \"True\",\r\n \"isGlobal\": \"False\",\r\n \"resourceGuid\": \"b1371f84-140c-4476-a66a-be720f72350c\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-23T23:30:29.7454161Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-23T23:30:29.7454161Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps4886\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/connectivityConfigurations/ps4886\",\r\n \"type\": \"Microsoft.Network/networkManagers/connectivityConfigurations\",\r\n \"etag\": \"\\\"56003dbf-0000-3300-0000-63f18be50000\\\"\",\r\n \"properties\": {\r\n \"description\": \"\",\r\n \"connectivityTopology\": \"HubAndSpoke\",\r\n \"hubs\": [\r\n {\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/virtualNetworks/SwaggerStackVnet-Hub\"\r\n }\r\n ],\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/networkGroups/ps3461\",\r\n \"groupConnectivity\": \"None\",\r\n \"useHubGateway\": \"False\",\r\n \"isGlobal\": \"False\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"deleteExistingPeering\": \"True\",\r\n \"isGlobal\": \"False\",\r\n \"resourceGuid\": \"44275c3e-ce3c-41b6-b774-b86dcde2a0a1\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:39:33.1432218Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:39:33.1432218Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/connectivityConfigurations/ps7423?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzODkzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNzc1Ny9jb25uZWN0aXZpdHlDb25maWd1cmF0aW9ucy9wczc0MjM/YXBpLXZlcnNpb249MjAyMi0wMS0wMQ==", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/connectivityConfigurations/ps4886?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNDMxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNTI4Ny9jb25uZWN0aXZpdHlDb25maWd1cmF0aW9ucy9wczQ4ODY/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "311457c6-1d17-4113-a3f8-1fd5fa854e84" + "d6738e7f-91ad-4ea4-90b1-5d0a5d2db852" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -999,22 +999,22 @@ "Kestrel" ], "x-ms-request-id": [ - "d788620a-2947-4107-bc7c-b8d193693c00" + "c6563590-a7e2-4673-9901-9f8d1883cf10" ], "x-ms-correlation-request-id": [ - "d788620a-2947-4107-bc7c-b8d193693c00" + "c6563590-a7e2-4673-9901-9f8d1883cf10" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T233032Z:d788620a-2947-4107-bc7c-b8d193693c00" + "WESTUS:20230219T023936Z:c6563590-a7e2-4673-9901-9f8d1883cf10" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:30:31 GMT" + "Sun, 19 Feb 2023 02:39:36 GMT" ], "Content-Length": [ - "1306" + "1267" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1023,25 +1023,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps7423\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/connectivityConfigurations/ps7423\",\r\n \"type\": \"Microsoft.Network/networkManagers/connectivityConfigurations\",\r\n \"etag\": \"\\\"00000189-0000-3300-0000-632e41950000\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"connectivityTopology\": \"HubAndSpoke\",\r\n \"hubs\": [\r\n {\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/virtualNetworks/powerShellTestVnetHub\"\r\n }\r\n ],\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/networkGroups/ps9966\",\r\n \"groupConnectivity\": \"None\",\r\n \"useHubGateway\": \"False\",\r\n \"isGlobal\": \"False\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"deleteExistingPeering\": \"True\",\r\n \"isGlobal\": \"False\",\r\n \"resourceGuid\": \"b1371f84-140c-4476-a66a-be720f72350c\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-23T23:30:29.7454161Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-23T23:30:29.7454161Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps4886\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/connectivityConfigurations/ps4886\",\r\n \"type\": \"Microsoft.Network/networkManagers/connectivityConfigurations\",\r\n \"etag\": \"\\\"56003dbf-0000-3300-0000-63f18be50000\\\"\",\r\n \"properties\": {\r\n \"description\": \"\",\r\n \"connectivityTopology\": \"HubAndSpoke\",\r\n \"hubs\": [\r\n {\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/virtualNetworks/SwaggerStackVnet-Hub\"\r\n }\r\n ],\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/networkGroups/ps3461\",\r\n \"groupConnectivity\": \"None\",\r\n \"useHubGateway\": \"False\",\r\n \"isGlobal\": \"False\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"deleteExistingPeering\": \"True\",\r\n \"isGlobal\": \"False\",\r\n \"resourceGuid\": \"44275c3e-ce3c-41b6-b774-b86dcde2a0a1\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:39:33.1432218Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:39:33.1432218Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/connectivityConfigurations/ps7423?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzODkzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNzc1Ny9jb25uZWN0aXZpdHlDb25maWd1cmF0aW9ucy9wczc0MjM/YXBpLXZlcnNpb249MjAyMi0wMS0wMQ==", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/connectivityConfigurations/ps4886?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNDMxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNTI4Ny9jb25uZWN0aXZpdHlDb25maWd1cmF0aW9ucy9wczQ4ODY/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "311457c6-1d17-4113-a3f8-1fd5fa854e84" + "d6738e7f-91ad-4ea4-90b1-5d0a5d2db852" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -1062,22 +1062,22 @@ "Kestrel" ], "x-ms-request-id": [ - "a94c3ed1-62ea-43ab-9bbe-0882522a0888" + "ca0e6e25-f5c9-4eb1-b5ee-449815dbf1da" ], "x-ms-correlation-request-id": [ - "a94c3ed1-62ea-43ab-9bbe-0882522a0888" + "ca0e6e25-f5c9-4eb1-b5ee-449815dbf1da" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T233033Z:a94c3ed1-62ea-43ab-9bbe-0882522a0888" + "WESTUS:20230219T023937Z:ca0e6e25-f5c9-4eb1-b5ee-449815dbf1da" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:30:33 GMT" + "Sun, 19 Feb 2023 02:39:36 GMT" ], "Content-Length": [ - "1330" + "1291" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1086,34 +1086,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps7423\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/connectivityConfigurations/ps7423\",\r\n \"type\": \"Microsoft.Network/networkManagers/connectivityConfigurations\",\r\n \"etag\": \"\\\"00000389-0000-3300-0000-632e41990000\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"A different description.\",\r\n \"connectivityTopology\": \"HubAndSpoke\",\r\n \"hubs\": [\r\n {\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/virtualNetworks/powerShellTestVnetHub\"\r\n }\r\n ],\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/networkGroups/ps9966\",\r\n \"groupConnectivity\": \"None\",\r\n \"useHubGateway\": \"False\",\r\n \"isGlobal\": \"False\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"deleteExistingPeering\": \"True\",\r\n \"isGlobal\": \"False\",\r\n \"resourceGuid\": \"b1371f84-140c-4476-a66a-be720f72350c\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-23T23:30:29.7454161Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-23T23:30:32.9768442Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps4886\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/connectivityConfigurations/ps4886\",\r\n \"type\": \"Microsoft.Network/networkManagers/connectivityConfigurations\",\r\n \"etag\": \"\\\"560053bf-0000-3300-0000-63f18be90000\\\"\",\r\n \"properties\": {\r\n \"description\": \"A different description.\",\r\n \"connectivityTopology\": \"HubAndSpoke\",\r\n \"hubs\": [\r\n {\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/virtualNetworks/SwaggerStackVnet-Hub\"\r\n }\r\n ],\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/networkGroups/ps3461\",\r\n \"groupConnectivity\": \"None\",\r\n \"useHubGateway\": \"False\",\r\n \"isGlobal\": \"False\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"deleteExistingPeering\": \"True\",\r\n \"isGlobal\": \"False\",\r\n \"resourceGuid\": \"44275c3e-ce3c-41b6-b774-b86dcde2a0a1\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:39:33.1432218Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:39:36.9569435Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/connectivityConfigurations/ps7423?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzODkzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNzc1Ny9jb25uZWN0aXZpdHlDb25maWd1cmF0aW9ucy9wczc0MjM/YXBpLXZlcnNpb249MjAyMi0wMS0wMQ==", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/connectivityConfigurations/ps4886?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNDMxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNTI4Ny9jb25uZWN0aXZpdHlDb25maWd1cmF0aW9ucy9wczQ4ODY/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "6d94ef97-5b15-453c-9860-38ea9b3b5d32" + "958d2a14-66f0-4732-ac89-23b0c79fa3ca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "762" + "740" ] }, - "RequestBody": "{\r\n \"properties\": {\r\n \"connectivityTopology\": \"HubAndSpoke\",\r\n \"hubs\": [\r\n {\r\n \"resourceId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/virtualNetworks/powerShellTestVnetHub\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\"\r\n }\r\n ],\r\n \"isGlobal\": \"False\",\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/networkGroups/ps9966\",\r\n \"useHubGateway\": \"False\",\r\n \"isGlobal\": \"False\",\r\n \"groupConnectivity\": \"None\"\r\n }\r\n ],\r\n \"deleteExistingPeering\": \"True\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"connectivityTopology\": \"HubAndSpoke\",\r\n \"hubs\": [\r\n {\r\n \"resourceId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/virtualNetworks/SwaggerStackVnet-Hub\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\"\r\n }\r\n ],\r\n \"isGlobal\": \"False\",\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/networkGroups/ps3461\",\r\n \"useHubGateway\": \"False\",\r\n \"isGlobal\": \"False\",\r\n \"groupConnectivity\": \"None\"\r\n }\r\n ],\r\n \"deleteExistingPeering\": \"True\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1122,7 +1122,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1131,22 +1131,22 @@ "Kestrel" ], "x-ms-request-id": [ - "51016186-6c40-4be1-aa97-7c58eac8ef86" + "ac493935-8184-493f-9fff-7bfe8e8a7d50" ], "x-ms-correlation-request-id": [ - "51016186-6c40-4be1-aa97-7c58eac8ef86" + "ac493935-8184-493f-9fff-7bfe8e8a7d50" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T233030Z:51016186-6c40-4be1-aa97-7c58eac8ef86" + "WESTUS:20230219T023933Z:ac493935-8184-493f-9fff-7bfe8e8a7d50" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:30:29 GMT" + "Sun, 19 Feb 2023 02:39:32 GMT" ], "Content-Length": [ - "1266" + "1227" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1155,34 +1155,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps7423\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/connectivityConfigurations/ps7423\",\r\n \"type\": \"Microsoft.Network/networkManagers/connectivityConfigurations\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"connectivityTopology\": \"HubAndSpoke\",\r\n \"hubs\": [\r\n {\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/virtualNetworks/powerShellTestVnetHub\"\r\n }\r\n ],\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/networkGroups/ps9966\",\r\n \"groupConnectivity\": \"None\",\r\n \"useHubGateway\": \"False\",\r\n \"isGlobal\": \"False\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"deleteExistingPeering\": \"True\",\r\n \"isGlobal\": \"False\",\r\n \"resourceGuid\": \"b1371f84-140c-4476-a66a-be720f72350c\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-23T23:30:29.7454161Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-23T23:30:29.7454161Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps4886\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/connectivityConfigurations/ps4886\",\r\n \"type\": \"Microsoft.Network/networkManagers/connectivityConfigurations\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"description\": \"\",\r\n \"connectivityTopology\": \"HubAndSpoke\",\r\n \"hubs\": [\r\n {\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/virtualNetworks/SwaggerStackVnet-Hub\"\r\n }\r\n ],\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/networkGroups/ps3461\",\r\n \"groupConnectivity\": \"None\",\r\n \"useHubGateway\": \"False\",\r\n \"isGlobal\": \"False\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"deleteExistingPeering\": \"True\",\r\n \"isGlobal\": \"False\",\r\n \"resourceGuid\": \"44275c3e-ce3c-41b6-b774-b86dcde2a0a1\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:39:33.1432218Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:39:33.1432218Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/connectivityConfigurations/ps7423?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzODkzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNzc1Ny9jb25uZWN0aXZpdHlDb25maWd1cmF0aW9ucy9wczc0MjM/YXBpLXZlcnNpb249MjAyMi0wMS0wMQ==", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/connectivityConfigurations/ps4886?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNDMxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNTI4Ny9jb25uZWN0aXZpdHlDb25maWd1cmF0aW9ucy9wczQ4ODY/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "311457c6-1d17-4113-a3f8-1fd5fa854e84" + "d6738e7f-91ad-4ea4-90b1-5d0a5d2db852" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "810" + "788" ] }, - "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"A different description.\",\r\n \"connectivityTopology\": \"HubAndSpoke\",\r\n \"hubs\": [\r\n {\r\n \"resourceId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/virtualNetworks/powerShellTestVnetHub\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\"\r\n }\r\n ],\r\n \"isGlobal\": \"False\",\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/networkGroups/ps9966\",\r\n \"useHubGateway\": \"False\",\r\n \"isGlobal\": \"False\",\r\n \"groupConnectivity\": \"None\"\r\n }\r\n ],\r\n \"deleteExistingPeering\": \"True\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"A different description.\",\r\n \"connectivityTopology\": \"HubAndSpoke\",\r\n \"hubs\": [\r\n {\r\n \"resourceId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/virtualNetworks/SwaggerStackVnet-Hub\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\"\r\n }\r\n ],\r\n \"isGlobal\": \"False\",\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/networkGroups/ps3461\",\r\n \"useHubGateway\": \"False\",\r\n \"isGlobal\": \"False\",\r\n \"groupConnectivity\": \"None\"\r\n }\r\n ],\r\n \"deleteExistingPeering\": \"True\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1200,22 +1200,22 @@ "Kestrel" ], "x-ms-request-id": [ - "225665b8-48c4-4da5-9de8-d3e396c56fb3" + "3be5a0ec-34b0-4dfe-bc45-daab0d52cfcd" ], "x-ms-correlation-request-id": [ - "225665b8-48c4-4da5-9de8-d3e396c56fb3" + "3be5a0ec-34b0-4dfe-bc45-daab0d52cfcd" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T233033Z:225665b8-48c4-4da5-9de8-d3e396c56fb3" + "WESTUS:20230219T023937Z:3be5a0ec-34b0-4dfe-bc45-daab0d52cfcd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:30:32 GMT" + "Sun, 19 Feb 2023 02:39:36 GMT" ], "Content-Length": [ - "1290" + "1251" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1224,25 +1224,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps7423\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/connectivityConfigurations/ps7423\",\r\n \"type\": \"Microsoft.Network/networkManagers/connectivityConfigurations\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"A different description.\",\r\n \"connectivityTopology\": \"HubAndSpoke\",\r\n \"hubs\": [\r\n {\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/virtualNetworks/powerShellTestVnetHub\"\r\n }\r\n ],\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/networkGroups/ps9966\",\r\n \"groupConnectivity\": \"None\",\r\n \"useHubGateway\": \"False\",\r\n \"isGlobal\": \"False\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"deleteExistingPeering\": \"True\",\r\n \"isGlobal\": \"False\",\r\n \"resourceGuid\": \"b1371f84-140c-4476-a66a-be720f72350c\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-23T23:30:29.7454161Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-23T23:30:32.9768442Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps4886\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/connectivityConfigurations/ps4886\",\r\n \"type\": \"Microsoft.Network/networkManagers/connectivityConfigurations\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"description\": \"A different description.\",\r\n \"connectivityTopology\": \"HubAndSpoke\",\r\n \"hubs\": [\r\n {\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/virtualNetworks/SwaggerStackVnet-Hub\"\r\n }\r\n ],\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/networkGroups/ps3461\",\r\n \"groupConnectivity\": \"None\",\r\n \"useHubGateway\": \"False\",\r\n \"isGlobal\": \"False\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"deleteExistingPeering\": \"True\",\r\n \"isGlobal\": \"False\",\r\n \"resourceGuid\": \"44275c3e-ce3c-41b6-b774-b86dcde2a0a1\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:39:33.1432218Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:39:36.9569435Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/commit?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzODkzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNzc1Ny9jb21taXQ/YXBpLXZlcnNpb249MjAyMi0wMS0wMQ==", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/commit?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNDMxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNTI4Ny9jb21taXQ/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "POST", "RequestHeaders": { "x-ms-client-request-id": [ - "00c5ff81-7102-4f86-943c-8063edaeb5ec" + "ff505742-cbac-4c90-a83a-2d955957dc33" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1251,7 +1251,7 @@ "284" ] }, - "RequestBody": "{\r\n \"targetLocations\": [\r\n \"centraluseuap\"\r\n ],\r\n \"configurationIds\": [\r\n \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/connectivityConfigurations/ps7423\"\r\n ],\r\n \"commitType\": \"Connectivity\"\r\n}", + "RequestBody": "{\r\n \"targetLocations\": [\r\n \"centraluseuap\"\r\n ],\r\n \"configurationIds\": [\r\n \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/connectivityConfigurations/ps4886\"\r\n ],\r\n \"commitType\": \"Connectivity\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1260,7 +1260,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/operationResults/00000000-0000-0000-0000-000000000000?api-version=2022-01-01" + "https://management.azure.com/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/operationResults/00000000-0000-0000-0000-000000000000?api-version=2022-07-01" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" @@ -1272,22 +1272,22 @@ "Kestrel" ], "x-ms-request-id": [ - "26692b7b-f459-4711-8ae7-9268772f797c" + "a5fd3861-4a28-47e1-be9b-3bff3d761a56" ], "x-ms-correlation-request-id": [ - "26692b7b-f459-4711-8ae7-9268772f797c" + "a5fd3861-4a28-47e1-be9b-3bff3d761a56" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T233034Z:26692b7b-f459-4711-8ae7-9268772f797c" + "WESTUS:20230219T023939Z:a5fd3861-4a28-47e1-be9b-3bff3d761a56" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:30:34 GMT" + "Sun, 19 Feb 2023 02:39:39 GMT" ], "Content-Length": [ - "473" + "605" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1296,22 +1296,22 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/commit/b4401c39-6619-45b4-9bf1-dc2d60bf981f\",\r\n \"type\": \"Microsoft.Network/networkManagers/commit\",\r\n \"configurationIds\": [\r\n \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/connectivityConfigurations/ps7423\"\r\n ],\r\n \"targetLocations\": [\r\n \"centraluseuap\"\r\n ],\r\n \"commitType\": \"Connectivity\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/commit/04a65e35-6fec-4539-a62d-db5d630c0e60\",\r\n \"configurationIds\": [\r\n \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/connectivityConfigurations/ps4886\"\r\n ],\r\n \"targetLocations\": [\r\n \"centraluseuap\"\r\n ],\r\n \"commitType\": \"Connectivity\",\r\n \"commitId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/commit/04a65e35-6fec-4539-a62d-db5d630c0e60\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/operationResults/00000000-0000-0000-0000-000000000000?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzODkzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNzc1Ny9vcGVyYXRpb25SZXN1bHRzLzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMD9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/operationResults/00000000-0000-0000-0000-000000000000?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNDMxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNTI4Ny9vcGVyYXRpb25SZXN1bHRzLzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMD9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "00c5ff81-7102-4f86-943c-8063edaeb5ec" + "ff505742-cbac-4c90-a83a-2d955957dc33" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -1332,19 +1332,19 @@ "11999" ], "x-ms-request-id": [ - "e99cf063-da53-44e6-9fa4-f9e4502544bd" + "e9513a41-5ee4-425d-8d42-e50fabdd4259" ], "x-ms-correlation-request-id": [ - "e99cf063-da53-44e6-9fa4-f9e4502544bd" + "e9513a41-5ee4-425d-8d42-e50fabdd4259" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T233104Z:e99cf063-da53-44e6-9fa4-f9e4502544bd" + "WESTUS:20230219T024009Z:e9513a41-5ee4-425d-8d42-e50fabdd4259" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:31:04 GMT" + "Sun, 19 Feb 2023 02:40:09 GMT" ], "Expires": [ "-1" @@ -1354,18 +1354,18 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/operationResults/00000000-0000-0000-0000-000000000000?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzODkzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNzc1Ny9vcGVyYXRpb25SZXN1bHRzLzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMD9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/operationResults/00000000-0000-0000-0000-000000000000?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNDMxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNTI4Ny9vcGVyYXRpb25SZXN1bHRzLzAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMD9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "00c5ff81-7102-4f86-943c-8063edaeb5ec" + "ff505742-cbac-4c90-a83a-2d955957dc33" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -1386,19 +1386,19 @@ "11998" ], "x-ms-request-id": [ - "a9a63709-e2bd-4aff-ba16-f6855e4db17b" + "49d20c13-68e4-4aaa-a476-00121d41052e" ], "x-ms-correlation-request-id": [ - "a9a63709-e2bd-4aff-ba16-f6855e4db17b" + "49d20c13-68e4-4aaa-a476-00121d41052e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T233104Z:a9a63709-e2bd-4aff-ba16-f6855e4db17b" + "WESTUS:20230219T024010Z:49d20c13-68e4-4aaa-a476-00121d41052e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:31:04 GMT" + "Sun, 19 Feb 2023 02:40:09 GMT" ], "Expires": [ "-1" @@ -1408,21 +1408,21 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/listDeploymentStatus?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzODkzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNzc1Ny9saXN0RGVwbG95bWVudFN0YXR1cz9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/listDeploymentStatus?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNDMxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNTI4Ny9saXN0RGVwbG95bWVudFN0YXR1cz9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "POST", "RequestHeaders": { "x-ms-client-request-id": [ - "3ba9734b-80a7-40ce-9255-5db4a93e80fc" + "9cae4cb6-e7cc-4e8c-8ce4-cba26b5f3f92" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1449,19 +1449,19 @@ "Kestrel" ], "x-ms-request-id": [ - "7819cf83-5826-4a88-9809-82a363d0783a" + "afac58ee-bbd4-476e-8d0f-67045bf51364" ], "x-ms-correlation-request-id": [ - "7819cf83-5826-4a88-9809-82a363d0783a" + "afac58ee-bbd4-476e-8d0f-67045bf51364" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T233105Z:7819cf83-5826-4a88-9809-82a363d0783a" + "WESTCENTRALUS:20230219T024110Z:afac58ee-bbd4-476e-8d0f-67045bf51364" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:31:04 GMT" + "Sun, 19 Feb 2023 02:41:10 GMT" ], "Content-Length": [ "359" @@ -1473,25 +1473,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"skipToken\": \"\",\r\n \"value\": [\r\n {\r\n \"deploymentType\": \"Connectivity\",\r\n \"configurationIds\": [\r\n \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/connectivityConfigurations/ps7423\"\r\n ],\r\n \"region\": \"centraluseuap\",\r\n \"deploymentStatus\": \"Deployed\",\r\n \"errorMessage\": \"\",\r\n \"commitTime\": \"2022-09-23T23:30:34Z\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"skipToken\": \"\",\r\n \"value\": [\r\n {\r\n \"deploymentType\": \"Connectivity\",\r\n \"configurationIds\": [\r\n \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/connectivityConfigurations/ps4886\"\r\n ],\r\n \"region\": \"centraluseuap\",\r\n \"deploymentStatus\": \"Deployed\",\r\n \"errorMessage\": \"\",\r\n \"commitTime\": \"2023-02-19T02:39:39Z\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/listActiveConnectivityConfigurations?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzODkzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNzc1Ny9saXN0QWN0aXZlQ29ubmVjdGl2aXR5Q29uZmlndXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMi0wMS0wMQ==", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/listActiveConnectivityConfigurations?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNDMxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNTI4Ny9saXN0QWN0aXZlQ29ubmVjdGl2aXR5Q29uZmlndXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "POST", "RequestHeaders": { "x-ms-client-request-id": [ - "c631a445-9eb5-42b5-84c0-0e59ec43e7fa" + "a5a70e28-bb9a-4f33-a5f8-a399a915c851" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1508,8 +1508,8 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1518,22 +1518,22 @@ "Kestrel" ], "x-ms-request-id": [ - "f1cdf74f-8beb-4df4-93c6-a7e1efa88492" + "650d96af-51e5-41d7-b295-8c0369225ecb" ], "x-ms-correlation-request-id": [ - "f1cdf74f-8beb-4df4-93c6-a7e1efa88492" + "650d96af-51e5-41d7-b295-8c0369225ecb" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T233106Z:f1cdf74f-8beb-4df4-93c6-a7e1efa88492" + "WESTCENTRALUS:20230219T024111Z:650d96af-51e5-41d7-b295-8c0369225ecb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:31:05 GMT" + "Sun, 19 Feb 2023 02:41:10 GMT" ], "Content-Length": [ - "1374" + "1318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1542,25 +1542,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"skipToken\": \"\",\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/connectivityConfigurations/ps7423\",\r\n \"region\": \"centraluseuap\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"A different description.\",\r\n \"connectivityTopology\": \"HubAndSpoke\",\r\n \"hubs\": [\r\n {\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/virtualNetworks/powerShellTestVnetHub\"\r\n }\r\n ],\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/networkGroups/ps9966\",\r\n \"groupConnectivity\": \"None\",\r\n \"useHubGateway\": \"False\",\r\n \"isGlobal\": \"False\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"deleteExistingPeering\": \"True\",\r\n \"isGlobal\": \"False\",\r\n \"resourceGuid\": \"b1371f84-140c-4476-a66a-be720f72350c\"\r\n },\r\n \"configurationGroups\": [\r\n {\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/networkGroups/ps9966\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"SampleDESCRIption\",\r\n \"groupMembers\": [],\r\n \"conditionalMembership\": \"\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"memberType\": \"VirtualNetwork\",\r\n \"resourceGuid\": \"67507379-8909-478d-b3bb-901bfd95f1ec\"\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"skipToken\": \"\",\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/connectivityConfigurations/ps4886\",\r\n \"region\": \"centraluseuap\",\r\n \"properties\": {\r\n \"description\": \"A different description.\",\r\n \"connectivityTopology\": \"HubAndSpoke\",\r\n \"hubs\": [\r\n {\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/virtualNetworks/SwaggerStackVnet-Hub\"\r\n }\r\n ],\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/networkGroups/ps3461\",\r\n \"groupConnectivity\": \"None\",\r\n \"useHubGateway\": \"False\",\r\n \"isGlobal\": \"False\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"deleteExistingPeering\": \"True\",\r\n \"isGlobal\": \"False\",\r\n \"resourceGuid\": \"44275c3e-ce3c-41b6-b774-b86dcde2a0a1\"\r\n },\r\n \"configurationGroups\": [\r\n {\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/networkGroups/ps3461\",\r\n \"properties\": {\r\n \"description\": \"SampleDESCRIption\",\r\n \"groupMembers\": [],\r\n \"conditionalMembership\": \"\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"memberType\": \"VirtualNetwork\",\r\n \"resourceGuid\": \"f3b0045a-2134-40ad-adc5-8d21a8c2f987\"\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/virtualNetworks/powerShellTestVnet/listNetworkManagerEffectiveConnectivityConfigurations?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL2phcmVkZ29ydGh5LVBvd2VyU2hlbGxUZXN0UmVzb3VyY2VzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvcG93ZXJTaGVsbFRlc3RWbmV0L2xpc3ROZXR3b3JrTWFuYWdlckVmZmVjdGl2ZUNvbm5lY3Rpdml0eUNvbmZpZ3VyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjItMDEtMDE=", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/virtualNetworks/SwaggerStackVnet/listNetworkManagerEffectiveConnectivityConfigurations?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL1N3YWdnZXJTdGFja1JHL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvU3dhZ2dlclN0YWNrVm5ldC9saXN0TmV0d29ya01hbmFnZXJFZmZlY3RpdmVDb25uZWN0aXZpdHlDb25maWd1cmF0aW9ucz9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "POST", "RequestHeaders": { "x-ms-client-request-id": [ - "b7c2880b-3128-49cb-b561-435e551e89f3" + "6226761d-74ba-437e-bd5f-72a6aa8783f4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1577,8 +1577,8 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1587,22 +1587,22 @@ "Kestrel" ], "x-ms-request-id": [ - "38538e9e-94c6-4044-a316-73d89a3e8c86" + "3c4aa57a-aa4c-4838-894c-03e0d6a70408" ], "x-ms-correlation-request-id": [ - "38538e9e-94c6-4044-a316-73d89a3e8c86" + "3c4aa57a-aa4c-4838-894c-03e0d6a70408" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T233107Z:38538e9e-94c6-4044-a316-73d89a3e8c86" + "WESTCENTRALUS:20230219T024111Z:3c4aa57a-aa4c-4838-894c-03e0d6a70408" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:31:06 GMT" + "Sun, 19 Feb 2023 02:41:11 GMT" ], "Content-Length": [ - "1349" + "1293" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1611,25 +1611,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"skipToken\": \"\",\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/connectivityConfigurations/ps7423\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"A different description.\",\r\n \"connectivityTopology\": \"HubAndSpoke\",\r\n \"hubs\": [\r\n {\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/virtualNetworks/powerShellTestVnetHub\"\r\n }\r\n ],\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/networkGroups/ps9966\",\r\n \"groupConnectivity\": \"None\",\r\n \"useHubGateway\": \"False\",\r\n \"isGlobal\": \"False\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"deleteExistingPeering\": \"True\",\r\n \"isGlobal\": \"False\",\r\n \"resourceGuid\": \"b1371f84-140c-4476-a66a-be720f72350c\"\r\n },\r\n \"configurationGroups\": [\r\n {\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/networkGroups/ps9966\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"SampleDESCRIption\",\r\n \"groupMembers\": [],\r\n \"conditionalMembership\": \"\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"memberType\": \"VirtualNetwork\",\r\n \"resourceGuid\": \"67507379-8909-478d-b3bb-901bfd95f1ec\"\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"skipToken\": \"\",\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/connectivityConfigurations/ps4886\",\r\n \"properties\": {\r\n \"description\": \"A different description.\",\r\n \"connectivityTopology\": \"HubAndSpoke\",\r\n \"hubs\": [\r\n {\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/virtualNetworks/SwaggerStackVnet-Hub\"\r\n }\r\n ],\r\n \"appliesToGroups\": [\r\n {\r\n \"networkGroupId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/networkGroups/ps3461\",\r\n \"groupConnectivity\": \"None\",\r\n \"useHubGateway\": \"False\",\r\n \"isGlobal\": \"False\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"deleteExistingPeering\": \"True\",\r\n \"isGlobal\": \"False\",\r\n \"resourceGuid\": \"44275c3e-ce3c-41b6-b774-b86dcde2a0a1\"\r\n },\r\n \"configurationGroups\": [\r\n {\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/networkGroups/ps3461\",\r\n \"properties\": {\r\n \"description\": \"SampleDESCRIption\",\r\n \"groupMembers\": [],\r\n \"conditionalMembership\": \"\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"memberType\": \"VirtualNetwork\",\r\n \"resourceGuid\": \"f3b0045a-2134-40ad-adc5-8d21a8c2f987\"\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/connectivityConfigurations/ps7423?force=true&api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzODkzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNzc1Ny9jb25uZWN0aXZpdHlDb25maWd1cmF0aW9ucy9wczc0MjM/Zm9yY2U9dHJ1ZSZhcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/connectivityConfigurations/ps4886?force=true&api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNDMxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNTI4Ny9jb25uZWN0aXZpdHlDb25maWd1cmF0aW9ucy9wczQ4ODY/Zm9yY2U9dHJ1ZSZhcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "70e22e00-7d43-4aad-af26-865d03e2a815" + "44b94a97-adbe-4926-83c6-20c98d6ef100" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -1641,7 +1641,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/connectivityConfigurations/ps7423/operationResults/b1371f84-140c-4476-a66a-be720f72350c?api-version=2022-01-01" + "https://management.azure.com/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/connectivityConfigurations/ps4886/operationResults/44275c3e-ce3c-41b6-b774-b86dcde2a0a1?api-version=2022-07-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1653,19 +1653,19 @@ "14999" ], "x-ms-request-id": [ - "076e54d0-c7e6-4e19-a206-341986163277" + "ba2cbdcb-f0ca-4210-bdd7-0ab083aeed13" ], "x-ms-correlation-request-id": [ - "076e54d0-c7e6-4e19-a206-341986163277" + "ba2cbdcb-f0ca-4210-bdd7-0ab083aeed13" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T233108Z:076e54d0-c7e6-4e19-a206-341986163277" + "WESTCENTRALUS:20230219T024113Z:ba2cbdcb-f0ca-4210-bdd7-0ab083aeed13" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:31:08 GMT" + "Sun, 19 Feb 2023 02:41:12 GMT" ], "Expires": [ "-1" @@ -1678,15 +1678,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/connectivityConfigurations/ps7423/operationResults/b1371f84-140c-4476-a66a-be720f72350c?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzODkzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNzc1Ny9jb25uZWN0aXZpdHlDb25maWd1cmF0aW9ucy9wczc0MjMvb3BlcmF0aW9uUmVzdWx0cy9iMTM3MWY4NC0xNDBjLTQ0NzYtYTY2YS1iZTcyMGY3MjM1MGM/YXBpLXZlcnNpb249MjAyMi0wMS0wMQ==", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/connectivityConfigurations/ps4886/operationResults/44275c3e-ce3c-41b6-b774-b86dcde2a0a1?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNDMxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNTI4Ny9jb25uZWN0aXZpdHlDb25maWd1cmF0aW9ucy9wczQ4ODYvb3BlcmF0aW9uUmVzdWx0cy80NDI3NWMzZS1jZTNjLTQxYjYtYjc3NC1iODZkY2RlMmEwYTE/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -1707,19 +1707,19 @@ "11999" ], "x-ms-request-id": [ - "7575d545-78c3-483a-8811-c262b07817c8" + "265fb3f5-a2ac-4afe-b0f8-902c13cf44cb" ], "x-ms-correlation-request-id": [ - "7575d545-78c3-483a-8811-c262b07817c8" + "265fb3f5-a2ac-4afe-b0f8-902c13cf44cb" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T233139Z:7575d545-78c3-483a-8811-c262b07817c8" + "WESTCENTRALUS:20230219T024143Z:265fb3f5-a2ac-4afe-b0f8-902c13cf44cb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:31:38 GMT" + "Sun, 19 Feb 2023 02:41:42 GMT" ], "Expires": [ "-1" @@ -1729,15 +1729,15 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/connectivityConfigurations/ps7423/operationResults/b1371f84-140c-4476-a66a-be720f72350c?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzODkzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNzc1Ny9jb25uZWN0aXZpdHlDb25maWd1cmF0aW9ucy9wczc0MjMvb3BlcmF0aW9uUmVzdWx0cy9iMTM3MWY4NC0xNDBjLTQ0NzYtYTY2YS1iZTcyMGY3MjM1MGM/YXBpLXZlcnNpb249MjAyMi0wMS0wMQ==", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/connectivityConfigurations/ps4886/operationResults/44275c3e-ce3c-41b6-b774-b86dcde2a0a1?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNDMxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNTI4Ny9jb25uZWN0aXZpdHlDb25maWd1cmF0aW9ucy9wczQ4ODYvb3BlcmF0aW9uUmVzdWx0cy80NDI3NWMzZS1jZTNjLTQxYjYtYjc3NC1iODZkY2RlMmEwYTE/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -1758,19 +1758,19 @@ "11998" ], "x-ms-request-id": [ - "50865195-c5a2-42d6-9e58-d0c9816a1311" + "e57ced01-8dd5-4bed-b927-64dee404dfd3" ], "x-ms-correlation-request-id": [ - "50865195-c5a2-42d6-9e58-d0c9816a1311" + "e57ced01-8dd5-4bed-b927-64dee404dfd3" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220923T233139Z:50865195-c5a2-42d6-9e58-d0c9816a1311" + "WESTCENTRALUS:20230219T024143Z:e57ced01-8dd5-4bed-b927-64dee404dfd3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:31:38 GMT" + "Sun, 19 Feb 2023 02:41:43 GMT" ], "Expires": [ "-1" @@ -1780,21 +1780,21 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/networkGroups/ps9966/staticMembers/ps9924?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzODkzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNzc1Ny9uZXR3b3JrR3JvdXBzL3BzOTk2Ni9zdGF0aWNNZW1iZXJzL3BzOTkyND9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/networkGroups/ps3461/staticMembers/ps6646?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNDMxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNTI4Ny9uZXR3b3JrR3JvdXBzL3BzMzQ2MS9zdGF0aWNNZW1iZXJzL3BzNjY0Nj9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "1f8ac1da-2aad-4f0e-81f2-9a582e9a22fc" + "584b4532-2242-49c1-9d3b-e5f0c6c2c213" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -1812,22 +1812,22 @@ "Kestrel" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-request-id": [ - "1143a05a-2a88-4ea5-ad0f-eceb69d46194" + "49b7faa6-59ce-4bf7-9be6-cb28e0063eda" ], "x-ms-correlation-request-id": [ - "1143a05a-2a88-4ea5-ad0f-eceb69d46194" + "49b7faa6-59ce-4bf7-9be6-cb28e0063eda" ], "x-ms-routing-request-id": [ - "WESTUS:20220923T233140Z:1143a05a-2a88-4ea5-ad0f-eceb69d46194" + "WESTCENTRALUS:20230219T024213Z:49b7faa6-59ce-4bf7-9be6-cb28e0063eda" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:31:39 GMT" + "Sun, 19 Feb 2023 02:42:12 GMT" ], "Expires": [ "-1" @@ -1840,21 +1840,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757/networkGroups/ps9966?force=false&api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzODkzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNzc1Ny9uZXR3b3JrR3JvdXBzL3BzOTk2Nj9mb3JjZT1mYWxzZSZhcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287/networkGroups/ps3461?force=false&api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNDMxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNTI4Ny9uZXR3b3JrR3JvdXBzL3BzMzQ2MT9mb3JjZT1mYWxzZSZhcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "6c8249de-d3c8-4144-a569-df9aef3b6acb" + "cf27d243-4f1f-47be-867e-3cc47e87e9af" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -1875,19 +1875,19 @@ "14999" ], "x-ms-request-id": [ - "25bbda9e-6b1a-4de2-9b01-448ff9f65adc" + "411949a6-1f0e-471b-9e97-0fea3a01e871" ], "x-ms-correlation-request-id": [ - "25bbda9e-6b1a-4de2-9b01-448ff9f65adc" + "411949a6-1f0e-471b-9e97-0fea3a01e871" ], "x-ms-routing-request-id": [ - "WESTUS:20220923T233140Z:25bbda9e-6b1a-4de2-9b01-448ff9f65adc" + "WESTCENTRALUS:20230219T024214Z:411949a6-1f0e-471b-9e97-0fea3a01e871" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:31:40 GMT" + "Sun, 19 Feb 2023 02:42:13 GMT" ], "Expires": [ "-1" @@ -1900,21 +1900,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps8931/providers/Microsoft.Network/networkManagers/ps7757?force=false&api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzODkzMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNzc1Nz9mb3JjZT1mYWxzZSZhcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps4311/providers/Microsoft.Network/networkManagers/ps5287?force=false&api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzNDMxMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNTI4Nz9mb3JjZT1mYWxzZSZhcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "990b0e6b-8b7d-47a7-b7fd-07e9f494c98d" + "87a247a6-a2ac-4b2d-ad5a-4f896c41f3a3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -1932,22 +1932,22 @@ "Kestrel" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-request-id": [ - "8ad91763-7937-4d91-aacc-16c3627b6b31" + "adfb47fa-9b9e-4596-a048-e43b7c60feae" ], "x-ms-correlation-request-id": [ - "8ad91763-7937-4d91-aacc-16c3627b6b31" + "adfb47fa-9b9e-4596-a048-e43b7c60feae" ], "x-ms-routing-request-id": [ - "WESTUS:20220923T233143Z:8ad91763-7937-4d91-aacc-16c3627b6b31" + "WESTCENTRALUS:20230219T024215Z:adfb47fa-9b9e-4596-a048-e43b7c60feae" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:31:43 GMT" + "Sun, 19 Feb 2023 02:42:14 GMT" ], "Expires": [ "-1" @@ -1960,21 +1960,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourcegroups/ps8931?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlZ3JvdXBzL3BzODkzMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourcegroups/ps4311?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlZ3JvdXBzL3BzNDMxMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "b43530ec-c4f1-4625-9eef-05162b284a7b" + "d56ce800-bba0-48a0-82c3-0aff11889e90" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.61" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, "RequestBody": "", @@ -1986,136 +1986,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5MzEtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMTEtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-request-id": [ - "3926c480-d06e-4a5c-bad3-3fbff5c7d837" - ], - "x-ms-correlation-request-id": [ - "3926c480-d06e-4a5c-bad3-3fbff5c7d837" - ], - "x-ms-routing-request-id": [ - "WESTUS:20220923T233145Z:3926c480-d06e-4a5c-bad3-3fbff5c7d837" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Sep 2022 23:31:44 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5MzEtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU16RXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.22.41602", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.61" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5MzEtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-request-id": [ - "73bf401b-cdbe-4d16-ba4e-1cde99ff4e57" - ], - "x-ms-correlation-request-id": [ - "73bf401b-cdbe-4d16-ba4e-1cde99ff4e57" - ], - "x-ms-routing-request-id": [ - "WESTUS:20220923T233200Z:73bf401b-cdbe-4d16-ba4e-1cde99ff4e57" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Sep 2022 23:31:59 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5MzEtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU16RXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.22.41602", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.61" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5MzEtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "14998" ], "x-ms-request-id": [ - "7813b38b-a8c9-4737-8e9c-80e123e22d15" + "e51df877-d1f7-4e83-80d7-6dd89ad29f3f" ], "x-ms-correlation-request-id": [ - "7813b38b-a8c9-4737-8e9c-80e123e22d15" + "e51df877-d1f7-4e83-80d7-6dd89ad29f3f" ], "x-ms-routing-request-id": [ - "WESTUS:20220923T233215Z:7813b38b-a8c9-4737-8e9c-80e123e22d15" + "WESTCENTRALUS:20230219T024216Z:e51df877-d1f7-4e83-80d7-6dd89ad29f3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2124,7 +2010,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:32:14 GMT" + "Sun, 19 Feb 2023 02:42:16 GMT" ], "Expires": [ "-1" @@ -2137,15 +2023,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5MzEtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU16RXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMTEtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1URXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.61" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, "RequestBody": "", @@ -2156,23 +2042,17 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5MzEtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-request-id": [ - "25a56076-f288-4a7f-a90b-68c06416f384" + "40dcec34-4513-4bc6-bc72-22c2d0d6b004" ], "x-ms-correlation-request-id": [ - "25a56076-f288-4a7f-a90b-68c06416f384" + "40dcec34-4513-4bc6-bc72-22c2d0d6b004" ], "x-ms-routing-request-id": [ - "WESTUS:20220923T233230Z:25a56076-f288-4a7f-a90b-68c06416f384" + "WESTCENTRALUS:20230219T024231Z:40dcec34-4513-4bc6-bc72-22c2d0d6b004" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2181,115 +2061,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:32:30 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5MzEtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU16RXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.22.41602", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.61" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5MzEtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-request-id": [ - "bfa6cc81-3f65-4688-8fd0-ddfc61440d83" - ], - "x-ms-correlation-request-id": [ - "bfa6cc81-3f65-4688-8fd0-ddfc61440d83" - ], - "x-ms-routing-request-id": [ - "WESTUS:20220923T233245Z:bfa6cc81-3f65-4688-8fd0-ddfc61440d83" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Sep 2022 23:32:45 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5MzEtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU16RXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.22.41602", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.61" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-request-id": [ - "9dde6070-8cbb-4be0-baa9-332a31cc5d28" - ], - "x-ms-correlation-request-id": [ - "9dde6070-8cbb-4be0-baa9-332a31cc5d28" - ], - "x-ms-routing-request-id": [ - "WESTUS:20220923T233301Z:9dde6070-8cbb-4be0-baa9-332a31cc5d28" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 23 Sep 2022 23:33:00 GMT" + "Sun, 19 Feb 2023 02:42:31 GMT" ], "Expires": [ "-1" @@ -2302,15 +2074,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg5MzEtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnNU16RXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMTEtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1URXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.61" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, "RequestBody": "", @@ -2322,16 +2094,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11996" ], "x-ms-request-id": [ - "b5914960-e1d1-437b-aa0a-f8ef736c7037" + "a4638e00-1dbc-49ed-8d8a-40dc829c8cd9" ], "x-ms-correlation-request-id": [ - "b5914960-e1d1-437b-aa0a-f8ef736c7037" + "a4638e00-1dbc-49ed-8d8a-40dc829c8cd9" ], "x-ms-routing-request-id": [ - "WESTUS:20220923T233301Z:b5914960-e1d1-437b-aa0a-f8ef736c7037" + "WESTCENTRALUS:20230219T024231Z:a4638e00-1dbc-49ed-8d8a-40dc829c8cd9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2340,7 +2112,7 @@ "nosniff" ], "Date": [ - "Fri, 23 Sep 2022 23:33:01 GMT" + "Sun, 19 Feb 2023 02:42:31 GMT" ], "Expires": [ "-1" @@ -2355,14 +2127,14 @@ ], "Names": { "Test-NetworkManagerConnectivityConfigurationCRUD": [ - "ps8931", - "ps7757", - "ps9966", - "ps9924", - "ps7423" + "ps4311", + "ps5287", + "ps3461", + "ps6646", + "ps4886" ] }, "Variables": { - "SubscriptionId": "0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884" + "SubscriptionId": "08615b4b-bc9c-4a70-be1b-2ea10bc97b52" } } \ No newline at end of file diff --git a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkManagerTests/TestNetworkManagerGroupCRUD.json b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkManagerTests/TestNetworkManagerGroupCRUD.json index c1081c454cb4..9076e4232bdf 100644 --- a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkManagerTests/TestNetworkManagerGroupCRUD.json +++ b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkManagerTests/TestNetworkManagerGroupCRUD.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourcegroups/ps9256?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlZ3JvdXBzL3BzOTI1Nj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourcegroups/ps2052?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlZ3JvdXBzL3BzMjA1Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "328da4ef-8c3e-4dd2-8669-8bf041a5bd84" + "70f672b7-cff6-4ec4-83ff-38361026c26b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.61" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "3151786e-decb-4955-ad29-2cf69c20aea5" + "190ab2ed-146c-48d0-89eb-ccad030625b3" ], "x-ms-correlation-request-id": [ - "3151786e-decb-4955-ad29-2cf69c20aea5" + "190ab2ed-146c-48d0-89eb-ccad030625b3" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T172839Z:3151786e-decb-4955-ad29-2cf69c20aea5" + "WESTUS:20230219T023839Z:190ab2ed-146c-48d0-89eb-ccad030625b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:28:39 GMT" + "Sun, 19 Feb 2023 02:38:38 GMT" ], "Content-Length": [ - "201" + "242" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,25 +63,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps9256\",\r\n \"name\": \"ps9256\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps2052\",\r\n \"name\": \"ps2052\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"testtag\": \"testval\",\r\n \"Created\": \"2023-02-19T02:38:38.4371373Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps9256/providers/Microsoft.Network/networkManagers/ps6291?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzOTI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNjI5MT9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps2052/providers/Microsoft.Network/networkManagers/ps3379?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzMjA1Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzM3OT9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "f6168b3e-7ed0-40ba-ae53-5cc558d7b089" + "9915c660-d5d8-4178-a22c-87434f7b6d54" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "23a3c0ea-5f18-4f0d-a091-3c29757b1b7f" + "6e2f216e-3da3-4e20-abe2-8fa344175b6e" ], "x-ms-correlation-request-id": [ - "23a3c0ea-5f18-4f0d-a091-3c29757b1b7f" + "6e2f216e-3da3-4e20-abe2-8fa344175b6e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T172839Z:23a3c0ea-5f18-4f0d-a091-3c29757b1b7f" + "WESTUS:20230219T023839Z:6e2f216e-3da3-4e20-abe2-8fa344175b6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:28:39 GMT" + "Sun, 19 Feb 2023 02:38:39 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,25 +123,25 @@ "218" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkManagers/ps6291' under resource group 'ps9256' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkManagers/ps3379' under resource group 'ps2052' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps9256/providers/Microsoft.Network/networkManagers/ps6291?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzOTI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNjI5MT9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps2052/providers/Microsoft.Network/networkManagers/ps3379?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzMjA1Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzM3OT9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "f6168b3e-7ed0-40ba-ae53-5cc558d7b089" + "9915c660-d5d8-4178-a22c-87434f7b6d54" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -153,7 +153,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11996" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -162,22 +162,22 @@ "Kestrel" ], "x-ms-request-id": [ - "92b23c46-ea17-497d-870b-e4189b99e2ac" + "68ff93bd-4331-493e-b38d-1f931c9d2c61" ], "x-ms-correlation-request-id": [ - "92b23c46-ea17-497d-870b-e4189b99e2ac" + "68ff93bd-4331-493e-b38d-1f931c9d2c61" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T172901Z:92b23c46-ea17-497d-870b-e4189b99e2ac" + "WESTUS:20230219T023842Z:68ff93bd-4331-493e-b38d-1f931c9d2c61" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:29:00 GMT" + "Sun, 19 Feb 2023 02:38:41 GMT" ], "Content-Length": [ - "881" + "864" ], "Content-Type": [ "application/json; charset=utf-8" @@ -186,25 +186,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps6291\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps9256/providers/Microsoft.Network/networkManagers/ps6291\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"00002819-0000-3300-0000-632c9b5c0000\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\"\r\n ],\r\n \"resourceGuid\": \"cb8dfed9-94b7-4f5e-8caf-f821e6fe372e\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-22T17:28:42.2437243Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-22T17:28:42.2437243Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps3379\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps2052/providers/Microsoft.Network/networkManagers/ps3379\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"56007abe-0000-3300-0000-63f18bb10000\\\"\",\r\n \"properties\": {\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\"\r\n ],\r\n \"resourceGuid\": \"8c0b8243-8fa9-4920-97a3-5445d1cdf0f1\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:38:40.9235817Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:38:40.9235817Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps9256/providers/Microsoft.Network/networkManagers/ps6291?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzOTI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNjI5MT9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps2052/providers/Microsoft.Network/networkManagers/ps3379?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzMjA1Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzM3OT9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "3a7dd696-9a9a-4140-9852-2edcdb549ce5" + "ee1a7e11-a327-4a56-8e96-6891bc718eaa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -216,7 +216,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -225,22 +225,22 @@ "Kestrel" ], "x-ms-request-id": [ - "c507c84d-3618-45de-a09c-3c79328bda0e" + "2b384f66-6800-4304-89e3-79da2fdc7ab7" ], "x-ms-correlation-request-id": [ - "c507c84d-3618-45de-a09c-3c79328bda0e" + "2b384f66-6800-4304-89e3-79da2fdc7ab7" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T172902Z:c507c84d-3618-45de-a09c-3c79328bda0e" + "WESTUS:20230219T023842Z:2b384f66-6800-4304-89e3-79da2fdc7ab7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:29:01 GMT" + "Sun, 19 Feb 2023 02:38:42 GMT" ], "Content-Length": [ - "881" + "864" ], "Content-Type": [ "application/json; charset=utf-8" @@ -249,25 +249,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps6291\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps9256/providers/Microsoft.Network/networkManagers/ps6291\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"00002819-0000-3300-0000-632c9b5c0000\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\"\r\n ],\r\n \"resourceGuid\": \"cb8dfed9-94b7-4f5e-8caf-f821e6fe372e\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-22T17:28:42.2437243Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-22T17:28:42.2437243Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps3379\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps2052/providers/Microsoft.Network/networkManagers/ps3379\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"56007abe-0000-3300-0000-63f18bb10000\\\"\",\r\n \"properties\": {\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\"\r\n ],\r\n \"resourceGuid\": \"8c0b8243-8fa9-4920-97a3-5445d1cdf0f1\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:38:40.9235817Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:38:40.9235817Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps9256/providers/Microsoft.Network/networkManagers/ps6291?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzOTI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNjI5MT9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps2052/providers/Microsoft.Network/networkManagers/ps3379?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzMjA1Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzM3OT9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "f6168b3e-7ed0-40ba-ae53-5cc558d7b089" + "9915c660-d5d8-4178-a22c-87434f7b6d54" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -276,7 +276,7 @@ "295" ] }, - "RequestBody": "{\r\n \"properties\": {\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884\"\r\n ]\r\n },\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\"\r\n ]\r\n },\r\n \"location\": \"centraluseuap\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52\"\r\n ]\r\n },\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\"\r\n ]\r\n },\r\n \"location\": \"centraluseuap\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -285,7 +285,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -294,22 +294,22 @@ "Kestrel" ], "x-ms-request-id": [ - "b0b26ecc-8bf9-4e19-8c06-4d78003158a6" + "957ed4a0-773d-481f-903f-0a9ab4d960d4" ], "x-ms-correlation-request-id": [ - "b0b26ecc-8bf9-4e19-8c06-4d78003158a6" + "957ed4a0-773d-481f-903f-0a9ab4d960d4" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T172901Z:b0b26ecc-8bf9-4e19-8c06-4d78003158a6" + "WESTUS:20230219T023841Z:957ed4a0-773d-481f-903f-0a9ab4d960d4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:29:00 GMT" + "Sun, 19 Feb 2023 02:38:41 GMT" ], "Content-Length": [ - "841" + "824" ], "Content-Type": [ "application/json; charset=utf-8" @@ -318,25 +318,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps6291\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps9256/providers/Microsoft.Network/networkManagers/ps6291\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\"\r\n ],\r\n \"resourceGuid\": \"cb8dfed9-94b7-4f5e-8caf-f821e6fe372e\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-22T17:28:42.2437243Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-22T17:28:42.2437243Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps3379\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps2052/providers/Microsoft.Network/networkManagers/ps3379\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\"\r\n ],\r\n \"resourceGuid\": \"8c0b8243-8fa9-4920-97a3-5445d1cdf0f1\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:38:40.9235817Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:38:40.9235817Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps9256/providers/Microsoft.Network/networkManagers/ps6291/networkGroups/ps1286?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzOTI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNjI5MS9uZXR3b3JrR3JvdXBzL3BzMTI4Nj9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps2052/providers/Microsoft.Network/networkManagers/ps3379/networkGroups/ps6598?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzMjA1Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzM3OS9uZXR3b3JrR3JvdXBzL3BzNjU5OD9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "c079326c-fa57-42f2-adb3-0dd6a58d605c" + "74d94726-4619-4735-9dae-dd9653a5fa37" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -357,19 +357,19 @@ "Kestrel" ], "x-ms-request-id": [ - "280e1b5d-3900-4766-bff7-1da2fa453a66" + "96632d14-1c6a-420e-bf70-14524eb1995d" ], "x-ms-correlation-request-id": [ - "280e1b5d-3900-4766-bff7-1da2fa453a66" + "96632d14-1c6a-420e-bf70-14524eb1995d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T172903Z:280e1b5d-3900-4766-bff7-1da2fa453a66" + "WESTUS:20230219T023844Z:96632d14-1c6a-420e-bf70-14524eb1995d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:29:02 GMT" + "Sun, 19 Feb 2023 02:38:43 GMT" ], "Content-Length": [ "233" @@ -381,25 +381,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"Resource [/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps9256/providers/Microsoft.Network/networkManagers/ps6291/networkGroups/ps1286] does not exist or has been deleted\",\r\n \"code\": \"NotFound\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"Resource [/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps2052/providers/Microsoft.Network/networkManagers/ps3379/networkGroups/ps6598] does not exist or has been deleted\",\r\n \"code\": \"NotFound\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps9256/providers/Microsoft.Network/networkManagers/ps6291/networkGroups/ps1286?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzOTI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNjI5MS9uZXR3b3JrR3JvdXBzL3BzMTI4Nj9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps2052/providers/Microsoft.Network/networkManagers/ps3379/networkGroups/ps6598?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzMjA1Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzM3OS9uZXR3b3JrR3JvdXBzL3BzNjU5OD9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "c079326c-fa57-42f2-adb3-0dd6a58d605c" + "74d94726-4619-4735-9dae-dd9653a5fa37" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -420,22 +420,22 @@ "Kestrel" ], "x-ms-request-id": [ - "8a5decc7-c6a5-4c03-a940-fec71f8be92b" + "2c9b9dad-649d-4ef8-9efb-466dfa1584dc" ], "x-ms-correlation-request-id": [ - "8a5decc7-c6a5-4c03-a940-fec71f8be92b" + "2c9b9dad-649d-4ef8-9efb-466dfa1584dc" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T172904Z:8a5decc7-c6a5-4c03-a940-fec71f8be92b" + "WESTUS:20230219T023845Z:2c9b9dad-649d-4ef8-9efb-466dfa1584dc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:29:04 GMT" + "Sun, 19 Feb 2023 02:38:45 GMT" ], "Content-Length": [ - "708" + "691" ], "Content-Type": [ "application/json; charset=utf-8" @@ -444,25 +444,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps1286\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps9256/providers/Microsoft.Network/networkManagers/ps6291/networkGroups/ps1286\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups\",\r\n \"etag\": \"\\\"00002c19-0000-3300-0000-632c9b600000\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"Sample description\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5959efe9-ef97-49e2-a331-e471acfe1367\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-22T17:29:03.6123087Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-22T17:29:03.6123087Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps6598\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps2052/providers/Microsoft.Network/networkManagers/ps3379/networkGroups/ps6598\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups\",\r\n \"etag\": \"\\\"56007ebe-0000-3300-0000-63f18bb40000\\\"\",\r\n \"properties\": {\r\n \"description\": \"Sample description\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2ecc2b25-1423-4641-bbc4-f61ebb56385a\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:38:44.2361447Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:38:44.2361447Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps9256/providers/Microsoft.Network/networkManagers/ps6291/networkGroups/ps1286?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzOTI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNjI5MS9uZXR3b3JrR3JvdXBzL3BzMTI4Nj9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps2052/providers/Microsoft.Network/networkManagers/ps3379/networkGroups/ps6598?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzMjA1Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzM3OS9uZXR3b3JrR3JvdXBzL3BzNjU5OD9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "5ec3ec74-94c9-4194-bc60-bce3b0f9d8df" + "a106a1ca-e128-4407-bb67-2040387a0a5c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -474,7 +474,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -483,22 +483,22 @@ "Kestrel" ], "x-ms-request-id": [ - "c096647c-bfe3-447f-9456-f97ca43c763f" + "157c1163-44ec-45bc-a028-e23df3678cfc" ], "x-ms-correlation-request-id": [ - "c096647c-bfe3-447f-9456-f97ca43c763f" + "157c1163-44ec-45bc-a028-e23df3678cfc" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T172905Z:c096647c-bfe3-447f-9456-f97ca43c763f" + "WESTUS:20230219T023846Z:157c1163-44ec-45bc-a028-e23df3678cfc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:29:04 GMT" + "Sun, 19 Feb 2023 02:38:45 GMT" ], "Content-Length": [ - "708" + "691" ], "Content-Type": [ "application/json; charset=utf-8" @@ -507,25 +507,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps1286\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps9256/providers/Microsoft.Network/networkManagers/ps6291/networkGroups/ps1286\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups\",\r\n \"etag\": \"\\\"00002c19-0000-3300-0000-632c9b600000\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"Sample description\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5959efe9-ef97-49e2-a331-e471acfe1367\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-22T17:29:03.6123087Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-22T17:29:03.6123087Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps6598\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps2052/providers/Microsoft.Network/networkManagers/ps3379/networkGroups/ps6598\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups\",\r\n \"etag\": \"\\\"56007ebe-0000-3300-0000-63f18bb40000\\\"\",\r\n \"properties\": {\r\n \"description\": \"Sample description\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2ecc2b25-1423-4641-bbc4-f61ebb56385a\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:38:44.2361447Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:38:44.2361447Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps9256/providers/Microsoft.Network/networkManagers/ps6291/networkGroups/ps1286?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzOTI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNjI5MS9uZXR3b3JrR3JvdXBzL3BzMTI4Nj9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps2052/providers/Microsoft.Network/networkManagers/ps3379/networkGroups/ps6598?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzMjA1Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzM3OS9uZXR3b3JrR3JvdXBzL3BzNjU5OD9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "ae104dc0-c127-4853-aba2-5fbc0745d212" + "0ee84e14-28c1-4f4c-95f0-f4a94cd6429f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -546,22 +546,22 @@ "Kestrel" ], "x-ms-request-id": [ - "73b50fb9-872d-4811-ba76-c69548b6dd8a" + "4cce9d51-2907-4556-9e7d-aab7a66318e0" ], "x-ms-correlation-request-id": [ - "73b50fb9-872d-4811-ba76-c69548b6dd8a" + "4cce9d51-2907-4556-9e7d-aab7a66318e0" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T172906Z:73b50fb9-872d-4811-ba76-c69548b6dd8a" + "WESTUS:20230219T023847Z:4cce9d51-2907-4556-9e7d-aab7a66318e0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:29:06 GMT" + "Sun, 19 Feb 2023 02:38:46 GMT" ], "Content-Length": [ - "708" + "691" ], "Content-Type": [ "application/json; charset=utf-8" @@ -570,25 +570,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps1286\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps9256/providers/Microsoft.Network/networkManagers/ps6291/networkGroups/ps1286\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups\",\r\n \"etag\": \"\\\"00002c19-0000-3300-0000-632c9b600000\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"Sample description\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5959efe9-ef97-49e2-a331-e471acfe1367\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-22T17:29:03.6123087Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-22T17:29:03.6123087Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps6598\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps2052/providers/Microsoft.Network/networkManagers/ps3379/networkGroups/ps6598\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups\",\r\n \"etag\": \"\\\"56007ebe-0000-3300-0000-63f18bb40000\\\"\",\r\n \"properties\": {\r\n \"description\": \"Sample description\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2ecc2b25-1423-4641-bbc4-f61ebb56385a\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:38:44.2361447Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:38:44.2361447Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps9256/providers/Microsoft.Network/networkManagers/ps6291/networkGroups/ps1286?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzOTI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNjI5MS9uZXR3b3JrR3JvdXBzL3BzMTI4Nj9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps2052/providers/Microsoft.Network/networkManagers/ps3379/networkGroups/ps6598?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzMjA1Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzM3OS9uZXR3b3JrR3JvdXBzL3BzNjU5OD9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "ae104dc0-c127-4853-aba2-5fbc0745d212" + "0ee84e14-28c1-4f4c-95f0-f4a94cd6429f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -609,22 +609,22 @@ "Kestrel" ], "x-ms-request-id": [ - "ec24813f-57fa-4d8e-8d6e-b58cb7710d60" + "ffa7cbbe-2e67-4660-8519-687c79e66046" ], "x-ms-correlation-request-id": [ - "ec24813f-57fa-4d8e-8d6e-b58cb7710d60" + "ffa7cbbe-2e67-4660-8519-687c79e66046" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T172907Z:ec24813f-57fa-4d8e-8d6e-b58cb7710d60" + "WESTUS:20230219T023848Z:ffa7cbbe-2e67-4660-8519-687c79e66046" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:29:07 GMT" + "Sun, 19 Feb 2023 02:38:47 GMT" ], "Content-Length": [ - "714" + "697" ], "Content-Type": [ "application/json; charset=utf-8" @@ -633,25 +633,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps1286\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps9256/providers/Microsoft.Network/networkManagers/ps6291/networkGroups/ps1286\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups\",\r\n \"etag\": \"\\\"00002f19-0000-3300-0000-632c9b630000\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"A different description.\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5959efe9-ef97-49e2-a331-e471acfe1367\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-22T17:29:03.6123087Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-22T17:29:07.080406Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps6598\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps2052/providers/Microsoft.Network/networkManagers/ps3379/networkGroups/ps6598\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups\",\r\n \"etag\": \"\\\"56008bbe-0000-3300-0000-63f18bb70000\\\"\",\r\n \"properties\": {\r\n \"description\": \"A different description.\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2ecc2b25-1423-4641-bbc4-f61ebb56385a\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:38:44.2361447Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:38:47.5722723Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps9256/providers/Microsoft.Network/networkManagers/ps6291/networkGroups/ps1286?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzOTI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNjI5MS9uZXR3b3JrR3JvdXBzL3BzMTI4Nj9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps2052/providers/Microsoft.Network/networkManagers/ps3379/networkGroups/ps6598?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzMjA1Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzM3OS9uZXR3b3JrR3JvdXBzL3BzNjU5OD9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "c079326c-fa57-42f2-adb3-0dd6a58d605c" + "74d94726-4619-4735-9dae-dd9653a5fa37" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -678,22 +678,22 @@ "Kestrel" ], "x-ms-request-id": [ - "c56168fd-1ad8-4b1c-89f1-50ec3a58521b" + "0ddcfde7-ba70-4892-ac05-746b23439642" ], "x-ms-correlation-request-id": [ - "c56168fd-1ad8-4b1c-89f1-50ec3a58521b" + "0ddcfde7-ba70-4892-ac05-746b23439642" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T172904Z:c56168fd-1ad8-4b1c-89f1-50ec3a58521b" + "WESTUS:20230219T023845Z:0ddcfde7-ba70-4892-ac05-746b23439642" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:29:04 GMT" + "Sun, 19 Feb 2023 02:38:44 GMT" ], "Content-Length": [ - "668" + "651" ], "Content-Type": [ "application/json; charset=utf-8" @@ -702,25 +702,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps1286\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps9256/providers/Microsoft.Network/networkManagers/ps6291/networkGroups/ps1286\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"Sample description\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5959efe9-ef97-49e2-a331-e471acfe1367\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-22T17:29:03.6123087Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-22T17:29:03.6123087Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps6598\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps2052/providers/Microsoft.Network/networkManagers/ps3379/networkGroups/ps6598\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"description\": \"Sample description\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2ecc2b25-1423-4641-bbc4-f61ebb56385a\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:38:44.2361447Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:38:44.2361447Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps9256/providers/Microsoft.Network/networkManagers/ps6291/networkGroups/ps1286?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzOTI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNjI5MS9uZXR3b3JrR3JvdXBzL3BzMTI4Nj9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps2052/providers/Microsoft.Network/networkManagers/ps3379/networkGroups/ps6598?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzMjA1Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzM3OS9uZXR3b3JrR3JvdXBzL3BzNjU5OD9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "ae104dc0-c127-4853-aba2-5fbc0745d212" + "0ee84e14-28c1-4f4c-95f0-f4a94cd6429f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -747,22 +747,22 @@ "Kestrel" ], "x-ms-request-id": [ - "7e3ce249-248c-4e90-bffd-c6c549cdf82f" + "12b3c626-0db8-49b3-84f5-e4bf93687bcd" ], "x-ms-correlation-request-id": [ - "7e3ce249-248c-4e90-bffd-c6c549cdf82f" + "12b3c626-0db8-49b3-84f5-e4bf93687bcd" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T172907Z:7e3ce249-248c-4e90-bffd-c6c549cdf82f" + "WESTUS:20230219T023848Z:12b3c626-0db8-49b3-84f5-e4bf93687bcd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:29:07 GMT" + "Sun, 19 Feb 2023 02:38:47 GMT" ], "Content-Length": [ - "674" + "657" ], "Content-Type": [ "application/json; charset=utf-8" @@ -771,25 +771,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps1286\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps9256/providers/Microsoft.Network/networkManagers/ps6291/networkGroups/ps1286\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"A different description.\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5959efe9-ef97-49e2-a331-e471acfe1367\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-22T17:29:03.6123087Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-22T17:29:07.080406Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps6598\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps2052/providers/Microsoft.Network/networkManagers/ps3379/networkGroups/ps6598\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"description\": \"A different description.\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2ecc2b25-1423-4641-bbc4-f61ebb56385a\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:38:44.2361447Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:38:47.5722723Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps9256/providers/Microsoft.Network/networkManagers/ps6291/networkGroups/ps1286?force=true&api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzOTI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNjI5MS9uZXR3b3JrR3JvdXBzL3BzMTI4Nj9mb3JjZT10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDEtMDE=", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps2052/providers/Microsoft.Network/networkManagers/ps3379/networkGroups/ps6598?force=true&api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzMjA1Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzM3OS9uZXR3b3JrR3JvdXBzL3BzNjU5OD9mb3JjZT10cnVlJmFwaS12ZXJzaW9uPTIwMjItMDctMDE=", "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "3ba282ec-fe2c-4099-aafe-07e951ddc3fb" + "6e6bf26c-66ef-40dd-8237-feebf379eeea" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -810,19 +810,19 @@ "14999" ], "x-ms-request-id": [ - "cfea8d5a-078c-45a0-864d-a3ed3655a993" + "a81b22c5-0548-4a7b-8401-4a2300d62bf8" ], "x-ms-correlation-request-id": [ - "cfea8d5a-078c-45a0-864d-a3ed3655a993" + "a81b22c5-0548-4a7b-8401-4a2300d62bf8" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T172909Z:cfea8d5a-078c-45a0-864d-a3ed3655a993" + "WESTUS:20230219T023849Z:a81b22c5-0548-4a7b-8401-4a2300d62bf8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:29:08 GMT" + "Sun, 19 Feb 2023 02:38:48 GMT" ], "Expires": [ "-1" @@ -835,21 +835,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps9256/providers/Microsoft.Network/networkManagers/ps6291?force=false&api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzOTI1Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNjI5MT9mb3JjZT1mYWxzZSZhcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps2052/providers/Microsoft.Network/networkManagers/ps3379?force=false&api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzMjA1Mi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzM3OT9mb3JjZT1mYWxzZSZhcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "cd4dd947-9eef-41e4-af9b-bbc100ea9ff2" + "57f2c8d5-30ff-4e36-8af1-5b789e58c1e0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -870,19 +870,19 @@ "14999" ], "x-ms-request-id": [ - "3827e9b6-9d19-462b-9c48-829ab63bac2f" + "c89fb955-792a-4c51-8931-08ae947c187b" ], "x-ms-correlation-request-id": [ - "3827e9b6-9d19-462b-9c48-829ab63bac2f" + "c89fb955-792a-4c51-8931-08ae947c187b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T172912Z:3827e9b6-9d19-462b-9c48-829ab63bac2f" + "WESTUS:20230219T023852Z:c89fb955-792a-4c51-8931-08ae947c187b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:29:11 GMT" + "Sun, 19 Feb 2023 02:38:51 GMT" ], "Expires": [ "-1" @@ -895,21 +895,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourcegroups/ps9256?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlZ3JvdXBzL3BzOTI1Nj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourcegroups/ps2052?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlZ3JvdXBzL3BzMjA1Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "5da5fefb-0f7c-47ee-b180-afc8cecf97ef" + "cd3db221-2fb4-43d1-a187-575f77285bc2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.61" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, "RequestBody": "", @@ -921,7 +921,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNTYtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTItQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -930,13 +930,13 @@ "14999" ], "x-ms-request-id": [ - "c2a43a08-8c95-4c56-9dee-5a52a64a2d45" + "ca43b7b5-c7ee-4de6-a2c8-730c281723ca" ], "x-ms-correlation-request-id": [ - "c2a43a08-8c95-4c56-9dee-5a52a64a2d45" + "ca43b7b5-c7ee-4de6-a2c8-730c281723ca" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T172913Z:c2a43a08-8c95-4c56-9dee-5a52a64a2d45" + "WESTUS:20230219T023853Z:ca43b7b5-c7ee-4de6-a2c8-730c281723ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -945,7 +945,7 @@ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:29:12 GMT" + "Sun, 19 Feb 2023 02:38:53 GMT" ], "Expires": [ "-1" @@ -958,15 +958,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNTYtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU5UWXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTItQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05USXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.61" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, "RequestBody": "", @@ -978,16 +978,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-request-id": [ - "08a66fad-e5d6-4014-9e64-a9cf55c67163" + "6c871862-cc06-4c60-a6b0-4c435a58d746" ], "x-ms-correlation-request-id": [ - "08a66fad-e5d6-4014-9e64-a9cf55c67163" + "6c871862-cc06-4c60-a6b0-4c435a58d746" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T172928Z:08a66fad-e5d6-4014-9e64-a9cf55c67163" + "WESTUS:20230219T023908Z:6c871862-cc06-4c60-a6b0-4c435a58d746" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -996,7 +996,7 @@ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:29:28 GMT" + "Sun, 19 Feb 2023 02:39:08 GMT" ], "Expires": [ "-1" @@ -1009,15 +1009,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyNTYtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU5UWXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzIwNTItQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJd05USXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.61" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, "RequestBody": "", @@ -1029,16 +1029,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11996" ], "x-ms-request-id": [ - "ca092b41-35d5-4a59-b884-82df799fc631" + "c19258fc-ec96-4921-936b-c03b282b4dad" ], "x-ms-correlation-request-id": [ - "ca092b41-35d5-4a59-b884-82df799fc631" + "c19258fc-ec96-4921-936b-c03b282b4dad" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20220922T172929Z:ca092b41-35d5-4a59-b884-82df799fc631" + "WESTUS:20230219T023908Z:c19258fc-ec96-4921-936b-c03b282b4dad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1047,7 +1047,7 @@ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:29:29 GMT" + "Sun, 19 Feb 2023 02:39:08 GMT" ], "Expires": [ "-1" @@ -1062,12 +1062,12 @@ ], "Names": { "Test-NetworkManagerGroupCRUD": [ - "ps9256", - "ps6291", - "ps1286" + "ps2052", + "ps3379", + "ps6598" ] }, "Variables": { - "SubscriptionId": "0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884" + "SubscriptionId": "08615b4b-bc9c-4a70-be1b-2ea10bc97b52" } } \ No newline at end of file diff --git a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkManagerTests/TestNetworkManagerStaticMemberCRUD.json b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkManagerTests/TestNetworkManagerStaticMemberCRUD.json index ce05c014c812..85e24b94dff6 100644 --- a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkManagerTests/TestNetworkManagerStaticMemberCRUD.json +++ b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.NetworkManagerTests/TestNetworkManagerStaticMemberCRUD.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourcegroups/ps6425?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlZ3JvdXBzL3BzNjQyNT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourcegroups/ps1019?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlZ3JvdXBzL3BzMTAxOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "7c5ddb27-9311-49bd-ae6d-56523aa5c351" + "49be3568-8d4f-4ea3-915d-c89aaff7ab3f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.61" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "a7d149eb-dba1-4330-b346-90c4f1ef34e8" + "2a9877f8-ff9b-4593-a4e8-ca754ed891b9" ], "x-ms-correlation-request-id": [ - "a7d149eb-dba1-4330-b346-90c4f1ef34e8" + "2a9877f8-ff9b-4593-a4e8-ca754ed891b9" ], "x-ms-routing-request-id": [ - "WESTUS:20220922T173051Z:a7d149eb-dba1-4330-b346-90c4f1ef34e8" + "WESTCENTRALUS:20230219T023613Z:2a9877f8-ff9b-4593-a4e8-ca754ed891b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:30:50 GMT" + "Sun, 19 Feb 2023 02:36:12 GMT" ], "Content-Length": [ - "201" + "242" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,25 +63,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps6425\",\r\n \"name\": \"ps6425\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"testtag\": \"testval\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps1019\",\r\n \"name\": \"ps1019\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"testtag\": \"testval\",\r\n \"Created\": \"2023-02-19T02:36:12.9959576Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps6425/providers/Microsoft.Network/networkManagers/ps3055?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNjQyNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzA1NT9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps1019/providers/Microsoft.Network/networkManagers/ps6163?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzMTAxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNjE2Mz9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "8f88ddae-8771-4b74-9144-d986e0de397c" + "2938d720-ff67-41b8-949f-a76bf9320dd4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "9bc84371-2d95-469c-a7ce-bc5a0aec661a" + "459012e0-6378-46e3-949b-4fb2d88d3e3f" ], "x-ms-correlation-request-id": [ - "9bc84371-2d95-469c-a7ce-bc5a0aec661a" + "459012e0-6378-46e3-949b-4fb2d88d3e3f" ], "x-ms-routing-request-id": [ - "WESTUS:20220922T173053Z:9bc84371-2d95-469c-a7ce-bc5a0aec661a" + "WESTCENTRALUS:20230219T023614Z:459012e0-6378-46e3-949b-4fb2d88d3e3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:30:52 GMT" + "Sun, 19 Feb 2023 02:36:13 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,25 +123,25 @@ "218" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkManagers/ps3055' under resource group 'ps6425' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkManagers/ps6163' under resource group 'ps1019' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps6425/providers/Microsoft.Network/networkManagers/ps3055?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNjQyNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzA1NT9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps1019/providers/Microsoft.Network/networkManagers/ps6163?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzMTAxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNjE2Mz9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "8f88ddae-8771-4b74-9144-d986e0de397c" + "2938d720-ff67-41b8-949f-a76bf9320dd4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -153,7 +153,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11994" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -162,22 +162,22 @@ "Kestrel" ], "x-ms-request-id": [ - "ec42e58e-8c70-41d7-912f-0011027243d3" + "ffe64b00-59c4-4aad-821c-1ec1f2517212" ], "x-ms-correlation-request-id": [ - "ec42e58e-8c70-41d7-912f-0011027243d3" + "ffe64b00-59c4-4aad-821c-1ec1f2517212" ], "x-ms-routing-request-id": [ - "WESTUS:20220922T173059Z:ec42e58e-8c70-41d7-912f-0011027243d3" + "WESTCENTRALUS:20230219T023616Z:ffe64b00-59c4-4aad-821c-1ec1f2517212" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:30:59 GMT" + "Sun, 19 Feb 2023 02:36:16 GMT" ], "Content-Length": [ - "881" + "864" ], "Content-Type": [ "application/json; charset=utf-8" @@ -186,25 +186,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps3055\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps6425/providers/Microsoft.Network/networkManagers/ps3055\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"00008719-0000-3300-0000-632c9bd20000\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\"\r\n ],\r\n \"resourceGuid\": \"26da4597-5fdd-40cc-8284-8eb36fc7cf10\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-22T17:30:55.7785908Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-22T17:30:55.7785908Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps6163\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps1019/providers/Microsoft.Network/networkManagers/ps6163\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"560012bc-0000-3300-0000-63f18b1f0000\\\"\",\r\n \"properties\": {\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\"\r\n ],\r\n \"resourceGuid\": \"fb302522-fe03-4d79-842f-b16ea4e20aa4\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:36:14.9744709Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:36:14.9744709Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps6425/providers/Microsoft.Network/networkManagers/ps3055?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNjQyNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzA1NT9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps1019/providers/Microsoft.Network/networkManagers/ps6163?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzMTAxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNjE2Mz9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "c5a4ce89-8955-49eb-9d82-8cc441b2db05" + "829bb9f9-f975-41e5-9d35-a300f3041e37" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -216,7 +216,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11995" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -225,22 +225,22 @@ "Kestrel" ], "x-ms-request-id": [ - "d6639484-a07f-4367-ad0f-e9bc0b14967a" + "ef1fa0ac-a5e5-43fe-920d-d30cce68422f" ], "x-ms-correlation-request-id": [ - "d6639484-a07f-4367-ad0f-e9bc0b14967a" + "ef1fa0ac-a5e5-43fe-920d-d30cce68422f" ], "x-ms-routing-request-id": [ - "WESTUS:20220922T173101Z:d6639484-a07f-4367-ad0f-e9bc0b14967a" + "WESTCENTRALUS:20230219T023617Z:ef1fa0ac-a5e5-43fe-920d-d30cce68422f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:31:00 GMT" + "Sun, 19 Feb 2023 02:36:17 GMT" ], "Content-Length": [ - "881" + "864" ], "Content-Type": [ "application/json; charset=utf-8" @@ -249,25 +249,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps3055\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps6425/providers/Microsoft.Network/networkManagers/ps3055\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"00008719-0000-3300-0000-632c9bd20000\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\"\r\n ],\r\n \"resourceGuid\": \"26da4597-5fdd-40cc-8284-8eb36fc7cf10\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-22T17:30:55.7785908Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-22T17:30:55.7785908Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps6163\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps1019/providers/Microsoft.Network/networkManagers/ps6163\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\\\"560012bc-0000-3300-0000-63f18b1f0000\\\"\",\r\n \"properties\": {\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\"\r\n ],\r\n \"resourceGuid\": \"fb302522-fe03-4d79-842f-b16ea4e20aa4\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:36:14.9744709Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:36:14.9744709Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps6425/providers/Microsoft.Network/networkManagers/ps3055?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNjQyNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzA1NT9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps1019/providers/Microsoft.Network/networkManagers/ps6163?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzMTAxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNjE2Mz9hcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "8f88ddae-8771-4b74-9144-d986e0de397c" + "2938d720-ff67-41b8-949f-a76bf9320dd4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -276,7 +276,7 @@ "295" ] }, - "RequestBody": "{\r\n \"properties\": {\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884\"\r\n ]\r\n },\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\"\r\n ]\r\n },\r\n \"location\": \"centraluseuap\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52\"\r\n ]\r\n },\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\"\r\n ]\r\n },\r\n \"location\": \"centraluseuap\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -285,7 +285,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -294,22 +294,22 @@ "Kestrel" ], "x-ms-request-id": [ - "b00df05e-d263-4fd8-a99c-ede8f35bf62f" + "2c6ea239-cafe-4403-92f5-ebf54b9fd51b" ], "x-ms-correlation-request-id": [ - "b00df05e-d263-4fd8-a99c-ede8f35bf62f" + "2c6ea239-cafe-4403-92f5-ebf54b9fd51b" ], "x-ms-routing-request-id": [ - "WESTUS:20220922T173059Z:b00df05e-d263-4fd8-a99c-ede8f35bf62f" + "WESTCENTRALUS:20230219T023615Z:2c6ea239-cafe-4403-92f5-ebf54b9fd51b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:30:59 GMT" + "Sun, 19 Feb 2023 02:36:14 GMT" ], "Content-Length": [ - "841" + "824" ], "Content-Type": [ "application/json; charset=utf-8" @@ -318,25 +318,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps3055\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps6425/providers/Microsoft.Network/networkManagers/ps3055\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\"\r\n ],\r\n \"resourceGuid\": \"26da4597-5fdd-40cc-8284-8eb36fc7cf10\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-22T17:30:55.7785908Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-22T17:30:55.7785908Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps6163\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps1019/providers/Microsoft.Network/networkManagers/ps6163\",\r\n \"location\": \"centraluseuap\",\r\n \"type\": \"Microsoft.Network/networkManagers\",\r\n \"tags\": {},\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"description\": \"\",\r\n \"networkManagerScopes\": {\r\n \"managementGroups\": [],\r\n \"subscriptions\": [\r\n \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52\"\r\n ],\r\n \"crossTenantScopes\": []\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"networkManagerScopeAccesses\": [\r\n \"Connectivity\"\r\n ],\r\n \"resourceGuid\": \"fb302522-fe03-4d79-842f-b16ea4e20aa4\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:36:14.9744709Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:36:14.9744709Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps6425/providers/Microsoft.Network/networkManagers/ps3055/networkGroups/ps3375?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNjQyNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzA1NS9uZXR3b3JrR3JvdXBzL3BzMzM3NT9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps1019/providers/Microsoft.Network/networkManagers/ps6163/networkGroups/ps42?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzMTAxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNjE2My9uZXR3b3JrR3JvdXBzL3BzNDI/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "d0eb90af-f02b-4ab6-ba88-f10e596bf7e4" + "17395041-0863-4cb5-8e24-53143d005d6d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -357,22 +357,22 @@ "Kestrel" ], "x-ms-request-id": [ - "6359d384-adee-4925-b2be-69f3346150c0" + "da77c40f-b8eb-4bb2-b556-819b0631f0c9" ], "x-ms-correlation-request-id": [ - "6359d384-adee-4925-b2be-69f3346150c0" + "da77c40f-b8eb-4bb2-b556-819b0631f0c9" ], "x-ms-routing-request-id": [ - "WESTUS:20220922T173102Z:6359d384-adee-4925-b2be-69f3346150c0" + "WESTCENTRALUS:20230219T023617Z:da77c40f-b8eb-4bb2-b556-819b0631f0c9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:31:01 GMT" + "Sun, 19 Feb 2023 02:36:17 GMT" ], "Content-Length": [ - "233" + "231" ], "Content-Type": [ "application/json; charset=utf-8" @@ -381,25 +381,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"Resource [/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps6425/providers/Microsoft.Network/networkManagers/ps3055/networkGroups/ps3375] does not exist or has been deleted\",\r\n \"code\": \"NotFound\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"Resource [/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps1019/providers/Microsoft.Network/networkManagers/ps6163/networkGroups/ps42] does not exist or has been deleted\",\r\n \"code\": \"NotFound\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps6425/providers/Microsoft.Network/networkManagers/ps3055/networkGroups/ps3375?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNjQyNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzA1NS9uZXR3b3JrR3JvdXBzL3BzMzM3NT9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps1019/providers/Microsoft.Network/networkManagers/ps6163/networkGroups/ps42?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzMTAxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNjE2My9uZXR3b3JrR3JvdXBzL3BzNDI/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "d0eb90af-f02b-4ab6-ba88-f10e596bf7e4" + "17395041-0863-4cb5-8e24-53143d005d6d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -420,22 +420,22 @@ "Kestrel" ], "x-ms-request-id": [ - "ce19b334-8ac7-4448-a600-d195b7f97472" + "ff5d0f93-e8e7-41aa-a59f-26cedda6913e" ], "x-ms-correlation-request-id": [ - "ce19b334-8ac7-4448-a600-d195b7f97472" + "ff5d0f93-e8e7-41aa-a59f-26cedda6913e" ], "x-ms-routing-request-id": [ - "WESTUS:20220922T173103Z:ce19b334-8ac7-4448-a600-d195b7f97472" + "WESTCENTRALUS:20230219T023619Z:ff5d0f93-e8e7-41aa-a59f-26cedda6913e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:31:02 GMT" + "Sun, 19 Feb 2023 02:36:19 GMT" ], "Content-Length": [ - "707" + "686" ], "Content-Type": [ "application/json; charset=utf-8" @@ -444,25 +444,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps3375\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps6425/providers/Microsoft.Network/networkManagers/ps3055/networkGroups/ps3375\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups\",\r\n \"etag\": \"\\\"00008e19-0000-3300-0000-632c9bd60000\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"SampleDESCRIption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"27a8c5d3-e676-47a2-a14e-4f16159f97ae\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-22T17:31:02.4584308Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-22T17:31:02.4584308Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps42\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps1019/providers/Microsoft.Network/networkManagers/ps6163/networkGroups/ps42\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups\",\r\n \"etag\": \"\\\"560022bc-0000-3300-0000-63f18b220000\\\"\",\r\n \"properties\": {\r\n \"description\": \"SampleDESCRIption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3e906985-7a2d-407b-b69e-32843f9c309a\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:36:18.366211Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:36:18.366211Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps6425/providers/Microsoft.Network/networkManagers/ps3055/networkGroups/ps3375?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNjQyNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzA1NS9uZXR3b3JrR3JvdXBzL3BzMzM3NT9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps1019/providers/Microsoft.Network/networkManagers/ps6163/networkGroups/ps42?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzMTAxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNjE2My9uZXR3b3JrR3JvdXBzL3BzNDI/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "1e1c6a24-92c0-48a2-ae69-bf8820e0b568" + "425b3dda-d88b-4479-af54-2a3f4176e327" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -483,22 +483,22 @@ "Kestrel" ], "x-ms-request-id": [ - "a84fd0d8-3711-40b9-9808-41a3f84aac88" + "8e4ebe6b-2303-4d14-a984-bf55c2de81c5" ], "x-ms-correlation-request-id": [ - "a84fd0d8-3711-40b9-9808-41a3f84aac88" + "8e4ebe6b-2303-4d14-a984-bf55c2de81c5" ], "x-ms-routing-request-id": [ - "WESTUS:20220922T173104Z:a84fd0d8-3711-40b9-9808-41a3f84aac88" + "WESTCENTRALUS:20230219T023620Z:8e4ebe6b-2303-4d14-a984-bf55c2de81c5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:31:04 GMT" + "Sun, 19 Feb 2023 02:36:20 GMT" ], "Content-Length": [ - "707" + "686" ], "Content-Type": [ "application/json; charset=utf-8" @@ -507,25 +507,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps3375\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps6425/providers/Microsoft.Network/networkManagers/ps3055/networkGroups/ps3375\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups\",\r\n \"etag\": \"\\\"00008e19-0000-3300-0000-632c9bd60000\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"SampleDESCRIption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"27a8c5d3-e676-47a2-a14e-4f16159f97ae\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-22T17:31:02.4584308Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-22T17:31:02.4584308Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps42\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps1019/providers/Microsoft.Network/networkManagers/ps6163/networkGroups/ps42\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups\",\r\n \"etag\": \"\\\"560022bc-0000-3300-0000-63f18b220000\\\"\",\r\n \"properties\": {\r\n \"description\": \"SampleDESCRIption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3e906985-7a2d-407b-b69e-32843f9c309a\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:36:18.366211Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:36:18.366211Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps6425/providers/Microsoft.Network/networkManagers/ps3055/networkGroups/ps3375?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNjQyNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzA1NS9uZXR3b3JrR3JvdXBzL3BzMzM3NT9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps1019/providers/Microsoft.Network/networkManagers/ps6163/networkGroups/ps42?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzMTAxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNjE2My9uZXR3b3JrR3JvdXBzL3BzNDI/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "d0eb90af-f02b-4ab6-ba88-f10e596bf7e4" + "17395041-0863-4cb5-8e24-53143d005d6d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -552,22 +552,22 @@ "Kestrel" ], "x-ms-request-id": [ - "87280a65-fcc8-48d7-b1e1-2ff303cbb318" + "f2012ea3-cae1-41ed-bc72-c8557312c9a1" ], "x-ms-correlation-request-id": [ - "87280a65-fcc8-48d7-b1e1-2ff303cbb318" + "f2012ea3-cae1-41ed-bc72-c8557312c9a1" ], "x-ms-routing-request-id": [ - "WESTUS:20220922T173103Z:87280a65-fcc8-48d7-b1e1-2ff303cbb318" + "WESTCENTRALUS:20230219T023619Z:f2012ea3-cae1-41ed-bc72-c8557312c9a1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:31:02 GMT" + "Sun, 19 Feb 2023 02:36:18 GMT" ], "Content-Length": [ - "667" + "646" ], "Content-Type": [ "application/json; charset=utf-8" @@ -576,25 +576,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps3375\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps6425/providers/Microsoft.Network/networkManagers/ps3055/networkGroups/ps3375\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"displayName\": \"\",\r\n \"description\": \"SampleDESCRIption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"27a8c5d3-e676-47a2-a14e-4f16159f97ae\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-22T17:31:02.4584308Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-22T17:31:02.4584308Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps42\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps1019/providers/Microsoft.Network/networkManagers/ps6163/networkGroups/ps42\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"description\": \"SampleDESCRIption\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3e906985-7a2d-407b-b69e-32843f9c309a\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:36:18.366211Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:36:18.366211Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps6425/providers/Microsoft.Network/networkManagers/ps3055/networkGroups/ps3375/staticMembers/ps5394?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNjQyNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzA1NS9uZXR3b3JrR3JvdXBzL3BzMzM3NS9zdGF0aWNNZW1iZXJzL3BzNTM5ND9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps1019/providers/Microsoft.Network/networkManagers/ps6163/networkGroups/ps42/staticMembers/ps1132?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzMTAxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNjE2My9uZXR3b3JrR3JvdXBzL3BzNDIvc3RhdGljTWVtYmVycy9wczExMzI/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "f8e16124-0a2d-4032-99c3-48b53ab97b30" + "48c05c2c-3bac-4a8c-81e5-a3b00a1bbf01" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -615,22 +615,22 @@ "Kestrel" ], "x-ms-request-id": [ - "acad506e-048d-46f9-87f4-9296364628a5" + "6d5f4320-4f2b-4ce9-804b-5b0305e2ed80" ], "x-ms-correlation-request-id": [ - "acad506e-048d-46f9-87f4-9296364628a5" + "6d5f4320-4f2b-4ce9-804b-5b0305e2ed80" ], "x-ms-routing-request-id": [ - "WESTUS:20220922T173105Z:acad506e-048d-46f9-87f4-9296364628a5" + "WESTCENTRALUS:20230219T023621Z:6d5f4320-4f2b-4ce9-804b-5b0305e2ed80" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:31:05 GMT" + "Sun, 19 Feb 2023 02:36:20 GMT" ], "Content-Length": [ - "253" + "251" ], "Content-Type": [ "application/json; charset=utf-8" @@ -639,25 +639,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"Resource [/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps6425/providers/Microsoft.Network/networkManagers/ps3055/networkGroups/ps3375/staticMembersps5394] does not exist or has been deleted\",\r\n \"code\": \"NotFound\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"message\": \"Resource [/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps1019/providers/Microsoft.Network/networkManagers/ps6163/networkGroups/ps42/staticMembersps1132] does not exist or has been deleted\",\r\n \"code\": \"NotFound\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps6425/providers/Microsoft.Network/networkManagers/ps3055/networkGroups/ps3375/staticMembers/ps5394?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNjQyNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzA1NS9uZXR3b3JrR3JvdXBzL3BzMzM3NS9zdGF0aWNNZW1iZXJzL3BzNTM5ND9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps1019/providers/Microsoft.Network/networkManagers/ps6163/networkGroups/ps42/staticMembers/ps1132?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzMTAxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNjE2My9uZXR3b3JrR3JvdXBzL3BzNDIvc3RhdGljTWVtYmVycy9wczExMzI/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "f8e16124-0a2d-4032-99c3-48b53ab97b30" + "48c05c2c-3bac-4a8c-81e5-a3b00a1bbf01" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -678,22 +678,22 @@ "Kestrel" ], "x-ms-request-id": [ - "88534777-b52f-4ba4-9617-e3d08f0d5f75" + "de44b483-f577-4d13-b5c4-24f4eccd6f3b" ], "x-ms-correlation-request-id": [ - "88534777-b52f-4ba4-9617-e3d08f0d5f75" + "de44b483-f577-4d13-b5c4-24f4eccd6f3b" ], "x-ms-routing-request-id": [ - "WESTUS:20220922T173110Z:88534777-b52f-4ba4-9617-e3d08f0d5f75" + "WESTCENTRALUS:20230219T023622Z:de44b483-f577-4d13-b5c4-24f4eccd6f3b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:31:10 GMT" + "Sun, 19 Feb 2023 02:36:22 GMT" ], "Content-Length": [ - "831" + "806" ], "Content-Type": [ "application/json; charset=utf-8" @@ -702,25 +702,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps5394\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps6425/providers/Microsoft.Network/networkManagers/ps3055/networkGroups/ps3375/staticMembers/ps5394\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups/staticMembers\",\r\n \"etag\": \"\\\"00009019-0000-3300-0000-632c9bda0000\\\"\",\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/virtualNetworks/powerShellTestVnet\",\r\n \"provisioningState\": \"Updating\",\r\n \"location\": \"\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-22T17:31:06.0037874Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-22T17:31:06.0037874Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps1132\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps1019/providers/Microsoft.Network/networkManagers/ps6163/networkGroups/ps42/staticMembers/ps1132\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups/staticMembers\",\r\n \"etag\": \"\\\"560032bc-0000-3300-0000-63f18b260000\\\"\",\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/virtualNetworks/SwaggerStackVnet\",\r\n \"provisioningState\": \"Updating\",\r\n \"location\": \"\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:36:21.9253635Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:36:21.9253635Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps6425/providers/Microsoft.Network/networkManagers/ps3055/networkGroups/ps3375/staticMembers/ps5394?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNjQyNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzA1NS9uZXR3b3JrR3JvdXBzL3BzMzM3NS9zdGF0aWNNZW1iZXJzL3BzNTM5ND9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps1019/providers/Microsoft.Network/networkManagers/ps6163/networkGroups/ps42/staticMembers/ps1132?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzMTAxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNjE2My9uZXR3b3JrR3JvdXBzL3BzNDIvc3RhdGljTWVtYmVycy9wczExMzI/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "a20dd3b1-acf3-4f57-be44-b61c60ceeabf" + "8a35c460-2874-4c28-97cd-49cc3d0f21b5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -732,7 +732,7 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -741,22 +741,22 @@ "Kestrel" ], "x-ms-request-id": [ - "fceea50c-300b-43b2-8d68-1b197ea6e44d" + "bf12c1e6-bd14-4fcc-a5c5-92eb6cd3aa72" ], "x-ms-correlation-request-id": [ - "fceea50c-300b-43b2-8d68-1b197ea6e44d" + "bf12c1e6-bd14-4fcc-a5c5-92eb6cd3aa72" ], "x-ms-routing-request-id": [ - "WESTUS:20220922T173111Z:fceea50c-300b-43b2-8d68-1b197ea6e44d" + "WESTCENTRALUS:20230219T023623Z:bf12c1e6-bd14-4fcc-a5c5-92eb6cd3aa72" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:31:11 GMT" + "Sun, 19 Feb 2023 02:36:23 GMT" ], "Content-Length": [ - "831" + "806" ], "Content-Type": [ "application/json; charset=utf-8" @@ -765,34 +765,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps5394\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps6425/providers/Microsoft.Network/networkManagers/ps3055/networkGroups/ps3375/staticMembers/ps5394\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups/staticMembers\",\r\n \"etag\": \"\\\"00009019-0000-3300-0000-632c9bda0000\\\"\",\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/virtualNetworks/powerShellTestVnet\",\r\n \"provisioningState\": \"Updating\",\r\n \"location\": \"\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-22T17:31:06.0037874Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-22T17:31:06.0037874Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps1132\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps1019/providers/Microsoft.Network/networkManagers/ps6163/networkGroups/ps42/staticMembers/ps1132\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups/staticMembers\",\r\n \"etag\": \"\\\"560032bc-0000-3300-0000-63f18b260000\\\"\",\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/virtualNetworks/SwaggerStackVnet\",\r\n \"provisioningState\": \"Updating\",\r\n \"location\": \"\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:36:21.9253635Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:36:21.9253635Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps6425/providers/Microsoft.Network/networkManagers/ps3055/networkGroups/ps3375/staticMembers/ps5394?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNjQyNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzA1NS9uZXR3b3JrR3JvdXBzL3BzMzM3NS9zdGF0aWNNZW1iZXJzL3BzNTM5ND9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps1019/providers/Microsoft.Network/networkManagers/ps6163/networkGroups/ps42/staticMembers/ps1132?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzMTAxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNjE2My9uZXR3b3JrR3JvdXBzL3BzNDIvc3RhdGljTWVtYmVycy9wczExMzI/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "f8e16124-0a2d-4032-99c3-48b53ab97b30" + "48c05c2c-3bac-4a8c-81e5-a3b00a1bbf01" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "215" + "192" ] }, - "RequestBody": "{\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/virtualNetworks/powerShellTestVnet\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/virtualNetworks/SwaggerStackVnet\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -810,22 +810,22 @@ "Kestrel" ], "x-ms-request-id": [ - "3bdcc463-3892-4f23-9e0d-b7209b4615d1" + "c3609eee-eede-4c6f-8b7e-b93ebf5fcb2c" ], "x-ms-correlation-request-id": [ - "3bdcc463-3892-4f23-9e0d-b7209b4615d1" + "c3609eee-eede-4c6f-8b7e-b93ebf5fcb2c" ], "x-ms-routing-request-id": [ - "WESTUS:20220922T173110Z:3bdcc463-3892-4f23-9e0d-b7209b4615d1" + "WESTCENTRALUS:20230219T023622Z:c3609eee-eede-4c6f-8b7e-b93ebf5fcb2c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:31:09 GMT" + "Sun, 19 Feb 2023 02:36:21 GMT" ], "Content-Length": [ - "791" + "766" ], "Content-Type": [ "application/json; charset=utf-8" @@ -834,25 +834,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps5394\",\r\n \"id\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps6425/providers/Microsoft.Network/networkManagers/ps3055/networkGroups/ps3375/staticMembers/ps5394\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups/staticMembers\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/jaredgorthy-PowerShellTestResources/providers/Microsoft.Network/virtualNetworks/powerShellTestVnet\",\r\n \"provisioningState\": \"Updating\",\r\n \"location\": \"\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2022-09-22T17:31:06.0037874Z\",\r\n \"lastModifiedBy\": \"cc1c7bb7-f3c4-4236-9ae6-39e276ea7d2b\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2022-09-22T17:31:06.0037874Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps1132\",\r\n \"id\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps1019/providers/Microsoft.Network/networkManagers/ps6163/networkGroups/ps42/staticMembers/ps1132\",\r\n \"type\": \"Microsoft.Network/networkManagers/networkGroups/staticMembers\",\r\n \"etag\": \"\",\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/SwaggerStackRG/providers/Microsoft.Network/virtualNetworks/SwaggerStackVnet\",\r\n \"provisioningState\": \"Updating\",\r\n \"location\": \"\"\r\n },\r\n \"systemData\": {\r\n \"createdBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2023-02-19T02:36:21.9253635Z\",\r\n \"lastModifiedBy\": \"90413679-8368-4931-b0c0-27f314cd68d4\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2023-02-19T02:36:21.9253635Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps6425/providers/Microsoft.Network/networkManagers/ps3055/networkGroups/ps3375/staticMembers/ps5394?api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNjQyNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzA1NS9uZXR3b3JrR3JvdXBzL3BzMzM3NS9zdGF0aWNNZW1iZXJzL3BzNTM5ND9hcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps1019/providers/Microsoft.Network/networkManagers/ps6163/networkGroups/ps42/staticMembers/ps1132?api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzMTAxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNjE2My9uZXR3b3JrR3JvdXBzL3BzNDIvc3RhdGljTWVtYmVycy9wczExMzI/YXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "7909877d-f926-4cf7-aac6-eff6d2dd7c89" + "6c938ef0-e3b2-446f-a440-77ca7406e3d1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -873,19 +873,19 @@ "14999" ], "x-ms-request-id": [ - "68e35299-1790-4a1d-8b68-32aa6a2f5413" + "4eaeb803-3736-4b74-a1c5-527939589914" ], "x-ms-correlation-request-id": [ - "68e35299-1790-4a1d-8b68-32aa6a2f5413" + "4eaeb803-3736-4b74-a1c5-527939589914" ], "x-ms-routing-request-id": [ - "WESTUS:20220922T173113Z:68e35299-1790-4a1d-8b68-32aa6a2f5413" + "WESTCENTRALUS:20230219T023624Z:4eaeb803-3736-4b74-a1c5-527939589914" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:31:12 GMT" + "Sun, 19 Feb 2023 02:36:23 GMT" ], "Expires": [ "-1" @@ -898,21 +898,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps6425/providers/Microsoft.Network/networkManagers/ps3055/networkGroups/ps3375?force=false&api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNjQyNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzA1NS9uZXR3b3JrR3JvdXBzL3BzMzM3NT9mb3JjZT1mYWxzZSZhcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps1019/providers/Microsoft.Network/networkManagers/ps6163/networkGroups/ps42?force=false&api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzMTAxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNjE2My9uZXR3b3JrR3JvdXBzL3BzNDI/Zm9yY2U9ZmFsc2UmYXBpLXZlcnNpb249MjAyMi0wNy0wMQ==", "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "1751ae0d-6a0f-406a-956b-213636ee0090" + "04e08c02-e440-4058-9c56-b6e89cde532d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -933,19 +933,19 @@ "14999" ], "x-ms-request-id": [ - "742bf57d-1324-4a00-a258-ba7ab3a27c2c" + "919d7b03-44b0-4dcf-bd95-bdf1bd1feeda" ], "x-ms-correlation-request-id": [ - "742bf57d-1324-4a00-a258-ba7ab3a27c2c" + "919d7b03-44b0-4dcf-bd95-bdf1bd1feeda" ], "x-ms-routing-request-id": [ - "WESTUS:20220922T173115Z:742bf57d-1324-4a00-a258-ba7ab3a27c2c" + "WESTCENTRALUS:20230219T023625Z:919d7b03-44b0-4dcf-bd95-bdf1bd1feeda" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:31:14 GMT" + "Sun, 19 Feb 2023 02:36:24 GMT" ], "Expires": [ "-1" @@ -958,21 +958,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourceGroups/ps6425/providers/Microsoft.Network/networkManagers/ps3055?force=false&api-version=2022-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlR3JvdXBzL3BzNjQyNS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzMzA1NT9mb3JjZT1mYWxzZSZhcGktdmVyc2lvbj0yMDIyLTAxLTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourceGroups/ps1019/providers/Microsoft.Network/networkManagers/ps6163?force=false&api-version=2022-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlR3JvdXBzL3BzMTAxOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya01hbmFnZXJzL3BzNjE2Mz9mb3JjZT1mYWxzZSZhcGktdmVyc2lvbj0yMDIyLTA3LTAx", "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "fcaf36cf-79c3-4819-ac7a-33087ece5afd" + "b88e8e75-68f6-4417-888e-c1525d4a838b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Network.NetworkManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Network.NetworkManagementClient/25.0.0.0" ] }, "RequestBody": "", @@ -993,19 +993,19 @@ "14999" ], "x-ms-request-id": [ - "37ec54d5-2bb1-4b42-90f4-41e46fda74b9" + "494f73d2-160d-4d7d-ae4d-9be63580d85a" ], "x-ms-correlation-request-id": [ - "37ec54d5-2bb1-4b42-90f4-41e46fda74b9" + "494f73d2-160d-4d7d-ae4d-9be63580d85a" ], "x-ms-routing-request-id": [ - "WESTUS:20220922T173119Z:37ec54d5-2bb1-4b42-90f4-41e46fda74b9" + "WESTCENTRALUS:20230219T023629Z:494f73d2-160d-4d7d-ae4d-9be63580d85a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:31:18 GMT" + "Sun, 19 Feb 2023 02:36:29 GMT" ], "Expires": [ "-1" @@ -1018,21 +1018,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/resourcegroups/ps6425?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L3Jlc291cmNlZ3JvdXBzL3BzNjQyNT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/resourcegroups/ps1019?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL3Jlc291cmNlZ3JvdXBzL3BzMTAxOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "bd52798b-e20d-4e4a-a17e-e632e04498cb" + "457dae6a-063b-4554-a6b3-34fa8a1e64c0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.61" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, "RequestBody": "", @@ -1044,7 +1044,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0MjUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMTktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1053,13 +1053,13 @@ "14999" ], "x-ms-request-id": [ - "6a5bb22e-32ca-4ef0-855e-9f4fb03ca914" + "7bcde8ac-db73-40a3-ad38-ee7308c7ec80" ], "x-ms-correlation-request-id": [ - "6a5bb22e-32ca-4ef0-855e-9f4fb03ca914" + "7bcde8ac-db73-40a3-ad38-ee7308c7ec80" ], "x-ms-routing-request-id": [ - "WESTUS:20220922T173121Z:6a5bb22e-32ca-4ef0-855e-9f4fb03ca914" + "WESTCENTRALUS:20230219T023631Z:7bcde8ac-db73-40a3-ad38-ee7308c7ec80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1068,7 +1068,7 @@ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:31:21 GMT" + "Sun, 19 Feb 2023 02:36:30 GMT" ], "Expires": [ "-1" @@ -1081,15 +1081,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0MjUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZME1qVXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMTktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd01Ua3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.61" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, "RequestBody": "", @@ -1100,194 +1100,17 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0MjUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-request-id": [ - "ea311b7e-9d5d-4a0c-a1d0-48824fec5c59" - ], - "x-ms-correlation-request-id": [ - "ea311b7e-9d5d-4a0c-a1d0-48824fec5c59" - ], - "x-ms-routing-request-id": [ - "WESTUS:20220922T173136Z:ea311b7e-9d5d-4a0c-a1d0-48824fec5c59" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Sep 2022 17:31:36 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0MjUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZME1qVXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.22.41602", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.61" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0MjUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-request-id": [ - "fcadfcd8-57a9-484c-bce6-d8bf08d74304" - ], - "x-ms-correlation-request-id": [ - "fcadfcd8-57a9-484c-bce6-d8bf08d74304" - ], - "x-ms-routing-request-id": [ - "WESTUS:20220922T173151Z:fcadfcd8-57a9-484c-bce6-d8bf08d74304" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Sep 2022 17:31:51 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0MjUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZME1qVXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.22.41602", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.61" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0MjUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-request-id": [ - "ba932695-0412-454c-9671-533063eccaa8" - ], - "x-ms-correlation-request-id": [ - "ba932695-0412-454c-9671-533063eccaa8" - ], - "x-ms-routing-request-id": [ - "WESTUS:20220922T173206Z:ba932695-0412-454c-9671-533063eccaa8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Sep 2022 17:32:06 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0MjUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZME1qVXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.22.41602", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.61" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0MjUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-request-id": [ - "d536fa7a-12de-40b2-aa3d-9d9790b2eb7c" + "f8b13924-9d1b-4bca-b528-4752906fbd55" ], "x-ms-correlation-request-id": [ - "d536fa7a-12de-40b2-aa3d-9d9790b2eb7c" + "f8b13924-9d1b-4bca-b528-4752906fbd55" ], "x-ms-routing-request-id": [ - "WESTUS:20220922T173222Z:d536fa7a-12de-40b2-aa3d-9d9790b2eb7c" + "WESTCENTRALUS:20230219T023646Z:f8b13924-9d1b-4bca-b528-4752906fbd55" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1296,58 +1119,7 @@ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:32:22 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0MjUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZME1qVXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.22.41602", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.61" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-request-id": [ - "d48d0fda-f94e-42e2-9fc7-109c86eda345" - ], - "x-ms-correlation-request-id": [ - "d48d0fda-f94e-42e2-9fc7-109c86eda345" - ], - "x-ms-routing-request-id": [ - "WESTUS:20220922T173237Z:d48d0fda-f94e-42e2-9fc7-109c86eda345" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 22 Sep 2022 17:32:37 GMT" + "Sun, 19 Feb 2023 02:36:45 GMT" ], "Expires": [ "-1" @@ -1360,15 +1132,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY0MjUtQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGZkMTkwZmEtZGQxYy00NzI0LWI3ZjYtYzVjYzNiYTVjODg0L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZME1qVXRRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/08615b4b-bc9c-4a70-be1b-2ea10bc97b52/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzEwMTktQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDg2MTViNGItYmM5Yy00YTcwLWJlMWItMmVhMTBiYzk3YjUyL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFd01Ua3RRMFZPVkZKQlRGVlRSVlZCVUNJc0ltcHZZa3h2WTJGMGFXOXVJam9pWTJWdWRISmhiSFZ6WlhWaGNDSjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.700.22.41602", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.61" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, "RequestBody": "", @@ -1380,16 +1152,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11998" ], "x-ms-request-id": [ - "8917d9ad-eb7e-45c5-b4d9-de932fb330f6" + "1e08e64b-7d67-4e02-8390-b14a9ca39d3c" ], "x-ms-correlation-request-id": [ - "8917d9ad-eb7e-45c5-b4d9-de932fb330f6" + "1e08e64b-7d67-4e02-8390-b14a9ca39d3c" ], "x-ms-routing-request-id": [ - "WESTUS:20220922T173237Z:8917d9ad-eb7e-45c5-b4d9-de932fb330f6" + "WESTCENTRALUS:20230219T023646Z:1e08e64b-7d67-4e02-8390-b14a9ca39d3c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1398,7 +1170,7 @@ "nosniff" ], "Date": [ - "Thu, 22 Sep 2022 17:32:37 GMT" + "Sun, 19 Feb 2023 02:36:45 GMT" ], "Expires": [ "-1" @@ -1413,13 +1185,13 @@ ], "Names": { "Test-NetworkManagerStaticMemberCRUD": [ - "ps6425", - "ps3055", - "ps3375", - "ps5394" + "ps1019", + "ps6163", + "ps42", + "ps1132" ] }, "Variables": { - "SubscriptionId": "0fd190fa-dd1c-4724-b7f6-c5cc3ba5c884" + "SubscriptionId": "08615b4b-bc9c-4a70-be1b-2ea10bc97b52" } } \ No newline at end of file diff --git a/src/Network/Network/Az.Network.psd1 b/src/Network/Network/Az.Network.psd1 index 5e7c813dd626..7401bd020c60 100644 --- a/src/Network/Network/Az.Network.psd1 +++ b/src/Network/Network/Az.Network.psd1 @@ -628,7 +628,8 @@ CmdletsToExport = 'Add-AzApplicationGatewayAuthenticationCertificate', 'Get-AzNetworkManagerManagementGroupConnection', 'Remove-AzNetworkManagerManagementGroupConnection', 'Set-AzNetworkManagerManagementGroupConnection', - 'Get-AzFirewallLearnedIpPrefix' + 'Get-AzFirewallLearnedIpPrefix', + 'New-AzFirewallPolicySnat' # Variables to export from this module # VariablesToExport = @() diff --git a/src/Network/Network/AzureFirewallPolicy/NewAzureFirewallPolicyCommand.cs b/src/Network/Network/AzureFirewallPolicy/NewAzureFirewallPolicyCommand.cs index 79cbfe913c40..7193f84f261a 100644 --- a/src/Network/Network/AzureFirewallPolicy/NewAzureFirewallPolicyCommand.cs +++ b/src/Network/Network/AzureFirewallPolicy/NewAzureFirewallPolicyCommand.cs @@ -149,6 +149,11 @@ public class NewAzureFirewallPolicyCommand : AzureFirewallPolicyBaseCmdlet HelpMessage = "Explicit Proxy Settings in Firewall Policy.")] public PSAzureFirewallPolicyExplicitProxy ExplicitProxy { get; set; } + [Parameter( + Mandatory = false, + HelpMessage = "The private IP addresses/IP ranges to which traffic will not be SNAT in Firewall Policy.")] + public PSAzureFirewallPolicySNAT Snat { get; set; } + public override void Execute() { @@ -166,6 +171,10 @@ public override void Execute() private PSAzureFirewallPolicy CreateAzureFirewallPolicy() { + if (this.Snat != null && this.PrivateRange != null && this.PrivateRange.Length > 0) + { + throw new ArgumentException("Please use Snat parameter to set PrivateRange. Private ranges can not be provided on both Snat and PrivateRange parameters at the same time."); + } var firewallPolicy = new PSAzureFirewallPolicy() { @@ -183,7 +192,8 @@ private PSAzureFirewallPolicy CreateAzureFirewallPolicy() }, IntrusionDetection = this.IntrusionDetection, PrivateRange = this.PrivateRange, - ExplicitProxy = this.ExplicitProxy + ExplicitProxy = this.ExplicitProxy, + Snat = this.Snat }; if (this.UserAssignedIdentityId != null) diff --git a/src/Network/Network/AzureFirewallPolicy/SetAzureFirewallPolicyCommand.cs b/src/Network/Network/AzureFirewallPolicy/SetAzureFirewallPolicyCommand.cs index 8e70fbd74f4a..11dfcd176f83 100644 --- a/src/Network/Network/AzureFirewallPolicy/SetAzureFirewallPolicyCommand.cs +++ b/src/Network/Network/AzureFirewallPolicy/SetAzureFirewallPolicyCommand.cs @@ -167,6 +167,10 @@ public class SetAzureFirewallPolicyCommand : AzureFirewallPolicyBaseCmdlet HelpMessage = "Explicit Proxy Settings in Firewall Policy.")] public PSAzureFirewallPolicyExplicitProxy ExplicitProxy { get; set; } + [Parameter( + Mandatory = false, + HelpMessage = "The private IP addresses/IP ranges to which traffic will not be SNAT in Firewall Policy.")] + public PSAzureFirewallPolicySNAT Snat { get; set; } private void AddPremiumProperties(PSAzureFirewallPolicy firewallPolicy) { @@ -253,6 +257,7 @@ public override void Execute() this.PrivateRange = this.IsParameterBound(c => c.PrivateRange) ? PrivateRange : InputObject.PrivateRange; this.ExplicitProxy = this.IsParameterBound(c => c.ExplicitProxy) ? ExplicitProxy : InputObject.ExplicitProxy; this.Tag = this.IsParameterBound(c => c.Tag) ? Tag : InputObject.Tag; + this.Snat = this.IsParameterBound(c => c.Snat) ? Snat : InputObject.Snat; var firewallPolicy = new PSAzureFirewallPolicy() { @@ -265,7 +270,8 @@ public override void Execute() DnsSettings = this.DnsSetting, SqlSetting = this.SqlSetting, PrivateRange = this.PrivateRange, - ExplicitProxy = this.ExplicitProxy + ExplicitProxy = this.ExplicitProxy, + Snat = this.Snat }; AddPremiumProperties(firewallPolicy); @@ -280,6 +286,11 @@ public override void Execute() } else { + if (this.Snat != null && this.PrivateRange != null && this.PrivateRange.Length > 0) + { + throw new ArgumentException("Please use Snat parameter to set PrivateRange. Private ranges can not be provided on both Snat and PrivateRange parameters at the same time."); + } + var firewallPolicy = new PSAzureFirewallPolicy() { Name = this.Name, @@ -291,7 +302,8 @@ public override void Execute() DnsSettings = this.DnsSetting, SqlSetting = this.SqlSetting, PrivateRange = this.PrivateRange, - ExplicitProxy = this.ExplicitProxy + ExplicitProxy = this.ExplicitProxy, + Snat = this.Snat }; AddPremiumProperties(firewallPolicy); diff --git a/src/Network/Network/AzureFirewallPolicy/Snat/NewAzureFirewallPolicySNATCommand.cs b/src/Network/Network/AzureFirewallPolicy/Snat/NewAzureFirewallPolicySNATCommand.cs new file mode 100644 index 000000000000..e797fbc4aae6 --- /dev/null +++ b/src/Network/Network/AzureFirewallPolicy/Snat/NewAzureFirewallPolicySNATCommand.cs @@ -0,0 +1,48 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + + +using Microsoft.Azure.Commands.Network.Models; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Network +{ + [Cmdlet(VerbsCommon.New, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "FirewallPolicySnat"), OutputType(typeof(PSAzureFirewallPolicySNAT))] + public class NewAzureFirewallPolicySNATCommand : NetworkBaseCmdlet + { + + [Parameter( + Mandatory = false, + HelpMessage = "The Private IP Range")] + public string[] PrivateRange { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Enable/disable auto learn private ranges. By default it is disabled.")] + public SwitchParameter AutoLearnPrivateRange { get; set; } + + public override void Execute() + { + base.Execute(); + + var firewallPolicySNAT = new PSAzureFirewallPolicySNAT + { + AutoLearnPrivateRanges = this.AutoLearnPrivateRange.IsPresent ? "Enabled" : "Disabled", + PrivateRanges = this.PrivateRange + }; + WriteObject(firewallPolicySNAT); + } + + } +} diff --git a/src/Network/Network/ChangeLog.md b/src/Network/Network/ChangeLog.md index 1add3c5300a6..4f398ea0c3da 100644 --- a/src/Network/Network/ChangeLog.md +++ b/src/Network/Network/ChangeLog.md @@ -19,7 +19,12 @@ ---> ## Upcoming Release +* Updated cmdlets to add new property of `Snat` in Azure Firewall Policy. + - `New-AzFirewallPolicySnat` + - `New-AzFirewallPolicy` + - `Set-AzFirewallPolicy` * Fixed a bug that reverts classic fw private ranges to default when doing get & set +* Onboarded `Microsoft.Monitor/accounts` to private link cmdlets ## Version 5.4.0 * Fixed a bug that does not enable to set Perform SNAT to Always diff --git a/src/Network/Network/Common/NetworkResourceManagerProfile.cs b/src/Network/Network/Common/NetworkResourceManagerProfile.cs index d107aa764cb0..5aae8fc9d218 100644 --- a/src/Network/Network/Common/NetworkResourceManagerProfile.cs +++ b/src/Network/Network/Common/NetworkResourceManagerProfile.cs @@ -1413,6 +1413,10 @@ private static void Initialize() // Azure Firewall Policies // CNM to MNM cfg.CreateMap(); + cfg.CreateMap().AfterMap((src, dst) => + { + dst.AutoLearnPrivateRanges = string.IsNullOrEmpty(src.AutoLearnPrivateRanges) ? "Disabled" : src.AutoLearnPrivateRanges; + }); cfg.CreateMap(); cfg.CreateMap().ForCtorParam("dnsSettings", opt => { @@ -1424,6 +1428,10 @@ private static void Initialize() // MNM to CNM cfg.CreateMap(); + cfg.CreateMap().AfterMap((src, dst) => + { + dst.AutoLearnPrivateRanges = string.IsNullOrEmpty(src.AutoLearnPrivateRanges) ? "Disabled" : src.AutoLearnPrivateRanges; + }); cfg.CreateMap(); cfg.CreateMap().AfterMap((src, dst) => { diff --git a/src/Network/Network/PrivateLinkService/PrivateLinkServiceProvider/ProviderConfiguration.cs b/src/Network/Network/PrivateLinkService/PrivateLinkServiceProvider/ProviderConfiguration.cs index 330f895f720e..604b209d4b4b 100644 --- a/src/Network/Network/PrivateLinkService/PrivateLinkServiceProvider/ProviderConfiguration.cs +++ b/src/Network/Network/PrivateLinkService/PrivateLinkServiceProvider/ProviderConfiguration.cs @@ -54,6 +54,7 @@ static ProviderConfiguration() RegisterConfiguration("Microsoft.Media/videoanalyzers", "2021-11-01-preview", true, true); RegisterConfiguration("Microsoft.Migrate/assessmentProjects", "2020-05-01-preview", false, false); RegisterConfiguration("Microsoft.Migrate/migrateProjects", "2020-06-01-preview", false, false); + RegisterConfiguration("Microsoft.Monitor/accounts", "2021-06-03-preview", true, false); RegisterConfiguration("Microsoft.Network/applicationgateways", "2020-05-01", true, false); RegisterConfiguration("Microsoft.Network/privateLinkServices", "2020-05-01", true, false, false); RegisterConfiguration("Microsoft.OffAzure/masterSites", "2020-07-07", false, false); diff --git a/src/Network/Network/help/Deploy-AzNetworkManagerCommit.md b/src/Network/Network/help/Deploy-AzNetworkManagerCommit.md index 7c9bcae9c021..f447199e9638 100644 --- a/src/Network/Network/help/Deploy-AzNetworkManagerCommit.md +++ b/src/Network/Network/help/Deploy-AzNetworkManagerCommit.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml Module Name: Az.Network -online version: +online version: https://learn.microsoft.com/powershell/module/az.network/deploy-aznetworkmanagercommit schema: 2.0.0 --- diff --git a/src/Network/Network/help/Get-AzVpnServerConfigurationPolicyGroup.md b/src/Network/Network/help/Get-AzVpnServerConfigurationPolicyGroup.md index 325d599808b6..871722f7fd06 100644 --- a/src/Network/Network/help/Get-AzVpnServerConfigurationPolicyGroup.md +++ b/src/Network/Network/help/Get-AzVpnServerConfigurationPolicyGroup.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml Module Name: Az.Network -online version: https://learn.microsoft.com/powershell/module/az.network/new-azp2svpngateway +online version: https://learn.microsoft.com/powershell/module/az.network/get-azvpnserverconfigurationpolicygroup schema: 2.0.0 --- diff --git a/src/Network/Network/help/New-AzFirewallPolicy.md b/src/Network/Network/help/New-AzFirewallPolicy.md index e3f8115397e4..7812a383c2e6 100644 --- a/src/Network/Network/help/New-AzFirewallPolicy.md +++ b/src/Network/Network/help/New-AzFirewallPolicy.md @@ -19,8 +19,8 @@ New-AzFirewallPolicy -Name -ResourceGroupName -Location ] [-Force] [-AsJob] [-IntrusionDetection ] [-TransportSecurityName ] [-TransportSecurityKeyVaultSecretId ] [-SkuTier ] [-UserAssignedIdentityId ] [-Identity ] [-PrivateRange ] - [-ExplicitProxy ] [-DefaultProfile ] [-WhatIf] - [-Confirm] [] + [-ExplicitProxy ] [-Snat ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -73,8 +73,9 @@ This example creates a Firewall that treats "99.99.99.0/24" and "66.66.0.0/16" a $exProxy = New-AzFirewallPolicyExplicitProxy -EnableExplicitProxy -HttpPort 100 -HttpsPort 101 -EnablePacFile -PacFilePort 130 -PacFile "sampleurlfortesting.blob.core.windowsnet/nothing" New-AzFirewallPolicy -Name fp1 -ResourceGroupName TestRg -ExplicitProxy $exProxy ``` + ```output - BasePolicy : null +BasePolicy : null DnsSettings : null Etag : null ExplicitProxy @@ -106,8 +107,9 @@ New-AzFirewallPolicy -Name fp1 -ResourceGroupName TestRg -ExplicitProxy $exProxy ThreatIntelMode : "Alert" ThreatIntelWhitelist : null TransportSecurity : null - Type : null + Type : null ``` + This example creates a firewall policy with explicit proxy settings ## PARAMETERS @@ -142,6 +144,21 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. @@ -308,6 +325,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Snat +The private IP addresses/IP ranges to which traffic will not be SNAT in Firewall Policy. + +```yaml +Type: PSAzureFirewallPolicySNAT +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -SqlSetting The SQL related setting @@ -414,21 +446,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -Confirm -Prompts you for confirmation before running the cmdlet. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: cf - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -WhatIf Shows what would happen if the cmdlet runs. The cmdlet is not run. @@ -461,4 +478,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS -[New-AzFirewallPolicyExplicitProxy](./New-AzFirewallPolicyExplicitProxy.md) \ No newline at end of file + +[New-AzFirewallPolicyExplicitProxy](./New-AzFirewallPolicyExplicitProxy.md) +[New-AzFirewallPolicySnat](./New-AzFirewallPolicySnat.md) \ No newline at end of file diff --git a/src/Network/Network/help/New-AzFirewallPolicySnat.md b/src/Network/Network/help/New-AzFirewallPolicySnat.md new file mode 100644 index 000000000000..5d54cfbefdcd --- /dev/null +++ b/src/Network/Network/help/New-AzFirewallPolicySnat.md @@ -0,0 +1,113 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml +Module Name: Az.Network +online version: https://learn.microsoft.com/powershell/module/az.network/new-azfirewallpolicysnat +schema: 2.0.0 +--- + +# New-AzFirewallPolicySnat + +## SYNOPSIS +Creates SNAT configuration of PrivateRange and AutoLearnPrivateRanges for the firewall policy + +## SYNTAX + +``` +New-AzFirewallPolicySnat [-PrivateRange ] [-AutoLearnPrivateRange] + [-DefaultProfile ] [] +``` + +## DESCRIPTION +The New-AzFirewallPolicySnat is used to configure Private Ranges and auto learn private ranges for a firewall policy. + +## EXAMPLES + +### Example 1 +```powershell +New-AzFirewallPolicySnat -PrivateRange @("3.3.0.0/24", "98.0.0.0/8","10.227.16.0/20") -AutoLearnPrivateRange +``` +```output + PrivateRange : ["3.3.0.0/24", "98.0.0.0/8","10.227.16.0/20"] + AutoLearnPrivateRanges : Enabled +``` + +This example configures private IP addresses/IP ranges to which traffic will not be SNATed and enables auto learn of private ip ranges in Firewall Policy. + +### Example 2 +```powershell +New-AzFirewallPolicySnat -PrivateRange @("3.3.0.0/24", "98.0.0.0/8","10.227.16.0/20") +``` +```output + PrivateRange : ["3.3.0.0/24", "98.0.0.0/8","10.227.16.0/20"] + AutoLearnPrivateRanges : Disabled +``` + +This example configures private IP addresses/IP ranges to which traffic will not be SNATed and disables auto learn of private ip ranges in Firewall Policy. + +## PARAMETERS + +### -AutoLearnPrivateRange +Enable/disable auto learn private ranges. +By default it is disabled. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PrivateRange +The Private IP Range + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT + +## NOTES + +## RELATED LINKS +[New-AzFireWallPolicy](./New-AzFireWallPolicy.md) + +[Set-AzFireWallPolicy](./Set-AzFireWallPolicy.md) diff --git a/src/Network/Network/help/New-AzFirewallPolicySqlSetting.md b/src/Network/Network/help/New-AzFirewallPolicySqlSetting.md index 58bf70d7f4dc..4e2e2589c43a 100644 --- a/src/Network/Network/help/New-AzFirewallPolicySqlSetting.md +++ b/src/Network/Network/help/New-AzFirewallPolicySqlSetting.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml Module Name: Az.Network -online version: +online version: https://learn.microsoft.com/powershell/module/az.network/new-azfirewallpolicysqlsetting schema: 2.0.0 --- diff --git a/src/Network/Network/help/New-AzPrivateEndpointIpConfiguration.md b/src/Network/Network/help/New-AzPrivateEndpointIpConfiguration.md index 60bb98bd60bb..cf41e3aaf532 100644 --- a/src/Network/Network/help/New-AzPrivateEndpointIpConfiguration.md +++ b/src/Network/Network/help/New-AzPrivateEndpointIpConfiguration.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml Module Name: Az.Network -online version: +online version: https://learn.microsoft.com/powershell/module/az.network/new-azprivateendpointipconfiguration schema: 2.0.0 --- diff --git a/src/Network/Network/help/New-AzVirtualNetworkGatewayPolicyGroup.md b/src/Network/Network/help/New-AzVirtualNetworkGatewayPolicyGroup.md index effda56e5d60..a2696f69668a 100644 --- a/src/Network/Network/help/New-AzVirtualNetworkGatewayPolicyGroup.md +++ b/src/Network/Network/help/New-AzVirtualNetworkGatewayPolicyGroup.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml Module Name: Az.Network -online version: https://learn.microsoft.com/powershell/module/az.network/new-azvirtualnetworkgatewaynatrule +online version: https://learn.microsoft.com/powershell/module/az.network/new-azvirtualnetworkgatewaypolicygroup schema: 2.0.0 --- diff --git a/src/Network/Network/help/New-AzVirtualNetworkGatewayPolicyGroupmember.md b/src/Network/Network/help/New-AzVirtualNetworkGatewayPolicyGroupmember.md index a08667c11923..8d042d71acf7 100644 --- a/src/Network/Network/help/New-AzVirtualNetworkGatewayPolicyGroupmember.md +++ b/src/Network/Network/help/New-AzVirtualNetworkGatewayPolicyGroupmember.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml Module Name: Az.Network -online version: https://learn.microsoft.com/powershell/module/az.network/new-azvirtualnetworkgatewaynatrule +online version: https://learn.microsoft.com/powershell/module/az.network/new-azvirtualnetworkgatewaypolicygroupmember schema: 2.0.0 --- diff --git a/src/Network/Network/help/New-AzVpnClientConnectionConfiguration.md b/src/Network/Network/help/New-AzVpnClientConnectionConfiguration.md index 03b029790a72..8bd065967600 100644 --- a/src/Network/Network/help/New-AzVpnClientConnectionConfiguration.md +++ b/src/Network/Network/help/New-AzVpnClientConnectionConfiguration.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml Module Name: Az.Network -online version: https://learn.microsoft.com/powershell/module/az.network/new-azvpnclientconfiguration +online version: https://learn.microsoft.com/powershell/module/az.network/new-azvpnclientconnectionconfiguration schema: 2.0.0 --- diff --git a/src/Network/Network/help/New-AzVpnServerConfigurationPolicyGroup.md b/src/Network/Network/help/New-AzVpnServerConfigurationPolicyGroup.md index 325d599808b6..cf3ad5ced070 100644 --- a/src/Network/Network/help/New-AzVpnServerConfigurationPolicyGroup.md +++ b/src/Network/Network/help/New-AzVpnServerConfigurationPolicyGroup.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml Module Name: Az.Network -online version: https://learn.microsoft.com/powershell/module/az.network/new-azp2svpngateway +online version: https://learn.microsoft.com/powershell/module/az.network/new-azvpnserverconfigurationpolicygroup schema: 2.0.0 --- diff --git a/src/Network/Network/help/Remove-AzVpnServerConfigurationPolicyGroup.md b/src/Network/Network/help/Remove-AzVpnServerConfigurationPolicyGroup.md index 325d599808b6..cbeca3995a8f 100644 --- a/src/Network/Network/help/Remove-AzVpnServerConfigurationPolicyGroup.md +++ b/src/Network/Network/help/Remove-AzVpnServerConfigurationPolicyGroup.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml Module Name: Az.Network -online version: https://learn.microsoft.com/powershell/module/az.network/new-azp2svpngateway +online version: https://learn.microsoft.com/powershell/module/az.network/remove-azvpnserverconfigurationpolicygroup schema: 2.0.0 --- diff --git a/src/Network/Network/help/Reset-AzVirtualNetworkGateway.md b/src/Network/Network/help/Reset-AzVirtualNetworkGateway.md index ef680ca92069..20faf1922dc9 100644 --- a/src/Network/Network/help/Reset-AzVirtualNetworkGateway.md +++ b/src/Network/Network/help/Reset-AzVirtualNetworkGateway.md @@ -25,7 +25,7 @@ Resets the Virtual Network Gateway ### Example 1: ```powershell -$Gateway = Get-AzVirtualNetworkGateway -Name "ContosoVirtualGateway" +$Gateway = Get-AzVirtualNetworkGateway -Name myGateway1 -ResourceGroupName myRG Reset-AzVirtualNetworkGateway -VirtualNetworkGateway $Gateway ``` diff --git a/src/Network/Network/help/Set-AzFirewallPolicy.md b/src/Network/Network/help/Set-AzFirewallPolicy.md index 091e4bda1806..a6db238d9956 100644 --- a/src/Network/Network/help/Set-AzFirewallPolicy.md +++ b/src/Network/Network/help/Set-AzFirewallPolicy.md @@ -20,8 +20,8 @@ Set-AzFirewallPolicy -Name -ResourceGroupName [-AsJob] [-Threa -Location [-Tag ] [-IntrusionDetection ] [-TransportSecurityName ] [-TransportSecurityKeyVaultSecretId ] [-SkuTier ] [-UserAssignedIdentityId ] [-Identity ] [-PrivateRange ] - [-ExplicitProxy ] [-DefaultProfile ] [-WhatIf] - [-Confirm] [] + [-ExplicitProxy ] [-Snat ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### SetByInputObjectParameterSet @@ -32,8 +32,8 @@ Set-AzFirewallPolicy [-Name ] -InputObject [-AsJ [-Location ] [-Tag ] [-IntrusionDetection ] [-TransportSecurityName ] [-TransportSecurityKeyVaultSecretId ] [-SkuTier ] [-UserAssignedIdentityId ] [-Identity ] [-PrivateRange ] - [-ExplicitProxy ] [-DefaultProfile ] [-WhatIf] - [-Confirm] [] + [-ExplicitProxy ] [-Snat ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### SetByResourceIdParameterSet @@ -44,8 +44,8 @@ Set-AzFirewallPolicy [-AsJob] -ResourceId [-ThreatIntelMode ] -Location [-Tag ] [-IntrusionDetection ] [-TransportSecurityName ] [-TransportSecurityKeyVaultSecretId ] [-SkuTier ] [-UserAssignedIdentityId ] [-Identity ] [-PrivateRange ] - [-ExplicitProxy ] [-DefaultProfile ] [-WhatIf] - [-Confirm] [] + [-ExplicitProxy ] [-Snat ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -80,8 +80,9 @@ This example sets the firewall policy with the new threat intel whitelist $exProxy = New-AzFirewallPolicyExplicitProxy -EnableExplicitProxy -HttpPort 100 -HttpsPort 101 -EnablePacFile -PacFilePort 130 -PacFile "sampleurlfortesting.blob.core.windowsnet/nothing" Set-AzFirewallPolicy -Name firewallPolicy1 -ResourceGroupName TestRg -Location westcentralus -ExplicitProxy $exProxy ``` + ```output - BasePolicy : null +BasePolicy : null DnsSettings : null Etag : null ExplicitProxy @@ -113,8 +114,9 @@ Set-AzFirewallPolicy -Name firewallPolicy1 -ResourceGroupName TestRg -Location w ThreatIntelMode : "Alert" ThreatIntelWhitelist : null TransportSecurity : null - Type : null + Type : null ``` + This example sets the firewall policy with the explicit proxy settings ## PARAMETERS @@ -123,7 +125,7 @@ This example sets the firewall policy with the explicit proxy settings Run cmdlet in the background ```yaml -Type: System.Management.Automation.SwitchParameter +Type: SwitchParameter Parameter Sets: (All) Aliases: @@ -138,7 +140,7 @@ Accept wildcard characters: False The base policy to inherit from ```yaml -Type: System.String +Type: String Parameter Sets: (All) Aliases: @@ -149,11 +151,26 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Type: IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -168,7 +185,7 @@ Accept wildcard characters: False The DNS Setting ```yaml -Type: Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings +Type: PSAzureFirewallPolicyDnsSettings Parameter Sets: (All) Aliases: @@ -183,7 +200,7 @@ Accept wildcard characters: False The Explicit Proxy Settings ```yaml -Type: Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy +Type: PSAzureFirewallPolicyExplicitProxy Parameter Sets: (All) Aliases: @@ -198,7 +215,7 @@ Accept wildcard characters: False Firewall Policy Identity to be assigned to Firewall Policy. ```yaml -Type: Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity +Type: PSManagedServiceIdentity Parameter Sets: (All) Aliases: @@ -213,7 +230,7 @@ Accept wildcard characters: False The AzureFirewall Policy ```yaml -Type: Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy +Type: PSAzureFirewallPolicy Parameter Sets: SetByInputObjectParameterSet Aliases: @@ -228,7 +245,7 @@ Accept wildcard characters: False The Intrusion Detection Setting ```yaml -Type: Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection +Type: PSAzureFirewallPolicyIntrusionDetection Parameter Sets: (All) Aliases: @@ -243,7 +260,7 @@ Accept wildcard characters: False location. ```yaml -Type: System.String +Type: String Parameter Sets: SetByNameParameterSet Aliases: @@ -255,7 +272,7 @@ Accept wildcard characters: False ``` ```yaml -Type: System.String +Type: String Parameter Sets: SetByInputObjectParameterSet Aliases: @@ -267,7 +284,7 @@ Accept wildcard characters: False ``` ```yaml -Type: System.String +Type: String Parameter Sets: SetByResourceIdParameterSet Aliases: @@ -282,7 +299,7 @@ Accept wildcard characters: False The resource name. ```yaml -Type: System.String +Type: String Parameter Sets: SetByNameParameterSet Aliases: ResourceName @@ -294,7 +311,7 @@ Accept wildcard characters: True ``` ```yaml -Type: System.String +Type: String Parameter Sets: SetByInputObjectParameterSet Aliases: ResourceName @@ -309,7 +326,7 @@ Accept wildcard characters: True The Private IP Range ```yaml -Type: System.String[] +Type: String[] Parameter Sets: (All) Aliases: @@ -324,7 +341,7 @@ Accept wildcard characters: False The resource group name. ```yaml -Type: System.String +Type: String Parameter Sets: SetByNameParameterSet Aliases: @@ -339,7 +356,7 @@ Accept wildcard characters: True The resource Id. ```yaml -Type: System.String +Type: String Parameter Sets: SetByResourceIdParameterSet Aliases: @@ -354,7 +371,7 @@ Accept wildcard characters: True Firewall policy sku tier ```yaml -Type: System.String +Type: String Parameter Sets: (All) Aliases: Accepted values: Standard, Premium, Basic @@ -366,11 +383,26 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Snat +The private IP addresses/IP ranges to which traffic will not be SNAT in Firewall Policy. + +```yaml +Type: PSAzureFirewallPolicySNAT +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -SqlSetting The SQL related setting ```yaml -Type: Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting +Type: PSAzureFirewallPolicySqlSetting Parameter Sets: (All) Aliases: @@ -385,7 +417,7 @@ Accept wildcard characters: False A hashtable which represents resource tags. ```yaml -Type: System.Collections.Hashtable +Type: Hashtable Parameter Sets: (All) Aliases: @@ -400,7 +432,7 @@ Accept wildcard characters: False The operation mode for Threat Intelligence. ```yaml -Type: System.String +Type: String Parameter Sets: (All) Aliases: Accepted values: Alert, Deny, Off @@ -416,7 +448,7 @@ Accept wildcard characters: False The whitelist for Threat Intelligence ```yaml -Type: Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist +Type: PSAzureFirewallPolicyThreatIntelWhitelist Parameter Sets: (All) Aliases: @@ -431,7 +463,7 @@ Accept wildcard characters: False Secret Id of (base-64 encoded unencrypted pfx) 'Secret' or 'Certificate' object stored in KeyVault ```yaml -Type: System.String +Type: String Parameter Sets: (All) Aliases: @@ -446,7 +478,7 @@ Accept wildcard characters: False Transport security name ```yaml -Type: System.String +Type: String Parameter Sets: (All) Aliases: @@ -461,7 +493,7 @@ Accept wildcard characters: False ResourceId of the user assigned identity to be assigned to Firewall Policy. ```yaml -Type: System.String +Type: String Parameter Sets: (All) Aliases: UserAssignedIdentity @@ -472,27 +504,12 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -Confirm -Prompts you for confirmation before running the cmdlet. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: cf - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -WhatIf Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: System.Management.Automation.SwitchParameter +Type: SwitchParameter Parameter Sets: (All) Aliases: wi @@ -521,4 +538,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS -[New-AzFirewallPolicyExplicitProxy](./New-AzFirewallPolicyExplicitProxy.md) \ No newline at end of file + +[New-AzFirewallPolicyExplicitProxy](./New-AzFirewallPolicyExplicitProxy.md) +[New-AzFirewallPolicySnat](./New-AzFirewallPolicySnat.md) \ No newline at end of file diff --git a/src/Network/Network/help/Update-AzVpnServerConfigurationPolicyGroup.md b/src/Network/Network/help/Update-AzVpnServerConfigurationPolicyGroup.md index 325d599808b6..843a3c78a247 100644 --- a/src/Network/Network/help/Update-AzVpnServerConfigurationPolicyGroup.md +++ b/src/Network/Network/help/Update-AzVpnServerConfigurationPolicyGroup.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml Module Name: Az.Network -online version: https://learn.microsoft.com/powershell/module/az.network/new-azp2svpngateway +online version: https://learn.microsoft.com/powershell/module/az.network/update-azvpnserverconfigurationpolicygroup schema: 2.0.0 --- diff --git a/src/NetworkFunction/help/Update-AzNetworkFunctionCollectorPolicy.md b/src/NetworkFunction/help/Update-AzNetworkFunctionCollectorPolicy.md index 66a7d48c4612..be52a955bed6 100644 --- a/src/NetworkFunction/help/Update-AzNetworkFunctionCollectorPolicy.md +++ b/src/NetworkFunction/help/Update-AzNetworkFunctionCollectorPolicy.md @@ -1,7 +1,7 @@ --- external help file: Module Name: Az.NetworkFunction -online version: https://learn.microsoft.com/powershell/module/az.networkfunction/set-aznetworkfunctioncollectorpolicy +online version: https://learn.microsoft.com/powershell/module/az.networkfunction/update-aznetworkfunctioncollectorpolicy schema: 2.0.0 --- diff --git a/src/NetworkFunction/help/Update-AzNetworkFunctionTrafficCollector.md b/src/NetworkFunction/help/Update-AzNetworkFunctionTrafficCollector.md index f9059350a591..06a07fff5d12 100644 --- a/src/NetworkFunction/help/Update-AzNetworkFunctionTrafficCollector.md +++ b/src/NetworkFunction/help/Update-AzNetworkFunctionTrafficCollector.md @@ -1,7 +1,7 @@ --- external help file: Module Name: Az.NetworkFunction -online version: https://learn.microsoft.com/powershell/module/az.networkfunction/set-aznetworkfunctiontrafficcollector +online version: https://learn.microsoft.com/powershell/module/az.networkfunction/update-aznetworkfunctiontrafficcollector schema: 2.0.0 --- diff --git a/src/OperationalInsights/OperationalInsights/help/New-AzOperationalInsightsRestoreTable.md b/src/OperationalInsights/OperationalInsights/help/New-AzOperationalInsightsRestoreTable.md index 19fbed79fba3..3aa6824b3fe8 100644 --- a/src/OperationalInsights/OperationalInsights/help/New-AzOperationalInsightsRestoreTable.md +++ b/src/OperationalInsights/OperationalInsights/help/New-AzOperationalInsightsRestoreTable.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.OperationalInsights.dll-Help.xml Module Name: Az.OperationalInsights -online version: https://learn.microsoft.com/powershell/module/az.operationalinsights/Create-AzOperationalInsightsRestoreTable +online version: https://learn.microsoft.com/powershell/module/az.operationalinsights/new-azoperationalinsightsrestoretable schema: 2.0.0 --- diff --git a/src/OperationalInsights/OperationalInsights/help/New-AzOperationalInsightsSearchTable.md b/src/OperationalInsights/OperationalInsights/help/New-AzOperationalInsightsSearchTable.md index b5425402c49c..e24cf1cd4df7 100644 --- a/src/OperationalInsights/OperationalInsights/help/New-AzOperationalInsightsSearchTable.md +++ b/src/OperationalInsights/OperationalInsights/help/New-AzOperationalInsightsSearchTable.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.OperationalInsights.dll-Help.xml Module Name: Az.OperationalInsights -online version: https://learn.microsoft.com/powershell/module/az.operationalinsights/Create-AzOperationalInsightsSearchTable +online version: https://learn.microsoft.com/powershell/module/az.operationalinsights/new-azoperationalinsightssearchtable schema: 2.0.0 --- diff --git a/src/OperationalInsights/OperationalInsights/help/New-AzOperationalInsightsTable.md b/src/OperationalInsights/OperationalInsights/help/New-AzOperationalInsightsTable.md index 41b42ca37f47..f3c822eda687 100644 --- a/src/OperationalInsights/OperationalInsights/help/New-AzOperationalInsightsTable.md +++ b/src/OperationalInsights/OperationalInsights/help/New-AzOperationalInsightsTable.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.OperationalInsights.dll-Help.xml Module Name: Az.OperationalInsights -online version: https://learn.microsoft.com/powershell/module/az.operationalinsights/Create-AzOperationalInsightsTable +online version: https://learn.microsoft.com/powershell/module/az.operationalinsights/new-azoperationalinsightstable schema: 2.0.0 --- diff --git a/src/OperationalInsights/OperationalInsights/help/Remove-AzOperationalInsightsTable.md b/src/OperationalInsights/OperationalInsights/help/Remove-AzOperationalInsightsTable.md index 12c24434899e..63c6288e667f 100644 --- a/src/OperationalInsights/OperationalInsights/help/Remove-AzOperationalInsightsTable.md +++ b/src/OperationalInsights/OperationalInsights/help/Remove-AzOperationalInsightsTable.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.OperationalInsights.dll-Help.xml Module Name: Az.OperationalInsights -online version: https://learn.microsoft.com/powershell/module/az.operationalinsights/Delete-AzOperationalInsightsTable +online version: https://learn.microsoft.com/powershell/module/az.operationalinsights/remove-azoperationalinsightstable schema: 2.0.0 --- diff --git a/src/PolicyInsights/PolicyInsights/help/Remove-AzPolicyAttestation.md b/src/PolicyInsights/PolicyInsights/help/Remove-AzPolicyAttestation.md index cc7e2c1b7bbc..6ed5028d35ba 100644 --- a/src/PolicyInsights/PolicyInsights/help/Remove-AzPolicyAttestation.md +++ b/src/PolicyInsights/PolicyInsights/help/Remove-AzPolicyAttestation.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.PolicyInsights.dll-Help.xml Module Name: Az.PolicyInsights -online version: https://learn.microsoft.com/powershell/module/az.policyinsights/remove-policyattestation +online version: https://learn.microsoft.com/powershell/module/az.policyinsights/remove-azpolicyattestation schema: 2.0.0 --- diff --git a/src/RecoveryServices/RecoveryServices/help/Get-AzRecoveryServicesResourceGuardMapping.md b/src/RecoveryServices/RecoveryServices/help/Get-AzRecoveryServicesResourceGuardMapping.md index f35eddf1a08f..a5d8dda7e74f 100644 --- a/src/RecoveryServices/RecoveryServices/help/Get-AzRecoveryServicesResourceGuardMapping.md +++ b/src/RecoveryServices/RecoveryServices/help/Get-AzRecoveryServicesResourceGuardMapping.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.dll-Help.xml Module Name: Az.RecoveryServices -online version: +online version: https://learn.microsoft.com/powershell/module/az.recoveryservices/get-azrecoveryservicesresourceguardmapping schema: 2.0.0 --- diff --git a/src/RecoveryServices/RecoveryServices/help/Remove-AzRecoveryServicesResourceGuardMapping.md b/src/RecoveryServices/RecoveryServices/help/Remove-AzRecoveryServicesResourceGuardMapping.md index de6e6a790118..c8042f44836c 100644 --- a/src/RecoveryServices/RecoveryServices/help/Remove-AzRecoveryServicesResourceGuardMapping.md +++ b/src/RecoveryServices/RecoveryServices/help/Remove-AzRecoveryServicesResourceGuardMapping.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.dll-Help.xml Module Name: Az.RecoveryServices -online version: +online version: https://learn.microsoft.com/powershell/module/az.recoveryservices/remove-azrecoveryservicesresourceguardmapping schema: 2.0.0 --- diff --git a/src/RecoveryServices/RecoveryServices/help/Set-AzRecoveryServicesResourceGuardMapping.md b/src/RecoveryServices/RecoveryServices/help/Set-AzRecoveryServicesResourceGuardMapping.md index c4176dbe9df8..6bcd6ec45a94 100644 --- a/src/RecoveryServices/RecoveryServices/help/Set-AzRecoveryServicesResourceGuardMapping.md +++ b/src/RecoveryServices/RecoveryServices/help/Set-AzRecoveryServicesResourceGuardMapping.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.RecoveryServices.Backup.dll-Help.xml Module Name: Az.RecoveryServices -online version: +online version: https://learn.microsoft.com/powershell/module/az.recoveryservices/set-azrecoveryservicesresourceguardmapping schema: 2.0.0 --- diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/AsyncOperationStatusOperations.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/AsyncOperationStatusOperations.cs new file mode 100644 index 000000000000..4d80ef62c496 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/AsyncOperationStatusOperations.cs @@ -0,0 +1,245 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// AsyncOperationStatusOperations operations. + /// + internal partial class AsyncOperationStatusOperations : IServiceOperations, IAsyncOperationStatusOperations + { + /// + /// Initializes a new instance of the AsyncOperationStatusOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal AsyncOperationStatusOperations(RedisManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the RedisManagementClient + /// + public RedisManagementClient Client { get; private set; } + + /// + /// For checking the ongoing status of an operation + /// + /// + /// The location at which operation was triggered + /// + /// + /// The ID of asynchronous operation + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string location, string operationId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (location == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "location"); + } + if (operationId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "operationId"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("location", location); + tracingParameters.Add("operationId", operationId); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Cache/locations/{location}/asyncOperations/{operationId}").ToString(); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); + _url = _url.Replace("{operationId}", System.Uri.EscapeDataString(operationId)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/AsyncOperationStatusOperationsExtensions.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/AsyncOperationStatusOperationsExtensions.cs new file mode 100644 index 000000000000..bc4768068f8d --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/AsyncOperationStatusOperationsExtensions.cs @@ -0,0 +1,65 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for AsyncOperationStatusOperations. + /// + public static partial class AsyncOperationStatusOperationsExtensions + { + /// + /// For checking the ongoing status of an operation + /// + /// + /// The operations group for this extension method. + /// + /// + /// The location at which operation was triggered + /// + /// + /// The ID of asynchronous operation + /// + public static OperationStatus Get(this IAsyncOperationStatusOperations operations, string location, string operationId) + { + return operations.GetAsync(location, operationId).GetAwaiter().GetResult(); + } + + /// + /// For checking the ongoing status of an operation + /// + /// + /// The operations group for this extension method. + /// + /// + /// The location at which operation was triggered + /// + /// + /// The ID of asynchronous operation + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this IAsyncOperationStatusOperations operations, string location, string operationId, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(location, operationId, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/FirewallRulesOperations.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/FirewallRulesOperations.cs new file mode 100644 index 000000000000..2a0ab6c87cf1 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/FirewallRulesOperations.cs @@ -0,0 +1,1037 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// FirewallRulesOperations operations. + /// + internal partial class FirewallRulesOperations : IServiceOperations, IFirewallRulesOperations + { + /// + /// Initializes a new instance of the FirewallRulesOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal FirewallRulesOperations(RedisManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the RedisManagementClient + /// + public RedisManagementClient Client { get; private set; } + + /// + /// Gets all firewall rules in the specified redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string cacheName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cacheName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cacheName"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cacheName", cacheName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis/{cacheName}/firewallRules").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cacheName}", System.Uri.EscapeDataString(cacheName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Create or update a redis cache firewall rule + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the firewall rule. + /// + /// + /// lowest IP address included in the range + /// + /// + /// highest IP address included in the range + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string cacheName, string ruleName, string startIP, string endIP, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cacheName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cacheName"); + } + if (ruleName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ruleName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (startIP == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "startIP"); + } + if (endIP == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "endIP"); + } + RedisFirewallRule parameters = new RedisFirewallRule(); + if (startIP != null || endIP != null) + { + parameters.StartIP = startIP; + parameters.EndIP = endIP; + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cacheName", cacheName); + tracingParameters.Add("ruleName", ruleName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis/{cacheName}/firewallRules/{ruleName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cacheName}", System.Uri.EscapeDataString(cacheName)); + _url = _url.Replace("{ruleName}", System.Uri.EscapeDataString(ruleName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 201) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets a single firewall rule in a specified redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the firewall rule. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string cacheName, string ruleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cacheName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cacheName"); + } + if (ruleName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ruleName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cacheName", cacheName); + tracingParameters.Add("ruleName", ruleName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis/{cacheName}/firewallRules/{ruleName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cacheName}", System.Uri.EscapeDataString(cacheName)); + _url = _url.Replace("{ruleName}", System.Uri.EscapeDataString(ruleName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Deletes a single firewall rule in a specified redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the firewall rule. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string cacheName, string ruleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cacheName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cacheName"); + } + if (ruleName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ruleName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cacheName", cacheName); + tracingParameters.Add("ruleName", ruleName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis/{cacheName}/firewallRules/{ruleName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cacheName}", System.Uri.EscapeDataString(cacheName)); + _url = _url.Replace("{ruleName}", System.Uri.EscapeDataString(ruleName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 204) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets all firewall rules in the specified redis cache. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/FirewallRulesOperationsExtensions.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/FirewallRulesOperationsExtensions.cs new file mode 100644 index 000000000000..a757bef91429 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/FirewallRulesOperationsExtensions.cs @@ -0,0 +1,246 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for FirewallRulesOperations. + /// + public static partial class FirewallRulesOperationsExtensions + { + /// + /// Gets all firewall rules in the specified redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + public static IPage List(this IFirewallRulesOperations operations, string resourceGroupName, string cacheName) + { + return operations.ListAsync(resourceGroupName, cacheName).GetAwaiter().GetResult(); + } + + /// + /// Gets all firewall rules in the specified redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this IFirewallRulesOperations operations, string resourceGroupName, string cacheName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, cacheName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Create or update a redis cache firewall rule + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the firewall rule. + /// + /// + /// lowest IP address included in the range + /// + /// + /// highest IP address included in the range + /// + public static RedisFirewallRule CreateOrUpdate(this IFirewallRulesOperations operations, string resourceGroupName, string cacheName, string ruleName, string startIP, string endIP) + { + return operations.CreateOrUpdateAsync(resourceGroupName, cacheName, ruleName, startIP, endIP).GetAwaiter().GetResult(); + } + + /// + /// Create or update a redis cache firewall rule + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the firewall rule. + /// + /// + /// lowest IP address included in the range + /// + /// + /// highest IP address included in the range + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateAsync(this IFirewallRulesOperations operations, string resourceGroupName, string cacheName, string ruleName, string startIP, string endIP, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, cacheName, ruleName, startIP, endIP, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets a single firewall rule in a specified redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the firewall rule. + /// + public static RedisFirewallRule Get(this IFirewallRulesOperations operations, string resourceGroupName, string cacheName, string ruleName) + { + return operations.GetAsync(resourceGroupName, cacheName, ruleName).GetAwaiter().GetResult(); + } + + /// + /// Gets a single firewall rule in a specified redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the firewall rule. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this IFirewallRulesOperations operations, string resourceGroupName, string cacheName, string ruleName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, cacheName, ruleName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes a single firewall rule in a specified redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the firewall rule. + /// + public static void Delete(this IFirewallRulesOperations operations, string resourceGroupName, string cacheName, string ruleName) + { + operations.DeleteAsync(resourceGroupName, cacheName, ruleName).GetAwaiter().GetResult(); + } + + /// + /// Deletes a single firewall rule in a specified redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the firewall rule. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this IFirewallRulesOperations operations, string resourceGroupName, string cacheName, string ruleName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, cacheName, ruleName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Gets all firewall rules in the specified redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this IFirewallRulesOperations operations, string nextPageLink) + { + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets all firewall rules in the specified redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListNextAsync(this IFirewallRulesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/IAsyncOperationStatusOperations.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/IAsyncOperationStatusOperations.cs new file mode 100644 index 000000000000..bbb13aa587c5 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/IAsyncOperationStatusOperations.cs @@ -0,0 +1,52 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// AsyncOperationStatusOperations operations. + /// + public partial interface IAsyncOperationStatusOperations + { + /// + /// For checking the ongoing status of an operation + /// + /// + /// The location at which operation was triggered + /// + /// + /// The ID of asynchronous operation + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string location, string operationId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/IFirewallRulesOperations.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/IFirewallRulesOperations.cs new file mode 100644 index 000000000000..db8dfb6ceb7d --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/IFirewallRulesOperations.cs @@ -0,0 +1,161 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// FirewallRulesOperations operations. + /// + public partial interface IFirewallRulesOperations + { + /// + /// Gets all firewall rules in the specified redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListWithHttpMessagesAsync(string resourceGroupName, string cacheName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Create or update a redis cache firewall rule + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the firewall rule. + /// + /// + /// lowest IP address included in the range + /// + /// + /// highest IP address included in the range + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string cacheName, string ruleName, string startIP, string endIP, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a single firewall rule in a specified redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the firewall rule. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string resourceGroupName, string cacheName, string ruleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes a single firewall rule in a specified redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the firewall rule. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string cacheName, string ruleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets all firewall rules in the specified redis cache. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/ILinkedServerOperations.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/ILinkedServerOperations.cs new file mode 100644 index 000000000000..7b039bf7bdec --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/ILinkedServerOperations.cs @@ -0,0 +1,223 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// LinkedServerOperations operations. + /// + public partial interface ILinkedServerOperations + { + /// + /// Adds a linked server to the Redis cache (requires Premium SKU). + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the linked server that is being added to the Redis + /// cache. + /// + /// + /// Parameters supplied to the Create Linked server operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> CreateWithHttpMessagesAsync(string resourceGroupName, string name, string linkedServerName, RedisLinkedServerCreateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes the linked server from a redis cache (requires Premium + /// SKU). + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the redis cache. + /// + /// + /// The name of the linked server that is being added to the Redis + /// cache. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string name, string linkedServerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the detailed information about a linked server of a redis + /// cache (requires Premium SKU). + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the redis cache. + /// + /// + /// The name of the linked server. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string resourceGroupName, string name, string linkedServerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the list of linked servers associated with this redis cache + /// (requires Premium SKU). + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the redis cache. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListWithHttpMessagesAsync(string resourceGroupName, string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Adds a linked server to the Redis cache (requires Premium SKU). + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the linked server that is being added to the Redis + /// cache. + /// + /// + /// Parameters supplied to the Create Linked server operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> BeginCreateWithHttpMessagesAsync(string resourceGroupName, string name, string linkedServerName, RedisLinkedServerCreateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes the linked server from a redis cache (requires Premium + /// SKU). + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the redis cache. + /// + /// + /// The name of the linked server that is being added to the Redis + /// cache. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string name, string linkedServerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the list of linked servers associated with this redis cache + /// (requires Premium SKU). + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/IOperations.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/IOperations.cs new file mode 100644 index 000000000000..7feaad514889 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/IOperations.cs @@ -0,0 +1,70 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Operations operations. + /// + public partial interface IOperations + { + /// + /// Lists all of the available REST API operations of the + /// Microsoft.Cache provider. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Lists all of the available REST API operations of the + /// Microsoft.Cache provider. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/IPatchSchedulesOperations.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/IPatchSchedulesOperations.cs new file mode 100644 index 000000000000..9f40a0b3ef44 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/IPatchSchedulesOperations.cs @@ -0,0 +1,151 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// PatchSchedulesOperations operations. + /// + public partial interface IPatchSchedulesOperations + { + /// + /// Gets all patch schedules in the specified redis cache (there is + /// only one). + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListByRedisResourceWithHttpMessagesAsync(string resourceGroupName, string cacheName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Create or replace the patching schedule for Redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// List of patch schedules for a Redis cache. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string name, IList scheduleEntries, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes the patching schedule of a redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the redis cache. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the patching schedule of a redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the redis cache. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string resourceGroupName, string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets all patch schedules in the specified redis cache (there is + /// only one). + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListByRedisResourceNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/IPrivateEndpointConnectionsOperations.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/IPrivateEndpointConnectionsOperations.cs new file mode 100644 index 000000000000..1eefa2f8bb9a --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/IPrivateEndpointConnectionsOperations.cs @@ -0,0 +1,176 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// PrivateEndpointConnectionsOperations operations. + /// + public partial interface IPrivateEndpointConnectionsOperations + { + /// + /// List all the private endpoint connections associated with the redis + /// cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListWithHttpMessagesAsync(string resourceGroupName, string cacheName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the specified private endpoint connection associated with the + /// redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the private endpoint connection associated with the + /// Azure resource + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string resourceGroupName, string cacheName, string privateEndpointConnectionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Update the state of specified private endpoint connection + /// associated with the redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the private endpoint connection associated with the + /// Azure resource + /// + /// + /// The private endpoint connection properties. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> PutWithHttpMessagesAsync(string resourceGroupName, string cacheName, string privateEndpointConnectionName, PrivateEndpointConnection properties, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes the specified private endpoint connection associated with + /// the redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the private endpoint connection associated with the + /// Azure resource + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string cacheName, string privateEndpointConnectionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Update the state of specified private endpoint connection + /// associated with the redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the private endpoint connection associated with the + /// Azure resource + /// + /// + /// The private endpoint connection properties. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> BeginPutWithHttpMessagesAsync(string resourceGroupName, string cacheName, string privateEndpointConnectionName, PrivateEndpointConnection properties, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/IPrivateLinkResourcesOperations.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/IPrivateLinkResourcesOperations.cs new file mode 100644 index 000000000000..be727a2d5ed4 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/IPrivateLinkResourcesOperations.cs @@ -0,0 +1,53 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// PrivateLinkResourcesOperations operations. + /// + public partial interface IPrivateLinkResourcesOperations + { + /// + /// Gets the private link resources that need to be created for a redis + /// cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListByRedisCacheWithHttpMessagesAsync(string resourceGroupName, string cacheName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/IRedisManagementClient.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/IRedisManagementClient.cs new file mode 100644 index 000000000000..0a4ef188cd06 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/IRedisManagementClient.cs @@ -0,0 +1,115 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + + /// + /// REST API for Azure Redis Cache Service. + /// + public partial interface IRedisManagementClient : System.IDisposable + { + /// + /// The base URI of the service. + /// + System.Uri BaseUri { get; set; } + + /// + /// Gets or sets json serialization settings. + /// + JsonSerializerSettings SerializationSettings { get; } + + /// + /// Gets or sets json deserialization settings. + /// + JsonSerializerSettings DeserializationSettings { get; } + + /// + /// Credentials needed for the client to connect to Azure. + /// + ServiceClientCredentials Credentials { get; } + + /// + /// Gets subscription credentials which uniquely identify the Microsoft + /// Azure subscription. The subscription ID forms part of the URI for + /// every service call. + /// + string SubscriptionId { get; set; } + + /// + /// Client Api Version. + /// + string ApiVersion { get; } + + /// + /// The preferred language for the response. + /// + string AcceptLanguage { get; set; } + + /// + /// The retry timeout in seconds for Long Running Operations. Default + /// value is 30. + /// + int? LongRunningOperationRetryTimeout { get; set; } + + /// + /// Whether a unique x-ms-client-request-id should be generated. When + /// set to true a unique x-ms-client-request-id value is generated and + /// included in each request. Default is true. + /// + bool? GenerateClientRequestId { get; set; } + + + /// + /// Gets the IOperations. + /// + IOperations Operations { get; } + + /// + /// Gets the IRedisOperations. + /// + IRedisOperations Redis { get; } + + /// + /// Gets the IFirewallRulesOperations. + /// + IFirewallRulesOperations FirewallRules { get; } + + /// + /// Gets the IPatchSchedulesOperations. + /// + IPatchSchedulesOperations PatchSchedules { get; } + + /// + /// Gets the ILinkedServerOperations. + /// + ILinkedServerOperations LinkedServer { get; } + + /// + /// Gets the IPrivateEndpointConnectionsOperations. + /// + IPrivateEndpointConnectionsOperations PrivateEndpointConnections { get; } + + /// + /// Gets the IPrivateLinkResourcesOperations. + /// + IPrivateLinkResourcesOperations PrivateLinkResources { get; } + + /// + /// Gets the IAsyncOperationStatusOperations. + /// + IAsyncOperationStatusOperations AsyncOperationStatus { get; } + + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/IRedisOperations.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/IRedisOperations.cs new file mode 100644 index 000000000000..5147acbf6b04 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/IRedisOperations.cs @@ -0,0 +1,554 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// RedisOperations operations. + /// + public partial interface IRedisOperations + { + /// + /// Checks that the redis cache name is valid and is not already in + /// use. + /// + /// + /// Resource name. + /// + /// + /// Resource type. The only legal value of this property for checking + /// redis cache name availability is 'Microsoft.Cache/redis'. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task CheckNameAvailabilityWithHttpMessagesAsync(string name, string type, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets any upgrade notifications for a Redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// how many minutes in past to look for upgrade notifications + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListUpgradeNotificationsWithHttpMessagesAsync(string resourceGroupName, string name, double history, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Create or replace (overwrite/recreate, with potential downtime) an + /// existing Redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Parameters supplied to the Create Redis operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> CreateWithHttpMessagesAsync(string resourceGroupName, string name, RedisCreateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Update an existing Redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Parameters supplied to the Update Redis operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string name, RedisUpdateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes a Redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a Redis cache (resource description). + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string resourceGroupName, string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Lists all Redis caches in a resource group. + /// + /// + /// The name of the resource group. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets all Redis caches in the specified subscription. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListBySubscriptionWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Retrieve a Redis cache's access keys. This operation requires write + /// permission to the cache resource. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> ListKeysWithHttpMessagesAsync(string resourceGroupName, string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Regenerate Redis cache's access keys. This operation requires write + /// permission to the cache resource. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The Redis access key to regenerate. Possible values include: + /// 'Primary', 'Secondary' + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> RegenerateKeyWithHttpMessagesAsync(string resourceGroupName, string name, RedisKeyType keyType, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Reboot specified Redis node(s). This operation requires write + /// permission to the cache resource. There can be potential data loss. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Specifies which Redis node(s) to reboot. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> ForceRebootWithHttpMessagesAsync(string resourceGroupName, string name, RedisRebootParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Import data into Redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Parameters for Redis import operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task ImportDataWithHttpMessagesAsync(string resourceGroupName, string name, ImportRDBParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Export data from the redis cache to blobs in a container. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Parameters for Redis export operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task ExportDataWithHttpMessagesAsync(string resourceGroupName, string name, ExportRDBParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Create or replace (overwrite/recreate, with potential downtime) an + /// existing Redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Parameters supplied to the Create Redis operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> BeginCreateWithHttpMessagesAsync(string resourceGroupName, string name, RedisCreateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Update an existing Redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Parameters supplied to the Update Redis operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string name, RedisUpdateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes a Redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Import data into Redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Parameters for Redis import operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task BeginImportDataWithHttpMessagesAsync(string resourceGroupName, string name, ImportRDBParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Export data from the redis cache to blobs in a container. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Parameters for Redis export operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task BeginExportDataWithHttpMessagesAsync(string resourceGroupName, string name, ExportRDBParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets any upgrade notifications for a Redis cache. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListUpgradeNotificationsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Lists all Redis caches in a resource group. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets all Redis caches in the specified subscription. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListBySubscriptionNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/LinkedServerOperations.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/LinkedServerOperations.cs new file mode 100644 index 000000000000..06d4717e3ec8 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/LinkedServerOperations.cs @@ -0,0 +1,1084 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// LinkedServerOperations operations. + /// + internal partial class LinkedServerOperations : IServiceOperations, ILinkedServerOperations + { + /// + /// Initializes a new instance of the LinkedServerOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal LinkedServerOperations(RedisManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the RedisManagementClient + /// + public RedisManagementClient Client { get; private set; } + + /// + /// Adds a linked server to the Redis cache (requires Premium SKU). + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the linked server that is being added to the Redis cache. + /// + /// + /// Parameters supplied to the Create Linked server operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateWithHttpMessagesAsync(string resourceGroupName, string name, string linkedServerName, RedisLinkedServerCreateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateWithHttpMessagesAsync(resourceGroupName, name, linkedServerName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Deletes the linked server from a redis cache (requires Premium SKU). + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the redis cache. + /// + /// + /// The name of the linked server that is being added to the Redis cache. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string name, string linkedServerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, name, linkedServerName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Gets the detailed information about a linked server of a redis cache + /// (requires Premium SKU). + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the redis cache. + /// + /// + /// The name of the linked server. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string name, string linkedServerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "name"); + } + if (linkedServerName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "linkedServerName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("name", name); + tracingParameters.Add("linkedServerName", linkedServerName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis/{name}/linkedServers/{linkedServerName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); + _url = _url.Replace("{linkedServerName}", System.Uri.EscapeDataString(linkedServerName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets the list of linked servers associated with this redis cache (requires + /// Premium SKU). + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the redis cache. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "name"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("name", name); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis/{name}/linkedServers").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Adds a linked server to the Redis cache (requires Premium SKU). + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the linked server that is being added to the Redis cache. + /// + /// + /// Parameters supplied to the Create Linked server operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> BeginCreateWithHttpMessagesAsync(string resourceGroupName, string name, string linkedServerName, RedisLinkedServerCreateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "name"); + } + if (linkedServerName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "linkedServerName"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("name", name); + tracingParameters.Add("linkedServerName", linkedServerName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginCreate", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis/{name}/linkedServers/{linkedServerName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); + _url = _url.Replace("{linkedServerName}", System.Uri.EscapeDataString(linkedServerName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 201) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Deletes the linked server from a redis cache (requires Premium SKU). + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the redis cache. + /// + /// + /// The name of the linked server that is being added to the Redis cache. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string name, string linkedServerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "name"); + } + if (linkedServerName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "linkedServerName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("name", name); + tracingParameters.Add("linkedServerName", linkedServerName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis/{name}/linkedServers/{linkedServerName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); + _url = _url.Replace("{linkedServerName}", System.Uri.EscapeDataString(linkedServerName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets the list of linked servers associated with this redis cache (requires + /// Premium SKU). + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/LinkedServerOperationsExtensions.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/LinkedServerOperationsExtensions.cs new file mode 100644 index 000000000000..83ffb7b35ac4 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/LinkedServerOperationsExtensions.cs @@ -0,0 +1,341 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for LinkedServerOperations. + /// + public static partial class LinkedServerOperationsExtensions + { + /// + /// Adds a linked server to the Redis cache (requires Premium SKU). + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the linked server that is being added to the Redis cache. + /// + /// + /// Parameters supplied to the Create Linked server operation. + /// + public static RedisLinkedServerWithProperties Create(this ILinkedServerOperations operations, string resourceGroupName, string name, string linkedServerName, RedisLinkedServerCreateParameters parameters) + { + return operations.CreateAsync(resourceGroupName, name, linkedServerName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Adds a linked server to the Redis cache (requires Premium SKU). + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the linked server that is being added to the Redis cache. + /// + /// + /// Parameters supplied to the Create Linked server operation. + /// + /// + /// The cancellation token. + /// + public static async Task CreateAsync(this ILinkedServerOperations operations, string resourceGroupName, string name, string linkedServerName, RedisLinkedServerCreateParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateWithHttpMessagesAsync(resourceGroupName, name, linkedServerName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes the linked server from a redis cache (requires Premium SKU). + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the redis cache. + /// + /// + /// The name of the linked server that is being added to the Redis cache. + /// + public static void Delete(this ILinkedServerOperations operations, string resourceGroupName, string name, string linkedServerName) + { + operations.DeleteAsync(resourceGroupName, name, linkedServerName).GetAwaiter().GetResult(); + } + + /// + /// Deletes the linked server from a redis cache (requires Premium SKU). + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the redis cache. + /// + /// + /// The name of the linked server that is being added to the Redis cache. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this ILinkedServerOperations operations, string resourceGroupName, string name, string linkedServerName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, name, linkedServerName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Gets the detailed information about a linked server of a redis cache + /// (requires Premium SKU). + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the redis cache. + /// + /// + /// The name of the linked server. + /// + public static RedisLinkedServerWithProperties Get(this ILinkedServerOperations operations, string resourceGroupName, string name, string linkedServerName) + { + return operations.GetAsync(resourceGroupName, name, linkedServerName).GetAwaiter().GetResult(); + } + + /// + /// Gets the detailed information about a linked server of a redis cache + /// (requires Premium SKU). + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the redis cache. + /// + /// + /// The name of the linked server. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this ILinkedServerOperations operations, string resourceGroupName, string name, string linkedServerName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, name, linkedServerName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets the list of linked servers associated with this redis cache (requires + /// Premium SKU). + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the redis cache. + /// + public static IPage List(this ILinkedServerOperations operations, string resourceGroupName, string name) + { + return operations.ListAsync(resourceGroupName, name).GetAwaiter().GetResult(); + } + + /// + /// Gets the list of linked servers associated with this redis cache (requires + /// Premium SKU). + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the redis cache. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this ILinkedServerOperations operations, string resourceGroupName, string name, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, name, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Adds a linked server to the Redis cache (requires Premium SKU). + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the linked server that is being added to the Redis cache. + /// + /// + /// Parameters supplied to the Create Linked server operation. + /// + public static RedisLinkedServerWithProperties BeginCreate(this ILinkedServerOperations operations, string resourceGroupName, string name, string linkedServerName, RedisLinkedServerCreateParameters parameters) + { + return operations.BeginCreateAsync(resourceGroupName, name, linkedServerName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Adds a linked server to the Redis cache (requires Premium SKU). + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the linked server that is being added to the Redis cache. + /// + /// + /// Parameters supplied to the Create Linked server operation. + /// + /// + /// The cancellation token. + /// + public static async Task BeginCreateAsync(this ILinkedServerOperations operations, string resourceGroupName, string name, string linkedServerName, RedisLinkedServerCreateParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginCreateWithHttpMessagesAsync(resourceGroupName, name, linkedServerName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes the linked server from a redis cache (requires Premium SKU). + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the redis cache. + /// + /// + /// The name of the linked server that is being added to the Redis cache. + /// + public static void BeginDelete(this ILinkedServerOperations operations, string resourceGroupName, string name, string linkedServerName) + { + operations.BeginDeleteAsync(resourceGroupName, name, linkedServerName).GetAwaiter().GetResult(); + } + + /// + /// Deletes the linked server from a redis cache (requires Premium SKU). + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the redis cache. + /// + /// + /// The name of the linked server that is being added to the Redis cache. + /// + /// + /// The cancellation token. + /// + public static async Task BeginDeleteAsync(this ILinkedServerOperations operations, string resourceGroupName, string name, string linkedServerName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, name, linkedServerName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Gets the list of linked servers associated with this redis cache (requires + /// Premium SKU). + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this ILinkedServerOperations operations, string nextPageLink) + { + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets the list of linked servers associated with this redis cache (requires + /// Premium SKU). + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListNextAsync(this ILinkedServerOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/AzureEntityResource.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/AzureEntityResource.cs new file mode 100644 index 000000000000..7870d659ed7d --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/AzureEntityResource.cs @@ -0,0 +1,62 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Entity Resource + /// + /// + /// The resource model definition for an Azure Resource Manager resource + /// with an etag. + /// + public partial class AzureEntityResource : Resource + { + /// + /// Initializes a new instance of the AzureEntityResource class. + /// + public AzureEntityResource() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the AzureEntityResource class. + /// + /// Fully qualified resource ID for the resource. Ex - + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// The name of the resource + /// The type of the resource. E.g. + /// "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" + /// Resource Etag. + public AzureEntityResource(string id = default(string), string name = default(string), string type = default(string), string etag = default(string)) + : base(id, name, type) + { + Etag = etag; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets resource Etag. + /// + [JsonProperty(PropertyName = "etag")] + public string Etag { get; private set; } + + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/CheckNameAvailabilityParameters.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/CheckNameAvailabilityParameters.cs new file mode 100644 index 000000000000..621a9ab8ad8f --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/CheckNameAvailabilityParameters.cs @@ -0,0 +1,83 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Parameters body to pass for resource name availability check. + /// + public partial class CheckNameAvailabilityParameters + { + /// + /// Initializes a new instance of the CheckNameAvailabilityParameters + /// class. + /// + public CheckNameAvailabilityParameters() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the CheckNameAvailabilityParameters + /// class. + /// + /// Resource name. + /// Resource type. The only legal value of this + /// property for checking redis cache name availability is + /// 'Microsoft.Cache/redis'. + public CheckNameAvailabilityParameters(string name, string type) + { + Name = name; + Type = type; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets resource name. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets resource type. The only legal value of this property + /// for checking redis cache name availability is + /// 'Microsoft.Cache/redis'. + /// + [JsonProperty(PropertyName = "type")] + public string Type { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Name"); + } + if (Type == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Type"); + } + } + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/DayOfWeek.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/DayOfWeek.cs new file mode 100644 index 000000000000..d6aaaf825803 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/DayOfWeek.cs @@ -0,0 +1,102 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for DayOfWeek. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum DayOfWeek + { + [EnumMember(Value = "Monday")] + Monday, + [EnumMember(Value = "Tuesday")] + Tuesday, + [EnumMember(Value = "Wednesday")] + Wednesday, + [EnumMember(Value = "Thursday")] + Thursday, + [EnumMember(Value = "Friday")] + Friday, + [EnumMember(Value = "Saturday")] + Saturday, + [EnumMember(Value = "Sunday")] + Sunday, + [EnumMember(Value = "Everyday")] + Everyday, + [EnumMember(Value = "Weekend")] + Weekend + } + internal static class DayOfWeekEnumExtension + { + internal static string ToSerializedValue(this DayOfWeek? value) + { + return value == null ? null : ((DayOfWeek)value).ToSerializedValue(); + } + + internal static string ToSerializedValue(this DayOfWeek value) + { + switch( value ) + { + case DayOfWeek.Monday: + return "Monday"; + case DayOfWeek.Tuesday: + return "Tuesday"; + case DayOfWeek.Wednesday: + return "Wednesday"; + case DayOfWeek.Thursday: + return "Thursday"; + case DayOfWeek.Friday: + return "Friday"; + case DayOfWeek.Saturday: + return "Saturday"; + case DayOfWeek.Sunday: + return "Sunday"; + case DayOfWeek.Everyday: + return "Everyday"; + case DayOfWeek.Weekend: + return "Weekend"; + } + return null; + } + + internal static DayOfWeek? ParseDayOfWeek(this string value) + { + switch( value ) + { + case "Monday": + return DayOfWeek.Monday; + case "Tuesday": + return DayOfWeek.Tuesday; + case "Wednesday": + return DayOfWeek.Wednesday; + case "Thursday": + return DayOfWeek.Thursday; + case "Friday": + return DayOfWeek.Friday; + case "Saturday": + return DayOfWeek.Saturday; + case "Sunday": + return DayOfWeek.Sunday; + case "Everyday": + return DayOfWeek.Everyday; + case "Weekend": + return DayOfWeek.Weekend; + } + return null; + } + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/ErrorAdditionalInfo.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/ErrorAdditionalInfo.cs new file mode 100644 index 000000000000..ebd1a28463b2 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/ErrorAdditionalInfo.cs @@ -0,0 +1,59 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// The resource management error additional info. + /// + public partial class ErrorAdditionalInfo + { + /// + /// Initializes a new instance of the ErrorAdditionalInfo class. + /// + public ErrorAdditionalInfo() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ErrorAdditionalInfo class. + /// + /// The additional info type. + /// The additional info. + public ErrorAdditionalInfo(string type = default(string), object info = default(object)) + { + Type = type; + Info = info; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the additional info type. + /// + [JsonProperty(PropertyName = "type")] + public string Type { get; private set; } + + /// + /// Gets the additional info. + /// + [JsonProperty(PropertyName = "info")] + public object Info { get; private set; } + + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/ErrorDetail.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/ErrorDetail.cs new file mode 100644 index 000000000000..75eae91c2843 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/ErrorDetail.cs @@ -0,0 +1,85 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// The error detail. + /// + public partial class ErrorDetail + { + /// + /// Initializes a new instance of the ErrorDetail class. + /// + public ErrorDetail() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ErrorDetail class. + /// + /// The error code. + /// The error message. + /// The error target. + /// The error details. + /// The error additional info. + public ErrorDetail(string code = default(string), string message = default(string), string target = default(string), IList details = default(IList), IList additionalInfo = default(IList)) + { + Code = code; + Message = message; + Target = target; + Details = details; + AdditionalInfo = additionalInfo; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the error code. + /// + [JsonProperty(PropertyName = "code")] + public string Code { get; private set; } + + /// + /// Gets the error message. + /// + [JsonProperty(PropertyName = "message")] + public string Message { get; private set; } + + /// + /// Gets the error target. + /// + [JsonProperty(PropertyName = "target")] + public string Target { get; private set; } + + /// + /// Gets the error details. + /// + [JsonProperty(PropertyName = "details")] + public IList Details { get; private set; } + + /// + /// Gets the error additional info. + /// + [JsonProperty(PropertyName = "additionalInfo")] + public IList AdditionalInfo { get; private set; } + + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/ErrorResponse.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/ErrorResponse.cs new file mode 100644 index 000000000000..7d2bf5433968 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/ErrorResponse.cs @@ -0,0 +1,56 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Error response + /// + /// + /// Common error response for all Azure Resource Manager APIs to return + /// error details for failed operations. (This also follows the OData error + /// response format.). + /// + public partial class ErrorResponse + { + /// + /// Initializes a new instance of the ErrorResponse class. + /// + public ErrorResponse() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ErrorResponse class. + /// + /// The error object. + public ErrorResponse(ErrorDetail error = default(ErrorDetail)) + { + Error = error; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the error object. + /// + [JsonProperty(PropertyName = "error")] + public ErrorDetail Error { get; set; } + + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/ErrorResponseException.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/ErrorResponseException.cs new file mode 100644 index 000000000000..d6e2c32f0bf4 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/ErrorResponseException.cs @@ -0,0 +1,62 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + using Microsoft.Rest; + + /// + /// Exception thrown for an invalid response with ErrorResponse + /// information. + /// + public partial class ErrorResponseException : RestException + { + /// + /// Gets information about the associated HTTP request. + /// + public HttpRequestMessageWrapper Request { get; set; } + + /// + /// Gets information about the associated HTTP response. + /// + public HttpResponseMessageWrapper Response { get; set; } + + /// + /// Gets or sets the body object. + /// + public ErrorResponse Body { get; set; } + + /// + /// Initializes a new instance of the ErrorResponseException class. + /// + public ErrorResponseException() + { + } + + /// + /// Initializes a new instance of the ErrorResponseException class. + /// + /// The exception message. + public ErrorResponseException(string message) + : this(message, null) + { + } + + /// + /// Initializes a new instance of the ErrorResponseException class. + /// + /// The exception message. + /// Inner exception. + public ErrorResponseException(string message, System.Exception innerException) + : base(message, innerException) + { + } + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/ExportRDBParameters.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/ExportRDBParameters.cs new file mode 100644 index 000000000000..474d41ecd1a2 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/ExportRDBParameters.cs @@ -0,0 +1,97 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Parameters for Redis export operation. + /// + public partial class ExportRDBParameters + { + /// + /// Initializes a new instance of the ExportRDBParameters class. + /// + public ExportRDBParameters() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ExportRDBParameters class. + /// + /// Prefix to use for exported files. + /// Container name to export to. + /// File format. + /// Preferred auth method + /// to communicate to storage account used for data archive, specify + /// SAS or ManagedIdentity, default value is SAS + public ExportRDBParameters(string prefix, string container, string format = default(string), string preferredDataArchiveAuthMethod = default(string)) + { + Format = format; + Prefix = prefix; + Container = container; + PreferredDataArchiveAuthMethod = preferredDataArchiveAuthMethod; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets file format. + /// + [JsonProperty(PropertyName = "format")] + public string Format { get; set; } + + /// + /// Gets or sets prefix to use for exported files. + /// + [JsonProperty(PropertyName = "prefix")] + public string Prefix { get; set; } + + /// + /// Gets or sets container name to export to. + /// + [JsonProperty(PropertyName = "container")] + public string Container { get; set; } + + /// + /// Gets or sets preferred auth method to communicate to storage + /// account used for data archive, specify SAS or ManagedIdentity, + /// default value is SAS + /// + [JsonProperty(PropertyName = "preferred-data-archive-auth-method")] + public string PreferredDataArchiveAuthMethod { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Prefix == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Prefix"); + } + if (Container == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Container"); + } + } + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/ImportRDBParameters.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/ImportRDBParameters.cs new file mode 100644 index 000000000000..dad9cabe54ad --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/ImportRDBParameters.cs @@ -0,0 +1,87 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Parameters for Redis import operation. + /// + public partial class ImportRDBParameters + { + /// + /// Initializes a new instance of the ImportRDBParameters class. + /// + public ImportRDBParameters() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ImportRDBParameters class. + /// + /// files to import. + /// File format. + /// Preferred auth method + /// to communicate to storage account used for data archive, specify + /// SAS or ManagedIdentity, default value is SAS + public ImportRDBParameters(IList files, string format = default(string), string preferredDataArchiveAuthMethod = default(string)) + { + Format = format; + Files = files; + PreferredDataArchiveAuthMethod = preferredDataArchiveAuthMethod; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets file format. + /// + [JsonProperty(PropertyName = "format")] + public string Format { get; set; } + + /// + /// Gets or sets files to import. + /// + [JsonProperty(PropertyName = "files")] + public IList Files { get; set; } + + /// + /// Gets or sets preferred auth method to communicate to storage + /// account used for data archive, specify SAS or ManagedIdentity, + /// default value is SAS + /// + [JsonProperty(PropertyName = "preferred-data-archive-auth-method")] + public string PreferredDataArchiveAuthMethod { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Files == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Files"); + } + } + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/ManagedServiceIdentity.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/ManagedServiceIdentity.cs new file mode 100644 index 000000000000..64015c5c2ac0 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/ManagedServiceIdentity.cs @@ -0,0 +1,99 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Managed service identity (system assigned and/or user assigned + /// identities) + /// + public partial class ManagedServiceIdentity + { + /// + /// Initializes a new instance of the ManagedServiceIdentity class. + /// + public ManagedServiceIdentity() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ManagedServiceIdentity class. + /// + /// Possible values include: 'None', + /// 'SystemAssigned', 'UserAssigned', 'SystemAssigned, + /// UserAssigned' + /// The service principal ID of the system + /// assigned identity. This property will only be provided for a system + /// assigned identity. + /// The tenant ID of the system assigned + /// identity. This property will only be provided for a system assigned + /// identity. + public ManagedServiceIdentity(string type, System.Guid? principalId = default(System.Guid?), System.Guid? tenantId = default(System.Guid?), IDictionary userAssignedIdentities = default(IDictionary)) + { + PrincipalId = principalId; + TenantId = tenantId; + Type = type; + UserAssignedIdentities = userAssignedIdentities; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the service principal ID of the system assigned identity. This + /// property will only be provided for a system assigned identity. + /// + [JsonProperty(PropertyName = "principalId")] + public System.Guid? PrincipalId { get; private set; } + + /// + /// Gets the tenant ID of the system assigned identity. This property + /// will only be provided for a system assigned identity. + /// + [JsonProperty(PropertyName = "tenantId")] + public System.Guid? TenantId { get; private set; } + + /// + /// Gets or sets possible values include: 'None', 'SystemAssigned', + /// 'UserAssigned', 'SystemAssigned, UserAssigned' + /// + [JsonProperty(PropertyName = "type")] + public string Type { get; set; } + + /// + /// + [JsonProperty(PropertyName = "userAssignedIdentities")] + public IDictionary UserAssignedIdentities { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Type == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Type"); + } + } + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/ManagedServiceIdentityType.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/ManagedServiceIdentityType.cs new file mode 100644 index 000000000000..7acac33d9c85 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/ManagedServiceIdentityType.cs @@ -0,0 +1,24 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + + /// + /// Defines values for ManagedServiceIdentityType. + /// + public static class ManagedServiceIdentityType + { + public const string None = "None"; + public const string SystemAssigned = "SystemAssigned"; + public const string UserAssigned = "UserAssigned"; + public const string SystemAssignedUserAssigned = "SystemAssigned, UserAssigned"; + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/Operation.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/Operation.cs new file mode 100644 index 000000000000..fe795a00d7bb --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/Operation.cs @@ -0,0 +1,61 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// REST API operation + /// + public partial class Operation + { + /// + /// Initializes a new instance of the Operation class. + /// + public Operation() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the Operation class. + /// + /// Operation name: + /// {provider}/{resource}/{operation} + /// The object that describes the + /// operation. + public Operation(string name = default(string), OperationDisplay display = default(OperationDisplay)) + { + Name = name; + Display = display; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets operation name: {provider}/{resource}/{operation} + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets the object that describes the operation. + /// + [JsonProperty(PropertyName = "display")] + public OperationDisplay Display { get; set; } + + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/OperationDisplay.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/OperationDisplay.cs new file mode 100644 index 000000000000..625076452d30 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/OperationDisplay.cs @@ -0,0 +1,79 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// The object that describes the operation. + /// + public partial class OperationDisplay + { + /// + /// Initializes a new instance of the OperationDisplay class. + /// + public OperationDisplay() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the OperationDisplay class. + /// + /// Friendly name of the resource + /// provider + /// Operation type: read, write, delete, + /// listKeys/action, etc. + /// Resource type on which the operation is + /// performed. + /// Friendly name of the operation + public OperationDisplay(string provider = default(string), string operation = default(string), string resource = default(string), string description = default(string)) + { + Provider = provider; + Operation = operation; + Resource = resource; + Description = description; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets friendly name of the resource provider + /// + [JsonProperty(PropertyName = "provider")] + public string Provider { get; set; } + + /// + /// Gets or sets operation type: read, write, delete, listKeys/action, + /// etc. + /// + [JsonProperty(PropertyName = "operation")] + public string Operation { get; set; } + + /// + /// Gets or sets resource type on which the operation is performed. + /// + [JsonProperty(PropertyName = "resource")] + public string Resource { get; set; } + + /// + /// Gets or sets friendly name of the operation + /// + [JsonProperty(PropertyName = "description")] + public string Description { get; set; } + + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/OperationStatus.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/OperationStatus.cs new file mode 100644 index 000000000000..987b6edea9f2 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/OperationStatus.cs @@ -0,0 +1,77 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Asynchronous operation status + /// + public partial class OperationStatus : OperationStatusResult + { + /// + /// Initializes a new instance of the OperationStatus class. + /// + public OperationStatus() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the OperationStatus class. + /// + /// Operation status. + /// Fully qualified ID for the async + /// operation. + /// Name of the async operation. + /// Percent of the operation that is + /// complete. + /// The start time of the operation. + /// The end time of the operation. + /// The operations list. + /// If present, details of the operation + /// error. + /// Additional properties from RP, only when + /// operation is successful + public OperationStatus(string status, string id = default(string), string name = default(string), double? percentComplete = default(double?), System.DateTime? startTime = default(System.DateTime?), System.DateTime? endTime = default(System.DateTime?), IList operations = default(IList), ErrorDetail error = default(ErrorDetail), IDictionary properties = default(IDictionary)) + : base(status, id, name, percentComplete, startTime, endTime, operations, error) + { + Properties = properties; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets additional properties from RP, only when operation is + /// successful + /// + [JsonProperty(PropertyName = "properties")] + public IDictionary Properties { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + } + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/OperationStatusResult.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/OperationStatusResult.cs new file mode 100644 index 000000000000..98bdbf5ffe98 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/OperationStatusResult.cs @@ -0,0 +1,147 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// The current status of an async operation. + /// + public partial class OperationStatusResult + { + /// + /// Initializes a new instance of the OperationStatusResult class. + /// + public OperationStatusResult() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the OperationStatusResult class. + /// + /// Operation status. + /// Fully qualified ID for the async + /// operation. + /// Name of the async operation. + /// Percent of the operation that is + /// complete. + /// The start time of the operation. + /// The end time of the operation. + /// The operations list. + /// If present, details of the operation + /// error. + public OperationStatusResult(string status, string id = default(string), string name = default(string), double? percentComplete = default(double?), System.DateTime? startTime = default(System.DateTime?), System.DateTime? endTime = default(System.DateTime?), IList operations = default(IList), ErrorDetail error = default(ErrorDetail)) + { + Id = id; + Name = name; + Status = status; + PercentComplete = percentComplete; + StartTime = startTime; + EndTime = endTime; + Operations = operations; + Error = error; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets fully qualified ID for the async operation. + /// + [JsonProperty(PropertyName = "id")] + public string Id { get; set; } + + /// + /// Gets or sets name of the async operation. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets operation status. + /// + [JsonProperty(PropertyName = "status")] + public string Status { get; set; } + + /// + /// Gets or sets percent of the operation that is complete. + /// + [JsonProperty(PropertyName = "percentComplete")] + public double? PercentComplete { get; set; } + + /// + /// Gets or sets the start time of the operation. + /// + [JsonProperty(PropertyName = "startTime")] + public System.DateTime? StartTime { get; set; } + + /// + /// Gets or sets the end time of the operation. + /// + [JsonProperty(PropertyName = "endTime")] + public System.DateTime? EndTime { get; set; } + + /// + /// Gets or sets the operations list. + /// + [JsonProperty(PropertyName = "operations")] + public IList Operations { get; set; } + + /// + /// Gets or sets if present, details of the operation error. + /// + [JsonProperty(PropertyName = "error")] + public ErrorDetail Error { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Status == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Status"); + } + if (PercentComplete != null) + { + if (PercentComplete > 100) + { + throw new ValidationException(ValidationRules.InclusiveMaximum, "PercentComplete", 100); + } + if (PercentComplete < 0) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "PercentComplete", 0); + } + } + if (Operations != null) + { + foreach (var element in Operations) + { + if (element != null) + { + element.Validate(); + } + } + } + } + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/Page.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/Page.cs new file mode 100644 index 000000000000..3ca1beacc777 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/Page.cs @@ -0,0 +1,53 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + + /// + /// Defines a page in Azure responses. + /// + /// Type of the page content items + [JsonObject] + public class Page : IPage + { + /// + /// Gets the link to the next page. + /// + [JsonProperty("nextLink")] + public string NextPageLink { get; private set; } + + [JsonProperty("value")] + private IList Items{ get; set; } + + /// + /// Returns an enumerator that iterates through the collection. + /// + /// A an enumerator that can be used to iterate through the collection. + public IEnumerator GetEnumerator() + { + return Items == null ? System.Linq.Enumerable.Empty().GetEnumerator() : Items.GetEnumerator(); + } + + /// + /// Returns an enumerator that iterates through the collection. + /// + /// A an enumerator that can be used to iterate through the collection. + IEnumerator IEnumerable.GetEnumerator() + { + return GetEnumerator(); + } + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/Page1.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/Page1.cs new file mode 100644 index 000000000000..b8acb12689af --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/Page1.cs @@ -0,0 +1,53 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + + /// + /// Defines a page in Azure responses. + /// + /// Type of the page content items + [JsonObject] + public class Page1 : IPage + { + /// + /// Gets the link to the next page. + /// + [JsonProperty("")] + public string NextPageLink { get; private set; } + + [JsonProperty("value")] + private IList Items{ get; set; } + + /// + /// Returns an enumerator that iterates through the collection. + /// + /// A an enumerator that can be used to iterate through the collection. + public IEnumerator GetEnumerator() + { + return Items == null ? System.Linq.Enumerable.Empty().GetEnumerator() : Items.GetEnumerator(); + } + + /// + /// Returns an enumerator that iterates through the collection. + /// + /// A an enumerator that can be used to iterate through the collection. + IEnumerator IEnumerable.GetEnumerator() + { + return GetEnumerator(); + } + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/PrivateEndpoint.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/PrivateEndpoint.cs new file mode 100644 index 000000000000..a8319943c05b --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/PrivateEndpoint.cs @@ -0,0 +1,51 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// The Private Endpoint resource. + /// + public partial class PrivateEndpoint + { + /// + /// Initializes a new instance of the PrivateEndpoint class. + /// + public PrivateEndpoint() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the PrivateEndpoint class. + /// + /// The ARM identifier for Private Endpoint + public PrivateEndpoint(string id = default(string)) + { + Id = id; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the ARM identifier for Private Endpoint + /// + [JsonProperty(PropertyName = "id")] + public string Id { get; private set; } + + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/PrivateEndpointConnection.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/PrivateEndpointConnection.cs new file mode 100644 index 000000000000..a6c8bd993f68 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/PrivateEndpointConnection.cs @@ -0,0 +1,98 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Linq; + + /// + /// The Private Endpoint Connection resource. + /// + [Rest.Serialization.JsonTransformation] + public partial class PrivateEndpointConnection : Resource + { + /// + /// Initializes a new instance of the PrivateEndpointConnection class. + /// + public PrivateEndpointConnection() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the PrivateEndpointConnection class. + /// + /// A collection of + /// information about the state of the connection between service + /// consumer and provider. + /// Fully qualified resource ID for the resource. Ex - + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// The name of the resource + /// The type of the resource. E.g. + /// "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" + /// The resource of private end + /// point. + /// The provisioning state of the + /// private endpoint connection resource. Possible values include: + /// 'Succeeded', 'Creating', 'Deleting', 'Failed' + public PrivateEndpointConnection(PrivateLinkServiceConnectionState privateLinkServiceConnectionState, string id = default(string), string name = default(string), string type = default(string), PrivateEndpoint privateEndpoint = default(PrivateEndpoint), string provisioningState = default(string)) + : base(id, name, type) + { + PrivateEndpoint = privateEndpoint; + PrivateLinkServiceConnectionState = privateLinkServiceConnectionState; + ProvisioningState = provisioningState; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the resource of private end point. + /// + [JsonProperty(PropertyName = "properties.privateEndpoint")] + public PrivateEndpoint PrivateEndpoint { get; set; } + + /// + /// Gets or sets a collection of information about the state of the + /// connection between service consumer and provider. + /// + [JsonProperty(PropertyName = "properties.privateLinkServiceConnectionState")] + public PrivateLinkServiceConnectionState PrivateLinkServiceConnectionState { get; set; } + + /// + /// Gets or sets the provisioning state of the private endpoint + /// connection resource. Possible values include: 'Succeeded', + /// 'Creating', 'Deleting', 'Failed' + /// + [JsonProperty(PropertyName = "properties.provisioningState")] + public string ProvisioningState { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (PrivateLinkServiceConnectionState == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "PrivateLinkServiceConnectionState"); + } + } + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/PrivateEndpointConnectionProvisioningState.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/PrivateEndpointConnectionProvisioningState.cs new file mode 100644 index 000000000000..20e6c5c1571b --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/PrivateEndpointConnectionProvisioningState.cs @@ -0,0 +1,24 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + + /// + /// Defines values for PrivateEndpointConnectionProvisioningState. + /// + public static class PrivateEndpointConnectionProvisioningState + { + public const string Succeeded = "Succeeded"; + public const string Creating = "Creating"; + public const string Deleting = "Deleting"; + public const string Failed = "Failed"; + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/PrivateEndpointServiceConnectionStatus.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/PrivateEndpointServiceConnectionStatus.cs new file mode 100644 index 000000000000..b08fdb2490de --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/PrivateEndpointServiceConnectionStatus.cs @@ -0,0 +1,23 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + + /// + /// Defines values for PrivateEndpointServiceConnectionStatus. + /// + public static class PrivateEndpointServiceConnectionStatus + { + public const string Pending = "Pending"; + public const string Approved = "Approved"; + public const string Rejected = "Rejected"; + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/PrivateLinkResource.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/PrivateLinkResource.cs new file mode 100644 index 000000000000..d7671d38d7b7 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/PrivateLinkResource.cs @@ -0,0 +1,81 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// A private link resource + /// + [Rest.Serialization.JsonTransformation] + public partial class PrivateLinkResource : Resource + { + /// + /// Initializes a new instance of the PrivateLinkResource class. + /// + public PrivateLinkResource() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the PrivateLinkResource class. + /// + /// Fully qualified resource ID for the resource. Ex - + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// The name of the resource + /// The type of the resource. E.g. + /// "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" + /// The private link resource group id. + /// The private link resource required + /// member names. + /// The private link resource Private + /// link DNS zone name. + public PrivateLinkResource(string id = default(string), string name = default(string), string type = default(string), string groupId = default(string), IList requiredMembers = default(IList), IList requiredZoneNames = default(IList)) + : base(id, name, type) + { + GroupId = groupId; + RequiredMembers = requiredMembers; + RequiredZoneNames = requiredZoneNames; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the private link resource group id. + /// + [JsonProperty(PropertyName = "properties.groupId")] + public string GroupId { get; private set; } + + /// + /// Gets the private link resource required member names. + /// + [JsonProperty(PropertyName = "properties.requiredMembers")] + public IList RequiredMembers { get; private set; } + + /// + /// Gets or sets the private link resource Private link DNS zone name. + /// + [JsonProperty(PropertyName = "properties.requiredZoneNames")] + public IList RequiredZoneNames { get; set; } + + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/PrivateLinkServiceConnectionState.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/PrivateLinkServiceConnectionState.cs new file mode 100644 index 000000000000..6fc87e15d277 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/PrivateLinkServiceConnectionState.cs @@ -0,0 +1,77 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// A collection of information about the state of the connection between + /// service consumer and provider. + /// + public partial class PrivateLinkServiceConnectionState + { + /// + /// Initializes a new instance of the PrivateLinkServiceConnectionState + /// class. + /// + public PrivateLinkServiceConnectionState() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the PrivateLinkServiceConnectionState + /// class. + /// + /// Indicates whether the connection has been + /// Approved/Rejected/Removed by the owner of the service. Possible + /// values include: 'Pending', 'Approved', 'Rejected' + /// The reason for approval/rejection of the + /// connection. + /// A message indicating if changes on + /// the service provider require any updates on the consumer. + public PrivateLinkServiceConnectionState(string status = default(string), string description = default(string), string actionsRequired = default(string)) + { + Status = status; + Description = description; + ActionsRequired = actionsRequired; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets indicates whether the connection has been + /// Approved/Rejected/Removed by the owner of the service. Possible + /// values include: 'Pending', 'Approved', 'Rejected' + /// + [JsonProperty(PropertyName = "status")] + public string Status { get; set; } + + /// + /// Gets or sets the reason for approval/rejection of the connection. + /// + [JsonProperty(PropertyName = "description")] + public string Description { get; set; } + + /// + /// Gets or sets a message indicating if changes on the service + /// provider require any updates on the consumer. + /// + [JsonProperty(PropertyName = "actionsRequired")] + public string ActionsRequired { get; set; } + + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/ProvisioningState.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/ProvisioningState.cs new file mode 100644 index 000000000000..635aaad09a61 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/ProvisioningState.cs @@ -0,0 +1,32 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + + /// + /// Defines values for ProvisioningState. + /// + public static class ProvisioningState + { + public const string Creating = "Creating"; + public const string Deleting = "Deleting"; + public const string Disabled = "Disabled"; + public const string Failed = "Failed"; + public const string Linking = "Linking"; + public const string Provisioning = "Provisioning"; + public const string RecoveringScaleFailure = "RecoveringScaleFailure"; + public const string Scaling = "Scaling"; + public const string Succeeded = "Succeeded"; + public const string Unlinking = "Unlinking"; + public const string Unprovisioning = "Unprovisioning"; + public const string Updating = "Updating"; + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/ProxyResource.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/ProxyResource.cs new file mode 100644 index 000000000000..609ad08d4363 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/ProxyResource.cs @@ -0,0 +1,53 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + using System.Linq; + + /// + /// Proxy Resource + /// + /// + /// The resource model definition for a Azure Resource Manager proxy + /// resource. It will not have tags and a location + /// + public partial class ProxyResource : Resource + { + /// + /// Initializes a new instance of the ProxyResource class. + /// + public ProxyResource() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ProxyResource class. + /// + /// Fully qualified resource ID for the resource. Ex - + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// The name of the resource + /// The type of the resource. E.g. + /// "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" + public ProxyResource(string id = default(string), string name = default(string), string type = default(string)) + : base(id, name, type) + { + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/PublicNetworkAccess.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/PublicNetworkAccess.cs new file mode 100644 index 000000000000..7950acce208e --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/PublicNetworkAccess.cs @@ -0,0 +1,22 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + + /// + /// Defines values for PublicNetworkAccess. + /// + public static class PublicNetworkAccess + { + public const string Enabled = "Enabled"; + public const string Disabled = "Disabled"; + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RebootType.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RebootType.cs new file mode 100644 index 000000000000..e55ca58af5bc --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RebootType.cs @@ -0,0 +1,23 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + + /// + /// Defines values for RebootType. + /// + public static class RebootType + { + public const string PrimaryNode = "PrimaryNode"; + public const string SecondaryNode = "SecondaryNode"; + public const string AllNodes = "AllNodes"; + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisAccessKeys.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisAccessKeys.cs new file mode 100644 index 000000000000..6036c9b22329 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisAccessKeys.cs @@ -0,0 +1,63 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Redis cache access keys. + /// + public partial class RedisAccessKeys + { + /// + /// Initializes a new instance of the RedisAccessKeys class. + /// + public RedisAccessKeys() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the RedisAccessKeys class. + /// + /// The current primary key that clients can + /// use to authenticate with Redis cache. + /// The current secondary key that clients + /// can use to authenticate with Redis cache. + public RedisAccessKeys(string primaryKey = default(string), string secondaryKey = default(string)) + { + PrimaryKey = primaryKey; + SecondaryKey = secondaryKey; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the current primary key that clients can use to authenticate + /// with Redis cache. + /// + [JsonProperty(PropertyName = "primaryKey")] + public string PrimaryKey { get; private set; } + + /// + /// Gets the current secondary key that clients can use to authenticate + /// with Redis cache. + /// + [JsonProperty(PropertyName = "secondaryKey")] + public string SecondaryKey { get; private set; } + + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisCommonPropertiesRedisConfiguration.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisCommonPropertiesRedisConfiguration.cs new file mode 100644 index 000000000000..ab24614d8029 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisCommonPropertiesRedisConfiguration.cs @@ -0,0 +1,218 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// All Redis Settings. Few possible keys: + /// rdb-backup-enabled,rdb-storage-connection-string,rdb-backup-frequency,maxmemory-delta,maxmemory-policy,notify-keyspace-events,maxmemory-samples,slowlog-log-slower-than,slowlog-max-len,list-max-ziplist-entries,list-max-ziplist-value,hash-max-ziplist-entries,hash-max-ziplist-value,set-max-intset-entries,zset-max-ziplist-entries,zset-max-ziplist-value + /// etc. + /// + public partial class RedisCommonPropertiesRedisConfiguration + { + /// + /// Initializes a new instance of the + /// RedisCommonPropertiesRedisConfiguration class. + /// + public RedisCommonPropertiesRedisConfiguration() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// RedisCommonPropertiesRedisConfiguration class. + /// + /// Unmatched properties from the + /// message are deserialized this collection + /// Specifies whether the rdb backup is + /// enabled + /// Specifies the frequency for + /// creating rdb backup in minutes. Valid values: (15, 30, 60, 360, + /// 720, 1440) + /// Specifies the maximum + /// number of snapshots for rdb backup + /// The storage account + /// connection string for storing rdb file + /// Specifies whether the aof backup is + /// enabled + /// First storage account + /// connection string + /// Second storage account + /// connection string + /// Value in megabytes + /// reserved for fragmentation per shard + /// The eviction strategy used when your + /// data won't fit within its memory limit. + /// Value in megabytes reserved for + /// non-cache usage per shard e.g. failover. + /// Value in megabytes reserved for + /// non-cache usage per shard e.g. failover. + /// The max clients config + /// Preferred auth method + /// to communicate to storage account used for data archive, specify + /// SAS or ManagedIdentity, default value is SAS + /// Preferred auth + /// method to communicate to storage account used for data persistence, + /// specify SAS or ManagedIdentity, default value is SAS + /// Zonal Configuration + /// Specifies whether the authentication + /// is disabled. Setting this property is highly discouraged from + /// security point of view. + public RedisCommonPropertiesRedisConfiguration(IDictionary additionalProperties = default(IDictionary), string rdbBackupEnabled = default(string), string rdbBackupFrequency = default(string), string rdbBackupMaxSnapshotCount = default(string), string rdbStorageConnectionString = default(string), string aofBackupEnabled = default(string), string aofStorageConnectionString0 = default(string), string aofStorageConnectionString1 = default(string), string maxfragmentationmemoryReserved = default(string), string maxmemoryPolicy = default(string), string maxmemoryReserved = default(string), string maxmemoryDelta = default(string), string maxclients = default(string), string preferredDataArchiveAuthMethod = default(string), string preferredDataPersistenceAuthMethod = default(string), string zonalConfiguration = default(string), string authnotrequired = default(string)) + { + AdditionalProperties = additionalProperties; + RdbBackupEnabled = rdbBackupEnabled; + RdbBackupFrequency = rdbBackupFrequency; + RdbBackupMaxSnapshotCount = rdbBackupMaxSnapshotCount; + RdbStorageConnectionString = rdbStorageConnectionString; + AofBackupEnabled = aofBackupEnabled; + AofStorageConnectionString0 = aofStorageConnectionString0; + AofStorageConnectionString1 = aofStorageConnectionString1; + MaxfragmentationmemoryReserved = maxfragmentationmemoryReserved; + MaxmemoryPolicy = maxmemoryPolicy; + MaxmemoryReserved = maxmemoryReserved; + MaxmemoryDelta = maxmemoryDelta; + Maxclients = maxclients; + PreferredDataArchiveAuthMethod = preferredDataArchiveAuthMethod; + PreferredDataPersistenceAuthMethod = preferredDataPersistenceAuthMethod; + ZonalConfiguration = zonalConfiguration; + Authnotrequired = authnotrequired; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets unmatched properties from the message are deserialized + /// this collection + /// + [JsonExtensionData] + public IDictionary AdditionalProperties { get; set; } + + /// + /// Gets or sets specifies whether the rdb backup is enabled + /// + [JsonProperty(PropertyName = "rdb-backup-enabled")] + public string RdbBackupEnabled { get; set; } + + /// + /// Gets or sets specifies the frequency for creating rdb backup in + /// minutes. Valid values: (15, 30, 60, 360, 720, 1440) + /// + [JsonProperty(PropertyName = "rdb-backup-frequency")] + public string RdbBackupFrequency { get; set; } + + /// + /// Gets or sets specifies the maximum number of snapshots for rdb + /// backup + /// + [JsonProperty(PropertyName = "rdb-backup-max-snapshot-count")] + public string RdbBackupMaxSnapshotCount { get; set; } + + /// + /// Gets or sets the storage account connection string for storing rdb + /// file + /// + [JsonProperty(PropertyName = "rdb-storage-connection-string")] + public string RdbStorageConnectionString { get; set; } + + /// + /// Gets or sets specifies whether the aof backup is enabled + /// + [JsonProperty(PropertyName = "aof-backup-enabled")] + public string AofBackupEnabled { get; set; } + + /// + /// Gets or sets first storage account connection string + /// + [JsonProperty(PropertyName = "aof-storage-connection-string-0")] + public string AofStorageConnectionString0 { get; set; } + + /// + /// Gets or sets second storage account connection string + /// + [JsonProperty(PropertyName = "aof-storage-connection-string-1")] + public string AofStorageConnectionString1 { get; set; } + + /// + /// Gets or sets value in megabytes reserved for fragmentation per + /// shard + /// + [JsonProperty(PropertyName = "maxfragmentationmemory-reserved")] + public string MaxfragmentationmemoryReserved { get; set; } + + /// + /// Gets or sets the eviction strategy used when your data won't fit + /// within its memory limit. + /// + [JsonProperty(PropertyName = "maxmemory-policy")] + public string MaxmemoryPolicy { get; set; } + + /// + /// Gets or sets value in megabytes reserved for non-cache usage per + /// shard e.g. failover. + /// + [JsonProperty(PropertyName = "maxmemory-reserved")] + public string MaxmemoryReserved { get; set; } + + /// + /// Gets or sets value in megabytes reserved for non-cache usage per + /// shard e.g. failover. + /// + [JsonProperty(PropertyName = "maxmemory-delta")] + public string MaxmemoryDelta { get; set; } + + /// + /// Gets the max clients config + /// + [JsonProperty(PropertyName = "maxclients")] + public string Maxclients { get; private set; } + + /// + /// Gets preferred auth method to communicate to storage account used + /// for data archive, specify SAS or ManagedIdentity, default value is + /// SAS + /// + [JsonProperty(PropertyName = "preferred-data-archive-auth-method")] + public string PreferredDataArchiveAuthMethod { get; private set; } + + /// + /// Gets or sets preferred auth method to communicate to storage + /// account used for data persistence, specify SAS or ManagedIdentity, + /// default value is SAS + /// + [JsonProperty(PropertyName = "preferred-data-persistence-auth-method")] + public string PreferredDataPersistenceAuthMethod { get; set; } + + /// + /// Gets zonal Configuration + /// + [JsonProperty(PropertyName = "zonal-configuration")] + public string ZonalConfiguration { get; private set; } + + /// + /// Gets or sets specifies whether the authentication is disabled. + /// Setting this property is highly discouraged from security point of + /// view. + /// + [JsonProperty(PropertyName = "authnotrequired")] + public string Authnotrequired { get; set; } + + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisCreateParameters.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisCreateParameters.cs new file mode 100644 index 000000000000..7f2d64787429 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisCreateParameters.cs @@ -0,0 +1,257 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Parameters supplied to the Create Redis operation. + /// + [Rest.Serialization.JsonTransformation] + public partial class RedisCreateParameters + { + /// + /// Initializes a new instance of the RedisCreateParameters class. + /// + public RedisCreateParameters() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the RedisCreateParameters class. + /// + /// The SKU of the Redis cache to deploy. + /// The geo-location where the resource + /// lives + /// All Redis Settings. Few possible + /// keys: + /// rdb-backup-enabled,rdb-storage-connection-string,rdb-backup-frequency,maxmemory-delta,maxmemory-policy,notify-keyspace-events,maxmemory-samples,slowlog-log-slower-than,slowlog-max-len,list-max-ziplist-entries,list-max-ziplist-value,hash-max-ziplist-entries,hash-max-ziplist-value,set-max-intset-entries,zset-max-ziplist-entries,zset-max-ziplist-value + /// etc. + /// Redis version. This should be in the + /// form 'major[.minor]' (only 'major' is required) or the value + /// 'latest' which refers to the latest stable Redis version that is + /// available. Supported versions: 4.0, 6.0 (latest). Default value is + /// 'latest'. + /// Specifies whether the non-ssl Redis + /// server port (6379) is enabled. + /// The number of replicas to be + /// created per primary. + /// The number of replicas to be + /// created per primary. + /// A dictionary of tenant + /// settings + /// The number of shards to be created on a + /// Premium Cluster Cache. + /// Optional: requires clients to use a + /// specified TLS version (or higher) to connect (e,g, '1.0', '1.1', + /// '1.2'). Possible values include: '1.0', '1.1', '1.2' + /// Whether or not public endpoint + /// access is allowed for this cache. Value is optional but if passed + /// in, must be 'Enabled' or 'Disabled'. If 'Disabled', private + /// endpoints are the exclusive access method. Default value is + /// 'Enabled'. Possible values include: 'Enabled', 'Disabled' + /// The full resource ID of a subnet in a + /// virtual network to deploy the Redis cache in. Example format: + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/Microsoft.{Network|ClassicNetwork}/VirtualNetworks/vnet1/subnets/subnet1 + /// Static IP address. Optionally, may be + /// specified when deploying a Redis cache inside an existing Azure + /// Virtual Network; auto assigned by default. + /// A list of availability zones denoting where the + /// resource needs to come from. + /// Resource tags. + /// The identity of the resource. + public RedisCreateParameters(Sku sku, string location, RedisCommonPropertiesRedisConfiguration redisConfiguration = default(RedisCommonPropertiesRedisConfiguration), string redisVersion = default(string), bool? enableNonSslPort = default(bool?), int? replicasPerMaster = default(int?), int? replicasPerPrimary = default(int?), IDictionary tenantSettings = default(IDictionary), int? shardCount = default(int?), string minimumTlsVersion = default(string), string publicNetworkAccess = default(string), string subnetId = default(string), string staticIP = default(string), IList zones = default(IList), IDictionary tags = default(IDictionary), ManagedServiceIdentity identity = default(ManagedServiceIdentity)) + { + RedisConfiguration = redisConfiguration; + RedisVersion = redisVersion; + EnableNonSslPort = enableNonSslPort; + ReplicasPerMaster = replicasPerMaster; + ReplicasPerPrimary = replicasPerPrimary; + TenantSettings = tenantSettings; + ShardCount = shardCount; + MinimumTlsVersion = minimumTlsVersion; + PublicNetworkAccess = publicNetworkAccess; + Sku = sku; + SubnetId = subnetId; + StaticIP = staticIP; + Zones = zones; + Location = location; + Tags = tags; + Identity = identity; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets all Redis Settings. Few possible keys: + /// rdb-backup-enabled,rdb-storage-connection-string,rdb-backup-frequency,maxmemory-delta,maxmemory-policy,notify-keyspace-events,maxmemory-samples,slowlog-log-slower-than,slowlog-max-len,list-max-ziplist-entries,list-max-ziplist-value,hash-max-ziplist-entries,hash-max-ziplist-value,set-max-intset-entries,zset-max-ziplist-entries,zset-max-ziplist-value + /// etc. + /// + [JsonProperty(PropertyName = "properties.redisConfiguration")] + public RedisCommonPropertiesRedisConfiguration RedisConfiguration { get; set; } + + /// + /// Gets or sets redis version. This should be in the form + /// 'major[.minor]' (only 'major' is required) or the value 'latest' + /// which refers to the latest stable Redis version that is available. + /// Supported versions: 4.0, 6.0 (latest). Default value is 'latest'. + /// + [JsonProperty(PropertyName = "properties.redisVersion")] + public string RedisVersion { get; set; } + + /// + /// Gets or sets specifies whether the non-ssl Redis server port (6379) + /// is enabled. + /// + [JsonProperty(PropertyName = "properties.enableNonSslPort")] + public bool? EnableNonSslPort { get; set; } + + /// + /// Gets or sets the number of replicas to be created per primary. + /// + [JsonProperty(PropertyName = "properties.replicasPerMaster")] + public int? ReplicasPerMaster { get; set; } + + /// + /// Gets or sets the number of replicas to be created per primary. + /// + [JsonProperty(PropertyName = "properties.replicasPerPrimary")] + public int? ReplicasPerPrimary { get; set; } + + /// + /// Gets or sets a dictionary of tenant settings + /// + [JsonProperty(PropertyName = "properties.tenantSettings")] + public IDictionary TenantSettings { get; set; } + + /// + /// Gets or sets the number of shards to be created on a Premium + /// Cluster Cache. + /// + [JsonProperty(PropertyName = "properties.shardCount")] + public int? ShardCount { get; set; } + + /// + /// Gets or sets optional: requires clients to use a specified TLS + /// version (or higher) to connect (e,g, '1.0', '1.1', '1.2'). Possible + /// values include: '1.0', '1.1', '1.2' + /// + [JsonProperty(PropertyName = "properties.minimumTlsVersion")] + public string MinimumTlsVersion { get; set; } + + /// + /// Gets or sets whether or not public endpoint access is allowed for + /// this cache. Value is optional but if passed in, must be 'Enabled' + /// or 'Disabled'. If 'Disabled', private endpoints are the exclusive + /// access method. Default value is 'Enabled'. Possible values include: + /// 'Enabled', 'Disabled' + /// + [JsonProperty(PropertyName = "properties.publicNetworkAccess")] + public string PublicNetworkAccess { get; set; } + + /// + /// Gets or sets the SKU of the Redis cache to deploy. + /// + [JsonProperty(PropertyName = "properties.sku")] + public Sku Sku { get; set; } + + /// + /// Gets or sets the full resource ID of a subnet in a virtual network + /// to deploy the Redis cache in. Example format: + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/Microsoft.{Network|ClassicNetwork}/VirtualNetworks/vnet1/subnets/subnet1 + /// + [JsonProperty(PropertyName = "properties.subnetId")] + public string SubnetId { get; set; } + + /// + /// Gets or sets static IP address. Optionally, may be specified when + /// deploying a Redis cache inside an existing Azure Virtual Network; + /// auto assigned by default. + /// + [JsonProperty(PropertyName = "properties.staticIP")] + public string StaticIP { get; set; } + + /// + /// Gets or sets a list of availability zones denoting where the + /// resource needs to come from. + /// + [JsonProperty(PropertyName = "zones")] + public IList Zones { get; set; } + + /// + /// Gets or sets the geo-location where the resource lives + /// + [JsonProperty(PropertyName = "location")] + public string Location { get; set; } + + /// + /// Gets or sets resource tags. + /// + [JsonProperty(PropertyName = "tags")] + public IDictionary Tags { get; set; } + + /// + /// Gets or sets the identity of the resource. + /// + [JsonProperty(PropertyName = "identity")] + public ManagedServiceIdentity Identity { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Sku == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Sku"); + } + if (Location == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Location"); + } + if (Sku != null) + { + Sku.Validate(); + } + if (SubnetId != null) + { + if (!System.Text.RegularExpressions.Regex.IsMatch(SubnetId, "^/subscriptions/[^/]*/resourceGroups/[^/]*/providers/Microsoft.(ClassicNetwork|Network)/virtualNetworks/[^/]*/subnets/[^/]*$")) + { + throw new ValidationException(ValidationRules.Pattern, "SubnetId", "^/subscriptions/[^/]*/resourceGroups/[^/]*/providers/Microsoft.(ClassicNetwork|Network)/virtualNetworks/[^/]*/subnets/[^/]*$"); + } + } + if (StaticIP != null) + { + if (!System.Text.RegularExpressions.Regex.IsMatch(StaticIP, "^\\d+\\.\\d+\\.\\d+\\.\\d+$")) + { + throw new ValidationException(ValidationRules.Pattern, "StaticIP", "^\\d+\\.\\d+\\.\\d+\\.\\d+$"); + } + } + if (Identity != null) + { + Identity.Validate(); + } + } + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisFirewallRule.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisFirewallRule.cs new file mode 100644 index 000000000000..a1021b8fa5ac --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisFirewallRule.cs @@ -0,0 +1,89 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Linq; + + /// + /// A firewall rule on a redis cache has a name, and describes a contiguous + /// range of IP addresses permitted to connect + /// + [Rest.Serialization.JsonTransformation] + public partial class RedisFirewallRule : ProxyResource + { + /// + /// Initializes a new instance of the RedisFirewallRule class. + /// + public RedisFirewallRule() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the RedisFirewallRule class. + /// + /// lowest IP address included in the + /// range + /// highest IP address included in the + /// range + /// Fully qualified resource ID for the resource. Ex - + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// The name of the resource + /// The type of the resource. E.g. + /// "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" + public RedisFirewallRule(string startIP, string endIP, string id = default(string), string name = default(string), string type = default(string)) + : base(id, name, type) + { + StartIP = startIP; + EndIP = endIP; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets lowest IP address included in the range + /// + [JsonProperty(PropertyName = "properties.startIP")] + public string StartIP { get; set; } + + /// + /// Gets or sets highest IP address included in the range + /// + [JsonProperty(PropertyName = "properties.endIP")] + public string EndIP { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (StartIP == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "StartIP"); + } + if (EndIP == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "EndIP"); + } + } + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisFirewallRuleCreateParameters.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisFirewallRuleCreateParameters.cs new file mode 100644 index 000000000000..04642303aaa2 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisFirewallRuleCreateParameters.cs @@ -0,0 +1,66 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + using System.Linq; + + /// + /// Parameters required for creating a firewall rule on redis cache. (Note, + /// you can just use the FirewallRule type instead now.) + /// + public partial class RedisFirewallRuleCreateParameters : RedisFirewallRule + { + /// + /// Initializes a new instance of the RedisFirewallRuleCreateParameters + /// class. + /// + public RedisFirewallRuleCreateParameters() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the RedisFirewallRuleCreateParameters + /// class. + /// + /// lowest IP address included in the + /// range + /// highest IP address included in the + /// range + /// Fully qualified resource ID for the resource. Ex - + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// The name of the resource + /// The type of the resource. E.g. + /// "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" + public RedisFirewallRuleCreateParameters(string startIP, string endIP, string id = default(string), string name = default(string), string type = default(string)) + : base(startIP, endIP, id, name, type) + { + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + } + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisForceRebootResponse.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisForceRebootResponse.cs new file mode 100644 index 000000000000..2645c6265d70 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisForceRebootResponse.cs @@ -0,0 +1,51 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Response to force reboot for Redis cache. + /// + public partial class RedisForceRebootResponse + { + /// + /// Initializes a new instance of the RedisForceRebootResponse class. + /// + public RedisForceRebootResponse() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the RedisForceRebootResponse class. + /// + /// Status message + public RedisForceRebootResponse(string message = default(string)) + { + Message = message; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets status message + /// + [JsonProperty(PropertyName = "message")] + public string Message { get; private set; } + + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisInstanceDetails.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisInstanceDetails.cs new file mode 100644 index 000000000000..a00076eadda5 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisInstanceDetails.cs @@ -0,0 +1,98 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Details of single instance of redis. + /// + public partial class RedisInstanceDetails + { + /// + /// Initializes a new instance of the RedisInstanceDetails class. + /// + public RedisInstanceDetails() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the RedisInstanceDetails class. + /// + /// Redis instance SSL port. + /// If enableNonSslPort is true, provides + /// Redis instance Non-SSL port. + /// If the Cache uses availability zones, specifies + /// availability zone where this instance is located. + /// If clustering is enabled, the Shard ID of + /// Redis Instance + /// Specifies whether the instance is a primary + /// node. + /// Specifies whether the instance is a primary + /// node. + public RedisInstanceDetails(int? sslPort = default(int?), int? nonSslPort = default(int?), string zone = default(string), int? shardId = default(int?), bool? isMaster = default(bool?), bool? isPrimary = default(bool?)) + { + SslPort = sslPort; + NonSslPort = nonSslPort; + Zone = zone; + ShardId = shardId; + IsMaster = isMaster; + IsPrimary = isPrimary; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets redis instance SSL port. + /// + [JsonProperty(PropertyName = "sslPort")] + public int? SslPort { get; private set; } + + /// + /// Gets if enableNonSslPort is true, provides Redis instance Non-SSL + /// port. + /// + [JsonProperty(PropertyName = "nonSslPort")] + public int? NonSslPort { get; private set; } + + /// + /// Gets if the Cache uses availability zones, specifies availability + /// zone where this instance is located. + /// + [JsonProperty(PropertyName = "zone")] + public string Zone { get; private set; } + + /// + /// Gets if clustering is enabled, the Shard ID of Redis Instance + /// + [JsonProperty(PropertyName = "shardId")] + public int? ShardId { get; private set; } + + /// + /// Gets specifies whether the instance is a primary node. + /// + [JsonProperty(PropertyName = "isMaster")] + public bool? IsMaster { get; private set; } + + /// + /// Gets specifies whether the instance is a primary node. + /// + [JsonProperty(PropertyName = "isPrimary")] + public bool? IsPrimary { get; private set; } + + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisKeyType.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisKeyType.cs new file mode 100644 index 000000000000..9a166526ee7e --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisKeyType.cs @@ -0,0 +1,60 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for RedisKeyType. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum RedisKeyType + { + [EnumMember(Value = "Primary")] + Primary, + [EnumMember(Value = "Secondary")] + Secondary + } + internal static class RedisKeyTypeEnumExtension + { + internal static string ToSerializedValue(this RedisKeyType? value) + { + return value == null ? null : ((RedisKeyType)value).ToSerializedValue(); + } + + internal static string ToSerializedValue(this RedisKeyType value) + { + switch( value ) + { + case RedisKeyType.Primary: + return "Primary"; + case RedisKeyType.Secondary: + return "Secondary"; + } + return null; + } + + internal static RedisKeyType? ParseRedisKeyType(this string value) + { + switch( value ) + { + case "Primary": + return RedisKeyType.Primary; + case "Secondary": + return RedisKeyType.Secondary; + } + return null; + } + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisLinkedServer.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisLinkedServer.cs new file mode 100644 index 000000000000..6e8189c7ff5c --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisLinkedServer.cs @@ -0,0 +1,51 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Linked server Id + /// + public partial class RedisLinkedServer + { + /// + /// Initializes a new instance of the RedisLinkedServer class. + /// + public RedisLinkedServer() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the RedisLinkedServer class. + /// + /// Linked server Id. + public RedisLinkedServer(string id = default(string)) + { + Id = id; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets linked server Id. + /// + [JsonProperty(PropertyName = "id")] + public string Id { get; private set; } + + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisLinkedServerCreateParameters.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisLinkedServerCreateParameters.cs new file mode 100644 index 000000000000..3f503487163e --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisLinkedServerCreateParameters.cs @@ -0,0 +1,117 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Parameter required for creating a linked server to redis cache. + /// + [Rest.Serialization.JsonTransformation] + public partial class RedisLinkedServerCreateParameters + { + /// + /// Initializes a new instance of the RedisLinkedServerCreateParameters + /// class. + /// + public RedisLinkedServerCreateParameters() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the RedisLinkedServerCreateParameters + /// class. + /// + /// Fully qualified resourceId of the + /// linked redis cache. + /// Location of the linked redis + /// cache. + /// Role of the linked server. Possible values + /// include: 'Primary', 'Secondary' + /// The unchanging DNS name + /// which will always point to current geo-primary cache among the + /// linked redis caches for seamless Geo Failover experience. + /// The changing DNS name that resolves + /// to the current geo-primary cache among the linked redis caches + /// before or after the Geo Failover. + public RedisLinkedServerCreateParameters(string linkedRedisCacheId, string linkedRedisCacheLocation, ReplicationRole serverRole, string geoReplicatedPrimaryHostName = default(string), string primaryHostName = default(string)) + { + LinkedRedisCacheId = linkedRedisCacheId; + LinkedRedisCacheLocation = linkedRedisCacheLocation; + ServerRole = serverRole; + GeoReplicatedPrimaryHostName = geoReplicatedPrimaryHostName; + PrimaryHostName = primaryHostName; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets fully qualified resourceId of the linked redis cache. + /// + [JsonProperty(PropertyName = "properties.linkedRedisCacheId")] + public string LinkedRedisCacheId { get; set; } + + /// + /// Gets or sets location of the linked redis cache. + /// + [JsonProperty(PropertyName = "properties.linkedRedisCacheLocation")] + public string LinkedRedisCacheLocation { get; set; } + + /// + /// Gets or sets role of the linked server. Possible values include: + /// 'Primary', 'Secondary' + /// + [JsonProperty(PropertyName = "properties.serverRole")] + public ReplicationRole ServerRole { get; set; } + + /// + /// Gets the unchanging DNS name which will always point to current + /// geo-primary cache among the linked redis caches for seamless Geo + /// Failover experience. + /// + [JsonProperty(PropertyName = "properties.geoReplicatedPrimaryHostName")] + public string GeoReplicatedPrimaryHostName { get; private set; } + + /// + /// Gets the changing DNS name that resolves to the current geo-primary + /// cache among the linked redis caches before or after the Geo + /// Failover. + /// + [JsonProperty(PropertyName = "properties.primaryHostName")] + public string PrimaryHostName { get; private set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (LinkedRedisCacheId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "LinkedRedisCacheId"); + } + if (LinkedRedisCacheLocation == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "LinkedRedisCacheLocation"); + } + } + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisLinkedServerWithProperties.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisLinkedServerWithProperties.cs new file mode 100644 index 000000000000..0ff9e9707178 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisLinkedServerWithProperties.cs @@ -0,0 +1,134 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Response to put/get linked server (with properties) for Redis cache. + /// + [Rest.Serialization.JsonTransformation] + public partial class RedisLinkedServerWithProperties : ProxyResource + { + /// + /// Initializes a new instance of the RedisLinkedServerWithProperties + /// class. + /// + public RedisLinkedServerWithProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the RedisLinkedServerWithProperties + /// class. + /// + /// Fully qualified resourceId of the + /// linked redis cache. + /// Location of the linked redis + /// cache. + /// Role of the linked server. Possible values + /// include: 'Primary', 'Secondary' + /// Fully qualified resource ID for the resource. Ex - + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// The name of the resource + /// The type of the resource. E.g. + /// "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" + /// The unchanging DNS name + /// which will always point to current geo-primary cache among the + /// linked redis caches for seamless Geo Failover experience. + /// The changing DNS name that resolves + /// to the current geo-primary cache among the linked redis caches + /// before or after the Geo Failover. + /// Terminal state of the link between + /// primary and secondary redis cache. + public RedisLinkedServerWithProperties(string linkedRedisCacheId, string linkedRedisCacheLocation, ReplicationRole serverRole, string id = default(string), string name = default(string), string type = default(string), string geoReplicatedPrimaryHostName = default(string), string primaryHostName = default(string), string provisioningState = default(string)) + : base(id, name, type) + { + LinkedRedisCacheId = linkedRedisCacheId; + LinkedRedisCacheLocation = linkedRedisCacheLocation; + ServerRole = serverRole; + GeoReplicatedPrimaryHostName = geoReplicatedPrimaryHostName; + PrimaryHostName = primaryHostName; + ProvisioningState = provisioningState; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets fully qualified resourceId of the linked redis cache. + /// + [JsonProperty(PropertyName = "properties.linkedRedisCacheId")] + public string LinkedRedisCacheId { get; set; } + + /// + /// Gets or sets location of the linked redis cache. + /// + [JsonProperty(PropertyName = "properties.linkedRedisCacheLocation")] + public string LinkedRedisCacheLocation { get; set; } + + /// + /// Gets or sets role of the linked server. Possible values include: + /// 'Primary', 'Secondary' + /// + [JsonProperty(PropertyName = "properties.serverRole")] + public ReplicationRole ServerRole { get; set; } + + /// + /// Gets the unchanging DNS name which will always point to current + /// geo-primary cache among the linked redis caches for seamless Geo + /// Failover experience. + /// + [JsonProperty(PropertyName = "properties.geoReplicatedPrimaryHostName")] + public string GeoReplicatedPrimaryHostName { get; private set; } + + /// + /// Gets the changing DNS name that resolves to the current geo-primary + /// cache among the linked redis caches before or after the Geo + /// Failover. + /// + [JsonProperty(PropertyName = "properties.primaryHostName")] + public string PrimaryHostName { get; private set; } + + /// + /// Gets terminal state of the link between primary and secondary redis + /// cache. + /// + [JsonProperty(PropertyName = "properties.provisioningState")] + public string ProvisioningState { get; private set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (LinkedRedisCacheId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "LinkedRedisCacheId"); + } + if (LinkedRedisCacheLocation == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "LinkedRedisCacheLocation"); + } + } + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisPatchSchedule.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisPatchSchedule.cs new file mode 100644 index 000000000000..dcc9e39070fd --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisPatchSchedule.cs @@ -0,0 +1,96 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Response to put/get patch schedules for Redis cache. + /// + [Rest.Serialization.JsonTransformation] + public partial class RedisPatchSchedule : ProxyResource + { + /// + /// Initializes a new instance of the RedisPatchSchedule class. + /// + public RedisPatchSchedule() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the RedisPatchSchedule class. + /// + /// List of patch schedules for a Redis + /// cache. + /// Fully qualified resource ID for the resource. Ex - + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// The name of the resource + /// The type of the resource. E.g. + /// "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" + /// The geo-location where the resource + /// lives + public RedisPatchSchedule(IList scheduleEntries, string id = default(string), string name = default(string), string type = default(string), string location = default(string)) + : base(id, name, type) + { + ScheduleEntries = scheduleEntries; + Location = location; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets list of patch schedules for a Redis cache. + /// + [JsonProperty(PropertyName = "properties.scheduleEntries")] + public IList ScheduleEntries { get; set; } + + /// + /// Gets the geo-location where the resource lives + /// + [JsonProperty(PropertyName = "location")] + public string Location { get; private set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (ScheduleEntries == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ScheduleEntries"); + } + if (ScheduleEntries != null) + { + foreach (var element in ScheduleEntries) + { + if (element != null) + { + element.Validate(); + } + } + } + } + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisRebootParameters.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisRebootParameters.cs new file mode 100644 index 000000000000..44d195ec4a83 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisRebootParameters.cs @@ -0,0 +1,77 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Specifies which Redis node(s) to reboot. + /// + public partial class RedisRebootParameters + { + /// + /// Initializes a new instance of the RedisRebootParameters class. + /// + public RedisRebootParameters() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the RedisRebootParameters class. + /// + /// Which Redis node(s) to reboot. Depending + /// on this value data loss is possible. Possible values include: + /// 'PrimaryNode', 'SecondaryNode', 'AllNodes' + /// If clustering is enabled, the ID of the shard + /// to be rebooted. + /// A list of redis instances to reboot, specified + /// by per-instance SSL ports or non-SSL ports. + public RedisRebootParameters(string rebootType = default(string), int? shardId = default(int?), IList ports = default(IList)) + { + RebootType = rebootType; + ShardId = shardId; + Ports = ports; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets which Redis node(s) to reboot. Depending on this value + /// data loss is possible. Possible values include: 'PrimaryNode', + /// 'SecondaryNode', 'AllNodes' + /// + [JsonProperty(PropertyName = "rebootType")] + public string RebootType { get; set; } + + /// + /// Gets or sets if clustering is enabled, the ID of the shard to be + /// rebooted. + /// + [JsonProperty(PropertyName = "shardId")] + public int? ShardId { get; set; } + + /// + /// Gets or sets a list of redis instances to reboot, specified by + /// per-instance SSL ports or non-SSL ports. + /// + [JsonProperty(PropertyName = "ports")] + public IList Ports { get; set; } + + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisRegenerateKeyParameters.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisRegenerateKeyParameters.cs new file mode 100644 index 000000000000..76f77a7b2b7c --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisRegenerateKeyParameters.cs @@ -0,0 +1,64 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Specifies which Redis access keys to reset. + /// + public partial class RedisRegenerateKeyParameters + { + /// + /// Initializes a new instance of the RedisRegenerateKeyParameters + /// class. + /// + public RedisRegenerateKeyParameters() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the RedisRegenerateKeyParameters + /// class. + /// + /// The Redis access key to regenerate. Possible + /// values include: 'Primary', 'Secondary' + public RedisRegenerateKeyParameters(RedisKeyType keyType) + { + KeyType = keyType; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the Redis access key to regenerate. Possible values + /// include: 'Primary', 'Secondary' + /// + [JsonProperty(PropertyName = "keyType")] + public RedisKeyType KeyType { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + } + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisResource.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisResource.cs new file mode 100644 index 000000000000..e705032f96c1 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisResource.cs @@ -0,0 +1,335 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// A single Redis item in List or Get Operation. + /// + [Rest.Serialization.JsonTransformation] + public partial class RedisResource : TrackedResource + { + /// + /// Initializes a new instance of the RedisResource class. + /// + public RedisResource() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the RedisResource class. + /// + /// The geo-location where the resource + /// lives + /// The SKU of the Redis cache to deploy. + /// Fully qualified resource ID for the resource. Ex - + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// The name of the resource + /// The type of the resource. E.g. + /// "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" + /// Resource tags. + /// All Redis Settings. Few possible + /// keys: + /// rdb-backup-enabled,rdb-storage-connection-string,rdb-backup-frequency,maxmemory-delta,maxmemory-policy,notify-keyspace-events,maxmemory-samples,slowlog-log-slower-than,slowlog-max-len,list-max-ziplist-entries,list-max-ziplist-value,hash-max-ziplist-entries,hash-max-ziplist-value,set-max-intset-entries,zset-max-ziplist-entries,zset-max-ziplist-value + /// etc. + /// Redis version. This should be in the + /// form 'major[.minor]' (only 'major' is required) or the value + /// 'latest' which refers to the latest stable Redis version that is + /// available. Supported versions: 4.0, 6.0 (latest). Default value is + /// 'latest'. + /// Specifies whether the non-ssl Redis + /// server port (6379) is enabled. + /// The number of replicas to be + /// created per primary. + /// The number of replicas to be + /// created per primary. + /// A dictionary of tenant + /// settings + /// The number of shards to be created on a + /// Premium Cluster Cache. + /// Optional: requires clients to use a + /// specified TLS version (or higher) to connect (e,g, '1.0', '1.1', + /// '1.2'). Possible values include: '1.0', '1.1', '1.2' + /// Whether or not public endpoint + /// access is allowed for this cache. Value is optional but if passed + /// in, must be 'Enabled' or 'Disabled'. If 'Disabled', private + /// endpoints are the exclusive access method. Default value is + /// 'Enabled'. Possible values include: 'Enabled', 'Disabled' + /// The full resource ID of a subnet in a + /// virtual network to deploy the Redis cache in. Example format: + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/Microsoft.{Network|ClassicNetwork}/VirtualNetworks/vnet1/subnets/subnet1 + /// Static IP address. Optionally, may be + /// specified when deploying a Redis cache inside an existing Azure + /// Virtual Network; auto assigned by default. + /// Redis instance provisioning status. + /// Possible values include: 'Creating', 'Deleting', 'Disabled', + /// 'Failed', 'Linking', 'Provisioning', 'RecoveringScaleFailure', + /// 'Scaling', 'Succeeded', 'Unlinking', 'Unprovisioning', + /// 'Updating' + /// Redis host name. + /// Redis non-SSL port. + /// Redis SSL port. + /// The keys of the Redis cache - not set if + /// this object is not the response to Create or Update redis + /// cache + /// List of the linked servers associated + /// with the cache + /// List of the Redis instances associated with + /// the cache + /// List of private endpoint + /// connection associated with the specified redis cache + /// A list of availability zones denoting where the + /// resource needs to come from. + /// The identity of the resource. + public RedisResource(string location, Sku sku, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), RedisCommonPropertiesRedisConfiguration redisConfiguration = default(RedisCommonPropertiesRedisConfiguration), string redisVersion = default(string), bool? enableNonSslPort = default(bool?), int? replicasPerMaster = default(int?), int? replicasPerPrimary = default(int?), IDictionary tenantSettings = default(IDictionary), int? shardCount = default(int?), string minimumTlsVersion = default(string), string publicNetworkAccess = default(string), string subnetId = default(string), string staticIP = default(string), string provisioningState = default(string), string hostName = default(string), int? port = default(int?), int? sslPort = default(int?), RedisAccessKeys accessKeys = default(RedisAccessKeys), IList linkedServers = default(IList), IList instances = default(IList), IList privateEndpointConnections = default(IList), IList zones = default(IList), ManagedServiceIdentity identity = default(ManagedServiceIdentity)) + : base(location, id, name, type, tags) + { + RedisConfiguration = redisConfiguration; + RedisVersion = redisVersion; + EnableNonSslPort = enableNonSslPort; + ReplicasPerMaster = replicasPerMaster; + ReplicasPerPrimary = replicasPerPrimary; + TenantSettings = tenantSettings; + ShardCount = shardCount; + MinimumTlsVersion = minimumTlsVersion; + PublicNetworkAccess = publicNetworkAccess; + Sku = sku; + SubnetId = subnetId; + StaticIP = staticIP; + ProvisioningState = provisioningState; + HostName = hostName; + Port = port; + SslPort = sslPort; + AccessKeys = accessKeys; + LinkedServers = linkedServers; + Instances = instances; + PrivateEndpointConnections = privateEndpointConnections; + Zones = zones; + Identity = identity; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets all Redis Settings. Few possible keys: + /// rdb-backup-enabled,rdb-storage-connection-string,rdb-backup-frequency,maxmemory-delta,maxmemory-policy,notify-keyspace-events,maxmemory-samples,slowlog-log-slower-than,slowlog-max-len,list-max-ziplist-entries,list-max-ziplist-value,hash-max-ziplist-entries,hash-max-ziplist-value,set-max-intset-entries,zset-max-ziplist-entries,zset-max-ziplist-value + /// etc. + /// + [JsonProperty(PropertyName = "properties.redisConfiguration")] + public RedisCommonPropertiesRedisConfiguration RedisConfiguration { get; set; } + + /// + /// Gets or sets redis version. This should be in the form + /// 'major[.minor]' (only 'major' is required) or the value 'latest' + /// which refers to the latest stable Redis version that is available. + /// Supported versions: 4.0, 6.0 (latest). Default value is 'latest'. + /// + [JsonProperty(PropertyName = "properties.redisVersion")] + public string RedisVersion { get; set; } + + /// + /// Gets or sets specifies whether the non-ssl Redis server port (6379) + /// is enabled. + /// + [JsonProperty(PropertyName = "properties.enableNonSslPort")] + public bool? EnableNonSslPort { get; set; } + + /// + /// Gets or sets the number of replicas to be created per primary. + /// + [JsonProperty(PropertyName = "properties.replicasPerMaster")] + public int? ReplicasPerMaster { get; set; } + + /// + /// Gets or sets the number of replicas to be created per primary. + /// + [JsonProperty(PropertyName = "properties.replicasPerPrimary")] + public int? ReplicasPerPrimary { get; set; } + + /// + /// Gets or sets a dictionary of tenant settings + /// + [JsonProperty(PropertyName = "properties.tenantSettings")] + public IDictionary TenantSettings { get; set; } + + /// + /// Gets or sets the number of shards to be created on a Premium + /// Cluster Cache. + /// + [JsonProperty(PropertyName = "properties.shardCount")] + public int? ShardCount { get; set; } + + /// + /// Gets or sets optional: requires clients to use a specified TLS + /// version (or higher) to connect (e,g, '1.0', '1.1', '1.2'). Possible + /// values include: '1.0', '1.1', '1.2' + /// + [JsonProperty(PropertyName = "properties.minimumTlsVersion")] + public string MinimumTlsVersion { get; set; } + + /// + /// Gets or sets whether or not public endpoint access is allowed for + /// this cache. Value is optional but if passed in, must be 'Enabled' + /// or 'Disabled'. If 'Disabled', private endpoints are the exclusive + /// access method. Default value is 'Enabled'. Possible values include: + /// 'Enabled', 'Disabled' + /// + [JsonProperty(PropertyName = "properties.publicNetworkAccess")] + public string PublicNetworkAccess { get; set; } + + /// + /// Gets or sets the SKU of the Redis cache to deploy. + /// + [JsonProperty(PropertyName = "properties.sku")] + public Sku Sku { get; set; } + + /// + /// Gets or sets the full resource ID of a subnet in a virtual network + /// to deploy the Redis cache in. Example format: + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/Microsoft.{Network|ClassicNetwork}/VirtualNetworks/vnet1/subnets/subnet1 + /// + [JsonProperty(PropertyName = "properties.subnetId")] + public string SubnetId { get; set; } + + /// + /// Gets or sets static IP address. Optionally, may be specified when + /// deploying a Redis cache inside an existing Azure Virtual Network; + /// auto assigned by default. + /// + [JsonProperty(PropertyName = "properties.staticIP")] + public string StaticIP { get; set; } + + /// + /// Gets redis instance provisioning status. Possible values include: + /// 'Creating', 'Deleting', 'Disabled', 'Failed', 'Linking', + /// 'Provisioning', 'RecoveringScaleFailure', 'Scaling', 'Succeeded', + /// 'Unlinking', 'Unprovisioning', 'Updating' + /// + [JsonProperty(PropertyName = "properties.provisioningState")] + public string ProvisioningState { get; private set; } + + /// + /// Gets redis host name. + /// + [JsonProperty(PropertyName = "properties.hostName")] + public string HostName { get; private set; } + + /// + /// Gets redis non-SSL port. + /// + [JsonProperty(PropertyName = "properties.port")] + public int? Port { get; private set; } + + /// + /// Gets redis SSL port. + /// + [JsonProperty(PropertyName = "properties.sslPort")] + public int? SslPort { get; private set; } + + /// + /// Gets the keys of the Redis cache - not set if this object is not + /// the response to Create or Update redis cache + /// + [JsonProperty(PropertyName = "properties.accessKeys")] + public RedisAccessKeys AccessKeys { get; private set; } + + /// + /// Gets list of the linked servers associated with the cache + /// + [JsonProperty(PropertyName = "properties.linkedServers")] + public IList LinkedServers { get; private set; } + + /// + /// Gets list of the Redis instances associated with the cache + /// + [JsonProperty(PropertyName = "properties.instances")] + public IList Instances { get; private set; } + + /// + /// Gets list of private endpoint connection associated with the + /// specified redis cache + /// + [JsonProperty(PropertyName = "properties.privateEndpointConnections")] + public IList PrivateEndpointConnections { get; private set; } + + /// + /// Gets or sets a list of availability zones denoting where the + /// resource needs to come from. + /// + [JsonProperty(PropertyName = "zones")] + public IList Zones { get; set; } + + /// + /// Gets or sets the identity of the resource. + /// + [JsonProperty(PropertyName = "identity")] + public ManagedServiceIdentity Identity { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + if (Sku == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Sku"); + } + if (Sku != null) + { + Sku.Validate(); + } + if (SubnetId != null) + { + if (!System.Text.RegularExpressions.Regex.IsMatch(SubnetId, "^/subscriptions/[^/]*/resourceGroups/[^/]*/providers/Microsoft.(ClassicNetwork|Network)/virtualNetworks/[^/]*/subnets/[^/]*$")) + { + throw new ValidationException(ValidationRules.Pattern, "SubnetId", "^/subscriptions/[^/]*/resourceGroups/[^/]*/providers/Microsoft.(ClassicNetwork|Network)/virtualNetworks/[^/]*/subnets/[^/]*$"); + } + } + if (StaticIP != null) + { + if (!System.Text.RegularExpressions.Regex.IsMatch(StaticIP, "^\\d+\\.\\d+\\.\\d+\\.\\d+$")) + { + throw new ValidationException(ValidationRules.Pattern, "StaticIP", "^\\d+\\.\\d+\\.\\d+\\.\\d+$"); + } + } + if (PrivateEndpointConnections != null) + { + foreach (var element in PrivateEndpointConnections) + { + if (element != null) + { + element.Validate(); + } + } + } + if (Identity != null) + { + Identity.Validate(); + } + } + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisUpdateParameters.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisUpdateParameters.cs new file mode 100644 index 000000000000..d6d0f234701c --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/RedisUpdateParameters.cs @@ -0,0 +1,192 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Parameters supplied to the Update Redis operation. + /// + [Rest.Serialization.JsonTransformation] + public partial class RedisUpdateParameters + { + /// + /// Initializes a new instance of the RedisUpdateParameters class. + /// + public RedisUpdateParameters() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the RedisUpdateParameters class. + /// + /// All Redis Settings. Few possible + /// keys: + /// rdb-backup-enabled,rdb-storage-connection-string,rdb-backup-frequency,maxmemory-delta,maxmemory-policy,notify-keyspace-events,maxmemory-samples,slowlog-log-slower-than,slowlog-max-len,list-max-ziplist-entries,list-max-ziplist-value,hash-max-ziplist-entries,hash-max-ziplist-value,set-max-intset-entries,zset-max-ziplist-entries,zset-max-ziplist-value + /// etc. + /// Redis version. This should be in the + /// form 'major[.minor]' (only 'major' is required) or the value + /// 'latest' which refers to the latest stable Redis version that is + /// available. Supported versions: 4.0, 6.0 (latest). Default value is + /// 'latest'. + /// Specifies whether the non-ssl Redis + /// server port (6379) is enabled. + /// The number of replicas to be + /// created per primary. + /// The number of replicas to be + /// created per primary. + /// A dictionary of tenant + /// settings + /// The number of shards to be created on a + /// Premium Cluster Cache. + /// Optional: requires clients to use a + /// specified TLS version (or higher) to connect (e,g, '1.0', '1.1', + /// '1.2'). Possible values include: '1.0', '1.1', '1.2' + /// Whether or not public endpoint + /// access is allowed for this cache. Value is optional but if passed + /// in, must be 'Enabled' or 'Disabled'. If 'Disabled', private + /// endpoints are the exclusive access method. Default value is + /// 'Enabled'. Possible values include: 'Enabled', 'Disabled' + /// The SKU of the Redis cache to deploy. + /// Resource tags. + /// The identity of the resource. + public RedisUpdateParameters(RedisCommonPropertiesRedisConfiguration redisConfiguration = default(RedisCommonPropertiesRedisConfiguration), string redisVersion = default(string), bool? enableNonSslPort = default(bool?), int? replicasPerMaster = default(int?), int? replicasPerPrimary = default(int?), IDictionary tenantSettings = default(IDictionary), int? shardCount = default(int?), string minimumTlsVersion = default(string), string publicNetworkAccess = default(string), Sku sku = default(Sku), IDictionary tags = default(IDictionary), ManagedServiceIdentity identity = default(ManagedServiceIdentity)) + { + RedisConfiguration = redisConfiguration; + RedisVersion = redisVersion; + EnableNonSslPort = enableNonSslPort; + ReplicasPerMaster = replicasPerMaster; + ReplicasPerPrimary = replicasPerPrimary; + TenantSettings = tenantSettings; + ShardCount = shardCount; + MinimumTlsVersion = minimumTlsVersion; + PublicNetworkAccess = publicNetworkAccess; + Sku = sku; + Tags = tags; + Identity = identity; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets all Redis Settings. Few possible keys: + /// rdb-backup-enabled,rdb-storage-connection-string,rdb-backup-frequency,maxmemory-delta,maxmemory-policy,notify-keyspace-events,maxmemory-samples,slowlog-log-slower-than,slowlog-max-len,list-max-ziplist-entries,list-max-ziplist-value,hash-max-ziplist-entries,hash-max-ziplist-value,set-max-intset-entries,zset-max-ziplist-entries,zset-max-ziplist-value + /// etc. + /// + [JsonProperty(PropertyName = "properties.redisConfiguration")] + public RedisCommonPropertiesRedisConfiguration RedisConfiguration { get; set; } + + /// + /// Gets or sets redis version. This should be in the form + /// 'major[.minor]' (only 'major' is required) or the value 'latest' + /// which refers to the latest stable Redis version that is available. + /// Supported versions: 4.0, 6.0 (latest). Default value is 'latest'. + /// + [JsonProperty(PropertyName = "properties.redisVersion")] + public string RedisVersion { get; set; } + + /// + /// Gets or sets specifies whether the non-ssl Redis server port (6379) + /// is enabled. + /// + [JsonProperty(PropertyName = "properties.enableNonSslPort")] + public bool? EnableNonSslPort { get; set; } + + /// + /// Gets or sets the number of replicas to be created per primary. + /// + [JsonProperty(PropertyName = "properties.replicasPerMaster")] + public int? ReplicasPerMaster { get; set; } + + /// + /// Gets or sets the number of replicas to be created per primary. + /// + [JsonProperty(PropertyName = "properties.replicasPerPrimary")] + public int? ReplicasPerPrimary { get; set; } + + /// + /// Gets or sets a dictionary of tenant settings + /// + [JsonProperty(PropertyName = "properties.tenantSettings")] + public IDictionary TenantSettings { get; set; } + + /// + /// Gets or sets the number of shards to be created on a Premium + /// Cluster Cache. + /// + [JsonProperty(PropertyName = "properties.shardCount")] + public int? ShardCount { get; set; } + + /// + /// Gets or sets optional: requires clients to use a specified TLS + /// version (or higher) to connect (e,g, '1.0', '1.1', '1.2'). Possible + /// values include: '1.0', '1.1', '1.2' + /// + [JsonProperty(PropertyName = "properties.minimumTlsVersion")] + public string MinimumTlsVersion { get; set; } + + /// + /// Gets or sets whether or not public endpoint access is allowed for + /// this cache. Value is optional but if passed in, must be 'Enabled' + /// or 'Disabled'. If 'Disabled', private endpoints are the exclusive + /// access method. Default value is 'Enabled'. Possible values include: + /// 'Enabled', 'Disabled' + /// + [JsonProperty(PropertyName = "properties.publicNetworkAccess")] + public string PublicNetworkAccess { get; set; } + + /// + /// Gets or sets the SKU of the Redis cache to deploy. + /// + [JsonProperty(PropertyName = "properties.sku")] + public Sku Sku { get; set; } + + /// + /// Gets or sets resource tags. + /// + [JsonProperty(PropertyName = "tags")] + public IDictionary Tags { get; set; } + + /// + /// Gets or sets the identity of the resource. + /// + [JsonProperty(PropertyName = "identity")] + public ManagedServiceIdentity Identity { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Sku != null) + { + Sku.Validate(); + } + if (Identity != null) + { + Identity.Validate(); + } + } + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/ReplicationRole.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/ReplicationRole.cs new file mode 100644 index 000000000000..e44fbd456ff6 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/ReplicationRole.cs @@ -0,0 +1,60 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for ReplicationRole. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum ReplicationRole + { + [EnumMember(Value = "Primary")] + Primary, + [EnumMember(Value = "Secondary")] + Secondary + } + internal static class ReplicationRoleEnumExtension + { + internal static string ToSerializedValue(this ReplicationRole? value) + { + return value == null ? null : ((ReplicationRole)value).ToSerializedValue(); + } + + internal static string ToSerializedValue(this ReplicationRole value) + { + switch( value ) + { + case ReplicationRole.Primary: + return "Primary"; + case ReplicationRole.Secondary: + return "Secondary"; + } + return null; + } + + internal static ReplicationRole? ParseReplicationRole(this string value) + { + switch( value ) + { + case "Primary": + return ReplicationRole.Primary; + case "Secondary": + return ReplicationRole.Secondary; + } + return null; + } + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/Resource.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/Resource.cs new file mode 100644 index 000000000000..9369f9073c6c --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/Resource.cs @@ -0,0 +1,79 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Resource + /// + /// + /// Common fields that are returned in the response for all Azure Resource + /// Manager resources + /// + public partial class Resource : IResource + { + /// + /// Initializes a new instance of the Resource class. + /// + public Resource() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the Resource class. + /// + /// Fully qualified resource ID for the resource. Ex - + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// The name of the resource + /// The type of the resource. E.g. + /// "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" + public Resource(string id = default(string), string name = default(string), string type = default(string)) + { + Id = id; + Name = name; + Type = type; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets fully qualified resource ID for the resource. Ex - + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// + [JsonProperty(PropertyName = "id")] + public string Id { get; private set; } + + /// + /// Gets the name of the resource + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + /// + /// Gets the type of the resource. E.g. + /// "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" + /// + [JsonProperty(PropertyName = "type")] + public string Type { get; private set; } + + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/ScheduleEntry.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/ScheduleEntry.cs new file mode 100644 index 000000000000..80c056d43be2 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/ScheduleEntry.cs @@ -0,0 +1,84 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Patch schedule entry for a Premium Redis Cache. + /// + public partial class ScheduleEntry + { + /// + /// Initializes a new instance of the ScheduleEntry class. + /// + public ScheduleEntry() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ScheduleEntry class. + /// + /// Day of the week when a cache can be + /// patched. Possible values include: 'Monday', 'Tuesday', 'Wednesday', + /// 'Thursday', 'Friday', 'Saturday', 'Sunday', 'Everyday', + /// 'Weekend' + /// Start hour after which cache patching + /// can start. + /// ISO8601 timespan specifying how + /// much time cache patching can take. + public ScheduleEntry(DayOfWeek dayOfWeek, int startHourUtc, System.TimeSpan? maintenanceWindow = default(System.TimeSpan?)) + { + DayOfWeek = dayOfWeek; + StartHourUtc = startHourUtc; + MaintenanceWindow = maintenanceWindow; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets day of the week when a cache can be patched. Possible + /// values include: 'Monday', 'Tuesday', 'Wednesday', 'Thursday', + /// 'Friday', 'Saturday', 'Sunday', 'Everyday', 'Weekend' + /// + [JsonProperty(PropertyName = "dayOfWeek")] + public DayOfWeek DayOfWeek { get; set; } + + /// + /// Gets or sets start hour after which cache patching can start. + /// + [JsonProperty(PropertyName = "startHourUtc")] + public int StartHourUtc { get; set; } + + /// + /// Gets or sets ISO8601 timespan specifying how much time cache + /// patching can take. + /// + [JsonProperty(PropertyName = "maintenanceWindow")] + public System.TimeSpan? MaintenanceWindow { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + } + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/Sku.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/Sku.cs new file mode 100644 index 000000000000..bec04b24ffe6 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/Sku.cs @@ -0,0 +1,96 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// SKU parameters supplied to the create Redis operation. + /// + public partial class Sku + { + /// + /// Initializes a new instance of the Sku class. + /// + public Sku() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the Sku class. + /// + /// The type of Redis cache to deploy. Valid values: + /// (Basic, Standard, Premium). Possible values include: 'Basic', + /// 'Standard', 'Premium' + /// The SKU family to use. Valid values: (C, P). + /// (C = Basic/Standard, P = Premium). Possible values include: 'C', + /// 'P' + /// The size of the Redis cache to deploy. Valid + /// values: for C (Basic/Standard) family (0, 1, 2, 3, 4, 5, 6), for P + /// (Premium) family (1, 2, 3, 4). + public Sku(string name, string family, int capacity) + { + Name = name; + Family = family; + Capacity = capacity; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the type of Redis cache to deploy. Valid values: + /// (Basic, Standard, Premium). Possible values include: 'Basic', + /// 'Standard', 'Premium' + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets the SKU family to use. Valid values: (C, P). (C = + /// Basic/Standard, P = Premium). Possible values include: 'C', 'P' + /// + [JsonProperty(PropertyName = "family")] + public string Family { get; set; } + + /// + /// Gets or sets the size of the Redis cache to deploy. Valid values: + /// for C (Basic/Standard) family (0, 1, 2, 3, 4, 5, 6), for P + /// (Premium) family (1, 2, 3, 4). + /// + [JsonProperty(PropertyName = "capacity")] + public int Capacity { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Name"); + } + if (Family == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Family"); + } + } + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/SkuFamily.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/SkuFamily.cs new file mode 100644 index 000000000000..a4ec598150f4 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/SkuFamily.cs @@ -0,0 +1,22 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + + /// + /// Defines values for SkuFamily. + /// + public static class SkuFamily + { + public const string C = "C"; + public const string P = "P"; + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/SkuName.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/SkuName.cs new file mode 100644 index 000000000000..b12b0c96154d --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/SkuName.cs @@ -0,0 +1,23 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + + /// + /// Defines values for SkuName. + /// + public static class SkuName + { + public const string Basic = "Basic"; + public const string Standard = "Standard"; + public const string Premium = "Premium"; + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/TlsVersion.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/TlsVersion.cs new file mode 100644 index 000000000000..8e8009c093b7 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/TlsVersion.cs @@ -0,0 +1,23 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + + /// + /// Defines values for TlsVersion. + /// + public static class TlsVersion + { + public const string OneFullStopZero = "1.0"; + public const string OneFullStopOne = "1.1"; + public const string OneFullStopTwo = "1.2"; + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/TrackedResource.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/TrackedResource.cs new file mode 100644 index 000000000000..ef33f3c5b721 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/TrackedResource.cs @@ -0,0 +1,87 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Tracked Resource + /// + /// + /// The resource model definition for an Azure Resource Manager tracked top + /// level resource which has 'tags' and a 'location' + /// + public partial class TrackedResource : Resource + { + /// + /// Initializes a new instance of the TrackedResource class. + /// + public TrackedResource() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the TrackedResource class. + /// + /// The geo-location where the resource + /// lives + /// Fully qualified resource ID for the resource. Ex - + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// The name of the resource + /// The type of the resource. E.g. + /// "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" + /// Resource tags. + public TrackedResource(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary)) + : base(id, name, type) + { + Tags = tags; + Location = location; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets resource tags. + /// + [JsonProperty(PropertyName = "tags")] + public IDictionary Tags { get; set; } + + /// + /// Gets or sets the geo-location where the resource lives + /// + [JsonProperty(PropertyName = "location")] + public string Location { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Location == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Location"); + } + } + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/UpgradeNotification.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/UpgradeNotification.cs new file mode 100644 index 000000000000..032b0e4333eb --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/UpgradeNotification.cs @@ -0,0 +1,71 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Properties of upgrade notification. + /// + public partial class UpgradeNotification + { + /// + /// Initializes a new instance of the UpgradeNotification class. + /// + public UpgradeNotification() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the UpgradeNotification class. + /// + /// Name of upgrade notification. + /// Timestamp when upgrade notification + /// occurred. + /// Details about this upgrade + /// notification + public UpgradeNotification(string name = default(string), System.DateTime? timestamp = default(System.DateTime?), IDictionary upsellNotification = default(IDictionary)) + { + Name = name; + Timestamp = timestamp; + UpsellNotification = upsellNotification; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets name of upgrade notification. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + /// + /// Gets timestamp when upgrade notification occurred. + /// + [JsonProperty(PropertyName = "timestamp")] + public System.DateTime? Timestamp { get; private set; } + + /// + /// Gets details about this upgrade notification + /// + [JsonProperty(PropertyName = "upsellNotification")] + public IDictionary UpsellNotification { get; private set; } + + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/UserAssignedIdentity.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/UserAssignedIdentity.cs new file mode 100644 index 000000000000..7ea590b95151 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Models/UserAssignedIdentity.cs @@ -0,0 +1,61 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// User assigned identity properties + /// + public partial class UserAssignedIdentity + { + /// + /// Initializes a new instance of the UserAssignedIdentity class. + /// + public UserAssignedIdentity() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the UserAssignedIdentity class. + /// + /// The principal ID of the assigned + /// identity. + /// The client ID of the assigned + /// identity. + public UserAssignedIdentity(System.Guid? principalId = default(System.Guid?), System.Guid? clientId = default(System.Guid?)) + { + PrincipalId = principalId; + ClientId = clientId; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the principal ID of the assigned identity. + /// + [JsonProperty(PropertyName = "principalId")] + public System.Guid? PrincipalId { get; private set; } + + /// + /// Gets the client ID of the assigned identity. + /// + [JsonProperty(PropertyName = "clientId")] + public System.Guid? ClientId { get; private set; } + + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/Operations.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/Operations.cs new file mode 100644 index 000000000000..3f3d1c2ad5ae --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/Operations.cs @@ -0,0 +1,392 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Operations operations. + /// + internal partial class Operations : IServiceOperations, IOperations + { + /// + /// Initializes a new instance of the Operations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal Operations(RedisManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the RedisManagementClient + /// + public RedisManagementClient Client { get; private set; } + + /// + /// Lists all of the available REST API operations of the Microsoft.Cache + /// provider. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Cache/operations").ToString(); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Lists all of the available REST API operations of the Microsoft.Cache + /// provider. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/OperationsExtensions.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/OperationsExtensions.cs new file mode 100644 index 000000000000..393290e3fb49 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/OperationsExtensions.cs @@ -0,0 +1,91 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for Operations. + /// + public static partial class OperationsExtensions + { + /// + /// Lists all of the available REST API operations of the Microsoft.Cache + /// provider. + /// + /// + /// The operations group for this extension method. + /// + public static IPage List(this IOperations operations) + { + return operations.ListAsync().GetAwaiter().GetResult(); + } + + /// + /// Lists all of the available REST API operations of the Microsoft.Cache + /// provider. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this IOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Lists all of the available REST API operations of the Microsoft.Cache + /// provider. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this IOperations operations, string nextPageLink) + { + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Lists all of the available REST API operations of the Microsoft.Cache + /// provider. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListNextAsync(this IOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/PatchSchedulesOperations.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/PatchSchedulesOperations.cs new file mode 100644 index 000000000000..c64d36b9869e --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/PatchSchedulesOperations.cs @@ -0,0 +1,1021 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// PatchSchedulesOperations operations. + /// + internal partial class PatchSchedulesOperations : IServiceOperations, IPatchSchedulesOperations + { + /// + /// Initializes a new instance of the PatchSchedulesOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal PatchSchedulesOperations(RedisManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the RedisManagementClient + /// + public RedisManagementClient Client { get; private set; } + + /// + /// Gets all patch schedules in the specified redis cache (there is only one). + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListByRedisResourceWithHttpMessagesAsync(string resourceGroupName, string cacheName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cacheName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cacheName"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cacheName", cacheName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByRedisResource", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis/{cacheName}/patchSchedules").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cacheName}", System.Uri.EscapeDataString(cacheName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Create or replace the patching schedule for Redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// List of patch schedules for a Redis cache. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string name, IList scheduleEntries, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "name"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (scheduleEntries == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "scheduleEntries"); + } + if (scheduleEntries != null) + { + foreach (var element in scheduleEntries) + { + if (element != null) + { + element.Validate(); + } + } + } + string defaultParameter = "default"; + RedisPatchSchedule parameters = new RedisPatchSchedule(); + if (scheduleEntries != null) + { + parameters.ScheduleEntries = scheduleEntries; + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("name", name); + tracingParameters.Add("defaultParameter", defaultParameter); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis/{name}/patchSchedules/{default}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); + _url = _url.Replace("{default}", System.Uri.EscapeDataString(defaultParameter)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 201) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Deletes the patching schedule of a redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the redis cache. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "name"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string defaultParameter = "default"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("name", name); + tracingParameters.Add("defaultParameter", defaultParameter); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis/{name}/patchSchedules/{default}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); + _url = _url.Replace("{default}", System.Uri.EscapeDataString(defaultParameter)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 204) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets the patching schedule of a redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the redis cache. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "name"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string defaultParameter = "default"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("name", name); + tracingParameters.Add("defaultParameter", defaultParameter); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis/{name}/patchSchedules/{default}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); + _url = _url.Replace("{default}", System.Uri.EscapeDataString(defaultParameter)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets all patch schedules in the specified redis cache (there is only one). + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListByRedisResourceNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByRedisResourceNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/PatchSchedulesOperationsExtensions.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/PatchSchedulesOperationsExtensions.cs new file mode 100644 index 000000000000..6c607bb33f03 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/PatchSchedulesOperationsExtensions.cs @@ -0,0 +1,224 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for PatchSchedulesOperations. + /// + public static partial class PatchSchedulesOperationsExtensions + { + /// + /// Gets all patch schedules in the specified redis cache (there is only one). + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + public static IPage ListByRedisResource(this IPatchSchedulesOperations operations, string resourceGroupName, string cacheName) + { + return operations.ListByRedisResourceAsync(resourceGroupName, cacheName).GetAwaiter().GetResult(); + } + + /// + /// Gets all patch schedules in the specified redis cache (there is only one). + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByRedisResourceAsync(this IPatchSchedulesOperations operations, string resourceGroupName, string cacheName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByRedisResourceWithHttpMessagesAsync(resourceGroupName, cacheName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Create or replace the patching schedule for Redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// List of patch schedules for a Redis cache. + /// + public static RedisPatchSchedule CreateOrUpdate(this IPatchSchedulesOperations operations, string resourceGroupName, string name, IList scheduleEntries) + { + return operations.CreateOrUpdateAsync(resourceGroupName, name, scheduleEntries).GetAwaiter().GetResult(); + } + + /// + /// Create or replace the patching schedule for Redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// List of patch schedules for a Redis cache. + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateAsync(this IPatchSchedulesOperations operations, string resourceGroupName, string name, IList scheduleEntries, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, name, scheduleEntries, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes the patching schedule of a redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the redis cache. + /// + public static void Delete(this IPatchSchedulesOperations operations, string resourceGroupName, string name) + { + operations.DeleteAsync(resourceGroupName, name).GetAwaiter().GetResult(); + } + + /// + /// Deletes the patching schedule of a redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the redis cache. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this IPatchSchedulesOperations operations, string resourceGroupName, string name, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, name, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Gets the patching schedule of a redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the redis cache. + /// + public static RedisPatchSchedule Get(this IPatchSchedulesOperations operations, string resourceGroupName, string name) + { + return operations.GetAsync(resourceGroupName, name).GetAwaiter().GetResult(); + } + + /// + /// Gets the patching schedule of a redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the redis cache. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this IPatchSchedulesOperations operations, string resourceGroupName, string name, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, name, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets all patch schedules in the specified redis cache (there is only one). + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListByRedisResourceNext(this IPatchSchedulesOperations operations, string nextPageLink) + { + return operations.ListByRedisResourceNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets all patch schedules in the specified redis cache (there is only one). + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByRedisResourceNextAsync(this IPatchSchedulesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByRedisResourceNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/PrivateEndpointConnectionsOperations.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/PrivateEndpointConnectionsOperations.cs new file mode 100644 index 000000000000..dd3a142e2fdf --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/PrivateEndpointConnectionsOperations.cs @@ -0,0 +1,896 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// PrivateEndpointConnectionsOperations operations. + /// + internal partial class PrivateEndpointConnectionsOperations : IServiceOperations, IPrivateEndpointConnectionsOperations + { + /// + /// Initializes a new instance of the PrivateEndpointConnectionsOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal PrivateEndpointConnectionsOperations(RedisManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the RedisManagementClient + /// + public RedisManagementClient Client { get; private set; } + + /// + /// List all the private endpoint connections associated with the redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string cacheName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cacheName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cacheName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cacheName", cacheName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis/{cacheName}/privateEndpointConnections").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cacheName}", System.Uri.EscapeDataString(cacheName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets the specified private endpoint connection associated with the redis + /// cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the private endpoint connection associated with the Azure + /// resource + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string cacheName, string privateEndpointConnectionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cacheName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cacheName"); + } + if (privateEndpointConnectionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "privateEndpointConnectionName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cacheName", cacheName); + tracingParameters.Add("privateEndpointConnectionName", privateEndpointConnectionName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis/{cacheName}/privateEndpointConnections/{privateEndpointConnectionName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cacheName}", System.Uri.EscapeDataString(cacheName)); + _url = _url.Replace("{privateEndpointConnectionName}", System.Uri.EscapeDataString(privateEndpointConnectionName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Update the state of specified private endpoint connection associated with + /// the redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the private endpoint connection associated with the Azure + /// resource + /// + /// + /// The private endpoint connection properties. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> PutWithHttpMessagesAsync(string resourceGroupName, string cacheName, string privateEndpointConnectionName, PrivateEndpointConnection properties, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginPutWithHttpMessagesAsync(resourceGroupName, cacheName, privateEndpointConnectionName, properties, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Deletes the specified private endpoint connection associated with the redis + /// cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the private endpoint connection associated with the Azure + /// resource + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string cacheName, string privateEndpointConnectionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cacheName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cacheName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (privateEndpointConnectionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "privateEndpointConnectionName"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cacheName", cacheName); + tracingParameters.Add("privateEndpointConnectionName", privateEndpointConnectionName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis/{cacheName}/privateEndpointConnections/{privateEndpointConnectionName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cacheName}", System.Uri.EscapeDataString(cacheName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{privateEndpointConnectionName}", System.Uri.EscapeDataString(privateEndpointConnectionName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 204) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Update the state of specified private endpoint connection associated with + /// the redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the private endpoint connection associated with the Azure + /// resource + /// + /// + /// The private endpoint connection properties. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> BeginPutWithHttpMessagesAsync(string resourceGroupName, string cacheName, string privateEndpointConnectionName, PrivateEndpointConnection properties, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cacheName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cacheName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (privateEndpointConnectionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "privateEndpointConnectionName"); + } + if (properties == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "properties"); + } + if (properties != null) + { + properties.Validate(); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cacheName", cacheName); + tracingParameters.Add("privateEndpointConnectionName", privateEndpointConnectionName); + tracingParameters.Add("properties", properties); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginPut", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis/{cacheName}/privateEndpointConnections/{privateEndpointConnectionName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cacheName}", System.Uri.EscapeDataString(cacheName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{privateEndpointConnectionName}", System.Uri.EscapeDataString(privateEndpointConnectionName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(properties != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(properties, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 201) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/PrivateEndpointConnectionsOperationsExtensions.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/PrivateEndpointConnectionsOperationsExtensions.cs new file mode 100644 index 000000000000..f22f4cafaf4a --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/PrivateEndpointConnectionsOperationsExtensions.cs @@ -0,0 +1,276 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for PrivateEndpointConnectionsOperations. + /// + public static partial class PrivateEndpointConnectionsOperationsExtensions + { + /// + /// List all the private endpoint connections associated with the redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + public static IEnumerable List(this IPrivateEndpointConnectionsOperations operations, string resourceGroupName, string cacheName) + { + return operations.ListAsync(resourceGroupName, cacheName).GetAwaiter().GetResult(); + } + + /// + /// List all the private endpoint connections associated with the redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this IPrivateEndpointConnectionsOperations operations, string resourceGroupName, string cacheName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, cacheName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets the specified private endpoint connection associated with the redis + /// cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the private endpoint connection associated with the Azure + /// resource + /// + public static PrivateEndpointConnection Get(this IPrivateEndpointConnectionsOperations operations, string resourceGroupName, string cacheName, string privateEndpointConnectionName) + { + return operations.GetAsync(resourceGroupName, cacheName, privateEndpointConnectionName).GetAwaiter().GetResult(); + } + + /// + /// Gets the specified private endpoint connection associated with the redis + /// cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the private endpoint connection associated with the Azure + /// resource + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this IPrivateEndpointConnectionsOperations operations, string resourceGroupName, string cacheName, string privateEndpointConnectionName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, cacheName, privateEndpointConnectionName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Update the state of specified private endpoint connection associated with + /// the redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the private endpoint connection associated with the Azure + /// resource + /// + /// + /// The private endpoint connection properties. + /// + public static PrivateEndpointConnection Put(this IPrivateEndpointConnectionsOperations operations, string resourceGroupName, string cacheName, string privateEndpointConnectionName, PrivateEndpointConnection properties) + { + return operations.PutAsync(resourceGroupName, cacheName, privateEndpointConnectionName, properties).GetAwaiter().GetResult(); + } + + /// + /// Update the state of specified private endpoint connection associated with + /// the redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the private endpoint connection associated with the Azure + /// resource + /// + /// + /// The private endpoint connection properties. + /// + /// + /// The cancellation token. + /// + public static async Task PutAsync(this IPrivateEndpointConnectionsOperations operations, string resourceGroupName, string cacheName, string privateEndpointConnectionName, PrivateEndpointConnection properties, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.PutWithHttpMessagesAsync(resourceGroupName, cacheName, privateEndpointConnectionName, properties, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes the specified private endpoint connection associated with the redis + /// cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the private endpoint connection associated with the Azure + /// resource + /// + public static void Delete(this IPrivateEndpointConnectionsOperations operations, string resourceGroupName, string cacheName, string privateEndpointConnectionName) + { + operations.DeleteAsync(resourceGroupName, cacheName, privateEndpointConnectionName).GetAwaiter().GetResult(); + } + + /// + /// Deletes the specified private endpoint connection associated with the redis + /// cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the private endpoint connection associated with the Azure + /// resource + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this IPrivateEndpointConnectionsOperations operations, string resourceGroupName, string cacheName, string privateEndpointConnectionName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, cacheName, privateEndpointConnectionName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Update the state of specified private endpoint connection associated with + /// the redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the private endpoint connection associated with the Azure + /// resource + /// + /// + /// The private endpoint connection properties. + /// + public static PrivateEndpointConnection BeginPut(this IPrivateEndpointConnectionsOperations operations, string resourceGroupName, string cacheName, string privateEndpointConnectionName, PrivateEndpointConnection properties) + { + return operations.BeginPutAsync(resourceGroupName, cacheName, privateEndpointConnectionName, properties).GetAwaiter().GetResult(); + } + + /// + /// Update the state of specified private endpoint connection associated with + /// the redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The name of the private endpoint connection associated with the Azure + /// resource + /// + /// + /// The private endpoint connection properties. + /// + /// + /// The cancellation token. + /// + public static async Task BeginPutAsync(this IPrivateEndpointConnectionsOperations operations, string resourceGroupName, string cacheName, string privateEndpointConnectionName, PrivateEndpointConnection properties, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginPutWithHttpMessagesAsync(resourceGroupName, cacheName, privateEndpointConnectionName, properties, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/PrivateLinkResourcesOperations.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/PrivateLinkResourcesOperations.cs new file mode 100644 index 000000000000..c94fdd44891c --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/PrivateLinkResourcesOperations.cs @@ -0,0 +1,245 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// PrivateLinkResourcesOperations operations. + /// + internal partial class PrivateLinkResourcesOperations : IServiceOperations, IPrivateLinkResourcesOperations + { + /// + /// Initializes a new instance of the PrivateLinkResourcesOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal PrivateLinkResourcesOperations(RedisManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the RedisManagementClient + /// + public RedisManagementClient Client { get; private set; } + + /// + /// Gets the private link resources that need to be created for a redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListByRedisCacheWithHttpMessagesAsync(string resourceGroupName, string cacheName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cacheName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cacheName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cacheName", cacheName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByRedisCache", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis/{cacheName}/privateLinkResources").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cacheName}", System.Uri.EscapeDataString(cacheName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/PrivateLinkResourcesOperationsExtensions.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/PrivateLinkResourcesOperationsExtensions.cs new file mode 100644 index 000000000000..361485b9fe1b --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/PrivateLinkResourcesOperationsExtensions.cs @@ -0,0 +1,67 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for PrivateLinkResourcesOperations. + /// + public static partial class PrivateLinkResourcesOperationsExtensions + { + /// + /// Gets the private link resources that need to be created for a redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + public static IEnumerable ListByRedisCache(this IPrivateLinkResourcesOperations operations, string resourceGroupName, string cacheName) + { + return operations.ListByRedisCacheAsync(resourceGroupName, cacheName).GetAwaiter().GetResult(); + } + + /// + /// Gets the private link resources that need to be created for a redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByRedisCacheAsync(this IPrivateLinkResourcesOperations operations, string resourceGroupName, string cacheName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByRedisCacheWithHttpMessagesAsync(resourceGroupName, cacheName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/RedisManagementClient.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/RedisManagementClient.cs new file mode 100644 index 000000000000..3fcfe8c6e21a --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/RedisManagementClient.cs @@ -0,0 +1,404 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Serialization; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + + /// + /// REST API for Azure Redis Cache Service. + /// + public partial class RedisManagementClient : ServiceClient, IRedisManagementClient, IAzureClient + { + /// + /// The base URI of the service. + /// + public System.Uri BaseUri { get; set; } + + /// + /// Gets or sets json serialization settings. + /// + public JsonSerializerSettings SerializationSettings { get; private set; } + + /// + /// Gets or sets json deserialization settings. + /// + public JsonSerializerSettings DeserializationSettings { get; private set; } + + /// + /// Credentials needed for the client to connect to Azure. + /// + public ServiceClientCredentials Credentials { get; private set; } + + /// + /// Gets subscription credentials which uniquely identify the Microsoft Azure + /// subscription. The subscription ID forms part of the URI for every service + /// call. + /// + public string SubscriptionId { get; set; } + + /// + /// Client Api Version. + /// + public string ApiVersion { get; private set; } + + /// + /// The preferred language for the response. + /// + public string AcceptLanguage { get; set; } + + /// + /// The retry timeout in seconds for Long Running Operations. Default value is + /// 30. + /// + public int? LongRunningOperationRetryTimeout { get; set; } + + /// + /// Whether a unique x-ms-client-request-id should be generated. When set to + /// true a unique x-ms-client-request-id value is generated and included in + /// each request. Default is true. + /// + public bool? GenerateClientRequestId { get; set; } + + /// + /// Gets the IOperations. + /// + public virtual IOperations Operations { get; private set; } + + /// + /// Gets the IRedisOperations. + /// + public virtual IRedisOperations Redis { get; private set; } + + /// + /// Gets the IFirewallRulesOperations. + /// + public virtual IFirewallRulesOperations FirewallRules { get; private set; } + + /// + /// Gets the IPatchSchedulesOperations. + /// + public virtual IPatchSchedulesOperations PatchSchedules { get; private set; } + + /// + /// Gets the ILinkedServerOperations. + /// + public virtual ILinkedServerOperations LinkedServer { get; private set; } + + /// + /// Gets the IPrivateEndpointConnectionsOperations. + /// + public virtual IPrivateEndpointConnectionsOperations PrivateEndpointConnections { get; private set; } + + /// + /// Gets the IPrivateLinkResourcesOperations. + /// + public virtual IPrivateLinkResourcesOperations PrivateLinkResources { get; private set; } + + /// + /// Gets the IAsyncOperationStatusOperations. + /// + public virtual IAsyncOperationStatusOperations AsyncOperationStatus { get; private set; } + + /// + /// Initializes a new instance of the RedisManagementClient class. + /// + /// + /// HttpClient to be used + /// + /// + /// True: will dispose the provided httpClient on calling RedisManagementClient.Dispose(). False: will not dispose provided httpClient + protected RedisManagementClient(HttpClient httpClient, bool disposeHttpClient) : base(httpClient, disposeHttpClient) + { + Initialize(); + } + + /// + /// Initializes a new instance of the RedisManagementClient class. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + protected RedisManagementClient(params DelegatingHandler[] handlers) : base(handlers) + { + Initialize(); + } + + /// + /// Initializes a new instance of the RedisManagementClient class. + /// + /// + /// Optional. The http client handler used to handle http transport. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + protected RedisManagementClient(HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : base(rootHandler, handlers) + { + Initialize(); + } + + /// + /// Initializes a new instance of the RedisManagementClient class. + /// + /// + /// Optional. The base URI of the service. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + protected RedisManagementClient(System.Uri baseUri, params DelegatingHandler[] handlers) : this(handlers) + { + if (baseUri == null) + { + throw new System.ArgumentNullException("baseUri"); + } + BaseUri = baseUri; + } + + /// + /// Initializes a new instance of the RedisManagementClient class. + /// + /// + /// Optional. The base URI of the service. + /// + /// + /// Optional. The http client handler used to handle http transport. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + protected RedisManagementClient(System.Uri baseUri, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) + { + if (baseUri == null) + { + throw new System.ArgumentNullException("baseUri"); + } + BaseUri = baseUri; + } + + /// + /// Initializes a new instance of the RedisManagementClient class. + /// + /// + /// Required. Credentials needed for the client to connect to Azure. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + public RedisManagementClient(ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) + { + if (credentials == null) + { + throw new System.ArgumentNullException("credentials"); + } + Credentials = credentials; + if (Credentials != null) + { + Credentials.InitializeServiceClient(this); + } + } + + /// + /// Initializes a new instance of the RedisManagementClient class. + /// + /// + /// Required. Credentials needed for the client to connect to Azure. + /// + /// + /// HttpClient to be used + /// + /// + /// True: will dispose the provided httpClient on calling RedisManagementClient.Dispose(). False: will not dispose provided httpClient + /// + /// Thrown when a required parameter is null + /// + public RedisManagementClient(ServiceClientCredentials credentials, HttpClient httpClient, bool disposeHttpClient) : this(httpClient, disposeHttpClient) + { + if (credentials == null) + { + throw new System.ArgumentNullException("credentials"); + } + Credentials = credentials; + if (Credentials != null) + { + Credentials.InitializeServiceClient(this); + } + } + + /// + /// Initializes a new instance of the RedisManagementClient class. + /// + /// + /// Required. Credentials needed for the client to connect to Azure. + /// + /// + /// Optional. The http client handler used to handle http transport. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + public RedisManagementClient(ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) + { + if (credentials == null) + { + throw new System.ArgumentNullException("credentials"); + } + Credentials = credentials; + if (Credentials != null) + { + Credentials.InitializeServiceClient(this); + } + } + + /// + /// Initializes a new instance of the RedisManagementClient class. + /// + /// + /// Optional. The base URI of the service. + /// + /// + /// Required. Credentials needed for the client to connect to Azure. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + public RedisManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) + { + if (baseUri == null) + { + throw new System.ArgumentNullException("baseUri"); + } + if (credentials == null) + { + throw new System.ArgumentNullException("credentials"); + } + BaseUri = baseUri; + Credentials = credentials; + if (Credentials != null) + { + Credentials.InitializeServiceClient(this); + } + } + + /// + /// Initializes a new instance of the RedisManagementClient class. + /// + /// + /// Optional. The base URI of the service. + /// + /// + /// Required. Credentials needed for the client to connect to Azure. + /// + /// + /// Optional. The http client handler used to handle http transport. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + public RedisManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) + { + if (baseUri == null) + { + throw new System.ArgumentNullException("baseUri"); + } + if (credentials == null) + { + throw new System.ArgumentNullException("credentials"); + } + BaseUri = baseUri; + Credentials = credentials; + if (Credentials != null) + { + Credentials.InitializeServiceClient(this); + } + } + + /// + /// An optional partial-method to perform custom initialization. + /// + partial void CustomInitialize(); + /// + /// Initializes client properties. + /// + private void Initialize() + { + Operations = new Operations(this); + Redis = new RedisOperations(this); + FirewallRules = new FirewallRulesOperations(this); + PatchSchedules = new PatchSchedulesOperations(this); + LinkedServer = new LinkedServerOperations(this); + PrivateEndpointConnections = new PrivateEndpointConnectionsOperations(this); + PrivateLinkResources = new PrivateLinkResourcesOperations(this); + AsyncOperationStatus = new AsyncOperationStatusOperations(this); + BaseUri = new System.Uri("https://management.azure.com"); + ApiVersion = "2022-06-01"; + AcceptLanguage = "en-US"; + LongRunningOperationRetryTimeout = 30; + GenerateClientRequestId = true; + SerializationSettings = new JsonSerializerSettings + { + Formatting = Newtonsoft.Json.Formatting.Indented, + DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, + DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, + NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, + ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, + ContractResolver = new ReadOnlyJsonContractResolver(), + Converters = new List + { + new Iso8601TimeSpanConverter() + } + }; + SerializationSettings.Converters.Add(new TransformationJsonConverter()); + DeserializationSettings = new JsonSerializerSettings + { + DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, + DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, + NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, + ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, + ContractResolver = new ReadOnlyJsonContractResolver(), + Converters = new List + { + new Iso8601TimeSpanConverter() + } + }; + CustomInitialize(); + DeserializationSettings.Converters.Add(new TransformationJsonConverter()); + DeserializationSettings.Converters.Add(new CloudErrorJsonConverter()); + } + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/RedisOperations.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/RedisOperations.cs new file mode 100644 index 000000000000..ff9f89b4fa97 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/RedisOperations.cs @@ -0,0 +1,3203 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// RedisOperations operations. + /// + internal partial class RedisOperations : IServiceOperations, IRedisOperations + { + /// + /// Initializes a new instance of the RedisOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal RedisOperations(RedisManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the RedisManagementClient + /// + public RedisManagementClient Client { get; private set; } + + /// + /// Checks that the redis cache name is valid and is not already in use. + /// + /// + /// Resource name. + /// + /// + /// Resource type. The only legal value of this property for checking redis + /// cache name availability is 'Microsoft.Cache/redis'. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task CheckNameAvailabilityWithHttpMessagesAsync(string name, string type, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "name"); + } + if (type == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "type"); + } + CheckNameAvailabilityParameters parameters = new CheckNameAvailabilityParameters(); + if (name != null || type != null) + { + parameters.Name = name; + parameters.Type = type; + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "CheckNameAvailability", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Cache/CheckNameAvailability").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets any upgrade notifications for a Redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// how many minutes in past to look for upgrade notifications + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListUpgradeNotificationsWithHttpMessagesAsync(string resourceGroupName, string name, double history, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "name"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("name", name); + tracingParameters.Add("history", history); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListUpgradeNotifications", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis/{name}/listUpgradeNotifications").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + _queryParameters.Add(string.Format("history={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(history, Client.SerializationSettings).Trim('"')))); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Create or replace (overwrite/recreate, with potential downtime) an existing + /// Redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Parameters supplied to the Create Redis operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateWithHttpMessagesAsync(string resourceGroupName, string name, RedisCreateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateWithHttpMessagesAsync(resourceGroupName, name, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Update an existing Redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Parameters supplied to the Update Redis operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string name, RedisUpdateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, name, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Deletes a Redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, name, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Gets a Redis cache (resource description). + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "name"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("name", name); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis/{name}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Lists all Redis caches in a resource group. + /// + /// + /// The name of the resource group. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets all Redis caches in the specified subscription. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListBySubscriptionWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListBySubscription", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Cache/redis").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Retrieve a Redis cache's access keys. This operation requires write + /// permission to the cache resource. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> ListKeysWithHttpMessagesAsync(string resourceGroupName, string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "name"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("name", name); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListKeys", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis/{name}/listKeys").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Regenerate Redis cache's access keys. This operation requires write + /// permission to the cache resource. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The Redis access key to regenerate. Possible values include: 'Primary', + /// 'Secondary' + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> RegenerateKeyWithHttpMessagesAsync(string resourceGroupName, string name, RedisKeyType keyType, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "name"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + RedisRegenerateKeyParameters parameters = new RedisRegenerateKeyParameters(); + parameters.KeyType = keyType; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("name", name); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "RegenerateKey", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis/{name}/regenerateKey").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Reboot specified Redis node(s). This operation requires write permission to + /// the cache resource. There can be potential data loss. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Specifies which Redis node(s) to reboot. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> ForceRebootWithHttpMessagesAsync(string resourceGroupName, string name, RedisRebootParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "name"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("name", name); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ForceReboot", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis/{name}/forceReboot").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Import data into Redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Parameters for Redis import operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task ImportDataWithHttpMessagesAsync(string resourceGroupName, string name, ImportRDBParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginImportDataWithHttpMessagesAsync(resourceGroupName, name, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Export data from the redis cache to blobs in a container. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Parameters for Redis export operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task ExportDataWithHttpMessagesAsync(string resourceGroupName, string name, ExportRDBParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginExportDataWithHttpMessagesAsync(resourceGroupName, name, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Create or replace (overwrite/recreate, with potential downtime) an existing + /// Redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Parameters supplied to the Create Redis operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> BeginCreateWithHttpMessagesAsync(string resourceGroupName, string name, RedisCreateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "name"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("name", name); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginCreate", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis/{name}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 201) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Update an existing Redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Parameters supplied to the Update Redis operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string name, RedisUpdateParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "name"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("name", name); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis/{name}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PATCH"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + // Deserialize Response + if ((int)_statusCode == 202) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Deletes a Redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "name"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("name", name); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis/{name}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202 && (int)_statusCode != 204) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Import data into Redis cache. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Parameters for Redis import operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task BeginImportDataWithHttpMessagesAsync(string resourceGroupName, string name, ImportRDBParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "name"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("name", name); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginImportData", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis/{name}/import").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202 && (int)_statusCode != 204) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Export data from the redis cache to blobs in a container. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Parameters for Redis export operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task BeginExportDataWithHttpMessagesAsync(string resourceGroupName, string name, ExportRDBParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "name"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("name", name); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginExportData", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis/{name}/export").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{name}", System.Uri.EscapeDataString(name)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202 && (int)_statusCode != 204) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets any upgrade notifications for a Redis cache. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListUpgradeNotificationsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListUpgradeNotificationsNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Lists all Redis caches in a resource group. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroupNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets all Redis caches in the specified subscription. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListBySubscriptionNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListBySubscriptionNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/RedisOperationsExtensions.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/RedisOperationsExtensions.cs new file mode 100644 index 000000000000..0fcb75105274 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/RedisOperationsExtensions.cs @@ -0,0 +1,888 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for RedisOperations. + /// + public static partial class RedisOperationsExtensions + { + /// + /// Checks that the redis cache name is valid and is not already in use. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Resource name. + /// + /// + /// Resource type. The only legal value of this property for checking redis + /// cache name availability is 'Microsoft.Cache/redis'. + /// + public static void CheckNameAvailability(this IRedisOperations operations, string name, string type) + { + operations.CheckNameAvailabilityAsync(name, type).GetAwaiter().GetResult(); + } + + /// + /// Checks that the redis cache name is valid and is not already in use. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Resource name. + /// + /// + /// Resource type. The only legal value of this property for checking redis + /// cache name availability is 'Microsoft.Cache/redis'. + /// + /// + /// The cancellation token. + /// + public static async Task CheckNameAvailabilityAsync(this IRedisOperations operations, string name, string type, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.CheckNameAvailabilityWithHttpMessagesAsync(name, type, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Gets any upgrade notifications for a Redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// how many minutes in past to look for upgrade notifications + /// + public static IPage ListUpgradeNotifications(this IRedisOperations operations, string resourceGroupName, string name, double history) + { + return operations.ListUpgradeNotificationsAsync(resourceGroupName, name, history).GetAwaiter().GetResult(); + } + + /// + /// Gets any upgrade notifications for a Redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// how many minutes in past to look for upgrade notifications + /// + /// + /// The cancellation token. + /// + public static async Task> ListUpgradeNotificationsAsync(this IRedisOperations operations, string resourceGroupName, string name, double history, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListUpgradeNotificationsWithHttpMessagesAsync(resourceGroupName, name, history, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Create or replace (overwrite/recreate, with potential downtime) an existing + /// Redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Parameters supplied to the Create Redis operation. + /// + public static RedisResource Create(this IRedisOperations operations, string resourceGroupName, string name, RedisCreateParameters parameters) + { + return operations.CreateAsync(resourceGroupName, name, parameters).GetAwaiter().GetResult(); + } + + /// + /// Create or replace (overwrite/recreate, with potential downtime) an existing + /// Redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Parameters supplied to the Create Redis operation. + /// + /// + /// The cancellation token. + /// + public static async Task CreateAsync(this IRedisOperations operations, string resourceGroupName, string name, RedisCreateParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateWithHttpMessagesAsync(resourceGroupName, name, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Update an existing Redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Parameters supplied to the Update Redis operation. + /// + public static RedisResource Update(this IRedisOperations operations, string resourceGroupName, string name, RedisUpdateParameters parameters) + { + return operations.UpdateAsync(resourceGroupName, name, parameters).GetAwaiter().GetResult(); + } + + /// + /// Update an existing Redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Parameters supplied to the Update Redis operation. + /// + /// + /// The cancellation token. + /// + public static async Task UpdateAsync(this IRedisOperations operations, string resourceGroupName, string name, RedisUpdateParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, name, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes a Redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + public static void Delete(this IRedisOperations operations, string resourceGroupName, string name) + { + operations.DeleteAsync(resourceGroupName, name).GetAwaiter().GetResult(); + } + + /// + /// Deletes a Redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this IRedisOperations operations, string resourceGroupName, string name, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, name, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Gets a Redis cache (resource description). + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + public static RedisResource Get(this IRedisOperations operations, string resourceGroupName, string name) + { + return operations.GetAsync(resourceGroupName, name).GetAwaiter().GetResult(); + } + + /// + /// Gets a Redis cache (resource description). + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this IRedisOperations operations, string resourceGroupName, string name, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, name, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Lists all Redis caches in a resource group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + public static IPage ListByResourceGroup(this IRedisOperations operations, string resourceGroupName) + { + return operations.ListByResourceGroupAsync(resourceGroupName).GetAwaiter().GetResult(); + } + + /// + /// Lists all Redis caches in a resource group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByResourceGroupAsync(this IRedisOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets all Redis caches in the specified subscription. + /// + /// + /// The operations group for this extension method. + /// + public static IPage ListBySubscription(this IRedisOperations operations) + { + return operations.ListBySubscriptionAsync().GetAwaiter().GetResult(); + } + + /// + /// Gets all Redis caches in the specified subscription. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The cancellation token. + /// + public static async Task> ListBySubscriptionAsync(this IRedisOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListBySubscriptionWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Retrieve a Redis cache's access keys. This operation requires write + /// permission to the cache resource. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + public static RedisAccessKeys ListKeys(this IRedisOperations operations, string resourceGroupName, string name) + { + return operations.ListKeysAsync(resourceGroupName, name).GetAwaiter().GetResult(); + } + + /// + /// Retrieve a Redis cache's access keys. This operation requires write + /// permission to the cache resource. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The cancellation token. + /// + public static async Task ListKeysAsync(this IRedisOperations operations, string resourceGroupName, string name, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListKeysWithHttpMessagesAsync(resourceGroupName, name, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Regenerate Redis cache's access keys. This operation requires write + /// permission to the cache resource. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The Redis access key to regenerate. Possible values include: 'Primary', + /// 'Secondary' + /// + public static RedisAccessKeys RegenerateKey(this IRedisOperations operations, string resourceGroupName, string name, RedisKeyType keyType) + { + return operations.RegenerateKeyAsync(resourceGroupName, name, keyType).GetAwaiter().GetResult(); + } + + /// + /// Regenerate Redis cache's access keys. This operation requires write + /// permission to the cache resource. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The Redis access key to regenerate. Possible values include: 'Primary', + /// 'Secondary' + /// + /// + /// The cancellation token. + /// + public static async Task RegenerateKeyAsync(this IRedisOperations operations, string resourceGroupName, string name, RedisKeyType keyType, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.RegenerateKeyWithHttpMessagesAsync(resourceGroupName, name, keyType, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Reboot specified Redis node(s). This operation requires write permission to + /// the cache resource. There can be potential data loss. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Specifies which Redis node(s) to reboot. + /// + public static RedisForceRebootResponse ForceReboot(this IRedisOperations operations, string resourceGroupName, string name, RedisRebootParameters parameters) + { + return operations.ForceRebootAsync(resourceGroupName, name, parameters).GetAwaiter().GetResult(); + } + + /// + /// Reboot specified Redis node(s). This operation requires write permission to + /// the cache resource. There can be potential data loss. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Specifies which Redis node(s) to reboot. + /// + /// + /// The cancellation token. + /// + public static async Task ForceRebootAsync(this IRedisOperations operations, string resourceGroupName, string name, RedisRebootParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ForceRebootWithHttpMessagesAsync(resourceGroupName, name, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Import data into Redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Parameters for Redis import operation. + /// + public static void ImportData(this IRedisOperations operations, string resourceGroupName, string name, ImportRDBParameters parameters) + { + operations.ImportDataAsync(resourceGroupName, name, parameters).GetAwaiter().GetResult(); + } + + /// + /// Import data into Redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Parameters for Redis import operation. + /// + /// + /// The cancellation token. + /// + public static async Task ImportDataAsync(this IRedisOperations operations, string resourceGroupName, string name, ImportRDBParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.ImportDataWithHttpMessagesAsync(resourceGroupName, name, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Export data from the redis cache to blobs in a container. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Parameters for Redis export operation. + /// + public static void ExportData(this IRedisOperations operations, string resourceGroupName, string name, ExportRDBParameters parameters) + { + operations.ExportDataAsync(resourceGroupName, name, parameters).GetAwaiter().GetResult(); + } + + /// + /// Export data from the redis cache to blobs in a container. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Parameters for Redis export operation. + /// + /// + /// The cancellation token. + /// + public static async Task ExportDataAsync(this IRedisOperations operations, string resourceGroupName, string name, ExportRDBParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.ExportDataWithHttpMessagesAsync(resourceGroupName, name, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Create or replace (overwrite/recreate, with potential downtime) an existing + /// Redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Parameters supplied to the Create Redis operation. + /// + public static RedisResource BeginCreate(this IRedisOperations operations, string resourceGroupName, string name, RedisCreateParameters parameters) + { + return operations.BeginCreateAsync(resourceGroupName, name, parameters).GetAwaiter().GetResult(); + } + + /// + /// Create or replace (overwrite/recreate, with potential downtime) an existing + /// Redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Parameters supplied to the Create Redis operation. + /// + /// + /// The cancellation token. + /// + public static async Task BeginCreateAsync(this IRedisOperations operations, string resourceGroupName, string name, RedisCreateParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginCreateWithHttpMessagesAsync(resourceGroupName, name, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Update an existing Redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Parameters supplied to the Update Redis operation. + /// + public static RedisResource BeginUpdate(this IRedisOperations operations, string resourceGroupName, string name, RedisUpdateParameters parameters) + { + return operations.BeginUpdateAsync(resourceGroupName, name, parameters).GetAwaiter().GetResult(); + } + + /// + /// Update an existing Redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Parameters supplied to the Update Redis operation. + /// + /// + /// The cancellation token. + /// + public static async Task BeginUpdateAsync(this IRedisOperations operations, string resourceGroupName, string name, RedisUpdateParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginUpdateWithHttpMessagesAsync(resourceGroupName, name, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes a Redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + public static void BeginDelete(this IRedisOperations operations, string resourceGroupName, string name) + { + operations.BeginDeleteAsync(resourceGroupName, name).GetAwaiter().GetResult(); + } + + /// + /// Deletes a Redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// The cancellation token. + /// + public static async Task BeginDeleteAsync(this IRedisOperations operations, string resourceGroupName, string name, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, name, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Import data into Redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Parameters for Redis import operation. + /// + public static void BeginImportData(this IRedisOperations operations, string resourceGroupName, string name, ImportRDBParameters parameters) + { + operations.BeginImportDataAsync(resourceGroupName, name, parameters).GetAwaiter().GetResult(); + } + + /// + /// Import data into Redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Parameters for Redis import operation. + /// + /// + /// The cancellation token. + /// + public static async Task BeginImportDataAsync(this IRedisOperations operations, string resourceGroupName, string name, ImportRDBParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginImportDataWithHttpMessagesAsync(resourceGroupName, name, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Export data from the redis cache to blobs in a container. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Parameters for Redis export operation. + /// + public static void BeginExportData(this IRedisOperations operations, string resourceGroupName, string name, ExportRDBParameters parameters) + { + operations.BeginExportDataAsync(resourceGroupName, name, parameters).GetAwaiter().GetResult(); + } + + /// + /// Export data from the redis cache to blobs in a container. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the Redis cache. + /// + /// + /// Parameters for Redis export operation. + /// + /// + /// The cancellation token. + /// + public static async Task BeginExportDataAsync(this IRedisOperations operations, string resourceGroupName, string name, ExportRDBParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginExportDataWithHttpMessagesAsync(resourceGroupName, name, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Gets any upgrade notifications for a Redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListUpgradeNotificationsNext(this IRedisOperations operations, string nextPageLink) + { + return operations.ListUpgradeNotificationsNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets any upgrade notifications for a Redis cache. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListUpgradeNotificationsNextAsync(this IRedisOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListUpgradeNotificationsNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Lists all Redis caches in a resource group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListByResourceGroupNext(this IRedisOperations operations, string nextPageLink) + { + return operations.ListByResourceGroupNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Lists all Redis caches in a resource group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByResourceGroupNextAsync(this IRedisOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByResourceGroupNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets all Redis caches in the specified subscription. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListBySubscriptionNext(this IRedisOperations operations, string nextPageLink) + { + return operations.ListBySubscriptionNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets all Redis caches in the specified subscription. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListBySubscriptionNextAsync(this IRedisOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListBySubscriptionNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Generated/SdkInfo_RedisManagementClient.cs b/src/RedisCache/RedisCache.Management.Sdk/Generated/SdkInfo_RedisManagementClient.cs new file mode 100644 index 000000000000..97793ebd375a --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Generated/SdkInfo_RedisManagementClient.cs @@ -0,0 +1,34 @@ + +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.RedisCache +{ + using System; + using System.Collections.Generic; + using System.Linq; + + internal static partial class SdkInfo + { + public static IEnumerable> ApiInfo_RedisManagementClient + { + get + { + return new Tuple[] + { + new Tuple("Cache", "AsyncOperationStatus", "2022-06-01"), + new Tuple("Cache", "FirewallRules", "2022-06-01"), + new Tuple("Cache", "LinkedServer", "2022-06-01"), + new Tuple("Cache", "Operations", "2022-06-01"), + new Tuple("Cache", "PatchSchedules", "2022-06-01"), + new Tuple("Cache", "PrivateEndpointConnections", "2022-06-01"), + new Tuple("Cache", "PrivateLinkResources", "2022-06-01"), + new Tuple("Cache", "Redis", "2022-06-01"), + }.AsEnumerable(); + } + } + } +} diff --git a/src/RedisCache/RedisCache.Management.Sdk/Properties/Assemblyinfo.cs b/src/RedisCache/RedisCache.Management.Sdk/Properties/Assemblyinfo.cs new file mode 100644 index 000000000000..e381cfdf10b9 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/Properties/Assemblyinfo.cs @@ -0,0 +1,30 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +[assembly: AssemblyTitle("Microsoft Azure Powershell - RedisCache Management SDK")] +[assembly: AssemblyCompany(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyCompany)] +[assembly: AssemblyProduct(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyProduct)] +[assembly: AssemblyCopyright(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyCopyright)] + +[assembly: ComVisible(false)] +[assembly: CLSCompliant(false)] +[assembly: Guid("66466448-cfe3-4897-9956-b37a536c1603")] + +[assembly: AssemblyVersion("1.7.1")] +[assembly: AssemblyFileVersion("1.7.1")] diff --git a/src/RedisCache/RedisCache.Management.Sdk/README.md b/src/RedisCache/RedisCache.Management.Sdk/README.md new file mode 100644 index 000000000000..1327ed44d828 --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/README.md @@ -0,0 +1,34 @@ +# Overall +This directory contains management plane service clients of Az.RedisCache module. + +## Run Generation +In this directory, run AutoRest: +``` +autorest --reset +autorest --use:@microsoft.azure/autorest.csharp@2.3.90 +autorest.cmd README.md --version=v2 +``` + +### AutoRest Configuration +> see https://aka.ms/autorest +``` yaml +csharp: true +clear-output-folder: true +reflect-api-versions: true +openapi-type: arm +azure-arm: true +license-header: MICROSOFT_MIT_NO_VERSION +payload-flattening-threshold: 2 +``` + + + +### +``` yaml +input-file: + - https://github.com/Azure/azure-rest-api-specs/blob/da0cfefaa0e6c237e1e3819f1cb2e11d7606878d/specification/redis/resource-manager/Microsoft.Cache/stable/2022-06-01/redis.json + +output-folder: Generated + +namespace: Microsoft.Azure.Management.RedisCache +``` \ No newline at end of file diff --git a/src/RedisCache/RedisCache.Management.Sdk/RedisCache.Management.Sdk.csproj b/src/RedisCache/RedisCache.Management.Sdk/RedisCache.Management.Sdk.csproj new file mode 100644 index 000000000000..4460d306b7ae --- /dev/null +++ b/src/RedisCache/RedisCache.Management.Sdk/RedisCache.Management.Sdk.csproj @@ -0,0 +1,18 @@ + + + + RedisCache + + + + + + netstandard2.0 + Microsoft.Azure.PowerShell.RedisCache.Management.Sdk + Microsoft.Azure.Management.RedisCache + $(NoWarn);CS0108;CS1573 + + + + + \ No newline at end of file diff --git a/src/RedisCache/RedisCache.Test/RedisCache.Test.csproj b/src/RedisCache/RedisCache.Test/RedisCache.Test.csproj index 6da1fce7fee3..7846c892e9b0 100644 --- a/src/RedisCache/RedisCache.Test/RedisCache.Test.csproj +++ b/src/RedisCache/RedisCache.Test/RedisCache.Test.csproj @@ -12,11 +12,11 @@ - + diff --git a/src/RedisCache/RedisCache.Test/ScenarioTests/Utilitytests.cs b/src/RedisCache/RedisCache.Test/ScenarioTests/Utilitytests.cs index 4813e2e14679..cd7b7cb44a5b 100644 --- a/src/RedisCache/RedisCache.Test/ScenarioTests/Utilitytests.cs +++ b/src/RedisCache/RedisCache.Test/ScenarioTests/Utilitytests.cs @@ -1,5 +1,5 @@ using Microsoft.Azure.Commands.RedisCache.Models; -using Microsoft.Azure.Management.Redis.Models; +using Microsoft.Azure.Management.RedisCache.Models; using Microsoft.WindowsAzure.Commands.ScenarioTest; using System; using Xunit; diff --git a/src/RedisCache/RedisCache.sln b/src/RedisCache/RedisCache.sln index 9fa8d96985b3..58bc8274ab52 100644 --- a/src/RedisCache/RedisCache.sln +++ b/src/RedisCache/RedisCache.sln @@ -22,6 +22,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TestFx", "..\..\tools\TestF EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Storage", "..\Storage\Storage\Storage.csproj", "{A2591FA5-BF93-4358-9097-E6D58FE1DDC4}" EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RedisCache.Management.Sdk", "RedisCache.Management.Sdk\RedisCache.Management.Sdk.csproj", "{EEDFDE6B-AE01-4B15-9E07-2578A120F17D}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -60,6 +62,14 @@ Global {BC80A1D0-FFA4-43D9-AA74-799F5CB54B58}.Debug|Any CPU.Build.0 = Debug|Any CPU {BC80A1D0-FFA4-43D9-AA74-799F5CB54B58}.Release|Any CPU.ActiveCfg = Release|Any CPU {BC80A1D0-FFA4-43D9-AA74-799F5CB54B58}.Release|Any CPU.Build.0 = Release|Any CPU + {A2591FA5-BF93-4358-9097-E6D58FE1DDC4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A2591FA5-BF93-4358-9097-E6D58FE1DDC4}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A2591FA5-BF93-4358-9097-E6D58FE1DDC4}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A2591FA5-BF93-4358-9097-E6D58FE1DDC4}.Release|Any CPU.Build.0 = Release|Any CPU + {EEDFDE6B-AE01-4B15-9E07-2578A120F17D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {EEDFDE6B-AE01-4B15-9E07-2578A120F17D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {EEDFDE6B-AE01-4B15-9E07-2578A120F17D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {EEDFDE6B-AE01-4B15-9E07-2578A120F17D}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/RedisCache/RedisCache/Az.RedisCache.psd1 b/src/RedisCache/RedisCache/Az.RedisCache.psd1 index 0d0eabdfab3f..cd277363f3a9 100644 --- a/src/RedisCache/RedisCache/Az.RedisCache.psd1 +++ b/src/RedisCache/RedisCache/Az.RedisCache.psd1 @@ -57,7 +57,7 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.11.2'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Microsoft.Azure.Insights.dll', - 'Microsoft.Azure.Management.Redis.dll' + 'Microsoft.Azure.PowerShell.RedisCache.Management.Sdk.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() diff --git a/src/RedisCache/RedisCache/Commands/GetAzureRedisCache.cs b/src/RedisCache/RedisCache/Commands/GetAzureRedisCache.cs index 67ad754184e3..4acd4c8f68f9 100644 --- a/src/RedisCache/RedisCache/Commands/GetAzureRedisCache.cs +++ b/src/RedisCache/RedisCache/Commands/GetAzureRedisCache.cs @@ -18,7 +18,7 @@ namespace Microsoft.Azure.Commands.RedisCache using System.Collections.Generic; using System.Management.Automation; using Microsoft.Azure.Commands.RedisCache.Models; - using Microsoft.Azure.Management.Redis.Models; + using Microsoft.Azure.Management.RedisCache.Models; using Microsoft.Rest.Azure; using Properties; using ResourceManager.Common.ArgumentCompleters; diff --git a/src/RedisCache/RedisCache/Commands/GetAzureRedisCacheFirewallRule.cs b/src/RedisCache/RedisCache/Commands/GetAzureRedisCacheFirewallRule.cs index 60e64a320ed2..d28a256e46ca 100644 --- a/src/RedisCache/RedisCache/Commands/GetAzureRedisCacheFirewallRule.cs +++ b/src/RedisCache/RedisCache/Commands/GetAzureRedisCacheFirewallRule.cs @@ -16,11 +16,11 @@ namespace Microsoft.Azure.Commands.RedisCache { using Microsoft.Azure.Commands.RedisCache.Models; using Microsoft.Azure.Commands.RedisCache.Properties; - using Microsoft.Azure.Management.Redis.Models; using System.Collections.Generic; using System.Management.Automation; using Rest.Azure; using ResourceManager.Common.ArgumentCompleters; + using Microsoft.Azure.Management.RedisCache.Models; [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RedisCacheFirewallRule"), OutputType(typeof(PSRedisFirewallRule))] public class GetAzureRedisCacheFirewallRule : RedisCacheCmdletBase diff --git a/src/RedisCache/RedisCache/Commands/GetAzureRedisCacheKey.cs b/src/RedisCache/RedisCache/Commands/GetAzureRedisCacheKey.cs index 9c05ace12d53..58fdd3579548 100644 --- a/src/RedisCache/RedisCache/Commands/GetAzureRedisCacheKey.cs +++ b/src/RedisCache/RedisCache/Commands/GetAzureRedisCacheKey.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.Commands.RedisCache { - using Microsoft.Azure.Management.Redis.Models; + using Microsoft.Azure.Management.RedisCache.Models; using ResourceManager.Common.ArgumentCompleters; using System.Management.Automation; diff --git a/src/RedisCache/RedisCache/Commands/GetAzureRedisCacheLink.cs b/src/RedisCache/RedisCache/Commands/GetAzureRedisCacheLink.cs index e085da393403..75895c09c05f 100644 --- a/src/RedisCache/RedisCache/Commands/GetAzureRedisCacheLink.cs +++ b/src/RedisCache/RedisCache/Commands/GetAzureRedisCacheLink.cs @@ -16,12 +16,12 @@ namespace Microsoft.Azure.Commands.RedisCache { using Microsoft.Azure.Commands.RedisCache.Models; using Microsoft.Azure.Commands.RedisCache.Properties; - using Microsoft.Azure.Management.Redis.Models; using System.Collections.Generic; using System.Management.Automation; using Rest.Azure; using ResourceManager.Common.ArgumentCompleters; using System; + using Microsoft.Azure.Management.RedisCache.Models; [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RedisCacheLink", DefaultParameterSetName = AllLinksForCacheSet), OutputType(typeof(PSRedisLinkedServer))] public class GetAzureRedisCacheLink : RedisCacheCmdletBase diff --git a/src/RedisCache/RedisCache/Commands/GetAzureRedisCachePatchSchedule.cs b/src/RedisCache/RedisCache/Commands/GetAzureRedisCachePatchSchedule.cs index 9f582beccbee..6bed1391c972 100644 --- a/src/RedisCache/RedisCache/Commands/GetAzureRedisCachePatchSchedule.cs +++ b/src/RedisCache/RedisCache/Commands/GetAzureRedisCachePatchSchedule.cs @@ -16,13 +16,13 @@ namespace Microsoft.Azure.Commands.RedisCache { using Microsoft.Azure.Commands.RedisCache.Models; using Microsoft.Azure.Commands.RedisCache.Properties; - using Microsoft.Azure.Management.Redis.Models; using System; using System.Collections.Generic; using System.Management.Automation; using DayOfWeekEnum = System.DayOfWeek; using Rest.Azure; using ResourceManager.Common.ArgumentCompleters; + using Microsoft.Azure.Management.RedisCache.Models; [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RedisCachePatchSchedule"), OutputType(typeof(PSScheduleEntry))] public class GetAzureRedisCachePatchSchedule : RedisCacheCmdletBase diff --git a/src/RedisCache/RedisCache/Commands/NewAzureRedisCache.cs b/src/RedisCache/RedisCache/Commands/NewAzureRedisCache.cs index a5ce3c3d5aee..8664ba5e33a5 100644 --- a/src/RedisCache/RedisCache/Commands/NewAzureRedisCache.cs +++ b/src/RedisCache/RedisCache/Commands/NewAzureRedisCache.cs @@ -12,18 +12,19 @@ // limitations under the License. // ---------------------------------------------------------------------------------- +using Microsoft.Azure.Management.RedisCache.Models; + namespace Microsoft.Azure.Commands.RedisCache { using Microsoft.Azure.Commands.RedisCache.Models; using Microsoft.Azure.Commands.RedisCache.Properties; - using Microsoft.Azure.Management.Redis.Models; using Microsoft.Rest.Azure; using ResourceManager.Common.ArgumentCompleters; using System; using System.Collections; using System.Management.Automation; - using SkuStrings = Microsoft.Azure.Management.Redis.Models.SkuName; - using TlsStrings = Microsoft.Azure.Management.Redis.Models.TlsVersion; + using SkuStrings = SkuName; + using TlsStrings = TlsVersion; [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RedisCache", SupportsShouldProcess = true), OutputType(typeof(RedisCacheAttributesWithAccessKeys))] public class NewAzureRedisCache : RedisCacheCmdletBase diff --git a/src/RedisCache/RedisCache/Commands/NewAzureRedisCacheFirewallRule.cs b/src/RedisCache/RedisCache/Commands/NewAzureRedisCacheFirewallRule.cs index 758c0fa3e270..6d114f5c4bf1 100644 --- a/src/RedisCache/RedisCache/Commands/NewAzureRedisCacheFirewallRule.cs +++ b/src/RedisCache/RedisCache/Commands/NewAzureRedisCacheFirewallRule.cs @@ -16,10 +16,10 @@ namespace Microsoft.Azure.Commands.RedisCache { using Microsoft.Azure.Commands.RedisCache.Models; using Microsoft.Azure.Commands.RedisCache.Properties; - using Microsoft.Azure.Management.Redis.Models; using ResourceManager.Common.ArgumentCompleters; using System.Management.Automation; using Rest.Azure; + using Microsoft.Azure.Management.RedisCache.Models; [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RedisCacheFirewallRule", DefaultParameterSetName = NormalParameterSet, SupportsShouldProcess = true), OutputType(typeof(PSRedisFirewallRule))] public class NewAzureRedisCacheFirewallRule : RedisCacheCmdletBase diff --git a/src/RedisCache/RedisCache/Commands/NewAzureRedisCacheKey.cs b/src/RedisCache/RedisCache/Commands/NewAzureRedisCacheKey.cs index 0fcbac90decf..371205c0d1c5 100644 --- a/src/RedisCache/RedisCache/Commands/NewAzureRedisCacheKey.cs +++ b/src/RedisCache/RedisCache/Commands/NewAzureRedisCacheKey.cs @@ -15,7 +15,7 @@ namespace Microsoft.Azure.Commands.RedisCache { using Microsoft.Azure.Commands.RedisCache.Properties; - using Microsoft.Azure.Management.Redis.Models; + using Microsoft.Azure.Management.RedisCache.Models; using ResourceManager.Common.ArgumentCompleters; using System.Management.Automation; diff --git a/src/RedisCache/RedisCache/Commands/NewAzureRedisCacheLink.cs b/src/RedisCache/RedisCache/Commands/NewAzureRedisCacheLink.cs index 5e0d02830a82..52fc5f4849e6 100644 --- a/src/RedisCache/RedisCache/Commands/NewAzureRedisCacheLink.cs +++ b/src/RedisCache/RedisCache/Commands/NewAzureRedisCacheLink.cs @@ -16,11 +16,11 @@ namespace Microsoft.Azure.Commands.RedisCache { using Microsoft.Azure.Commands.RedisCache.Models; using Microsoft.Azure.Commands.RedisCache.Properties; - using Microsoft.Azure.Management.Redis.Models; using ResourceManager.Common.ArgumentCompleters; using System; using System.Management.Automation; using Rest.Azure; + using Microsoft.Azure.Management.RedisCache.Models; [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RedisCacheLink", SupportsShouldProcess = true), OutputType(typeof(PSRedisLinkedServer))] public class NewAzureRedisCacheLink : RedisCacheCmdletBase diff --git a/src/RedisCache/RedisCache/Commands/NewAzureRedisCachePatchSchedule.cs b/src/RedisCache/RedisCache/Commands/NewAzureRedisCachePatchSchedule.cs index 26b4f8979a63..78712cda2eaf 100644 --- a/src/RedisCache/RedisCache/Commands/NewAzureRedisCachePatchSchedule.cs +++ b/src/RedisCache/RedisCache/Commands/NewAzureRedisCachePatchSchedule.cs @@ -12,16 +12,17 @@ // limitations under the License. // ---------------------------------------------------------------------------------- +using Microsoft.Azure.Management.RedisCache.Models; + namespace Microsoft.Azure.Commands.RedisCache { using Microsoft.Azure.Commands.RedisCache.Models; using Microsoft.Azure.Commands.RedisCache.Properties; - using Microsoft.Azure.Management.Redis.Models; using ResourceManager.Common.ArgumentCompleters; using System; using System.Collections.Generic; using System.Management.Automation; - using DayOfWeekEnum = Management.Redis.Models.DayOfWeek; + using DayOfWeekEnum = DayOfWeek; [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RedisCachePatchSchedule", SupportsShouldProcess = true), OutputType(typeof(PSScheduleEntry))] public class NewAzureRedisCachePatchSchedule : RedisCacheCmdletBase diff --git a/src/RedisCache/RedisCache/Commands/RemoveAzureRedisCache.cs b/src/RedisCache/RedisCache/Commands/RemoveAzureRedisCache.cs index 2e1476f59793..98f5b212be5e 100644 --- a/src/RedisCache/RedisCache/Commands/RemoveAzureRedisCache.cs +++ b/src/RedisCache/RedisCache/Commands/RemoveAzureRedisCache.cs @@ -17,7 +17,6 @@ namespace Microsoft.Azure.Commands.RedisCache using Microsoft.Azure.Commands.RedisCache.Properties; using ResourceManager.Common.ArgumentCompleters; using System.Management.Automation; - using Management.Redis.Models; using System; [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RedisCache", SupportsShouldProcess = true),OutputType(typeof(bool))] diff --git a/src/RedisCache/RedisCache/Commands/RemoveAzureRedisCachePatchSchedule.cs b/src/RedisCache/RedisCache/Commands/RemoveAzureRedisCachePatchSchedule.cs index cd6bdfe321d8..e0855e19feab 100644 --- a/src/RedisCache/RedisCache/Commands/RemoveAzureRedisCachePatchSchedule.cs +++ b/src/RedisCache/RedisCache/Commands/RemoveAzureRedisCachePatchSchedule.cs @@ -16,7 +16,6 @@ namespace Microsoft.Azure.Commands.RedisCache { using Microsoft.Azure.Commands.RedisCache.Models; using Microsoft.Azure.Commands.RedisCache.Properties; - using Microsoft.Azure.Management.Redis.Models; using ResourceManager.Common.ArgumentCompleters; using System; using System.Collections.Generic; diff --git a/src/RedisCache/RedisCache/Commands/ResetAzureRedisCache.cs b/src/RedisCache/RedisCache/Commands/ResetAzureRedisCache.cs index b0f9cbfbfe42..748acea00944 100644 --- a/src/RedisCache/RedisCache/Commands/ResetAzureRedisCache.cs +++ b/src/RedisCache/RedisCache/Commands/ResetAzureRedisCache.cs @@ -12,14 +12,15 @@ // limitations under the License. // ---------------------------------------------------------------------------------- +using Microsoft.Azure.Management.RedisCache.Models; + namespace Microsoft.Azure.Commands.RedisCache { using System; using System.Collections.Generic; using System.Management.Automation; using Microsoft.Azure.Commands.RedisCache.Properties; - using Microsoft.Azure.Management.Redis.Models; - using RebootTypeStrings = Microsoft.Azure.Management.Redis.Models.RebootType; + using RebootTypeStrings = RebootType; using ResourceManager.Common.ArgumentCompleters; [Cmdlet("Reset", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RedisCache", SupportsShouldProcess = true), OutputType(typeof(bool))] diff --git a/src/RedisCache/RedisCache/Commands/SetAzureRedisCache.cs b/src/RedisCache/RedisCache/Commands/SetAzureRedisCache.cs index 60154ddbac81..ce5c517c81b3 100644 --- a/src/RedisCache/RedisCache/Commands/SetAzureRedisCache.cs +++ b/src/RedisCache/RedisCache/Commands/SetAzureRedisCache.cs @@ -12,17 +12,18 @@ // limitations under the License. // ---------------------------------------------------------------------------------- +using Microsoft.Azure.Management.RedisCache.Models; + namespace Microsoft.Azure.Commands.RedisCache { using Microsoft.Azure.Commands.RedisCache.Models; using Microsoft.Azure.Commands.RedisCache.Properties; - using Microsoft.Azure.Management.Redis.Models; using ResourceManager.Common.ArgumentCompleters; using System; using System.Collections; using System.Management.Automation; - using SkuStrings = Microsoft.Azure.Management.Redis.Models.SkuName; - using TlsStrings = Microsoft.Azure.Management.Redis.Models.TlsVersion; + using SkuStrings = SkuName; + using TlsStrings = TlsVersion; [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RedisCache", SupportsShouldProcess = true), OutputType(typeof(RedisCacheAttributesWithAccessKeys))] public class SetAzureRedisCache : RedisCacheCmdletBase diff --git a/src/RedisCache/RedisCache/Models/PSRedisFirewallRule.cs b/src/RedisCache/RedisCache/Models/PSRedisFirewallRule.cs index f5c03347a104..ae3948ad1bb8 100644 --- a/src/RedisCache/RedisCache/Models/PSRedisFirewallRule.cs +++ b/src/RedisCache/RedisCache/Models/PSRedisFirewallRule.cs @@ -15,7 +15,7 @@ namespace Microsoft.Azure.Commands.RedisCache.Models { using System; - using Management.Redis.Models; + using Microsoft.Azure.Management.RedisCache.Models; public class PSRedisFirewallRule { diff --git a/src/RedisCache/RedisCache/Models/PSRedisLinkedServer.cs b/src/RedisCache/RedisCache/Models/PSRedisLinkedServer.cs index d4aa16783cc9..8593e7f33ade 100644 --- a/src/RedisCache/RedisCache/Models/PSRedisLinkedServer.cs +++ b/src/RedisCache/RedisCache/Models/PSRedisLinkedServer.cs @@ -15,7 +15,7 @@ namespace Microsoft.Azure.Commands.RedisCache.Models { using System; - using Management.Redis.Models; + using Microsoft.Azure.Management.RedisCache.Models; public class PSRedisLinkedServer { diff --git a/src/RedisCache/RedisCache/Models/RedisCacheAttributes.cs b/src/RedisCache/RedisCache/Models/RedisCacheAttributes.cs index 6ed748db4fd3..fd3d2ce046a5 100644 --- a/src/RedisCache/RedisCache/Models/RedisCacheAttributes.cs +++ b/src/RedisCache/RedisCache/Models/RedisCacheAttributes.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.Commands.RedisCache.Models { - using Microsoft.Azure.Management.Redis.Models; + using Microsoft.Azure.Management.RedisCache.Models; using Newtonsoft.Json; using System.Collections.Generic; using System.Reflection; diff --git a/src/RedisCache/RedisCache/Models/RedisCacheAttributesWithAccessKeys.cs b/src/RedisCache/RedisCache/Models/RedisCacheAttributesWithAccessKeys.cs index 026365271bdd..d40119a77c3a 100644 --- a/src/RedisCache/RedisCache/Models/RedisCacheAttributesWithAccessKeys.cs +++ b/src/RedisCache/RedisCache/Models/RedisCacheAttributesWithAccessKeys.cs @@ -12,9 +12,10 @@ // limitations under the License. // ---------------------------------------------------------------------------------- +using Microsoft.Azure.Management.RedisCache.Models; + namespace Microsoft.Azure.Commands.RedisCache.Models { - using Microsoft.Azure.Management.Redis.Models; public class RedisCacheAttributesWithAccessKeys : RedisCacheAttributes { diff --git a/src/RedisCache/RedisCache/Models/RedisCacheClient.cs b/src/RedisCache/RedisCache/Models/RedisCacheClient.cs index 28b283533534..0b30e132a9b3 100644 --- a/src/RedisCache/RedisCache/Models/RedisCacheClient.cs +++ b/src/RedisCache/RedisCache/Models/RedisCacheClient.cs @@ -20,8 +20,6 @@ namespace Microsoft.Azure.Commands.RedisCache using Common.Authentication.Abstractions; using Microsoft.Azure.Management.Insights; using Microsoft.Azure.Management.Insights.Models; - using Microsoft.Azure.Management.Redis; - using Microsoft.Azure.Management.Redis.Models; using Microsoft.Azure.Management.Internal.Resources; using Microsoft.Rest.Azure; using System.Collections; @@ -30,6 +28,8 @@ namespace Microsoft.Azure.Commands.RedisCache using Models; using System; using Properties; + using Microsoft.Azure.Management.RedisCache; + using Microsoft.Azure.Management.RedisCache.Models; public class RedisCacheClient { @@ -59,7 +59,7 @@ public RedisResource CreateCache(string resourceGroupName, string cacheName, str var parameters = new RedisCreateParameters { Location = location, - Sku = new Microsoft.Azure.Management.Redis.Models.Sku + Sku = new Sku { Name = skuName, Family = skuFamily, @@ -144,7 +144,7 @@ public RedisResource UpdateCache(string resourceGroupName, string cacheName, str } var parameters = new RedisUpdateParameters { - Sku = new Microsoft.Azure.Management.Redis.Models.Sku + Sku = new Sku { Name = skuName, Family = skuFamily, @@ -260,7 +260,7 @@ public IPage ListCachesUsingNextLink(string resourceGroupName, st public RedisAccessKeys RegenerateAccessKeys(string resourceGroupName, string cacheName, RedisKeyType keyType) { - return _client.Redis.RegenerateKey(resourceGroupName: resourceGroupName, name: cacheName, parameters: new RedisRegenerateKeyParameters() { KeyType = keyType }); + return _client.Redis.RegenerateKey(resourceGroupName: resourceGroupName, name: cacheName, keyType); } public RedisAccessKeys GetAccessKeys(string resourceGroupName, string cacheName) @@ -318,8 +318,8 @@ public void RebootCache(string resourceGroupName, string cacheName, string reboo public IList SetPatchSchedules(string resourceGroupName, string cacheName, List schedules) { - var response = _client.PatchSchedules.CreateOrUpdate(resourceGroupName, cacheName, new RedisPatchSchedule { ScheduleEntries = schedules }); - return response.ScheduleEntries; + var response = _client.PatchSchedules.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, cacheName, schedules).Result; + return response.Body.ScheduleEntries; } public IList GetPatchSchedules(string resourceGroupName, string cacheName) @@ -339,7 +339,7 @@ public void RemovePatchSchedules(string resourceGroupName, string cacheName) internal RedisFirewallRule SetFirewallRule(string resourceGroupName, string cacheName, string ruleName, string startIP, string endIP) { - return _client.FirewallRules.CreateOrUpdate(resourceGroupName, cacheName, ruleName, new RedisFirewallRuleCreateParameters { StartIP = startIP, EndIP = endIP }); + return _client.FirewallRules.CreateOrUpdate(resourceGroupName, cacheName, ruleName, startIP, endIP); } internal RedisFirewallRule GetFirewallRule(string resourceGroupName, string cacheName, string ruleName) diff --git a/src/RedisCache/RedisCache/Models/Utility.cs b/src/RedisCache/RedisCache/Models/Utility.cs index 21b4a6d940b6..0ff8be319587 100644 --- a/src/RedisCache/RedisCache/Models/Utility.cs +++ b/src/RedisCache/RedisCache/Models/Utility.cs @@ -1,5 +1,5 @@ using Microsoft.Azure.Commands.RedisCache.Properties; -using Microsoft.Azure.Management.Redis.Models; +using Microsoft.Azure.Management.RedisCache.Models; using System; using System.Collections.Generic; diff --git a/src/RedisCache/RedisCache/RedisCache.csproj b/src/RedisCache/RedisCache/RedisCache.csproj index a42a1b5e40d9..1751861a8e49 100644 --- a/src/RedisCache/RedisCache/RedisCache.csproj +++ b/src/RedisCache/RedisCache/RedisCache.csproj @@ -12,7 +12,10 @@ - + + + + diff --git a/src/Relay/Relay/ChangeLog.md b/src/Relay/Relay/ChangeLog.md index c94578e549dc..846b573f7645 100644 --- a/src/Relay/Relay/ChangeLog.md +++ b/src/Relay/Relay/ChangeLog.md @@ -18,6 +18,9 @@ - Additional information about change #1 --> ## Upcoming Release +* Added breaking change message for cmdlets. + * `Set-AzRelayNamespace` + * `Get-AzRelayOperation` ## Version 1.0.3 * Update references in .psd1 to use relative path diff --git a/src/Relay/Relay/Cmdlets/Namespace/SetAzureRelayNamespace.cs b/src/Relay/Relay/Cmdlets/Namespace/SetAzureRelayNamespace.cs index 806ced9a1598..f0e517e99e4a 100644 --- a/src/Relay/Relay/Cmdlets/Namespace/SetAzureRelayNamespace.cs +++ b/src/Relay/Relay/Cmdlets/Namespace/SetAzureRelayNamespace.cs @@ -14,6 +14,7 @@ using Microsoft.Azure.Commands.Relay.Models; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.ResourceManager.Common.Tags; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System.Collections; using System.Collections.Generic; using System.Management.Automation; @@ -23,6 +24,7 @@ namespace Microsoft.Azure.Commands.Relay.Commands.Namespace /// /// 'Set-AzRelayNamespace' Cmdlet updates the specified Relay Namespace /// + [GenericBreakingChange("Set-AzRelayNamespace will be removed in an upcoming breaking change release, you can use Update-AzRelayNamespace in a future release", "2.0.0")] [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RelayNamespace", SupportsShouldProcess = true), OutputType(typeof(PSRelayNamespaceAttributes))] public class SetAzureRelayNamespace : AzureRelayCmdletBase { diff --git a/src/Relay/Relay/Cmdlets/Operations/GetAzureRelayOperations.cs b/src/Relay/Relay/Cmdlets/Operations/GetAzureRelayOperations.cs index 536390673d9b..4a2b26ea3558 100644 --- a/src/Relay/Relay/Cmdlets/Operations/GetAzureRelayOperations.cs +++ b/src/Relay/Relay/Cmdlets/Operations/GetAzureRelayOperations.cs @@ -17,12 +17,14 @@ using System.Collections.Generic; using System.Linq; using System.Management.Automation; +using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; namespace Microsoft.Azure.Commands.Relay.Commands.Namespace { /// /// 'Get-AzRelayOperation' Cmdlet retrive the Operations List /// + [GenericBreakingChange("Get-AzRelayOperation will be removed in an upcoming breaking change release. Please use 'Get-AzProviderOperation Microsoft.Relay/*'", "2.0.0")] [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RelayOperation"), OutputType(typeof(PSOperationAttributes))] public class GetAzureRmRelayOperation : AzureRelayCmdletBase { diff --git a/src/Resources/MSGraph.Autorest/docs/Get-AzADAppFederatedCredential.md b/src/Resources/MSGraph.Autorest/docs/Get-AzADAppFederatedCredential.md index e0d92e7a8e52..1115e1b793df 100644 --- a/src/Resources/MSGraph.Autorest/docs/Get-AzADAppFederatedCredential.md +++ b/src/Resources/MSGraph.Autorest/docs/Get-AzADAppFederatedCredential.md @@ -1,7 +1,7 @@ --- external help file: Module Name: Az.Resources -online version: https://learn.microsoft.com/powershell/module/az.resources/get-azadappfederatedidentitycredentials +online version: https://learn.microsoft.com/powershell/module/az.resources/get-azadappfederatedcredential schema: 2.0.0 --- diff --git a/src/Resources/MSGraph.Autorest/docs/New-AzADAppFederatedCredential.md b/src/Resources/MSGraph.Autorest/docs/New-AzADAppFederatedCredential.md index cc167cbb91a5..7daaf54097ce 100644 --- a/src/Resources/MSGraph.Autorest/docs/New-AzADAppFederatedCredential.md +++ b/src/Resources/MSGraph.Autorest/docs/New-AzADAppFederatedCredential.md @@ -1,7 +1,7 @@ --- external help file: Module Name: Az.Resources -online version: https://learn.microsoft.com/powershell/module/az.resources/new-azadappfederatedidentitycredential +online version: https://learn.microsoft.com/powershell/module/az.resources/new-azadappfederatedcredential schema: 2.0.0 --- diff --git a/src/Resources/Resources/help/Get-AzADAppFederatedCredential.md b/src/Resources/Resources/help/Get-AzADAppFederatedCredential.md index 6ec87903dcf8..b42743eb078e 100644 --- a/src/Resources/Resources/help/Get-AzADAppFederatedCredential.md +++ b/src/Resources/Resources/help/Get-AzADAppFederatedCredential.md @@ -1,7 +1,7 @@ --- external help file: Az.Resources-help.xml Module Name: Az.Resources -online version: https://learn.microsoft.com/powershell/module/az.resources/get-azadappfederatedidentitycredentials +online version: https://learn.microsoft.com/powershell/module/az.resources/get-azadappfederatedcredential schema: 2.0.0 --- diff --git a/src/Resources/Resources/help/Get-AzManagementGroupEntity.md b/src/Resources/Resources/help/Get-AzManagementGroupEntity.md index 2c73716b8dc8..8f80bb9ce452 100644 --- a/src/Resources/Resources/help/Get-AzManagementGroupEntity.md +++ b/src/Resources/Resources/help/Get-AzManagementGroupEntity.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Resources.dll-Help.xml Module Name: Az.Resources -online version: https://learn.microsoft.com/powershell/module/az.resources/get-azentities/ +online version: https://learn.microsoft.com/powershell/module/az.resources/get-azmanagementgroupentity schema: 2.0.0 --- @@ -41,8 +41,7 @@ TenantId : 6b2064b9-34bd-46e6-9092-52f2dd5f7fc0 DisplayName : TestGroupChildDisplayName ``` -### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet get all the ManagementGroupEntity under this tenant. ## PARAMETERS diff --git a/src/Resources/Resources/help/Get-AzManagementGroupHierarchySetting.md b/src/Resources/Resources/help/Get-AzManagementGroupHierarchySetting.md index e3eee5d8d711..0e8d8443990c 100644 --- a/src/Resources/Resources/help/Get-AzManagementGroupHierarchySetting.md +++ b/src/Resources/Resources/help/Get-AzManagementGroupHierarchySetting.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Resources.dll-Help.xml Module Name: Az.Resources -online version: https://learn.microsoft.com/powershell/module/az.resources/get-azmanagementgroup/ +online version: https://learn.microsoft.com/powershell/module/az.resources/get-azmanagementgrouphierarchysetting schema: 2.0.0 --- diff --git a/src/Resources/Resources/help/Get-AzManagementGroupNameAvailability.md b/src/Resources/Resources/help/Get-AzManagementGroupNameAvailability.md index 01981b55e1d1..13416d1b2b62 100644 --- a/src/Resources/Resources/help/Get-AzManagementGroupNameAvailability.md +++ b/src/Resources/Resources/help/Get-AzManagementGroupNameAvailability.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Resources.dll-Help.xml Module Name: Az.Resources -online version: https://learn.microsoft.com/powershell/module/az.resources/new-azmanagementgroupsubscription/ +online version: https://learn.microsoft.com/powershell/module/az.resources/get-azmanagementgroupnameavailability schema: 2.0.0 --- diff --git a/src/Resources/Resources/help/Get-AzManagementGroupSubscription.md b/src/Resources/Resources/help/Get-AzManagementGroupSubscription.md index 2beaf9b7f0c5..87d7bdab6172 100644 --- a/src/Resources/Resources/help/Get-AzManagementGroupSubscription.md +++ b/src/Resources/Resources/help/Get-AzManagementGroupSubscription.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Resources.dll-Help.xml Module Name: Az.Resources -online version: https://learn.microsoft.com/powershell/module/az.resources/new-azmanagementgroupsubscription/ +online version: https://learn.microsoft.com/powershell/module/az.resources/get-azmanagementgroupsubscription schema: 2.0.0 --- diff --git a/src/Resources/Resources/help/Get-AzTenantBackfillStatus.md b/src/Resources/Resources/help/Get-AzTenantBackfillStatus.md index a60a1000c64a..54491e1cc560 100644 --- a/src/Resources/Resources/help/Get-AzTenantBackfillStatus.md +++ b/src/Resources/Resources/help/Get-AzTenantBackfillStatus.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Resources.dll-Help.xml Module Name: Az.Resources -online version: https://learn.microsoft.com/powershell/module/az.resources/new-azmanagementgroupsubscription/ +online version: https://learn.microsoft.com/powershell/module/az.resources/get-aztenantbackfillstatus schema: 2.0.0 --- diff --git a/src/Resources/Resources/help/New-AzADAppFederatedCredential.md b/src/Resources/Resources/help/New-AzADAppFederatedCredential.md index 98f26ad4db16..8b2a717679cc 100644 --- a/src/Resources/Resources/help/New-AzADAppFederatedCredential.md +++ b/src/Resources/Resources/help/New-AzADAppFederatedCredential.md @@ -1,7 +1,7 @@ --- external help file: Az.Resources-help.xml Module Name: Az.Resources -online version: https://learn.microsoft.com/powershell/module/az.resources/new-azadappfederatedidentitycredential +online version: https://learn.microsoft.com/powershell/module/az.resources/new-azadappfederatedcredential schema: 2.0.0 --- diff --git a/src/Resources/Resources/help/New-AzManagementGroupHierarchySetting.md b/src/Resources/Resources/help/New-AzManagementGroupHierarchySetting.md index e19f26491fb9..0b9858030624 100644 --- a/src/Resources/Resources/help/New-AzManagementGroupHierarchySetting.md +++ b/src/Resources/Resources/help/New-AzManagementGroupHierarchySetting.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Resources.dll-Help.xml Module Name: Az.Resources -online version: https://learn.microsoft.com/powershell/module/az.resources/get-azmanagementgroup/ +online version: https://learn.microsoft.com/powershell/module/az.resources/new-azmanagementgrouphierarchysetting schema: 2.0.0 --- diff --git a/src/Resources/Resources/help/Remove-AzManagementGroupHierarchySetting.md b/src/Resources/Resources/help/Remove-AzManagementGroupHierarchySetting.md index 35ddba64342a..62cbd94a7969 100644 --- a/src/Resources/Resources/help/Remove-AzManagementGroupHierarchySetting.md +++ b/src/Resources/Resources/help/Remove-AzManagementGroupHierarchySetting.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Resources.dll-Help.xml Module Name: Az.Resources -online version: https://learn.microsoft.com/powershell/module/az.resources/get-azmanagementgroup/ +online version: https://learn.microsoft.com/powershell/module/az.resources/remove-azmanagementgrouphierarchysetting schema: 2.0.0 --- @@ -34,10 +34,6 @@ The Remove-AzManagementGroupHierarchySetting cmdlet Removes all hierarchy settin Remove-AzManagementGroupHierarchySetting -GroupName c7a87cda-9a66-4920-b0f8-869baa04efe0 ``` -```output - -``` - ## PARAMETERS ### -DefaultProfile diff --git a/src/Resources/Resources/help/Remove-AzPolicyAssignment.md b/src/Resources/Resources/help/Remove-AzPolicyAssignment.md index cb41e7121704..77da92281953 100644 --- a/src/Resources/Resources/help/Remove-AzPolicyAssignment.md +++ b/src/Resources/Resources/help/Remove-AzPolicyAssignment.md @@ -39,7 +39,7 @@ The **Remove-AzPolicyAssignment** cmdlet removes the specified policy assignment ### Example 1: Remove policy assignment by name and scope ```powershell $ResourceGroup = Get-AzResourceGroup -Name 'ResourceGroup11' -Remove-AzPolicyAssignment -Name 'PolicyAssignment07' -Scope $ResourceGroup.ResourceId -Confirm +Remove-AzPolicyAssignment -Name 'PolicyAssignment07' -Scope $ResourceGroup.ResourceId -Confirm:$false ``` The first command gets a resource group named ResourceGroup11 by using the Get-AzResourceGroup cmdlet. @@ -51,7 +51,7 @@ The **ResourceId** property of $ResourceGroup identifies the resource group. ```powershell $ResourceGroup = Get-AzResourceGroup -Name 'ResourceGroup11' $PolicyAssignment = Get-AzPolicyAssignment -Name 'PolicyAssignment07' -Scope $ResourceGroup.ResourceId -Remove-AzPolicyAssignment -Id $PolicyAssignment.ResourceId -Confirm +Remove-AzPolicyAssignment -Id $PolicyAssignment.ResourceId -Confirm:$false ``` The first command gets a resource group named ResourceGroup11, and then stores that object in the $ResourceGroup variable. diff --git a/src/Resources/Resources/help/Start-AzTenantBackfill.md b/src/Resources/Resources/help/Start-AzTenantBackfill.md index 77b8eb1a10d8..08e823a6c639 100644 --- a/src/Resources/Resources/help/Start-AzTenantBackfill.md +++ b/src/Resources/Resources/help/Start-AzTenantBackfill.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Resources.dll-Help.xml Module Name: Az.Resources -online version: https://learn.microsoft.com/powershell/module/az.resources/new-azmanagementgroupsubscription/ +online version: https://learn.microsoft.com/powershell/module/az.resources/start-aztenantbackfill schema: 2.0.0 --- diff --git a/src/Resources/Resources/help/Update-AzManagementGroupHierarchySetting.md b/src/Resources/Resources/help/Update-AzManagementGroupHierarchySetting.md index c05004e10247..d7a14be50792 100644 --- a/src/Resources/Resources/help/Update-AzManagementGroupHierarchySetting.md +++ b/src/Resources/Resources/help/Update-AzManagementGroupHierarchySetting.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Resources.dll-Help.xml Module Name: Az.Resources -online version: https://learn.microsoft.com/powershell/module/az.resources/get-azmanagementgroup/ +online version: https://learn.microsoft.com/powershell/module/az.resources/update-azmanagementgrouphierarchysetting schema: 2.0.0 --- diff --git a/src/Security/Security/help/Confirm-AzSecurityAutomation.md b/src/Security/Security/help/Confirm-AzSecurityAutomation.md index e75b3fafdabe..64eca5e1e3ba 100644 --- a/src/Security/Security/help/Confirm-AzSecurityAutomation.md +++ b/src/Security/Security/help/Confirm-AzSecurityAutomation.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Security.dll-Help.xml Module Name: Az.Security -online version: +online version: https://learn.microsoft.com/powershell/module/az.security/confirm-azsecurityautomation schema: 2.0.0 --- diff --git a/src/Security/Security/help/Get-AzAlertsSuppressionRule.md b/src/Security/Security/help/Get-AzAlertsSuppressionRule.md index 37aae35c6545..ff67c8b160bb 100644 --- a/src/Security/Security/help/Get-AzAlertsSuppressionRule.md +++ b/src/Security/Security/help/Get-AzAlertsSuppressionRule.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Security.dll-Help.xml Module Name: Az.Security -online version: +online version: https://learn.microsoft.com/powershell/module/az.security/get-azalertssuppressionrule schema: 2.0.0 --- diff --git a/src/Security/Security/help/Get-AzSecurityAutomation.md b/src/Security/Security/help/Get-AzSecurityAutomation.md index 0616f6fdc165..efe6477921b2 100644 --- a/src/Security/Security/help/Get-AzSecurityAutomation.md +++ b/src/Security/Security/help/Get-AzSecurityAutomation.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Security.dll-Help.xml Module Name: Az.Security -online version: +online version: https://learn.microsoft.com/powershell/module/az.security/get-azsecurityautomation schema: 2.0.0 --- diff --git a/src/Security/Security/help/New-AzAlertsSuppressionRuleScope.md b/src/Security/Security/help/New-AzAlertsSuppressionRuleScope.md index 3d47bb297c51..d30ec5a30e02 100644 --- a/src/Security/Security/help/New-AzAlertsSuppressionRuleScope.md +++ b/src/Security/Security/help/New-AzAlertsSuppressionRuleScope.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Security.dll-Help.xml Module Name: Az.Security -online version: +online version: https://learn.microsoft.com/powershell/module/az.security/new-azalertssuppressionrulescope schema: 2.0.0 --- diff --git a/src/Security/Security/help/New-AzSecurityAutomation.md b/src/Security/Security/help/New-AzSecurityAutomation.md index f40f5b283c4d..f343401192ce 100644 --- a/src/Security/Security/help/New-AzSecurityAutomation.md +++ b/src/Security/Security/help/New-AzSecurityAutomation.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Security.dll-Help.xml Module Name: Az.Security -online version: +online version: https://learn.microsoft.com/powershell/module/az.security/new-azsecurityautomation schema: 2.0.0 --- diff --git a/src/Security/Security/help/New-AzSecurityAutomationActionObject.md b/src/Security/Security/help/New-AzSecurityAutomationActionObject.md index 39262c696035..88ec32d92d41 100644 --- a/src/Security/Security/help/New-AzSecurityAutomationActionObject.md +++ b/src/Security/Security/help/New-AzSecurityAutomationActionObject.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Security.dll-Help.xml Module Name: Az.Security -online version: +online version: https://learn.microsoft.com/powershell/module/az.security/new-azsecurityautomationactionobject schema: 2.0.0 --- diff --git a/src/Security/Security/help/New-AzSecurityAutomationRuleObject.md b/src/Security/Security/help/New-AzSecurityAutomationRuleObject.md index 884cbcd955ed..12ae641a033e 100644 --- a/src/Security/Security/help/New-AzSecurityAutomationRuleObject.md +++ b/src/Security/Security/help/New-AzSecurityAutomationRuleObject.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Security.dll-Help.xml Module Name: Az.Security -online version: +online version: https://learn.microsoft.com/powershell/module/az.security/new-azsecurityautomationruleobject schema: 2.0.0 --- diff --git a/src/Security/Security/help/New-AzSecurityAutomationRuleSetObject.md b/src/Security/Security/help/New-AzSecurityAutomationRuleSetObject.md index 5c8b119299fb..cdd907fb1042 100644 --- a/src/Security/Security/help/New-AzSecurityAutomationRuleSetObject.md +++ b/src/Security/Security/help/New-AzSecurityAutomationRuleSetObject.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Security.dll-Help.xml Module Name: Az.Security -online version: +online version: https://learn.microsoft.com/powershell/module/az.security/new-azsecurityautomationrulesetobject schema: 2.0.0 --- diff --git a/src/Security/Security/help/New-AzSecurityAutomationScopeObject.md b/src/Security/Security/help/New-AzSecurityAutomationScopeObject.md index 2109d2e3a85f..90ac9625c068 100644 --- a/src/Security/Security/help/New-AzSecurityAutomationScopeObject.md +++ b/src/Security/Security/help/New-AzSecurityAutomationScopeObject.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Security.dll-Help.xml Module Name: Az.Security -online version: +online version: https://learn.microsoft.com/powershell/module/az.security/new-azsecurityautomationscopeobject schema: 2.0.0 --- diff --git a/src/Security/Security/help/New-AzSecurityAutomationSourceObject.md b/src/Security/Security/help/New-AzSecurityAutomationSourceObject.md index 0984d0d2d5ed..2fe245725365 100644 --- a/src/Security/Security/help/New-AzSecurityAutomationSourceObject.md +++ b/src/Security/Security/help/New-AzSecurityAutomationSourceObject.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Security.dll-Help.xml Module Name: Az.Security -online version: +online version: https://learn.microsoft.com/powershell/module/az.security/new-azsecurityautomationsourceobject schema: 2.0.0 --- diff --git a/src/Security/Security/help/Remove-AzAlertsSuppressionRule.md b/src/Security/Security/help/Remove-AzAlertsSuppressionRule.md index 97025322a204..e6078e71228b 100644 --- a/src/Security/Security/help/Remove-AzAlertsSuppressionRule.md +++ b/src/Security/Security/help/Remove-AzAlertsSuppressionRule.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Security.dll-Help.xml Module Name: Az.Security -online version: +online version: https://learn.microsoft.com/powershell/module/az.security/remove-azalertssuppressionrule schema: 2.0.0 --- diff --git a/src/Security/Security/help/Remove-AzSecurityAutomation.md b/src/Security/Security/help/Remove-AzSecurityAutomation.md index b1e0077d873d..51c4a880196f 100644 --- a/src/Security/Security/help/Remove-AzSecurityAutomation.md +++ b/src/Security/Security/help/Remove-AzSecurityAutomation.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Security.dll-Help.xml Module Name: Az.Security -online version: +online version: https://learn.microsoft.com/powershell/module/az.security/remove-azsecurityautomation schema: 2.0.0 --- diff --git a/src/Security/Security/help/Set-AzAlertsSuppressionRule.md b/src/Security/Security/help/Set-AzAlertsSuppressionRule.md index 892d0a10d52f..de2fdac2b879 100644 --- a/src/Security/Security/help/Set-AzAlertsSuppressionRule.md +++ b/src/Security/Security/help/Set-AzAlertsSuppressionRule.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Security.dll-Help.xml Module Name: Az.Security -online version: +online version: https://learn.microsoft.com/powershell/module/az.security/set-azalertssuppressionrule schema: 2.0.0 --- diff --git a/src/Security/Security/help/Set-AzSecurityAutomation.md b/src/Security/Security/help/Set-AzSecurityAutomation.md index 354af08f31b5..d6de45792338 100644 --- a/src/Security/Security/help/Set-AzSecurityAutomation.md +++ b/src/Security/Security/help/Set-AzSecurityAutomation.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Security.dll-help.xml Module Name: Az.Security -online version: +online version: https://learn.microsoft.com/powershell/module/az.security/set-azsecurityautomation schema: 2.0.0 --- diff --git a/src/ServiceBus/ServiceBus.Autorest/Az.ServiceBus.format.ps1xml b/src/ServiceBus/ServiceBus.Autorest/Az.ServiceBus.format.ps1xml index 9abe20b0e543..b4bca4af95d0 100644 --- a/src/ServiceBus/ServiceBus.Autorest/Az.ServiceBus.format.ps1xml +++ b/src/ServiceBus/ServiceBus.Autorest/Az.ServiceBus.format.ps1xml @@ -2,9 +2,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.CorrelationFilterProperties + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.CorrelationFilterProperties - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.CorrelationFilterProperties + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.CorrelationFilterProperties @@ -24,9 +24,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ResourceNamespacePatchTags + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ResourceNamespacePatchTags - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ResourceNamespacePatchTags + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ResourceNamespacePatchTags diff --git a/src/ServiceBus/ServiceBus.Autorest/Az.ServiceBus.psm1 b/src/ServiceBus/ServiceBus.Autorest/Az.ServiceBus.psm1 index 96dd9ae14bc8..9bf11dbf75f6 100644 --- a/src/ServiceBus/ServiceBus.Autorest/Az.ServiceBus.psm1 +++ b/src/ServiceBus/ServiceBus.Autorest/Az.ServiceBus.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/ServiceBus/ServiceBus.Autorest/README.md b/src/ServiceBus/ServiceBus.Autorest/README.md index c888a6a01637..e9d66923072f 100644 --- a/src/ServiceBus/ServiceBus.Autorest/README.md +++ b/src/ServiceBus/ServiceBus.Autorest/README.md @@ -31,23 +31,23 @@ For information on how to develop for `Az.ServiceBus`, see [how-to.md](how-to.md ``` yaml # Please specify the commit id that includes your features to make sure generated codes stable. -branch: 6f0c7d58c0a923917c2b3467ee756f21dbd2f8e2 +branch: 1e790cfc5ee4e7ff98f99dd19a3174c4dd58432b require: # readme.azure.noprofile.md is the common configuration file - $(this-folder)/../../readme.azure.noprofile.md input-file: # You need to specify your swagger files here. - - https://github.com/Azure/azure-rest-api-specs/blob/main/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2022-01-01-preview/Queue.json - - https://github.com/Azure/azure-rest-api-specs/blob/main/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2022-01-01-preview/topics.json - - https://github.com/Azure/azure-rest-api-specs/blob/main/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2022-01-01-preview/namespace-preview.json - - https://github.com/Azure/azure-rest-api-specs/blob/main/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2022-01-01-preview/AuthorizationRules.json - - https://github.com/Azure/azure-rest-api-specs/blob/main/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2022-01-01-preview/CheckNameAvailability.json - - https://github.com/Azure/azure-rest-api-specs/blob/main/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2022-01-01-preview/DisasterRecoveryConfig.json - - https://github.com/Azure/azure-rest-api-specs/blob/main/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2022-01-01-preview/migrationconfigs.json - - https://github.com/Azure/azure-rest-api-specs/blob/main/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2022-01-01-preview/networksets.json - - https://github.com/Azure/azure-rest-api-specs/blob/main/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2022-01-01-preview/operations.json - - https://github.com/Azure/azure-rest-api-specs/blob/main/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2022-01-01-preview/Rules.json - - https://github.com/Azure/azure-rest-api-specs/blob/main/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2022-01-01-preview/subscriptions.json + - https://github.com/Azure/azure-rest-api-specs/blob/main/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2022-10-01-preview/Queue.json + - https://github.com/Azure/azure-rest-api-specs/blob/main/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2022-10-01-preview/topics.json + - https://github.com/Azure/azure-rest-api-specs/blob/main/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2022-10-01-preview/namespace-preview.json + - https://github.com/Azure/azure-rest-api-specs/blob/main/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2022-10-01-preview/AuthorizationRules.json + - https://github.com/Azure/azure-rest-api-specs/blob/main/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2022-10-01-preview/CheckNameAvailability.json + - https://github.com/Azure/azure-rest-api-specs/blob/main/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2022-10-01-preview/DisasterRecoveryConfig.json + - https://github.com/Azure/azure-rest-api-specs/blob/main/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2022-10-01-preview/migrationconfigs.json + - https://github.com/Azure/azure-rest-api-specs/blob/main/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2022-10-01-preview/networksets.json + - https://github.com/Azure/azure-rest-api-specs/blob/main/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2022-10-01-preview/operations.json + - https://github.com/Azure/azure-rest-api-specs/blob/main/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2022-10-01-preview/Rules.json + - https://github.com/Azure/azure-rest-api-specs/blob/main/specification/servicebus/resource-manager/Microsoft.ServiceBus/preview/2022-10-01-preview/subscriptions.json # If the swagger has not been put in the repo, you may uncomment the following line and refer to it locally # - (this-folder)/relative-path-to-your-swagger diff --git a/src/ServiceBus/ServiceBus.Autorest/custom/Approve-AzServiceBusPrivateEndpointConnection.ps1 b/src/ServiceBus/ServiceBus.Autorest/custom/Approve-AzServiceBusPrivateEndpointConnection.ps1 index 2b86f24072ae..2b21ea0c6950 100644 --- a/src/ServiceBus/ServiceBus.Autorest/custom/Approve-AzServiceBusPrivateEndpointConnection.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/custom/Approve-AzServiceBusPrivateEndpointConnection.ps1 @@ -20,7 +20,7 @@ Approves a ServiceBus PrivateEndpointConnection #> function Approve-AzServiceBusPrivateEndpointConnection{ - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection])] [CmdletBinding(DefaultParameterSetName = 'SetExpanded', PositionalBinding = $false, ConfirmImpact = 'Medium')] param( [Parameter(ParameterSetName = 'SetExpanded', HelpMessage = "The name of the Private Endpoint Connection")] diff --git a/src/ServiceBus/ServiceBus.Autorest/custom/Deny-AzServiceBusPrivateEndpointConnection.ps1 b/src/ServiceBus/ServiceBus.Autorest/custom/Deny-AzServiceBusPrivateEndpointConnection.ps1 index 134788b03b1d..2123760313f8 100644 --- a/src/ServiceBus/ServiceBus.Autorest/custom/Deny-AzServiceBusPrivateEndpointConnection.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/custom/Deny-AzServiceBusPrivateEndpointConnection.ps1 @@ -20,7 +20,7 @@ Denies a ServiceBus PrivateEndpointConnection #> function Deny-AzServiceBusPrivateEndpointConnection{ - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection])] [CmdletBinding(DefaultParameterSetName = 'SetExpanded', PositionalBinding = $false, ConfirmImpact = 'Medium')] param( [Parameter(ParameterSetName = 'SetExpanded', HelpMessage = "The name of the Private Endpoint Connection")] diff --git a/src/ServiceBus/ServiceBus.Autorest/custom/Get-AzServiceBusAuthorizationRule.ps1 b/src/ServiceBus/ServiceBus.Autorest/custom/Get-AzServiceBusAuthorizationRule.ps1 index e13b13eda4b0..450d5de3e758 100644 --- a/src/ServiceBus/ServiceBus.Autorest/custom/Get-AzServiceBusAuthorizationRule.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/custom/Get-AzServiceBusAuthorizationRule.ps1 @@ -20,7 +20,7 @@ Gets the Authorization Rule of a ServiceBus namespace, queue or topic. #> function Get-AzServiceBusAuthorizationRule{ - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule])] [CmdletBinding(DefaultParameterSetName = 'GetExpandedNamespace', PositionalBinding = $false, ConfirmImpact = 'Medium')] param( [Parameter(ParameterSetName = 'GetExpandedQueue', HelpMessage = "The name of the Authorization Rule")] diff --git a/src/ServiceBus/ServiceBus.Autorest/custom/Get-AzServiceBusKey.ps1 b/src/ServiceBus/ServiceBus.Autorest/custom/Get-AzServiceBusKey.ps1 index 72159a9b6e02..799ba818b236 100644 --- a/src/ServiceBus/ServiceBus.Autorest/custom/Get-AzServiceBusKey.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/custom/Get-AzServiceBusKey.ps1 @@ -20,7 +20,7 @@ Gets the SASKey of a ServiceBus namespace, queue or topic. #> function Get-AzServiceBusKey{ - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys])] [CmdletBinding(DefaultParameterSetName = 'GetExpandedNamespace', PositionalBinding = $false, ConfirmImpact = 'Medium')] param( [Parameter(ParameterSetName = 'GetExpandedQueue', Mandatory, HelpMessage = "The name of the Authorization Rule")] diff --git a/src/ServiceBus/ServiceBus.Autorest/custom/New-AzServiceBusAuthorizationRule.ps1 b/src/ServiceBus/ServiceBus.Autorest/custom/New-AzServiceBusAuthorizationRule.ps1 index ab063aafeb84..c99ed84526ca 100644 --- a/src/ServiceBus/ServiceBus.Autorest/custom/New-AzServiceBusAuthorizationRule.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/custom/New-AzServiceBusAuthorizationRule.ps1 @@ -20,7 +20,7 @@ Creates a ServiceBus Namespace, Queue, Topic Authorization Rule #> function New-AzServiceBusAuthorizationRule{ - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule])] [CmdletBinding(DefaultParameterSetName = 'NewExpandedNamespace', PositionalBinding = $false, SupportsShouldProcess, ConfirmImpact = 'Medium')] param( [Parameter(Mandatory, HelpMessage = "The name of the Authorization Rule")] @@ -134,7 +134,7 @@ function New-AzServiceBusAuthorizationRule{ $null = $PSBoundParameters.Remove('WhatIf') $null = $PSBoundParameters.Remove('Confirm') - $authRule = [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule]@{ + $authRule = [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule]@{ Rights = $Rights } diff --git a/src/ServiceBus/ServiceBus.Autorest/custom/New-AzServiceBusIPRuleConfig.ps1 b/src/ServiceBus/ServiceBus.Autorest/custom/New-AzServiceBusIPRuleConfig.ps1 index 6fb68d9f8dc5..ad14abdbe9e4 100644 --- a/src/ServiceBus/ServiceBus.Autorest/custom/New-AzServiceBusIPRuleConfig.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/custom/New-AzServiceBusIPRuleConfig.ps1 @@ -19,7 +19,7 @@ Constructs an INwRuleSetIPRules object that can be fed as input to Set-AzService Constructs an INwRuleSetIPRules object that can be fed as input to Set-AzServiceBusNetworkRuleSet #> function New-AzServiceBusIPRuleConfig{ - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRules])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRules])] [CmdletBinding(PositionalBinding = $false, ConfirmImpact = 'Medium')] param( [Parameter(Mandatory, HelpMessage = "IP Mask")] @@ -35,7 +35,7 @@ function New-AzServiceBusIPRuleConfig{ process{ try{ - $ipRule = [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRules]@{ + $ipRule = [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRules]@{ IPMask = $IPMask Action = $Action } diff --git a/src/ServiceBus/ServiceBus.Autorest/custom/New-AzServiceBusKey.ps1 b/src/ServiceBus/ServiceBus.Autorest/custom/New-AzServiceBusKey.ps1 index e294d21fdbf8..5df239331ff3 100644 --- a/src/ServiceBus/ServiceBus.Autorest/custom/New-AzServiceBusKey.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/custom/New-AzServiceBusKey.ps1 @@ -20,7 +20,7 @@ Regenerates the SASKey of a ServiceBus namespace, queue or topic. #> function New-AzServiceBusKey{ - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys])] [CmdletBinding(DefaultParameterSetName = 'NewExpandedNamespace', PositionalBinding = $false, SupportsShouldProcess, ConfirmImpact = 'Medium')] param( [Parameter(ParameterSetName = 'NewExpandedQueue', Mandatory, HelpMessage = "The name of the Authorization Rule")] @@ -149,7 +149,7 @@ function New-AzServiceBusKey{ $null = $PSBoundParameters.Remove('WhatIf') $null = $PSBoundParameters.Remove('Confirm') - $accessKeys = [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParameters]@{ + $accessKeys = [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParameters]@{ KeyType = $KeyType } diff --git a/src/ServiceBus/ServiceBus.Autorest/custom/New-AzServiceBusNamespaceV2.ps1 b/src/ServiceBus/ServiceBus.Autorest/custom/New-AzServiceBusNamespaceV2.ps1 index 93c52aa986a7..a380c8983ae3 100644 --- a/src/ServiceBus/ServiceBus.Autorest/custom/New-AzServiceBusNamespaceV2.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/custom/New-AzServiceBusNamespaceV2.ps1 @@ -20,7 +20,7 @@ Creates a new ServiceBus namespace. #> function New-AzServiceBusNamespaceV2{ - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace])] [CmdletBinding(PositionalBinding = $false, SupportsShouldProcess, ConfirmImpact = 'Medium')] param( [Parameter(Mandatory, HelpMessage = "The name of ServiceBusNamespace")] @@ -57,9 +57,14 @@ function New-AzServiceBusNamespaceV2{ [Parameter(HelpMessage = "Properties of KeyVault")] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties[]] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties[]] ${KeyVaultProperty}, + [Parameter(HelpMessage = "The number of partitions of a Service Bus namespace. This property is only applicable to Premium SKU namespaces. The default value is 1 and possible values are 1, 2 and 4")] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] + [System.Int32] + ${PremiumMessagingPartition}, + [Parameter(HelpMessage = "Enable Infrastructure Encryption (Double Encryption)")] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] [System.Management.Automation.SwitchParameter] @@ -179,7 +184,7 @@ function New-AzServiceBusNamespaceV2{ $identityHashTable = @{} foreach ($resourceID in $UserAssignedIdentityId){ - $identityHashTable.Add($resourceID, [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.UserAssignedIdentity]::new()) + $identityHashTable.Add($resourceID, [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.UserAssignedIdentity]::new()) } $PSBoundParameters.Add("UserAssignedIdentity", $identityHashTable) diff --git a/src/ServiceBus/ServiceBus.Autorest/custom/New-AzServiceBusVirtualNetworkRuleConfig.ps1 b/src/ServiceBus/ServiceBus.Autorest/custom/New-AzServiceBusVirtualNetworkRuleConfig.ps1 index d93aaffa12c9..895c82c81ef7 100644 --- a/src/ServiceBus/ServiceBus.Autorest/custom/New-AzServiceBusVirtualNetworkRuleConfig.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/custom/New-AzServiceBusVirtualNetworkRuleConfig.ps1 @@ -19,7 +19,7 @@ Constructs an INwRuleSetIPRules object that can be fed as input to Set-AzService Constructs an INwRuleSetIPRules object that can be fed as input to Set-AzServiceBusNetworkRuleSet #> function New-AzServiceBusVirtualNetworkRuleConfig{ - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRules])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRules])] [CmdletBinding(PositionalBinding = $false, ConfirmImpact = 'Medium')] param( [Parameter(Mandatory, HelpMessage = "Resource ID of Virtual Network Subnet")] @@ -35,7 +35,7 @@ function New-AzServiceBusVirtualNetworkRuleConfig{ process{ try{ - $virtualNetworkRule = [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRules]@{ + $virtualNetworkRule = [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRules]@{ SubnetId = $SubnetId } diff --git a/src/ServiceBus/ServiceBus.Autorest/custom/README.md b/src/ServiceBus/ServiceBus.Autorest/custom/README.md index 6d90531d9894..c53952101fab 100644 --- a/src/ServiceBus/ServiceBus.Autorest/custom/README.md +++ b/src/ServiceBus/ServiceBus.Autorest/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.ServiceBus.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.ServiceBus.DoNotExportAttribute` - Used in C# and script cmdlets to suppress creating an exported cmdlet at build-time. These cmdlets will *not be exposed* by `Az.ServiceBus`. - `Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExportAttribute` diff --git a/src/ServiceBus/ServiceBus.Autorest/custom/Remove-AzServiceBusAuthorizationRule.ps1 b/src/ServiceBus/ServiceBus.Autorest/custom/Remove-AzServiceBusAuthorizationRule.ps1 index e5a90a5c2688..a71f268a0bdf 100644 --- a/src/ServiceBus/ServiceBus.Autorest/custom/Remove-AzServiceBusAuthorizationRule.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/custom/Remove-AzServiceBusAuthorizationRule.ps1 @@ -20,7 +20,7 @@ Removes the Authorization Rule of a ServiceBus Namespace, Queue or Topic #> function Remove-AzServiceBusAuthorizationRule{ - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule])] [CmdletBinding(DefaultParameterSetName = 'RemoveExpandedNamespace', PositionalBinding = $false, SupportsShouldProcess, ConfirmImpact = 'Medium')] param( [Parameter(ParameterSetName = 'RemoveExpandedQueue', Mandatory, HelpMessage = "The name of the Authorization Rule")] diff --git a/src/ServiceBus/ServiceBus.Autorest/custom/Set-AzServiceBusAuthorizationRule.ps1 b/src/ServiceBus/ServiceBus.Autorest/custom/Set-AzServiceBusAuthorizationRule.ps1 index 826a7aab736e..5f26fb4d1ffe 100644 --- a/src/ServiceBus/ServiceBus.Autorest/custom/Set-AzServiceBusAuthorizationRule.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/custom/Set-AzServiceBusAuthorizationRule.ps1 @@ -20,7 +20,7 @@ Updates the authorization rule of a ServiceBus namespace, queue or topic. #> function Set-AzServiceBusAuthorizationRule{ - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule])] [CmdletBinding(DefaultParameterSetName = 'SetExpandedNamespace', PositionalBinding = $false, SupportsShouldProcess, ConfirmImpact = 'Medium')] param( [Parameter(ParameterSetName = 'SetExpandedTopic', Mandatory, HelpMessage = "The name of the Authorization Rule")] diff --git a/src/ServiceBus/ServiceBus.Autorest/custom/Set-AzServiceBusNamespaceV2.ps1 b/src/ServiceBus/ServiceBus.Autorest/custom/Set-AzServiceBusNamespaceV2.ps1 index f933561f8959..e1ec9aa6307b 100644 --- a/src/ServiceBus/ServiceBus.Autorest/custom/Set-AzServiceBusNamespaceV2.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/custom/Set-AzServiceBusNamespaceV2.ps1 @@ -20,7 +20,7 @@ Updates a ServiceBus namespace #> function Set-AzServiceBusNamespaceV2{ - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace])] [CmdletBinding(DefaultParameterSetName = 'SetExpanded', PositionalBinding = $false, SupportsShouldProcess, ConfirmImpact = 'Medium')] param( [Parameter(ParameterSetName = 'SetExpanded', Mandatory, HelpMessage = "The name of ServiceBusNamespace")] @@ -59,7 +59,7 @@ function Set-AzServiceBusNamespaceV2{ [Parameter(HelpMessage = "Properties of KeyVault")] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties[]] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties[]] ${KeyVaultProperty}, [Parameter(HelpMessage = "Enable Infrastructure Encryption (Double Encryption)")] @@ -206,7 +206,7 @@ function Set-AzServiceBusNamespaceV2{ $identityHashTable = @{} foreach ($resourceID in $UserAssignedIdentityId){ - $identityHashTable.Add($resourceID, [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.UserAssignedIdentity]::new()) + $identityHashTable.Add($resourceID, [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.UserAssignedIdentity]::new()) } $serviceBusNamespace.UserAssignedIdentity = $identityHashTable diff --git a/src/ServiceBus/ServiceBus.Autorest/custom/Set-AzServiceBusNetworkRuleSet.ps1 b/src/ServiceBus/ServiceBus.Autorest/custom/Set-AzServiceBusNetworkRuleSet.ps1 index 4e670d15c500..9703283dc067 100644 --- a/src/ServiceBus/ServiceBus.Autorest/custom/Set-AzServiceBusNetworkRuleSet.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/custom/Set-AzServiceBusNetworkRuleSet.ps1 @@ -20,7 +20,7 @@ Updates the NetworkRuleSet of a ServiceBus namespace #> function Set-AzServiceBusNetworkRuleSet{ - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet])] [CmdletBinding(DefaultParameterSetName = 'SetExpanded', PositionalBinding = $false, SupportsShouldProcess, ConfirmImpact = 'Medium')] param( [Parameter(ParameterSetName = 'SetExpanded', Mandatory, HelpMessage = "The name of ServiceBus namespace")] @@ -70,13 +70,13 @@ function Set-AzServiceBusNetworkRuleSet{ [Parameter(HelpMessage = "List of IpRules")] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRules[]] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRules[]] # List of IpRules ${IPRule}, [Parameter(HelpMessage = "List of VirtualNetwork Rules")] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRules[]] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRules[]] # List of VirtualNetwork Rules ${VirtualNetworkRule}, diff --git a/src/ServiceBus/ServiceBus.Autorest/custom/Set-AzServiceBusQueue.ps1 b/src/ServiceBus/ServiceBus.Autorest/custom/Set-AzServiceBusQueue.ps1 index 1c7a098e9ae9..e6241c348fa0 100644 --- a/src/ServiceBus/ServiceBus.Autorest/custom/Set-AzServiceBusQueue.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/custom/Set-AzServiceBusQueue.ps1 @@ -20,7 +20,7 @@ Updates a ServiceBus Queue #> function Set-AzServiceBusQueue{ - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue])] [CmdletBinding(DefaultParameterSetName = 'SetExpanded', PositionalBinding = $false, SupportsShouldProcess, ConfirmImpact = 'Medium')] param( [Parameter(ParameterSetName = 'SetExpanded', Mandatory, HelpMessage = "The name of the Queue.")] @@ -287,22 +287,6 @@ function Set-AzServiceBusQueue{ $PSBoundParameters.Add('AsJob', $true) } - if ($queue.DefaultMessageTimeToLive -gt (New-TimeSpan -Days 10675197)) { - $queue.DefaultMessageTimeToLive = (New-TimeSpan -Days 10675197) - } - - if ($queue.AutoDeleteOnIdle -gt (New-TimeSpan -Days 10675197)) { - $queue.AutoDeleteOnIdle = (New-TimeSpan -Days 10675197) - } - - if ($queue.DuplicateDetectionHistoryTimeWindow -gt (New-TimeSpan -Days 10675197)) { - $queue.DuplicateDetectionHistoryTimeWindow = (New-TimeSpan -Days 10675197) - } - - if ($queue.LockDuration -gt (New-TimeSpan -Days 10675197)) { - $queue.LockDuration = (New-TimeSpan -Days 10675197) - } - if ($PSCmdlet.ShouldProcess("ServiceBus Queue $($queue.Name)", "Create or update")) { Az.ServiceBus.private\New-AzServiceBusQueue_CreateViaIdentity -InputObject $queue -Parameter $queue @PSBoundParameters } diff --git a/src/ServiceBus/ServiceBus.Autorest/custom/Set-AzServiceBusRule.ps1 b/src/ServiceBus/ServiceBus.Autorest/custom/Set-AzServiceBusRule.ps1 index 3a20a941ab7d..f047b70744ba 100644 --- a/src/ServiceBus/ServiceBus.Autorest/custom/Set-AzServiceBusRule.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/custom/Set-AzServiceBusRule.ps1 @@ -20,7 +20,7 @@ Updates a ServiceBus Rule #> function Set-AzServiceBusRule{ - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule])] [CmdletBinding(DefaultParameterSetName = 'SetExpanded', PositionalBinding = $false, SupportsShouldProcess, ConfirmImpact = 'Medium')] param( [Parameter(ParameterSetName = 'SetExpanded', Mandatory, HelpMessage = "The name of the Rule.")] diff --git a/src/ServiceBus/ServiceBus.Autorest/custom/Set-AzServiceBusSubscription.ps1 b/src/ServiceBus/ServiceBus.Autorest/custom/Set-AzServiceBusSubscription.ps1 index d5aea6accd02..530a6d820da7 100644 --- a/src/ServiceBus/ServiceBus.Autorest/custom/Set-AzServiceBusSubscription.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/custom/Set-AzServiceBusSubscription.ps1 @@ -20,7 +20,7 @@ Updates a ServiceBus Subscription #> function Set-AzServiceBusSubscription{ - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription])] [CmdletBinding(DefaultParameterSetName = 'SetExpanded', PositionalBinding = $false, SupportsShouldProcess, ConfirmImpact = 'Medium')] param( [Parameter(ParameterSetName = 'SetExpanded', Mandatory, HelpMessage = "The name of the Subscription.")] @@ -271,22 +271,6 @@ function Set-AzServiceBusSubscription{ $PSBoundParameters.Add('AsJob', $true) } - if ($subscription.DefaultMessageTimeToLive -gt (New-TimeSpan -Days 10675197)) { - $subscription.DefaultMessageTimeToLive = (New-TimeSpan -Days 10675197) - } - - if ($subscription.AutoDeleteOnIdle -gt (New-TimeSpan -Days 10675197)) { - $subscription.AutoDeleteOnIdle = (New-TimeSpan -Days 10675197) - } - - if ($subscription.DuplicateDetectionHistoryTimeWindow -gt (New-TimeSpan -Days 10675197)) { - $subscription.DuplicateDetectionHistoryTimeWindow = (New-TimeSpan -Days 10675197) - } - - if ($subscription.LockDuration -gt (New-TimeSpan -Days 10675197)) { - $subscription.LockDuration = (New-TimeSpan -Days 10675197) - } - if ($PSCmdlet.ShouldProcess("ServiceBus Subscription $($subscription.Name)", "Create or update")) { Az.ServiceBus.private\New-AzServiceBusSubscription_CreateViaIdentity -InputObject $subscription -Parameter $subscription @PSBoundParameters } diff --git a/src/ServiceBus/ServiceBus.Autorest/custom/Set-AzServiceBusTopic.ps1 b/src/ServiceBus/ServiceBus.Autorest/custom/Set-AzServiceBusTopic.ps1 index c34aa610fbf3..08e73d95aca9 100644 --- a/src/ServiceBus/ServiceBus.Autorest/custom/Set-AzServiceBusTopic.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/custom/Set-AzServiceBusTopic.ps1 @@ -20,7 +20,7 @@ Updates a ServiceBus Topic #> function Set-AzServiceBusTopic{ - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic])] [CmdletBinding(DefaultParameterSetName = 'SetExpanded', PositionalBinding = $false, SupportsShouldProcess, ConfirmImpact = 'Medium')] param( [Parameter(ParameterSetName = 'SetExpanded', Mandatory, HelpMessage = "The name of the Topic.")] @@ -247,19 +247,6 @@ function Set-AzServiceBusTopic{ $PSBoundParameters.Add('AsJob', $true) } - if ($topic.DefaultMessageTimeToLive -gt (New-TimeSpan -Days 10675197)) { - $topic.DefaultMessageTimeToLive = (New-TimeSpan -Days 10675197) - } - - if ($topic.AutoDeleteOnIdle -gt (New-TimeSpan -Days 10675197)) { - $topic.AutoDeleteOnIdle = (New-TimeSpan -Days 10675197) - } - - if ($topic.DuplicateDetectionHistoryTimeWindow -gt (New-TimeSpan -Days 10675197)) { - $topic.DuplicateDetectionHistoryTimeWindow = (New-TimeSpan -Days 10675197) - } - - if ($PSCmdlet.ShouldProcess("ServiceBus Topic $($topic.Name)", "Create or update")) { Az.ServiceBus.private\New-AzServiceBusTopic_CreateViaIdentity -InputObject $topic -Parameter $topic @PSBoundParameters } diff --git a/src/ServiceBus/ServiceBus.Autorest/custom/Test-AzServiceBusName.ps1 b/src/ServiceBus/ServiceBus.Autorest/custom/Test-AzServiceBusName.ps1 index 107314ad9a54..44025a70070b 100644 --- a/src/ServiceBus/ServiceBus.Autorest/custom/Test-AzServiceBusName.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/custom/Test-AzServiceBusName.ps1 @@ -20,7 +20,7 @@ Checks availability of a namespace name or disaster recovery alias. #> function Test-AzServiceBusName { - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult])] [CmdletBinding(DefaultParameterSetName = 'NamespaceAvailability', PositionalBinding = $false, ConfirmImpact = 'Medium')] param( [Parameter(Mandatory, ParameterSetName = 'AliasAvailability', HelpMessage = "The name of ServiceBus namespace")] diff --git a/src/ServiceBus/ServiceBus.Autorest/custom/autogen-model-cmdlets/New-AzServiceBusKeyVaultPropertiesObject.ps1 b/src/ServiceBus/ServiceBus.Autorest/custom/autogen-model-cmdlets/New-AzServiceBusKeyVaultPropertiesObject.ps1 index 2ce70d71eed7..294b6dc315c3 100644 --- a/src/ServiceBus/ServiceBus.Autorest/custom/autogen-model-cmdlets/New-AzServiceBusKeyVaultPropertiesObject.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/custom/autogen-model-cmdlets/New-AzServiceBusKeyVaultPropertiesObject.ps1 @@ -21,12 +21,12 @@ Create an in-memory object for KeyVaultProperties. Create an in-memory object for KeyVaultProperties. .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.KeyVaultProperties +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.KeyVaultProperties .Link https://learn.microsoft.com/powershell/module/az.ServiceBus/new-AzServiceBusKeyVaultPropertiesObject #> function New-AzServiceBusKeyVaultPropertiesObject { - [OutputType('Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.KeyVaultProperties')] + [OutputType('Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.KeyVaultProperties')] [CmdletBinding(PositionalBinding=$false)] Param( @@ -45,7 +45,7 @@ function New-AzServiceBusKeyVaultPropertiesObject { ) process { - $Object = [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.KeyVaultProperties]::New() + $Object = [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.KeyVaultProperties]::New() if ($PSBoundParameters.ContainsKey('KeyName')) { $Object.KeyName = $KeyName diff --git a/src/ServiceBus/ServiceBus.Autorest/docs/Approve-AzServiceBusPrivateEndpointConnection.md b/src/ServiceBus/ServiceBus.Autorest/docs/Approve-AzServiceBusPrivateEndpointConnection.md index 1c799e13d0b5..7c68f37fc6c6 100644 --- a/src/ServiceBus/ServiceBus.Autorest/docs/Approve-AzServiceBusPrivateEndpointConnection.md +++ b/src/ServiceBus/ServiceBus.Autorest/docs/Approve-AzServiceBusPrivateEndpointConnection.md @@ -216,7 +216,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection ## NOTES diff --git a/src/ServiceBus/ServiceBus.Autorest/docs/Deny-AzServiceBusPrivateEndpointConnection.md b/src/ServiceBus/ServiceBus.Autorest/docs/Deny-AzServiceBusPrivateEndpointConnection.md index 5dfb22965386..072c0207c342 100644 --- a/src/ServiceBus/ServiceBus.Autorest/docs/Deny-AzServiceBusPrivateEndpointConnection.md +++ b/src/ServiceBus/ServiceBus.Autorest/docs/Deny-AzServiceBusPrivateEndpointConnection.md @@ -216,7 +216,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection ## NOTES diff --git a/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusAuthorizationRule.md b/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusAuthorizationRule.md index 8f30bbd70d1d..d4b9b45163f8 100644 --- a/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusAuthorizationRule.md +++ b/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusAuthorizationRule.md @@ -234,7 +234,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule ## NOTES diff --git a/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusGeoDRConfiguration.md b/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusGeoDRConfiguration.md index 7ec45df7c647..e2a74517be72 100644 --- a/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusGeoDRConfiguration.md +++ b/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusGeoDRConfiguration.md @@ -157,7 +157,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery ## NOTES diff --git a/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusKey.md b/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusKey.md index a25d23de429e..be91f49cac7c 100644 --- a/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusKey.md +++ b/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusKey.md @@ -252,7 +252,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys ## NOTES diff --git a/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusMigration.md b/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusMigration.md index 0c5ba078eb02..581e50b6af54 100644 --- a/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusMigration.md +++ b/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusMigration.md @@ -149,7 +149,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties ## NOTES diff --git a/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusNamespaceV2.md b/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusNamespaceV2.md index 4c9cc37caee1..c64f72ff65d3 100644 --- a/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusNamespaceV2.md +++ b/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusNamespaceV2.md @@ -205,7 +205,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace ## NOTES diff --git a/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusNetworkRuleSet.md b/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusNetworkRuleSet.md index da1ce5296088..52f610ec67b8 100644 --- a/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusNetworkRuleSet.md +++ b/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusNetworkRuleSet.md @@ -141,7 +141,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet ## NOTES diff --git a/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusPrivateEndpointConnection.md b/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusPrivateEndpointConnection.md index b59511d9dcde..4eef27c9e571 100644 --- a/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusPrivateEndpointConnection.md +++ b/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusPrivateEndpointConnection.md @@ -164,7 +164,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection ## NOTES diff --git a/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusPrivateLink.md b/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusPrivateLink.md index 8359d8bcdc6f..96e054bce89f 100644 --- a/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusPrivateLink.md +++ b/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusPrivateLink.md @@ -108,7 +108,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcesListResult +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcesListResult ## NOTES diff --git a/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusQueue.md b/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusQueue.md index 0b748219cd2a..d17ccebfcd20 100644 --- a/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusQueue.md +++ b/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusQueue.md @@ -214,7 +214,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue ## NOTES diff --git a/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusRule.md b/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusRule.md index 9aa6787f766e..ba6a752b5707 100644 --- a/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusRule.md +++ b/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusRule.md @@ -237,7 +237,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule ## NOTES diff --git a/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusSubscription.md b/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusSubscription.md index bbbe79f27826..146befaeb697 100644 --- a/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusSubscription.md +++ b/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusSubscription.md @@ -230,7 +230,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription ## NOTES diff --git a/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusTopic.md b/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusTopic.md index e53e6bca15d2..eaa7a610eedc 100644 --- a/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusTopic.md +++ b/src/ServiceBus/ServiceBus.Autorest/docs/Get-AzServiceBusTopic.md @@ -204,7 +204,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic ## NOTES diff --git a/src/ServiceBus/ServiceBus.Autorest/docs/New-AzServiceBusAuthorizationRule.md b/src/ServiceBus/ServiceBus.Autorest/docs/New-AzServiceBusAuthorizationRule.md index 386893231b3b..bb6aec9c8423 100644 --- a/src/ServiceBus/ServiceBus.Autorest/docs/New-AzServiceBusAuthorizationRule.md +++ b/src/ServiceBus/ServiceBus.Autorest/docs/New-AzServiceBusAuthorizationRule.md @@ -259,7 +259,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule ## NOTES diff --git a/src/ServiceBus/ServiceBus.Autorest/docs/New-AzServiceBusGeoDRConfiguration.md b/src/ServiceBus/ServiceBus.Autorest/docs/New-AzServiceBusGeoDRConfiguration.md index 67134343cffd..14a22f63816e 100644 --- a/src/ServiceBus/ServiceBus.Autorest/docs/New-AzServiceBusGeoDRConfiguration.md +++ b/src/ServiceBus/ServiceBus.Autorest/docs/New-AzServiceBusGeoDRConfiguration.md @@ -204,7 +204,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery ## NOTES diff --git a/src/ServiceBus/ServiceBus.Autorest/docs/New-AzServiceBusIPRuleConfig.md b/src/ServiceBus/ServiceBus.Autorest/docs/New-AzServiceBusIPRuleConfig.md index 69da3997b921..7acdce7803e8 100644 --- a/src/ServiceBus/ServiceBus.Autorest/docs/New-AzServiceBusIPRuleConfig.md +++ b/src/ServiceBus/ServiceBus.Autorest/docs/New-AzServiceBusIPRuleConfig.md @@ -73,7 +73,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRules +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRules ## NOTES diff --git a/src/ServiceBus/ServiceBus.Autorest/docs/New-AzServiceBusKey.md b/src/ServiceBus/ServiceBus.Autorest/docs/New-AzServiceBusKey.md index aafdec91b4f0..7d5964ff166e 100644 --- a/src/ServiceBus/ServiceBus.Autorest/docs/New-AzServiceBusKey.md +++ b/src/ServiceBus/ServiceBus.Autorest/docs/New-AzServiceBusKey.md @@ -289,7 +289,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys ## NOTES diff --git a/src/ServiceBus/ServiceBus.Autorest/docs/New-AzServiceBusKeyVaultPropertiesObject.md b/src/ServiceBus/ServiceBus.Autorest/docs/New-AzServiceBusKeyVaultPropertiesObject.md index 6dce97c908a3..e1f3f434848d 100644 --- a/src/ServiceBus/ServiceBus.Autorest/docs/New-AzServiceBusKeyVaultPropertiesObject.md +++ b/src/ServiceBus/ServiceBus.Autorest/docs/New-AzServiceBusKeyVaultPropertiesObject.md @@ -120,7 +120,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.KeyVaultProperties +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.KeyVaultProperties ## NOTES diff --git a/src/ServiceBus/ServiceBus.Autorest/docs/New-AzServiceBusNamespaceV2.md b/src/ServiceBus/ServiceBus.Autorest/docs/New-AzServiceBusNamespaceV2.md index b60a04166ba0..4300e9ac4c60 100644 --- a/src/ServiceBus/ServiceBus.Autorest/docs/New-AzServiceBusNamespaceV2.md +++ b/src/ServiceBus/ServiceBus.Autorest/docs/New-AzServiceBusNamespaceV2.md @@ -16,9 +16,10 @@ Creates a new ServiceBus namespace. New-AzServiceBusNamespaceV2 -Name -ResourceGroupName -Location [-SubscriptionId ] [-AlternateName ] [-DisableLocalAuth] [-IdentityType ] [-KeyVaultProperty ] - [-MinimumTlsVersion ] [-PublicNetworkAccess ] [-RequireInfrastructureEncryption] - [-SkuCapacity ] [-SkuName ] [-Tag ] [-UserAssignedIdentityId ] - [-ZoneRedundant] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] + [-MinimumTlsVersion ] [-PremiumMessagingPartition ] + [-PublicNetworkAccess ] [-RequireInfrastructureEncryption] [-SkuCapacity ] + [-SkuName ] [-Tag ] [-UserAssignedIdentityId ] [-ZoneRedundant] + [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] ``` ## DESCRIPTION @@ -278,7 +279,7 @@ Properties of KeyVault To construct, see NOTES section for KEYVAULTPROPERTY properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties[] +Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties[] Parameter Sets: (All) Aliases: @@ -350,6 +351,23 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -PremiumMessagingPartition +The number of partitions of a Service Bus namespace. +This property is only applicable to Premium SKU namespaces. +The default value is 1 and possible values are 1, 2 and 4 + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -PublicNetworkAccess This determines if traffic is allowed over public network. By default it is enabled. @@ -525,7 +543,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace ## NOTES diff --git a/src/ServiceBus/ServiceBus.Autorest/docs/New-AzServiceBusQueue.md b/src/ServiceBus/ServiceBus.Autorest/docs/New-AzServiceBusQueue.md index 682c0d375cef..d15807e4dd34 100644 --- a/src/ServiceBus/ServiceBus.Autorest/docs/New-AzServiceBusQueue.md +++ b/src/ServiceBus/ServiceBus.Autorest/docs/New-AzServiceBusQueue.md @@ -434,7 +434,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue ## NOTES diff --git a/src/ServiceBus/ServiceBus.Autorest/docs/New-AzServiceBusRule.md b/src/ServiceBus/ServiceBus.Autorest/docs/New-AzServiceBusRule.md index 02aeb71479a3..7b991f8e8b96 100644 --- a/src/ServiceBus/ServiceBus.Autorest/docs/New-AzServiceBusRule.md +++ b/src/ServiceBus/ServiceBus.Autorest/docs/New-AzServiceBusRule.md @@ -465,7 +465,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule ## NOTES diff --git a/src/ServiceBus/ServiceBus.Autorest/docs/New-AzServiceBusSubscription.md b/src/ServiceBus/ServiceBus.Autorest/docs/New-AzServiceBusSubscription.md index 20487f44d6ec..3a56d0318d52 100644 --- a/src/ServiceBus/ServiceBus.Autorest/docs/New-AzServiceBusSubscription.md +++ b/src/ServiceBus/ServiceBus.Autorest/docs/New-AzServiceBusSubscription.md @@ -441,7 +441,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription ## NOTES diff --git a/src/ServiceBus/ServiceBus.Autorest/docs/New-AzServiceBusTopic.md b/src/ServiceBus/ServiceBus.Autorest/docs/New-AzServiceBusTopic.md index cabc6a03b8c7..a84ea9d219b4 100644 --- a/src/ServiceBus/ServiceBus.Autorest/docs/New-AzServiceBusTopic.md +++ b/src/ServiceBus/ServiceBus.Autorest/docs/New-AzServiceBusTopic.md @@ -347,7 +347,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic ## NOTES diff --git a/src/ServiceBus/ServiceBus.Autorest/docs/New-AzServiceBusVirtualNetworkRuleConfig.md b/src/ServiceBus/ServiceBus.Autorest/docs/New-AzServiceBusVirtualNetworkRuleConfig.md index 2d4999daf607..b8ce92544911 100644 --- a/src/ServiceBus/ServiceBus.Autorest/docs/New-AzServiceBusVirtualNetworkRuleConfig.md +++ b/src/ServiceBus/ServiceBus.Autorest/docs/New-AzServiceBusVirtualNetworkRuleConfig.md @@ -75,7 +75,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRules +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRules ## NOTES diff --git a/src/ServiceBus/ServiceBus.Autorest/docs/README.md b/src/ServiceBus/ServiceBus.Autorest/docs/README.md index fe1f624128ce..aaafa05c807d 100644 --- a/src/ServiceBus/ServiceBus.Autorest/docs/README.md +++ b/src/ServiceBus/ServiceBus.Autorest/docs/README.md @@ -8,4 +8,4 @@ This directory contains the documentation of the cmdlets for the `Az.ServiceBus` - Packaged: yes ## Details -The process of documentation generation loads `Az.ServiceBus` and analyzes the exported cmdlets from the module. It recognizes the [help comments](https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_comment_based_help) that are generated into the scripts in the `..\exports` folder. Additionally, when writing custom cmdlets in the `..\custom` folder, you can use the help comments syntax, which decorate the exported scripts at build-time. The documentation examples are taken from the `..\examples` folder. \ No newline at end of file +The process of documentation generation loads `Az.ServiceBus` and analyzes the exported cmdlets from the module. It recognizes the [help comments](https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_comment_based_help) that are generated into the scripts in the `..\exports` folder. Additionally, when writing custom cmdlets in the `..\custom` folder, you can use the help comments syntax, which decorate the exported scripts at build-time. The documentation examples are taken from the `..\examples` folder. \ No newline at end of file diff --git a/src/ServiceBus/ServiceBus.Autorest/docs/Remove-AzServiceBusAuthorizationRule.md b/src/ServiceBus/ServiceBus.Autorest/docs/Remove-AzServiceBusAuthorizationRule.md index df84fb10e842..6ba2409c6f86 100644 --- a/src/ServiceBus/ServiceBus.Autorest/docs/Remove-AzServiceBusAuthorizationRule.md +++ b/src/ServiceBus/ServiceBus.Autorest/docs/Remove-AzServiceBusAuthorizationRule.md @@ -252,7 +252,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule ## NOTES diff --git a/src/ServiceBus/ServiceBus.Autorest/docs/Set-AzServiceBusAuthorizationRule.md b/src/ServiceBus/ServiceBus.Autorest/docs/Set-AzServiceBusAuthorizationRule.md index 2423f58d8482..bda77a8200bf 100644 --- a/src/ServiceBus/ServiceBus.Autorest/docs/Set-AzServiceBusAuthorizationRule.md +++ b/src/ServiceBus/ServiceBus.Autorest/docs/Set-AzServiceBusAuthorizationRule.md @@ -285,7 +285,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule ## NOTES diff --git a/src/ServiceBus/ServiceBus.Autorest/docs/Set-AzServiceBusNamespaceV2.md b/src/ServiceBus/ServiceBus.Autorest/docs/Set-AzServiceBusNamespaceV2.md index 394113e46686..54d02a3e5b16 100644 --- a/src/ServiceBus/ServiceBus.Autorest/docs/Set-AzServiceBusNamespaceV2.md +++ b/src/ServiceBus/ServiceBus.Autorest/docs/Set-AzServiceBusNamespaceV2.md @@ -382,7 +382,7 @@ Properties of KeyVault To construct, see NOTES section for KEYVAULTPROPERTY properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties[] +Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties[] Parameter Sets: (All) Aliases: @@ -599,7 +599,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace ## NOTES diff --git a/src/ServiceBus/ServiceBus.Autorest/docs/Set-AzServiceBusNetworkRuleSet.md b/src/ServiceBus/ServiceBus.Autorest/docs/Set-AzServiceBusNetworkRuleSet.md index 6bb2ca9a79bd..471540fb30e7 100644 --- a/src/ServiceBus/ServiceBus.Autorest/docs/Set-AzServiceBusNetworkRuleSet.md +++ b/src/ServiceBus/ServiceBus.Autorest/docs/Set-AzServiceBusNetworkRuleSet.md @@ -188,7 +188,7 @@ List of IpRules To construct, see NOTES section for IPRULE properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRules[] +Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRules[] Parameter Sets: (All) Aliases: @@ -297,7 +297,7 @@ List of VirtualNetwork Rules To construct, see NOTES section for VIRTUALNETWORKRULE properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRules[] +Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRules[] Parameter Sets: (All) Aliases: @@ -348,7 +348,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet ## NOTES diff --git a/src/ServiceBus/ServiceBus.Autorest/docs/Set-AzServiceBusQueue.md b/src/ServiceBus/ServiceBus.Autorest/docs/Set-AzServiceBusQueue.md index 5371dbcf6b4f..2de92f3af405 100644 --- a/src/ServiceBus/ServiceBus.Autorest/docs/Set-AzServiceBusQueue.md +++ b/src/ServiceBus/ServiceBus.Autorest/docs/Set-AzServiceBusQueue.md @@ -490,7 +490,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue ## NOTES diff --git a/src/ServiceBus/ServiceBus.Autorest/docs/Set-AzServiceBusRule.md b/src/ServiceBus/ServiceBus.Autorest/docs/Set-AzServiceBusRule.md index 39f9f93e11d6..7920e3dbdd12 100644 --- a/src/ServiceBus/ServiceBus.Autorest/docs/Set-AzServiceBusRule.md +++ b/src/ServiceBus/ServiceBus.Autorest/docs/Set-AzServiceBusRule.md @@ -525,7 +525,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule ## NOTES diff --git a/src/ServiceBus/ServiceBus.Autorest/docs/Set-AzServiceBusSubscription.md b/src/ServiceBus/ServiceBus.Autorest/docs/Set-AzServiceBusSubscription.md index af56cd099d3a..d1b9f078184f 100644 --- a/src/ServiceBus/ServiceBus.Autorest/docs/Set-AzServiceBusSubscription.md +++ b/src/ServiceBus/ServiceBus.Autorest/docs/Set-AzServiceBusSubscription.md @@ -466,7 +466,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription ## NOTES diff --git a/src/ServiceBus/ServiceBus.Autorest/docs/Set-AzServiceBusTopic.md b/src/ServiceBus/ServiceBus.Autorest/docs/Set-AzServiceBusTopic.md index 52ebee4ebd67..81be9891f745 100644 --- a/src/ServiceBus/ServiceBus.Autorest/docs/Set-AzServiceBusTopic.md +++ b/src/ServiceBus/ServiceBus.Autorest/docs/Set-AzServiceBusTopic.md @@ -412,7 +412,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic ## NOTES diff --git a/src/ServiceBus/ServiceBus.Autorest/docs/Start-AzServiceBusMigration.md b/src/ServiceBus/ServiceBus.Autorest/docs/Start-AzServiceBusMigration.md index a4b4096a0474..ef3baa4a4811 100644 --- a/src/ServiceBus/ServiceBus.Autorest/docs/Start-AzServiceBusMigration.md +++ b/src/ServiceBus/ServiceBus.Autorest/docs/Start-AzServiceBusMigration.md @@ -211,7 +211,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties ## NOTES diff --git a/src/ServiceBus/ServiceBus.Autorest/docs/Test-AzServiceBusName.md b/src/ServiceBus/ServiceBus.Autorest/docs/Test-AzServiceBusName.md index 4afc705bff08..49d181fcfd85 100644 --- a/src/ServiceBus/ServiceBus.Autorest/docs/Test-AzServiceBusName.md +++ b/src/ServiceBus/ServiceBus.Autorest/docs/Test-AzServiceBusName.md @@ -169,7 +169,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult ## NOTES diff --git a/src/ServiceBus/ServiceBus.Autorest/exports/Approve-AzServiceBusPrivateEndpointConnection.ps1 b/src/ServiceBus/ServiceBus.Autorest/exports/Approve-AzServiceBusPrivateEndpointConnection.ps1 index 8bd8862acce7..09827d5d6035 100644 --- a/src/ServiceBus/ServiceBus.Autorest/exports/Approve-AzServiceBusPrivateEndpointConnection.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/exports/Approve-AzServiceBusPrivateEndpointConnection.ps1 @@ -28,7 +28,7 @@ Approve-AzServiceBusPrivateEndpointConnection -InputObject $privateEndpoint .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection .Notes COMPLEX PARAMETER PROPERTIES @@ -51,7 +51,7 @@ INPUTOBJECT : Identity parameter. https://learn.microsoft.com/powershell/module/az.servicebus/approve-azservicebusprivateendpointconnection #> function Approve-AzServiceBusPrivateEndpointConnection { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection])] [CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false)] param( [Parameter(ParameterSetName='SetExpanded', Mandatory)] diff --git a/src/ServiceBus/ServiceBus.Autorest/exports/Deny-AzServiceBusPrivateEndpointConnection.ps1 b/src/ServiceBus/ServiceBus.Autorest/exports/Deny-AzServiceBusPrivateEndpointConnection.ps1 index 7ce6fd795fd9..b45ab2a51ef8 100644 --- a/src/ServiceBus/ServiceBus.Autorest/exports/Deny-AzServiceBusPrivateEndpointConnection.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/exports/Deny-AzServiceBusPrivateEndpointConnection.ps1 @@ -28,7 +28,7 @@ Deny-AzServiceBusPrivateEndpointConnection -InputObject $privateEndpoint .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection .Notes COMPLEX PARAMETER PROPERTIES @@ -51,7 +51,7 @@ INPUTOBJECT : Identity parameter. https://learn.microsoft.com/powershell/module/az.servicebus/deny-azservicebusprivateendpointconnection #> function Deny-AzServiceBusPrivateEndpointConnection { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection])] [CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false)] param( [Parameter(ParameterSetName='SetExpanded', Mandatory)] diff --git a/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusAuthorizationRule.ps1 b/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusAuthorizationRule.ps1 index 79edff7d5bc6..5fd645090eb9 100644 --- a/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusAuthorizationRule.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusAuthorizationRule.ps1 @@ -29,7 +29,7 @@ Get-AzServiceBusAuthorizationRule -ResourceGroupName myResourceGroup -NamespaceN .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule .Notes COMPLEX PARAMETER PROPERTIES @@ -52,7 +52,7 @@ INPUTOBJECT : Identity parameter. https://learn.microsoft.com/powershell/module/az.servicebus/get-azservicebusauthorizationrule #> function Get-AzServiceBusAuthorizationRule { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule])] [CmdletBinding(DefaultParameterSetName='GetExpandedNamespace', PositionalBinding=$false)] param( [Parameter(ParameterSetName='GetExpandedNamespace', Mandatory)] diff --git a/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusGeoDRConfiguration.ps1 b/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusGeoDRConfiguration.ps1 index aedd72a7b07c..1c934f6dd63a 100644 --- a/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusGeoDRConfiguration.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusGeoDRConfiguration.ps1 @@ -25,7 +25,7 @@ Get-AzServiceBusGeoDRConfiguration -ResourceGroupName myResourceGroup -Namespace .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery .Notes COMPLEX PARAMETER PROPERTIES @@ -48,7 +48,7 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.servicebus/get-azservicebusgeodrconfiguration #> function Get-AzServiceBusGeoDRConfiguration { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] diff --git a/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusKey.ps1 b/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusKey.ps1 index 9ec67356b1ff..9979e45afdff 100644 --- a/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusKey.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusKey.ps1 @@ -27,12 +27,12 @@ Get-AzServiceBusKey -ResourceGroupName myResourceGroup -NamespaceName myNamespac Get-AzServiceBusKey -ResourceGroupName myResourceGroup -NamespaceName myNamespace -TopicName topic1 -Name RootManageSharedAccessKey .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys .Link https://learn.microsoft.com/powershell/module/az.servicebus/get-azservicebuskey #> function Get-AzServiceBusKey { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys])] [CmdletBinding(DefaultParameterSetName='GetExpandedNamespace', PositionalBinding=$false)] param( [Parameter(Mandatory)] diff --git a/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusMigration.ps1 b/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusMigration.ps1 index a2fe9368af05..eeae34a94321 100644 --- a/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusMigration.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusMigration.ps1 @@ -25,7 +25,7 @@ Get-AzServiceBusMigration -ResourceGroupName myResourceGroup -NamespaceName myNa .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties .Notes COMPLEX PARAMETER PROPERTIES @@ -48,7 +48,7 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.servicebus/get-azservicebusmigration #> function Get-AzServiceBusMigration { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties])] [CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] diff --git a/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusNamespaceV2.ps1 b/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusNamespaceV2.ps1 index 95447e1ca2c9..29cdb82079c7 100644 --- a/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusNamespaceV2.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusNamespaceV2.ps1 @@ -29,7 +29,7 @@ Get-AzServiceBusNamespaceV2 .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace .Notes COMPLEX PARAMETER PROPERTIES @@ -52,7 +52,7 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.servicebus/get-azservicebusnamespacev2 #> function Get-AzServiceBusNamespaceV2 { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] diff --git a/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusNetworkRuleSet.ps1 b/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusNetworkRuleSet.ps1 index 70d4ae3e1a20..2da00aeb4a40 100644 --- a/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusNetworkRuleSet.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusNetworkRuleSet.ps1 @@ -25,7 +25,7 @@ Get-AzServiceBusNetworkRuleSet -ResourceGroupName myResourceGroup -NamespaceName .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet .Notes COMPLEX PARAMETER PROPERTIES @@ -48,7 +48,7 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.servicebus/get-azservicebusnetworkruleset #> function Get-AzServiceBusNetworkRuleSet { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet])] [CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] diff --git a/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusPrivateEndpointConnection.ps1 b/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusPrivateEndpointConnection.ps1 index 1f0fcbdb37b0..70ddcbff0c09 100644 --- a/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusPrivateEndpointConnection.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusPrivateEndpointConnection.ps1 @@ -27,7 +27,7 @@ Get-AzServiceBusPrivateEndpointConnection -ResourceGroupName myResourceGroup -Na .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection .Notes COMPLEX PARAMETER PROPERTIES @@ -50,7 +50,7 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.servicebus/get-azservicebusprivateendpointconnection #> function Get-AzServiceBusPrivateEndpointConnection { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] diff --git a/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusPrivateLink.ps1 b/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusPrivateLink.ps1 index 5758de4edd7d..e36deb45b5d3 100644 --- a/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusPrivateLink.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusPrivateLink.ps1 @@ -23,12 +23,12 @@ Gets lists of resources that supports Privatelinks. Get-AzServiceBusPrivateLink -ResourceGroupName myResourceGroup -NamespaceName myNamespace .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcesListResult +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcesListResult .Link https://learn.microsoft.com/powershell/module/az.servicebus/get-azservicebusprivatelink #> function Get-AzServiceBusPrivateLink { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcesListResult])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcesListResult])] [CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] param( [Parameter(Mandatory)] diff --git a/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusQueue.ps1 b/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusQueue.ps1 index f9843905968c..69d1b43479b6 100644 --- a/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusQueue.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusQueue.ps1 @@ -27,7 +27,7 @@ Get-AzServiceBusQueue -ResourceGroupName myResourceGroup -NamespaceName myNamesp .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue .Notes COMPLEX PARAMETER PROPERTIES @@ -50,7 +50,7 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.servicebus/get-azservicebusqueue #> function Get-AzServiceBusQueue { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] diff --git a/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusRule.ps1 b/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusRule.ps1 index cb49420c08cf..d888ebe6fd13 100644 --- a/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusRule.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusRule.ps1 @@ -27,7 +27,7 @@ Get-AzServiceBusRule -ResourceGroupName myResourceGroup -NamespaceName myNamespa .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule .Notes COMPLEX PARAMETER PROPERTIES @@ -50,7 +50,7 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.servicebus/get-azservicebusrule #> function Get-AzServiceBusRule { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] diff --git a/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusSubscription.ps1 b/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusSubscription.ps1 index 56305baf221a..eb71b9705a6b 100644 --- a/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusSubscription.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusSubscription.ps1 @@ -27,7 +27,7 @@ Get-AzServiceBusSubscription -ResourceGroupName myResourceGroup -NamespaceName m .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription .Notes COMPLEX PARAMETER PROPERTIES @@ -50,7 +50,7 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.servicebus/get-azservicebussubscription #> function Get-AzServiceBusSubscription { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] diff --git a/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusTopic.ps1 b/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusTopic.ps1 index 472e52ee8879..821150de5f80 100644 --- a/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusTopic.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/exports/Get-AzServiceBusTopic.ps1 @@ -27,7 +27,7 @@ Get-AzServiceBusTopic -ResourceGroupName myResourceGroup -NamespaceName myNamesp .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic .Notes COMPLEX PARAMETER PROPERTIES @@ -50,7 +50,7 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.servicebus/get-azservicebustopic #> function Get-AzServiceBusTopic { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] diff --git a/src/ServiceBus/ServiceBus.Autorest/exports/New-AzServiceBusAuthorizationRule.ps1 b/src/ServiceBus/ServiceBus.Autorest/exports/New-AzServiceBusAuthorizationRule.ps1 index 6cb070ba8bcc..f156140f95e5 100644 --- a/src/ServiceBus/ServiceBus.Autorest/exports/New-AzServiceBusAuthorizationRule.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/exports/New-AzServiceBusAuthorizationRule.ps1 @@ -25,12 +25,12 @@ New-AzServiceBusAuthorizationRule -ResourceGroupName myResourceGroup -NamespaceN New-AzServiceBusAuthorizationRule -ResourceGroupName myResourceGroup -NamespaceName myNamespace -QueueName myQueue -Name myAuthRule -Rights @('Manage', 'Send', 'Listen') .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule .Link https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebusauthorizationrule #> function New-AzServiceBusAuthorizationRule { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule])] [CmdletBinding(DefaultParameterSetName='NewExpandedNamespace', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] diff --git a/src/ServiceBus/ServiceBus.Autorest/exports/New-AzServiceBusGeoDRConfiguration.ps1 b/src/ServiceBus/ServiceBus.Autorest/exports/New-AzServiceBusGeoDRConfiguration.ps1 index 2eb235da371a..053556735299 100644 --- a/src/ServiceBus/ServiceBus.Autorest/exports/New-AzServiceBusGeoDRConfiguration.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/exports/New-AzServiceBusGeoDRConfiguration.ps1 @@ -23,12 +23,12 @@ Creates or updates a new Alias(Disaster Recovery configuration) New-AzServiceBusGeoDRConfiguration -Name myAlias -ResourceGroupName myResourceGroup -NamespaceName myPrimaryNamespace -PartnerNamespace "/subscriptions/0000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ServiceBus/namespaces/mySecondaryNamespace" .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery .Link https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebusgeodrconfiguration #> function New-AzServiceBusGeoDRConfiguration { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] diff --git a/src/ServiceBus/ServiceBus.Autorest/exports/New-AzServiceBusIPRuleConfig.ps1 b/src/ServiceBus/ServiceBus.Autorest/exports/New-AzServiceBusIPRuleConfig.ps1 index e10c48cb01c0..1bfb9040db0a 100644 --- a/src/ServiceBus/ServiceBus.Autorest/exports/New-AzServiceBusIPRuleConfig.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/exports/New-AzServiceBusIPRuleConfig.ps1 @@ -23,12 +23,12 @@ Constructs an INwRuleSetIPRules object that can be fed as input to Set-AzService New-AzServiceBusIPRuleConfig -IPMask 3.3.3.3 -Action Allow .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRules +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRules .Link https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebusipruleconfig #> function New-AzServiceBusIPRuleConfig { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRules])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRules])] [CmdletBinding(PositionalBinding=$false)] param( [Parameter(Mandatory)] diff --git a/src/ServiceBus/ServiceBus.Autorest/exports/New-AzServiceBusKey.ps1 b/src/ServiceBus/ServiceBus.Autorest/exports/New-AzServiceBusKey.ps1 index b444acbcb383..ed457dadd97a 100644 --- a/src/ServiceBus/ServiceBus.Autorest/exports/New-AzServiceBusKey.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/exports/New-AzServiceBusKey.ps1 @@ -27,12 +27,12 @@ New-AzServiceBusKey -ResourceGroupName myResourceGroup -NamespaceName myNamespac New-AzServiceBusKey -ResourceGroupName myResourceGroup -NamespaceName myNamespace -TopicName myTopic -Name rootmanagesharedaccesskey -KeyType SecondaryKey .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys .Link https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebuskey #> function New-AzServiceBusKey { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys])] [CmdletBinding(DefaultParameterSetName='NewExpandedNamespace', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] diff --git a/src/ServiceBus/ServiceBus.Autorest/exports/New-AzServiceBusKeyVaultPropertiesObject.ps1 b/src/ServiceBus/ServiceBus.Autorest/exports/New-AzServiceBusKeyVaultPropertiesObject.ps1 index b27fb5405a64..62cc0a9adb71 100644 --- a/src/ServiceBus/ServiceBus.Autorest/exports/New-AzServiceBusKeyVaultPropertiesObject.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/exports/New-AzServiceBusKeyVaultPropertiesObject.ps1 @@ -26,12 +26,12 @@ $ec1 = "/subscriptions/0000000000000/resourceGroups/myResourceGroup/providers/Mi New-AzServiceBusKeyVaultPropertiesObject -KeyName key4 -KeyVaultUri https://testkeyvault.vault.azure.net/ -UserAssignedIdentity $ec1 .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.KeyVaultProperties +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.KeyVaultProperties .Link https://learn.microsoft.com/powershell/module/az.ServiceBus/new-AzServiceBusKeyVaultPropertiesObject #> function New-AzServiceBusKeyVaultPropertiesObject { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.KeyVaultProperties])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.KeyVaultProperties])] [CmdletBinding(PositionalBinding=$false)] param( [Parameter()] diff --git a/src/ServiceBus/ServiceBus.Autorest/exports/New-AzServiceBusNamespaceV2.ps1 b/src/ServiceBus/ServiceBus.Autorest/exports/New-AzServiceBusNamespaceV2.ps1 index a05b9588f32c..6340c0af058d 100644 --- a/src/ServiceBus/ServiceBus.Autorest/exports/New-AzServiceBusNamespaceV2.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/exports/New-AzServiceBusNamespaceV2.ps1 @@ -31,7 +31,7 @@ New-AzServiceBusNamespaceV2 -ResourceGroupName myResourceGroup -Name myNamespace New-AzServiceBusNamespaceV2 -ResourceGroupName myResourceGroup -Name myNamespace -SkuName Standard -Location southcentralus -Tag @{k1='v1'; k2='v2'} -DisableLocalAuth .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace .Notes COMPLEX PARAMETER PROPERTIES @@ -46,7 +46,7 @@ KEYVAULTPROPERTY : Properties of KeyVault https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebusnamespacev2 #> function New-AzServiceBusNamespaceV2 { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace])] [CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] @@ -88,11 +88,19 @@ param( [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties[]] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties[]] # Properties of KeyVault # To construct, see NOTES section for KEYVAULTPROPERTY properties and create a hash table. ${KeyVaultProperty}, + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] + [System.Int32] + # The number of partitions of a Service Bus namespace. + # This property is only applicable to Premium SKU namespaces. + # The default value is 1 and possible values are 1, 2 and 4 + ${PremiumMessagingPartition}, + [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] [System.Management.Automation.SwitchParameter] diff --git a/src/ServiceBus/ServiceBus.Autorest/exports/New-AzServiceBusQueue.ps1 b/src/ServiceBus/ServiceBus.Autorest/exports/New-AzServiceBusQueue.ps1 index 81e8fd177300..9b8114b4aba5 100644 --- a/src/ServiceBus/ServiceBus.Autorest/exports/New-AzServiceBusQueue.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/exports/New-AzServiceBusQueue.ps1 @@ -25,12 +25,12 @@ This operation is idempotent. New-AzServiceBusQueue -ResourceGroupName myResourceGroup -NamespaceName myNamespace -Name myQueue -AutoDeleteOnIdle (New-TimeSpan -Days 1 -Minutes 3 -Seconds 4) -DefaultMessageTimeToLive (New-TimeSpan -Days 5) -EnablePartitioning .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue .Link https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebusqueue #> function New-AzServiceBusQueue { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] diff --git a/src/ServiceBus/ServiceBus.Autorest/exports/New-AzServiceBusRule.ps1 b/src/ServiceBus/ServiceBus.Autorest/exports/New-AzServiceBusRule.ps1 index b78be0bfd56f..fe133dc6a3be 100644 --- a/src/ServiceBus/ServiceBus.Autorest/exports/New-AzServiceBusRule.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/exports/New-AzServiceBusRule.ps1 @@ -25,12 +25,12 @@ New-AzServiceBusRule -ResourceGroupName myResourceGroup -NamespaceName myNamespa New-AzServiceBusRule -ResourceGroupName myResourceGroup -NamespaceName myNamespace -TopicName myTopic -SubscriptionName mySubscription -Name mySqlRule -FilterType SqlFilter -SqlExpression 3=2 -ActionSqlExpression "SET a=b" .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule .Link https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebusrule #> function New-AzServiceBusRule { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] @@ -94,7 +94,7 @@ param( [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterProperties]))] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterProperties]))] [System.Collections.Hashtable] # dictionary object for custom filters ${CorrelationFilterProperty}, diff --git a/src/ServiceBus/ServiceBus.Autorest/exports/New-AzServiceBusSubscription.ps1 b/src/ServiceBus/ServiceBus.Autorest/exports/New-AzServiceBusSubscription.ps1 index 46cc5164f840..c3cfdee0b010 100644 --- a/src/ServiceBus/ServiceBus.Autorest/exports/New-AzServiceBusSubscription.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/exports/New-AzServiceBusSubscription.ps1 @@ -23,12 +23,12 @@ Creates a topic subscription. New-AzServiceBusSubscription -ResourceGroupName myResourceGroup -NamespaceName myNamespace -TopicName myTopic -Name mySubscription -DefaultMessageTimeToLive (New-TimeSpan -Days 6) -EnableBatchedOperations .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription .Link https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebussubscription #> function New-AzServiceBusSubscription { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] diff --git a/src/ServiceBus/ServiceBus.Autorest/exports/New-AzServiceBusTopic.ps1 b/src/ServiceBus/ServiceBus.Autorest/exports/New-AzServiceBusTopic.ps1 index 21d1fbc17755..4cd03ce3dd1b 100644 --- a/src/ServiceBus/ServiceBus.Autorest/exports/New-AzServiceBusTopic.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/exports/New-AzServiceBusTopic.ps1 @@ -23,12 +23,12 @@ Creates a topic in the specified namespace. New-AzServiceBusTopic -ResourceGroupName myResourceGroup -NamespaceName myNamespace -Name myTopic -DefaultMessageTimeToLive (New-TimeSpan -Days 18) -EnableBatchedOperations .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic .Link https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebustopic #> function New-AzServiceBusTopic { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] diff --git a/src/ServiceBus/ServiceBus.Autorest/exports/New-AzServiceBusVirtualNetworkRuleConfig.ps1 b/src/ServiceBus/ServiceBus.Autorest/exports/New-AzServiceBusVirtualNetworkRuleConfig.ps1 index 03e86d1954ad..e1b20153550b 100644 --- a/src/ServiceBus/ServiceBus.Autorest/exports/New-AzServiceBusVirtualNetworkRuleConfig.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/exports/New-AzServiceBusVirtualNetworkRuleConfig.ps1 @@ -23,12 +23,12 @@ Constructs an INwRuleSetIPRules object that can be fed as input to Set-AzService New-AzServiceBusVirtualNetworkRuleConfig -SubnetId /subscriptions/subscriptionId/resourcegroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVirtualNetwork/subnets/default .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRules +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRules .Link https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebusvirtualnetworkruleconfig #> function New-AzServiceBusVirtualNetworkRuleConfig { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRules])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRules])] [CmdletBinding(PositionalBinding=$false)] param( [Parameter(Mandatory)] diff --git a/src/ServiceBus/ServiceBus.Autorest/exports/ProxyCmdletDefinitions.ps1 b/src/ServiceBus/ServiceBus.Autorest/exports/ProxyCmdletDefinitions.ps1 index fdbce56259fd..3c6b372374f9 100644 --- a/src/ServiceBus/ServiceBus.Autorest/exports/ProxyCmdletDefinitions.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/exports/ProxyCmdletDefinitions.ps1 @@ -223,7 +223,7 @@ Get-AzServiceBusGeoDRConfiguration -ResourceGroupName myResourceGroup -Namespace .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery .Notes COMPLEX PARAMETER PROPERTIES @@ -246,7 +246,7 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.servicebus/get-azservicebusgeodrconfiguration #> function Get-AzServiceBusGeoDRConfiguration { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] @@ -423,7 +423,7 @@ Get-AzServiceBusMigration -ResourceGroupName myResourceGroup -NamespaceName myNa .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties .Notes COMPLEX PARAMETER PROPERTIES @@ -446,7 +446,7 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.servicebus/get-azservicebusmigration #> function Get-AzServiceBusMigration { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties])] [CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] @@ -621,7 +621,7 @@ Get-AzServiceBusNamespaceV2 .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace .Notes COMPLEX PARAMETER PROPERTIES @@ -644,7 +644,7 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.servicebus/get-azservicebusnamespacev2 #> function Get-AzServiceBusNamespaceV2 { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] @@ -817,7 +817,7 @@ Get-AzServiceBusNetworkRuleSet -ResourceGroupName myResourceGroup -NamespaceName .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet .Notes COMPLEX PARAMETER PROPERTIES @@ -840,7 +840,7 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.servicebus/get-azservicebusnetworkruleset #> function Get-AzServiceBusNetworkRuleSet { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet])] [CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] @@ -1013,7 +1013,7 @@ Get-AzServiceBusPrivateEndpointConnection -ResourceGroupName myResourceGroup -Na .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection .Notes COMPLEX PARAMETER PROPERTIES @@ -1036,7 +1036,7 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.servicebus/get-azservicebusprivateendpointconnection #> function Get-AzServiceBusPrivateEndpointConnection { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] @@ -1212,12 +1212,12 @@ Gets lists of resources that supports Privatelinks. Get-AzServiceBusPrivateLink -ResourceGroupName myResourceGroup -NamespaceName myNamespace .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcesListResult +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcesListResult .Link https://learn.microsoft.com/powershell/module/az.servicebus/get-azservicebusprivatelink #> function Get-AzServiceBusPrivateLink { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcesListResult])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcesListResult])] [CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] param( [Parameter(Mandatory)] @@ -1378,7 +1378,7 @@ Get-AzServiceBusQueue -ResourceGroupName myResourceGroup -NamespaceName myNamesp .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue .Notes COMPLEX PARAMETER PROPERTIES @@ -1401,7 +1401,7 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.servicebus/get-azservicebusqueue #> function Get-AzServiceBusQueue { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] @@ -1594,7 +1594,7 @@ Get-AzServiceBusRule -ResourceGroupName myResourceGroup -NamespaceName myNamespa .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule .Notes COMPLEX PARAMETER PROPERTIES @@ -1617,7 +1617,7 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.servicebus/get-azservicebusrule #> function Get-AzServiceBusRule { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] @@ -1824,7 +1824,7 @@ Get-AzServiceBusSubscription -ResourceGroupName myResourceGroup -NamespaceName m .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription .Notes COMPLEX PARAMETER PROPERTIES @@ -1847,7 +1847,7 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.servicebus/get-azservicebussubscription #> function Get-AzServiceBusSubscription { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] @@ -2047,7 +2047,7 @@ Get-AzServiceBusTopic -ResourceGroupName myResourceGroup -NamespaceName myNamesp .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic .Notes COMPLEX PARAMETER PROPERTIES @@ -2070,7 +2070,7 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.servicebus/get-azservicebustopic #> function Get-AzServiceBusTopic { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] @@ -2259,12 +2259,12 @@ Creates or updates a new Alias(Disaster Recovery configuration) New-AzServiceBusGeoDRConfiguration -Name myAlias -ResourceGroupName myResourceGroup -NamespaceName myPrimaryNamespace -PartnerNamespace "/subscriptions/0000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ServiceBus/namespaces/mySecondaryNamespace" .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery .Link https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebusgeodrconfiguration #> function New-AzServiceBusGeoDRConfiguration { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] @@ -2447,12 +2447,12 @@ This operation is idempotent. New-AzServiceBusQueue -ResourceGroupName myResourceGroup -NamespaceName myNamespace -Name myQueue -AutoDeleteOnIdle (New-TimeSpan -Days 1 -Minutes 3 -Seconds 4) -DefaultMessageTimeToLive (New-TimeSpan -Days 5) -EnablePartitioning .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue .Link https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebusqueue #> function New-AzServiceBusQueue { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] @@ -2724,12 +2724,12 @@ New-AzServiceBusRule -ResourceGroupName myResourceGroup -NamespaceName myNamespa New-AzServiceBusRule -ResourceGroupName myResourceGroup -NamespaceName myNamespace -TopicName myTopic -SubscriptionName mySubscription -Name mySqlRule -FilterType SqlFilter -SqlExpression 3=2 -ActionSqlExpression "SET a=b" .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule .Link https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebusrule #> function New-AzServiceBusRule { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] @@ -2793,7 +2793,7 @@ param( [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterProperties]))] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterProperties]))] [System.Collections.Hashtable] # dictionary object for custom filters ${CorrelationFilterProperty}, @@ -3001,12 +3001,12 @@ Creates a topic subscription. New-AzServiceBusSubscription -ResourceGroupName myResourceGroup -NamespaceName myNamespace -TopicName myTopic -Name mySubscription -DefaultMessageTimeToLive (New-TimeSpan -Days 6) -EnableBatchedOperations .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription .Link https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebussubscription #> function New-AzServiceBusSubscription { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] @@ -3277,12 +3277,12 @@ Creates a topic in the specified namespace. New-AzServiceBusTopic -ResourceGroupName myResourceGroup -NamespaceName myNamespace -Name myTopic -DefaultMessageTimeToLive (New-TimeSpan -Days 18) -EnableBatchedOperations .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic .Link https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebustopic #> function New-AzServiceBusTopic { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] @@ -5176,12 +5176,12 @@ Creates Migration configuration and starts migration of entities from Standard t Start-AzServiceBusMigration -ResourceGroupName myResourceGroup -NamespaceName myNamespace -PostMigrationName myStandardNamespace2 -TargetNamespace /subscriptions/subscriptionId/resourceGroups/myResourceGroup/providers/Microsoft.ServiceBus/namespaces/myPremiumNamespace .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties .Link https://learn.microsoft.com/powershell/module/az.servicebus/start-azservicebusmigration #> function Start-AzServiceBusMigration { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] @@ -5563,7 +5563,7 @@ Approve-AzServiceBusPrivateEndpointConnection -InputObject $privateEndpoint .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection .Notes COMPLEX PARAMETER PROPERTIES @@ -5586,7 +5586,7 @@ INPUTOBJECT : Identity parameter. https://learn.microsoft.com/powershell/module/az.servicebus/approve-azservicebusprivateendpointconnection #> function Approve-AzServiceBusPrivateEndpointConnection { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection])] [CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false)] param( [Parameter(ParameterSetName='SetExpanded', Mandatory)] @@ -5781,7 +5781,7 @@ Deny-AzServiceBusPrivateEndpointConnection -InputObject $privateEndpoint .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection .Notes COMPLEX PARAMETER PROPERTIES @@ -5804,7 +5804,7 @@ INPUTOBJECT : Identity parameter. https://learn.microsoft.com/powershell/module/az.servicebus/deny-azservicebusprivateendpointconnection #> function Deny-AzServiceBusPrivateEndpointConnection { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection])] [CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false)] param( [Parameter(ParameterSetName='SetExpanded', Mandatory)] @@ -6000,7 +6000,7 @@ Get-AzServiceBusAuthorizationRule -ResourceGroupName myResourceGroup -NamespaceN .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule .Notes COMPLEX PARAMETER PROPERTIES @@ -6023,7 +6023,7 @@ INPUTOBJECT : Identity parameter. https://learn.microsoft.com/powershell/module/az.servicebus/get-azservicebusauthorizationrule #> function Get-AzServiceBusAuthorizationRule { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule])] [CmdletBinding(DefaultParameterSetName='GetExpandedNamespace', PositionalBinding=$false)] param( [Parameter(ParameterSetName='GetExpandedNamespace', Mandatory)] @@ -6232,12 +6232,12 @@ Get-AzServiceBusKey -ResourceGroupName myResourceGroup -NamespaceName myNamespac Get-AzServiceBusKey -ResourceGroupName myResourceGroup -NamespaceName myNamespace -TopicName topic1 -Name RootManageSharedAccessKey .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys .Link https://learn.microsoft.com/powershell/module/az.servicebus/get-azservicebuskey #> function Get-AzServiceBusKey { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys])] [CmdletBinding(DefaultParameterSetName='GetExpandedNamespace', PositionalBinding=$false)] param( [Parameter(Mandatory)] @@ -6436,12 +6436,12 @@ New-AzServiceBusAuthorizationRule -ResourceGroupName myResourceGroup -NamespaceN New-AzServiceBusAuthorizationRule -ResourceGroupName myResourceGroup -NamespaceName myNamespace -QueueName myQueue -Name myAuthRule -Rights @('Manage', 'Send', 'Listen') .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule .Link https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebusauthorizationrule #> function New-AzServiceBusAuthorizationRule { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule])] [CmdletBinding(DefaultParameterSetName='NewExpandedNamespace', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] @@ -6637,12 +6637,12 @@ Constructs an INwRuleSetIPRules object that can be fed as input to Set-AzService New-AzServiceBusIPRuleConfig -IPMask 3.3.3.3 -Action Allow .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRules +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRules .Link https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebusipruleconfig #> function New-AzServiceBusIPRuleConfig { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRules])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRules])] [CmdletBinding(PositionalBinding=$false)] param( [Parameter(Mandatory)] @@ -6745,12 +6745,12 @@ New-AzServiceBusKey -ResourceGroupName myResourceGroup -NamespaceName myNamespac New-AzServiceBusKey -ResourceGroupName myResourceGroup -NamespaceName myNamespace -TopicName myTopic -Name rootmanagesharedaccesskey -KeyType SecondaryKey .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys .Link https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebuskey #> function New-AzServiceBusKey { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys])] [CmdletBinding(DefaultParameterSetName='NewExpandedNamespace', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] @@ -6956,12 +6956,12 @@ $ec1 = "/subscriptions/0000000000000/resourceGroups/myResourceGroup/providers/Mi New-AzServiceBusKeyVaultPropertiesObject -KeyName key4 -KeyVaultUri https://testkeyvault.vault.azure.net/ -UserAssignedIdentity $ec1 .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.KeyVaultProperties +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.KeyVaultProperties .Link https://learn.microsoft.com/powershell/module/az.ServiceBus/new-AzServiceBusKeyVaultPropertiesObject #> function New-AzServiceBusKeyVaultPropertiesObject { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.KeyVaultProperties])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.KeyVaultProperties])] [CmdletBinding(PositionalBinding=$false)] param( [Parameter()] @@ -7080,7 +7080,7 @@ New-AzServiceBusNamespaceV2 -ResourceGroupName myResourceGroup -Name myNamespace New-AzServiceBusNamespaceV2 -ResourceGroupName myResourceGroup -Name myNamespace -SkuName Standard -Location southcentralus -Tag @{k1='v1'; k2='v2'} -DisableLocalAuth .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace .Notes COMPLEX PARAMETER PROPERTIES @@ -7095,7 +7095,7 @@ KEYVAULTPROPERTY : Properties of KeyVault https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebusnamespacev2 #> function New-AzServiceBusNamespaceV2 { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace])] [CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] @@ -7137,11 +7137,19 @@ param( [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties[]] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties[]] # Properties of KeyVault # To construct, see NOTES section for KEYVAULTPROPERTY properties and create a hash table. ${KeyVaultProperty}, + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] + [System.Int32] + # The number of partitions of a Service Bus namespace. + # This property is only applicable to Premium SKU namespaces. + # The default value is 1 and possible values are 1, 2 and 4 + ${PremiumMessagingPartition}, + [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] [System.Management.Automation.SwitchParameter] @@ -7345,12 +7353,12 @@ Constructs an INwRuleSetIPRules object that can be fed as input to Set-AzService New-AzServiceBusVirtualNetworkRuleConfig -SubnetId /subscriptions/subscriptionId/resourcegroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVirtualNetwork/subnets/default .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRules +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRules .Link https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebusvirtualnetworkruleconfig #> function New-AzServiceBusVirtualNetworkRuleConfig { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRules])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRules])] [CmdletBinding(PositionalBinding=$false)] param( [Parameter(Mandatory)] @@ -7453,7 +7461,7 @@ Remove-AzServiceBusAuthorizationRule -ResourceGroupName myResourceGroup -Namespa .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule .Notes COMPLEX PARAMETER PROPERTIES @@ -7476,7 +7484,7 @@ INPUTOBJECT : Identity parameter. https://learn.microsoft.com/powershell/module/az.servicebus/remove-azservicebusauthorizationrule #> function Remove-AzServiceBusAuthorizationRule { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule])] [CmdletBinding(DefaultParameterSetName='RemoveExpandedNamespace', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='RemoveExpandedNamespace', Mandatory)] @@ -7686,7 +7694,7 @@ Set-AzServiceBusAuthorizationRule -ResourceGroupName myResourceGroup -NamespaceN .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule .Notes COMPLEX PARAMETER PROPERTIES @@ -7709,7 +7717,7 @@ INPUTOBJECT : Identity parameter. https://learn.microsoft.com/powershell/module/az.servicebus/set-azservicebusauthorizationrule #> function Set-AzServiceBusAuthorizationRule { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule])] [CmdletBinding(DefaultParameterSetName='SetExpandedNamespace', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='SetExpandedNamespace', Mandatory)] @@ -8354,7 +8362,7 @@ $serviceBusNamespace = New-AzServiceBusNamespaceV2 -ResourceGroupName myResource $serviceBusNamespace = Set-AzServiceBusNamespaceV2 -ResourceGroupName myResourceGroup -Name myNamespace -IdentityType None -UserAssignedIdentityId @() .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace .Notes COMPLEX PARAMETER PROPERTIES @@ -8383,7 +8391,7 @@ KEYVAULTPROPERTY : Properties of KeyVault https://learn.microsoft.com/powershell/module/az.servicebus/set-azservicebusnamespacev2 #> function Set-AzServiceBusNamespaceV2 { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace])] [CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='SetExpanded', Mandatory)] @@ -8426,7 +8434,7 @@ param( [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties[]] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties[]] # Properties of KeyVault # To construct, see NOTES section for KEYVAULTPROPERTY properties and create a hash table. ${KeyVaultProperty}, @@ -8640,7 +8648,7 @@ Set-AzServiceBusNetworkRuleSet -ResourceGroupName myResourceGroup -NamespaceName .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet .Notes COMPLEX PARAMETER PROPERTIES @@ -8671,7 +8679,7 @@ VIRTUALNETWORKRULE : List of VirtualNetwork Rul https://learn.microsoft.com/powershell/module/az.servicebus/set-azservicebusnetworkruleset #> function Set-AzServiceBusNetworkRuleSet { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet])] [CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='SetExpanded', Mandatory)] @@ -8723,14 +8731,14 @@ param( [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRules[]] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRules[]] # List of IpRules # To construct, see NOTES section for IPRULE properties and create a hash table. ${IPRule}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRules[]] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRules[]] # List of VirtualNetwork Rules # To construct, see NOTES section for VIRTUALNETWORKRULE properties and create a hash table. ${VirtualNetworkRule}, @@ -8887,7 +8895,7 @@ Set-AzServiceBusQueue -InputObject $queue -AutoDeleteOnIdle (New-TimeSpan -Days .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue .Notes COMPLEX PARAMETER PROPERTIES @@ -8910,7 +8918,7 @@ INPUTOBJECT : Identity parameter. https://learn.microsoft.com/powershell/module/az.servicebus/set-azservicebusqueue #> function Set-AzServiceBusQueue { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue])] [CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='SetExpanded', Mandatory)] @@ -9189,7 +9197,7 @@ Set-AzServiceBusRule -InputObject $rule -SqlExpression 5=3 .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule .Notes COMPLEX PARAMETER PROPERTIES @@ -9212,7 +9220,7 @@ INPUTOBJECT : Identity parameter. https://learn.microsoft.com/powershell/module/az.servicebus/set-azservicebusrule #> function Set-AzServiceBusRule { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule])] [CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='SetExpanded', Mandatory)] @@ -9507,7 +9515,7 @@ Set-AzServiceBusSubscription -InputObject $subscription -DefaultMessageTimeToLiv .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription .Notes COMPLEX PARAMETER PROPERTIES @@ -9530,7 +9538,7 @@ INPUTOBJECT : Identity parameter. https://learn.microsoft.com/powershell/module/az.servicebus/set-azservicebussubscription #> function Set-AzServiceBusSubscription { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription])] [CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='SetExpanded', Mandatory)] @@ -9798,7 +9806,7 @@ Set-AzServiceBusTopic -InputObject $topic -DefaultMessageTimeToLive (New-TimeSpa .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic .Notes COMPLEX PARAMETER PROPERTIES @@ -9821,7 +9829,7 @@ INPUTOBJECT : Identity parameter. https://learn.microsoft.com/powershell/module/az.servicebus/set-azservicebustopic #> function Set-AzServiceBusTopic { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic])] [CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='SetExpanded', Mandatory)] @@ -10070,12 +10078,12 @@ Test-AzServiceBusName -NamespaceName myNamespace Test-AzServiceBusName -NamespaceName myNamespace -ResourceGroupName myResourceGroup -AliasName myAlias .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult .Link https://learn.microsoft.com/powershell/module/az.servicebus/test-azservicebusname #> function Test-AzServiceBusName { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult])] [CmdletBinding(DefaultParameterSetName='NamespaceAvailability', PositionalBinding=$false)] param( [Parameter(Mandatory)] diff --git a/src/ServiceBus/ServiceBus.Autorest/exports/README.md b/src/ServiceBus/ServiceBus.Autorest/exports/README.md index eb0885d3411c..32baa93ee036 100644 --- a/src/ServiceBus/ServiceBus.Autorest/exports/README.md +++ b/src/ServiceBus/ServiceBus.Autorest/exports/README.md @@ -1,5 +1,5 @@ # Exports -This directory contains the cmdlets *exported by* `Az.ServiceBus`. No other cmdlets in this repository are directly exported. What that means is the `Az.ServiceBus` 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.ServiceBus`. No other cmdlets in this repository are directly exported. What that means is the `Az.ServiceBus` 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/ServiceBus/ServiceBus.Autorest/exports/Remove-AzServiceBusAuthorizationRule.ps1 b/src/ServiceBus/ServiceBus.Autorest/exports/Remove-AzServiceBusAuthorizationRule.ps1 index 73969747efb1..624d94e3cb15 100644 --- a/src/ServiceBus/ServiceBus.Autorest/exports/Remove-AzServiceBusAuthorizationRule.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/exports/Remove-AzServiceBusAuthorizationRule.ps1 @@ -27,7 +27,7 @@ Remove-AzServiceBusAuthorizationRule -ResourceGroupName myResourceGroup -Namespa .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule .Notes COMPLEX PARAMETER PROPERTIES @@ -50,7 +50,7 @@ INPUTOBJECT : Identity parameter. https://learn.microsoft.com/powershell/module/az.servicebus/remove-azservicebusauthorizationrule #> function Remove-AzServiceBusAuthorizationRule { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule])] [CmdletBinding(DefaultParameterSetName='RemoveExpandedNamespace', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='RemoveExpandedNamespace', Mandatory)] diff --git a/src/ServiceBus/ServiceBus.Autorest/exports/Set-AzServiceBusAuthorizationRule.ps1 b/src/ServiceBus/ServiceBus.Autorest/exports/Set-AzServiceBusAuthorizationRule.ps1 index 960d97da1667..278549628f0a 100644 --- a/src/ServiceBus/ServiceBus.Autorest/exports/Set-AzServiceBusAuthorizationRule.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/exports/Set-AzServiceBusAuthorizationRule.ps1 @@ -27,7 +27,7 @@ Set-AzServiceBusAuthorizationRule -ResourceGroupName myResourceGroup -NamespaceN .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule .Notes COMPLEX PARAMETER PROPERTIES @@ -50,7 +50,7 @@ INPUTOBJECT : Identity parameter. https://learn.microsoft.com/powershell/module/az.servicebus/set-azservicebusauthorizationrule #> function Set-AzServiceBusAuthorizationRule { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule])] [CmdletBinding(DefaultParameterSetName='SetExpandedNamespace', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='SetExpandedNamespace', Mandatory)] diff --git a/src/ServiceBus/ServiceBus.Autorest/exports/Set-AzServiceBusNamespaceV2.ps1 b/src/ServiceBus/ServiceBus.Autorest/exports/Set-AzServiceBusNamespaceV2.ps1 index 86fef6741964..e4b79ccf5746 100644 --- a/src/ServiceBus/ServiceBus.Autorest/exports/Set-AzServiceBusNamespaceV2.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/exports/Set-AzServiceBusNamespaceV2.ps1 @@ -40,7 +40,7 @@ $serviceBusNamespace = New-AzServiceBusNamespaceV2 -ResourceGroupName myResource $serviceBusNamespace = Set-AzServiceBusNamespaceV2 -ResourceGroupName myResourceGroup -Name myNamespace -IdentityType None -UserAssignedIdentityId @() .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace .Notes COMPLEX PARAMETER PROPERTIES @@ -69,7 +69,7 @@ KEYVAULTPROPERTY : Properties of KeyVault https://learn.microsoft.com/powershell/module/az.servicebus/set-azservicebusnamespacev2 #> function Set-AzServiceBusNamespaceV2 { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace])] [CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='SetExpanded', Mandatory)] @@ -112,7 +112,7 @@ param( [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties[]] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties[]] # Properties of KeyVault # To construct, see NOTES section for KEYVAULTPROPERTY properties and create a hash table. ${KeyVaultProperty}, diff --git a/src/ServiceBus/ServiceBus.Autorest/exports/Set-AzServiceBusNetworkRuleSet.ps1 b/src/ServiceBus/ServiceBus.Autorest/exports/Set-AzServiceBusNetworkRuleSet.ps1 index aae71f21e53e..e844ba1f1496 100644 --- a/src/ServiceBus/ServiceBus.Autorest/exports/Set-AzServiceBusNetworkRuleSet.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/exports/Set-AzServiceBusNetworkRuleSet.ps1 @@ -34,7 +34,7 @@ Set-AzServiceBusNetworkRuleSet -ResourceGroupName myResourceGroup -NamespaceName .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet .Notes COMPLEX PARAMETER PROPERTIES @@ -65,7 +65,7 @@ VIRTUALNETWORKRULE : List of VirtualNetwork Rul https://learn.microsoft.com/powershell/module/az.servicebus/set-azservicebusnetworkruleset #> function Set-AzServiceBusNetworkRuleSet { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet])] [CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='SetExpanded', Mandatory)] @@ -117,14 +117,14 @@ param( [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRules[]] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRules[]] # List of IpRules # To construct, see NOTES section for IPRULE properties and create a hash table. ${IPRule}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRules[]] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRules[]] # List of VirtualNetwork Rules # To construct, see NOTES section for VIRTUALNETWORKRULE properties and create a hash table. ${VirtualNetworkRule}, diff --git a/src/ServiceBus/ServiceBus.Autorest/exports/Set-AzServiceBusQueue.ps1 b/src/ServiceBus/ServiceBus.Autorest/exports/Set-AzServiceBusQueue.ps1 index 0c45faf530d4..0c18b9afd1da 100644 --- a/src/ServiceBus/ServiceBus.Autorest/exports/Set-AzServiceBusQueue.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/exports/Set-AzServiceBusQueue.ps1 @@ -28,7 +28,7 @@ Set-AzServiceBusQueue -InputObject $queue -AutoDeleteOnIdle (New-TimeSpan -Days .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue .Notes COMPLEX PARAMETER PROPERTIES @@ -51,7 +51,7 @@ INPUTOBJECT : Identity parameter. https://learn.microsoft.com/powershell/module/az.servicebus/set-azservicebusqueue #> function Set-AzServiceBusQueue { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue])] [CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='SetExpanded', Mandatory)] diff --git a/src/ServiceBus/ServiceBus.Autorest/exports/Set-AzServiceBusRule.ps1 b/src/ServiceBus/ServiceBus.Autorest/exports/Set-AzServiceBusRule.ps1 index d855538c7e02..8c0483b81c23 100644 --- a/src/ServiceBus/ServiceBus.Autorest/exports/Set-AzServiceBusRule.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/exports/Set-AzServiceBusRule.ps1 @@ -28,7 +28,7 @@ Set-AzServiceBusRule -InputObject $rule -SqlExpression 5=3 .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule .Notes COMPLEX PARAMETER PROPERTIES @@ -51,7 +51,7 @@ INPUTOBJECT : Identity parameter. https://learn.microsoft.com/powershell/module/az.servicebus/set-azservicebusrule #> function Set-AzServiceBusRule { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule])] [CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='SetExpanded', Mandatory)] diff --git a/src/ServiceBus/ServiceBus.Autorest/exports/Set-AzServiceBusSubscription.ps1 b/src/ServiceBus/ServiceBus.Autorest/exports/Set-AzServiceBusSubscription.ps1 index 85e0a360b37a..99e36a532d7b 100644 --- a/src/ServiceBus/ServiceBus.Autorest/exports/Set-AzServiceBusSubscription.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/exports/Set-AzServiceBusSubscription.ps1 @@ -28,7 +28,7 @@ Set-AzServiceBusSubscription -InputObject $subscription -DefaultMessageTimeToLiv .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription .Notes COMPLEX PARAMETER PROPERTIES @@ -51,7 +51,7 @@ INPUTOBJECT : Identity parameter. https://learn.microsoft.com/powershell/module/az.servicebus/set-azservicebussubscription #> function Set-AzServiceBusSubscription { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription])] [CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='SetExpanded', Mandatory)] diff --git a/src/ServiceBus/ServiceBus.Autorest/exports/Set-AzServiceBusTopic.ps1 b/src/ServiceBus/ServiceBus.Autorest/exports/Set-AzServiceBusTopic.ps1 index 837e23dfe000..16ba7e8bc77c 100644 --- a/src/ServiceBus/ServiceBus.Autorest/exports/Set-AzServiceBusTopic.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/exports/Set-AzServiceBusTopic.ps1 @@ -28,7 +28,7 @@ Set-AzServiceBusTopic -InputObject $topic -DefaultMessageTimeToLive (New-TimeSpa .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic .Notes COMPLEX PARAMETER PROPERTIES @@ -51,7 +51,7 @@ INPUTOBJECT : Identity parameter. https://learn.microsoft.com/powershell/module/az.servicebus/set-azservicebustopic #> function Set-AzServiceBusTopic { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic])] [CmdletBinding(DefaultParameterSetName='SetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='SetExpanded', Mandatory)] diff --git a/src/ServiceBus/ServiceBus.Autorest/exports/Start-AzServiceBusMigration.ps1 b/src/ServiceBus/ServiceBus.Autorest/exports/Start-AzServiceBusMigration.ps1 index 447494e6736d..8ba47a48b26d 100644 --- a/src/ServiceBus/ServiceBus.Autorest/exports/Start-AzServiceBusMigration.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/exports/Start-AzServiceBusMigration.ps1 @@ -23,12 +23,12 @@ Creates Migration configuration and starts migration of entities from Standard t Start-AzServiceBusMigration -ResourceGroupName myResourceGroup -NamespaceName myNamespace -PostMigrationName myStandardNamespace2 -TargetNamespace /subscriptions/subscriptionId/resourceGroups/myResourceGroup/providers/Microsoft.ServiceBus/namespaces/myPremiumNamespace .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties .Link https://learn.microsoft.com/powershell/module/az.servicebus/start-azservicebusmigration #> function Start-AzServiceBusMigration { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] diff --git a/src/ServiceBus/ServiceBus.Autorest/exports/Test-AzServiceBusName.ps1 b/src/ServiceBus/ServiceBus.Autorest/exports/Test-AzServiceBusName.ps1 index 42b0ae46a0b1..2de845e99249 100644 --- a/src/ServiceBus/ServiceBus.Autorest/exports/Test-AzServiceBusName.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/exports/Test-AzServiceBusName.ps1 @@ -25,12 +25,12 @@ Test-AzServiceBusName -NamespaceName myNamespace Test-AzServiceBusName -NamespaceName myNamespace -ResourceGroupName myResourceGroup -AliasName myAlias .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult .Link https://learn.microsoft.com/powershell/module/az.servicebus/test-azservicebusname #> function Test-AzServiceBusName { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult])] [CmdletBinding(DefaultParameterSetName='NamespaceAvailability', PositionalBinding=$false)] param( [Parameter(Mandatory)] diff --git a/src/ServiceBus/ServiceBus.Autorest/generate-info.json b/src/ServiceBus/ServiceBus.Autorest/generate-info.json index e8b42d4e66a1..0b2d866504c0 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generate-info.json +++ b/src/ServiceBus/ServiceBus.Autorest/generate-info.json @@ -1,8 +1,8 @@ { - "autorest": "`-- (empty)", + "swagger_commit": "2f545bf51d046c377a7957a7c53e1d260c9d7343", + "node": "v14.15.5", "autorest_modelerfour": "4.15.414", "autorest_powershell": "3.0.498", - "node": "v14.15.5", - "autorest_core": "3.9.3", - "swagger_commit": "d85953a9cb1b464824fae7c1fd300a99d086c8e4" + "autorest_core": "3.9.4", + "autorest": "`-- (empty)" } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Rule.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Rule.PowerShell.cs deleted file mode 100644 index fd3c42834fd0..000000000000 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Rule.PowerShell.cs +++ /dev/null @@ -1,412 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview -{ - using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; - - /// Description of Rule Resource. - [System.ComponentModel.TypeConverter(typeof(RuleTypeConverter))] - public partial class Rule - { - - /// - /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the - /// object before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Collections.IDictionary content that should be used. - - partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); - - /// - /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object - /// before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Management.Automation.PSObject content that should be used. - - partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); - - /// - /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output - /// parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Collections.IDictionary content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); - - /// - /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output - /// parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); - - /// - /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior - /// - /// /// instance serialized to a string, normally it is a Json - /// /// set returnNow to true if you provide a customized OverrideToString function - - partial void OverrideToString(ref string stringResult, ref bool returnNow); - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule DeserializeFromDictionary(global::System.Collections.IDictionary content) - { - return new Rule(content); - } - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule DeserializeFromPSObject(global::System.Management.Automation.PSObject content) - { - return new Rule(content); - } - - /// - /// Creates a new instance of , deserializing the content from a json string. - /// - /// a string containing a JSON serialized instance of this model. - /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - internal Rule(global::System.Collections.IDictionary content) - { - bool returnNow = false; - BeforeDeserializeDictionary(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("Property")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleproperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.RulepropertiesTypeConverter.ConvertFrom); - } - if (content.Contains("SystemData")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemDataTypeConverter.ConvertFrom); - } - if (content.Contains("Id")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Id, global::System.Convert.ToString); - } - if (content.Contains("Name")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Name, global::System.Convert.ToString); - } - if (content.Contains("Type")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Type, global::System.Convert.ToString); - } - if (content.Contains("Location")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Location, global::System.Convert.ToString); - } - if (content.Contains("Action")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).Action = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAction) content.GetValueForProperty("Action",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).Action, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ActionTypeConverter.ConvertFrom); - } - if (content.Contains("SqlFilter")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SqlFilter = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlFilter) content.GetValueForProperty("SqlFilter",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SqlFilter, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SqlFilterTypeConverter.ConvertFrom); - } - if (content.Contains("CorrelationFilter")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).CorrelationFilter = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilter) content.GetValueForProperty("CorrelationFilter",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).CorrelationFilter, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.CorrelationFilterTypeConverter.ConvertFrom); - } - if (content.Contains("FilterType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).FilterType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.FilterType?) content.GetValueForProperty("FilterType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).FilterType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.FilterType.CreateFrom); - } - if (content.Contains("SystemDataCreatedBy")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); - } - if (content.Contains("SystemDataCreatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("ActionSqlExpression")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).ActionSqlExpression = (string) content.GetValueForProperty("ActionSqlExpression",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).ActionSqlExpression, global::System.Convert.ToString); - } - if (content.Contains("ActionCompatibilityLevel")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).ActionCompatibilityLevel = (int?) content.GetValueForProperty("ActionCompatibilityLevel",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).ActionCompatibilityLevel, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - } - if (content.Contains("SqlExpression")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SqlExpression = (string) content.GetValueForProperty("SqlExpression",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SqlExpression, global::System.Convert.ToString); - } - if (content.Contains("SqlFilterCompatibilityLevel")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SqlFilterCompatibilityLevel = (int?) content.GetValueForProperty("SqlFilterCompatibilityLevel",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SqlFilterCompatibilityLevel, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - } - if (content.Contains("CorrelationFilterProperty")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).CorrelationFilterProperty = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterProperties) content.GetValueForProperty("CorrelationFilterProperty",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).CorrelationFilterProperty, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.CorrelationFilterPropertiesTypeConverter.ConvertFrom); - } - if (content.Contains("CorrelationId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).CorrelationId = (string) content.GetValueForProperty("CorrelationId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).CorrelationId, global::System.Convert.ToString); - } - if (content.Contains("MessageId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).MessageId = (string) content.GetValueForProperty("MessageId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).MessageId, global::System.Convert.ToString); - } - if (content.Contains("To")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).To = (string) content.GetValueForProperty("To",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).To, global::System.Convert.ToString); - } - if (content.Contains("ReplyTo")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).ReplyTo = (string) content.GetValueForProperty("ReplyTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).ReplyTo, global::System.Convert.ToString); - } - if (content.Contains("Label")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).Label = (string) content.GetValueForProperty("Label",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).Label, global::System.Convert.ToString); - } - if (content.Contains("SessionId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SessionId = (string) content.GetValueForProperty("SessionId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SessionId, global::System.Convert.ToString); - } - if (content.Contains("ContentType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).ContentType = (string) content.GetValueForProperty("ContentType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).ContentType, global::System.Convert.ToString); - } - if (content.Contains("SystemDataCreatedByType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); - } - if (content.Contains("SystemDataLastModifiedBy")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); - } - if (content.Contains("SystemDataLastModifiedByType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); - } - if (content.Contains("SystemDataLastModifiedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("ActionRequiresPreprocessing")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).ActionRequiresPreprocessing = (bool?) content.GetValueForProperty("ActionRequiresPreprocessing",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).ActionRequiresPreprocessing, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("SqlFilterRequiresPreprocessing")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SqlFilterRequiresPreprocessing = (bool?) content.GetValueForProperty("SqlFilterRequiresPreprocessing",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SqlFilterRequiresPreprocessing, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("ReplyToSessionId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).ReplyToSessionId = (string) content.GetValueForProperty("ReplyToSessionId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).ReplyToSessionId, global::System.Convert.ToString); - } - if (content.Contains("CorrelationFilterRequiresPreprocessing")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).CorrelationFilterRequiresPreprocessing = (bool?) content.GetValueForProperty("CorrelationFilterRequiresPreprocessing",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).CorrelationFilterRequiresPreprocessing, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - AfterDeserializeDictionary(content); - } - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - internal Rule(global::System.Management.Automation.PSObject content) - { - bool returnNow = false; - BeforeDeserializePSObject(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("Property")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleproperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.RulepropertiesTypeConverter.ConvertFrom); - } - if (content.Contains("SystemData")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemDataTypeConverter.ConvertFrom); - } - if (content.Contains("Id")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Id, global::System.Convert.ToString); - } - if (content.Contains("Name")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Name, global::System.Convert.ToString); - } - if (content.Contains("Type")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Type, global::System.Convert.ToString); - } - if (content.Contains("Location")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Location, global::System.Convert.ToString); - } - if (content.Contains("Action")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).Action = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAction) content.GetValueForProperty("Action",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).Action, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ActionTypeConverter.ConvertFrom); - } - if (content.Contains("SqlFilter")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SqlFilter = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlFilter) content.GetValueForProperty("SqlFilter",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SqlFilter, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SqlFilterTypeConverter.ConvertFrom); - } - if (content.Contains("CorrelationFilter")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).CorrelationFilter = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilter) content.GetValueForProperty("CorrelationFilter",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).CorrelationFilter, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.CorrelationFilterTypeConverter.ConvertFrom); - } - if (content.Contains("FilterType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).FilterType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.FilterType?) content.GetValueForProperty("FilterType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).FilterType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.FilterType.CreateFrom); - } - if (content.Contains("SystemDataCreatedBy")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); - } - if (content.Contains("SystemDataCreatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("ActionSqlExpression")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).ActionSqlExpression = (string) content.GetValueForProperty("ActionSqlExpression",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).ActionSqlExpression, global::System.Convert.ToString); - } - if (content.Contains("ActionCompatibilityLevel")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).ActionCompatibilityLevel = (int?) content.GetValueForProperty("ActionCompatibilityLevel",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).ActionCompatibilityLevel, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - } - if (content.Contains("SqlExpression")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SqlExpression = (string) content.GetValueForProperty("SqlExpression",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SqlExpression, global::System.Convert.ToString); - } - if (content.Contains("SqlFilterCompatibilityLevel")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SqlFilterCompatibilityLevel = (int?) content.GetValueForProperty("SqlFilterCompatibilityLevel",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SqlFilterCompatibilityLevel, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - } - if (content.Contains("CorrelationFilterProperty")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).CorrelationFilterProperty = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterProperties) content.GetValueForProperty("CorrelationFilterProperty",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).CorrelationFilterProperty, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.CorrelationFilterPropertiesTypeConverter.ConvertFrom); - } - if (content.Contains("CorrelationId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).CorrelationId = (string) content.GetValueForProperty("CorrelationId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).CorrelationId, global::System.Convert.ToString); - } - if (content.Contains("MessageId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).MessageId = (string) content.GetValueForProperty("MessageId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).MessageId, global::System.Convert.ToString); - } - if (content.Contains("To")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).To = (string) content.GetValueForProperty("To",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).To, global::System.Convert.ToString); - } - if (content.Contains("ReplyTo")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).ReplyTo = (string) content.GetValueForProperty("ReplyTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).ReplyTo, global::System.Convert.ToString); - } - if (content.Contains("Label")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).Label = (string) content.GetValueForProperty("Label",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).Label, global::System.Convert.ToString); - } - if (content.Contains("SessionId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SessionId = (string) content.GetValueForProperty("SessionId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SessionId, global::System.Convert.ToString); - } - if (content.Contains("ContentType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).ContentType = (string) content.GetValueForProperty("ContentType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).ContentType, global::System.Convert.ToString); - } - if (content.Contains("SystemDataCreatedByType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); - } - if (content.Contains("SystemDataLastModifiedBy")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); - } - if (content.Contains("SystemDataLastModifiedByType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); - } - if (content.Contains("SystemDataLastModifiedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("ActionRequiresPreprocessing")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).ActionRequiresPreprocessing = (bool?) content.GetValueForProperty("ActionRequiresPreprocessing",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).ActionRequiresPreprocessing, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("SqlFilterRequiresPreprocessing")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SqlFilterRequiresPreprocessing = (bool?) content.GetValueForProperty("SqlFilterRequiresPreprocessing",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).SqlFilterRequiresPreprocessing, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("ReplyToSessionId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).ReplyToSessionId = (string) content.GetValueForProperty("ReplyToSessionId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).ReplyToSessionId, global::System.Convert.ToString); - } - if (content.Contains("CorrelationFilterRequiresPreprocessing")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).CorrelationFilterRequiresPreprocessing = (bool?) content.GetValueForProperty("CorrelationFilterRequiresPreprocessing",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal)this).CorrelationFilterRequiresPreprocessing, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - AfterDeserializePSObject(content); - } - - /// Serializes this instance to a json string. - - /// a containing this model serialized to JSON text. - public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.SerializationMode.IncludeAll)?.ToString(); - - public override string ToString() - { - var returnNow = false; - var result = global::System.String.Empty; - OverrideToString(ref result, ref returnNow); - if (returnNow) - { - return result; - } - return ToJsonString(); - } - } - /// Description of Rule Resource. - [System.ComponentModel.TypeConverter(typeof(RuleTypeConverter))] - public partial interface IRule - - { - - } -} \ No newline at end of file diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Ruleproperties.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Ruleproperties.PowerShell.cs deleted file mode 100644 index c5a036bc318c..000000000000 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Ruleproperties.PowerShell.cs +++ /dev/null @@ -1,316 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview -{ - using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; - - /// Description of Rule Resource. - [System.ComponentModel.TypeConverter(typeof(RulepropertiesTypeConverter))] - public partial class Ruleproperties - { - - /// - /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the - /// object before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Collections.IDictionary content that should be used. - - partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); - - /// - /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object - /// before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Management.Automation.PSObject content that should be used. - - partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); - - /// - /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output - /// parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Collections.IDictionary content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); - - /// - /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output - /// parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); - - /// - /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior - /// - /// /// instance serialized to a string, normally it is a Json - /// /// set returnNow to true if you provide a customized OverrideToString function - - partial void OverrideToString(ref string stringResult, ref bool returnNow); - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleproperties DeserializeFromDictionary(global::System.Collections.IDictionary content) - { - return new Ruleproperties(content); - } - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleproperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) - { - return new Ruleproperties(content); - } - - /// - /// Creates a new instance of , deserializing the content from a json string. - /// - /// a string containing a JSON serialized instance of this model. - /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleproperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - internal Ruleproperties(global::System.Collections.IDictionary content) - { - bool returnNow = false; - BeforeDeserializeDictionary(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("Action")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).Action = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAction) content.GetValueForProperty("Action",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).Action, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ActionTypeConverter.ConvertFrom); - } - if (content.Contains("SqlFilter")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).SqlFilter = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlFilter) content.GetValueForProperty("SqlFilter",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).SqlFilter, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SqlFilterTypeConverter.ConvertFrom); - } - if (content.Contains("CorrelationFilter")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).CorrelationFilter = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilter) content.GetValueForProperty("CorrelationFilter",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).CorrelationFilter, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.CorrelationFilterTypeConverter.ConvertFrom); - } - if (content.Contains("FilterType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).FilterType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.FilterType?) content.GetValueForProperty("FilterType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).FilterType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.FilterType.CreateFrom); - } - if (content.Contains("ActionSqlExpression")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).ActionSqlExpression = (string) content.GetValueForProperty("ActionSqlExpression",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).ActionSqlExpression, global::System.Convert.ToString); - } - if (content.Contains("ActionCompatibilityLevel")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).ActionCompatibilityLevel = (int?) content.GetValueForProperty("ActionCompatibilityLevel",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).ActionCompatibilityLevel, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - } - if (content.Contains("SqlFilterSqlExpression")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).SqlFilterSqlExpression = (string) content.GetValueForProperty("SqlFilterSqlExpression",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).SqlFilterSqlExpression, global::System.Convert.ToString); - } - if (content.Contains("SqlFilterCompatibilityLevel")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).SqlFilterCompatibilityLevel = (int?) content.GetValueForProperty("SqlFilterCompatibilityLevel",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).SqlFilterCompatibilityLevel, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - } - if (content.Contains("CorrelationFilterProperty")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).CorrelationFilterProperty = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterProperties) content.GetValueForProperty("CorrelationFilterProperty",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).CorrelationFilterProperty, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.CorrelationFilterPropertiesTypeConverter.ConvertFrom); - } - if (content.Contains("CorrelationFilterCorrelationId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).CorrelationFilterCorrelationId = (string) content.GetValueForProperty("CorrelationFilterCorrelationId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).CorrelationFilterCorrelationId, global::System.Convert.ToString); - } - if (content.Contains("CorrelationFilterMessageId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).CorrelationFilterMessageId = (string) content.GetValueForProperty("CorrelationFilterMessageId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).CorrelationFilterMessageId, global::System.Convert.ToString); - } - if (content.Contains("CorrelationFilterTo")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).CorrelationFilterTo = (string) content.GetValueForProperty("CorrelationFilterTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).CorrelationFilterTo, global::System.Convert.ToString); - } - if (content.Contains("CorrelationFilterReplyTo")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).CorrelationFilterReplyTo = (string) content.GetValueForProperty("CorrelationFilterReplyTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).CorrelationFilterReplyTo, global::System.Convert.ToString); - } - if (content.Contains("CorrelationFilterLabel")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).CorrelationFilterLabel = (string) content.GetValueForProperty("CorrelationFilterLabel",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).CorrelationFilterLabel, global::System.Convert.ToString); - } - if (content.Contains("CorrelationFilterSessionId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).CorrelationFilterSessionId = (string) content.GetValueForProperty("CorrelationFilterSessionId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).CorrelationFilterSessionId, global::System.Convert.ToString); - } - if (content.Contains("CorrelationFilterContentType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).CorrelationFilterContentType = (string) content.GetValueForProperty("CorrelationFilterContentType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).CorrelationFilterContentType, global::System.Convert.ToString); - } - if (content.Contains("ActionRequiresPreprocessing")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).ActionRequiresPreprocessing = (bool?) content.GetValueForProperty("ActionRequiresPreprocessing",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).ActionRequiresPreprocessing, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("SqlFilterRequiresPreprocessing")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).SqlFilterRequiresPreprocessing = (bool?) content.GetValueForProperty("SqlFilterRequiresPreprocessing",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).SqlFilterRequiresPreprocessing, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("CorrelationFilterReplyToSessionId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).CorrelationFilterReplyToSessionId = (string) content.GetValueForProperty("CorrelationFilterReplyToSessionId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).CorrelationFilterReplyToSessionId, global::System.Convert.ToString); - } - if (content.Contains("CorrelationFilterRequiresPreprocessing")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).CorrelationFilterRequiresPreprocessing = (bool?) content.GetValueForProperty("CorrelationFilterRequiresPreprocessing",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).CorrelationFilterRequiresPreprocessing, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - AfterDeserializeDictionary(content); - } - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - internal Ruleproperties(global::System.Management.Automation.PSObject content) - { - bool returnNow = false; - BeforeDeserializePSObject(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("Action")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).Action = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAction) content.GetValueForProperty("Action",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).Action, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ActionTypeConverter.ConvertFrom); - } - if (content.Contains("SqlFilter")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).SqlFilter = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlFilter) content.GetValueForProperty("SqlFilter",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).SqlFilter, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SqlFilterTypeConverter.ConvertFrom); - } - if (content.Contains("CorrelationFilter")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).CorrelationFilter = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilter) content.GetValueForProperty("CorrelationFilter",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).CorrelationFilter, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.CorrelationFilterTypeConverter.ConvertFrom); - } - if (content.Contains("FilterType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).FilterType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.FilterType?) content.GetValueForProperty("FilterType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).FilterType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.FilterType.CreateFrom); - } - if (content.Contains("ActionSqlExpression")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).ActionSqlExpression = (string) content.GetValueForProperty("ActionSqlExpression",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).ActionSqlExpression, global::System.Convert.ToString); - } - if (content.Contains("ActionCompatibilityLevel")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).ActionCompatibilityLevel = (int?) content.GetValueForProperty("ActionCompatibilityLevel",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).ActionCompatibilityLevel, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - } - if (content.Contains("SqlFilterSqlExpression")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).SqlFilterSqlExpression = (string) content.GetValueForProperty("SqlFilterSqlExpression",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).SqlFilterSqlExpression, global::System.Convert.ToString); - } - if (content.Contains("SqlFilterCompatibilityLevel")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).SqlFilterCompatibilityLevel = (int?) content.GetValueForProperty("SqlFilterCompatibilityLevel",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).SqlFilterCompatibilityLevel, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - } - if (content.Contains("CorrelationFilterProperty")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).CorrelationFilterProperty = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterProperties) content.GetValueForProperty("CorrelationFilterProperty",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).CorrelationFilterProperty, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.CorrelationFilterPropertiesTypeConverter.ConvertFrom); - } - if (content.Contains("CorrelationFilterCorrelationId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).CorrelationFilterCorrelationId = (string) content.GetValueForProperty("CorrelationFilterCorrelationId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).CorrelationFilterCorrelationId, global::System.Convert.ToString); - } - if (content.Contains("CorrelationFilterMessageId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).CorrelationFilterMessageId = (string) content.GetValueForProperty("CorrelationFilterMessageId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).CorrelationFilterMessageId, global::System.Convert.ToString); - } - if (content.Contains("CorrelationFilterTo")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).CorrelationFilterTo = (string) content.GetValueForProperty("CorrelationFilterTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).CorrelationFilterTo, global::System.Convert.ToString); - } - if (content.Contains("CorrelationFilterReplyTo")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).CorrelationFilterReplyTo = (string) content.GetValueForProperty("CorrelationFilterReplyTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).CorrelationFilterReplyTo, global::System.Convert.ToString); - } - if (content.Contains("CorrelationFilterLabel")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).CorrelationFilterLabel = (string) content.GetValueForProperty("CorrelationFilterLabel",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).CorrelationFilterLabel, global::System.Convert.ToString); - } - if (content.Contains("CorrelationFilterSessionId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).CorrelationFilterSessionId = (string) content.GetValueForProperty("CorrelationFilterSessionId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).CorrelationFilterSessionId, global::System.Convert.ToString); - } - if (content.Contains("CorrelationFilterContentType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).CorrelationFilterContentType = (string) content.GetValueForProperty("CorrelationFilterContentType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).CorrelationFilterContentType, global::System.Convert.ToString); - } - if (content.Contains("ActionRequiresPreprocessing")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).ActionRequiresPreprocessing = (bool?) content.GetValueForProperty("ActionRequiresPreprocessing",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).ActionRequiresPreprocessing, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("SqlFilterRequiresPreprocessing")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).SqlFilterRequiresPreprocessing = (bool?) content.GetValueForProperty("SqlFilterRequiresPreprocessing",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).SqlFilterRequiresPreprocessing, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("CorrelationFilterReplyToSessionId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).CorrelationFilterReplyToSessionId = (string) content.GetValueForProperty("CorrelationFilterReplyToSessionId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).CorrelationFilterReplyToSessionId, global::System.Convert.ToString); - } - if (content.Contains("CorrelationFilterRequiresPreprocessing")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).CorrelationFilterRequiresPreprocessing = (bool?) content.GetValueForProperty("CorrelationFilterRequiresPreprocessing",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)this).CorrelationFilterRequiresPreprocessing, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - AfterDeserializePSObject(content); - } - - /// Serializes this instance to a json string. - - /// a containing this model serialized to JSON text. - public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.SerializationMode.IncludeAll)?.ToString(); - - public override string ToString() - { - var returnNow = false; - var result = global::System.String.Empty; - OverrideToString(ref result, ref returnNow); - if (returnNow) - { - return result; - } - return ToJsonString(); - } - } - /// Description of Rule Resource. - [System.ComponentModel.TypeConverter(typeof(RulepropertiesTypeConverter))] - public partial interface IRuleproperties - - { - - } -} \ No newline at end of file diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespace.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespace.PowerShell.cs deleted file mode 100644 index 31b570830db0..000000000000 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespace.PowerShell.cs +++ /dev/null @@ -1,460 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview -{ - using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; - - /// Description of a namespace resource. - [System.ComponentModel.TypeConverter(typeof(SbNamespaceTypeConverter))] - public partial class SbNamespace - { - - /// - /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the - /// object before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Collections.IDictionary content that should be used. - - partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); - - /// - /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object - /// before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Management.Automation.PSObject content that should be used. - - partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); - - /// - /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output - /// parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Collections.IDictionary content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); - - /// - /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output - /// parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); - - /// - /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior - /// - /// /// instance serialized to a string, normally it is a Json - /// /// set returnNow to true if you provide a customized OverrideToString function - - partial void OverrideToString(ref string stringResult, ref bool returnNow); - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace DeserializeFromDictionary(global::System.Collections.IDictionary content) - { - return new SbNamespace(content); - } - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace DeserializeFromPSObject(global::System.Management.Automation.PSObject content) - { - return new SbNamespace(content); - } - - /// - /// Creates a new instance of , deserializing the content from a json string. - /// - /// a string containing a JSON serialized instance of this model. - /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - internal SbNamespace(global::System.Collections.IDictionary content) - { - bool returnNow = false; - BeforeDeserializeDictionary(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("Sku")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).Sku = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSku) content.GetValueForProperty("Sku",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).Sku, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbSkuTypeConverter.ConvertFrom); - } - if (content.Contains("Identity")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).Identity = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentity) content.GetValueForProperty("Identity",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).Identity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IdentityTypeConverter.ConvertFrom); - } - if (content.Contains("SystemData")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemDataTypeConverter.ConvertFrom); - } - if (content.Contains("Property")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbNamespacePropertiesTypeConverter.ConvertFrom); - } - if (content.Contains("Id")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); - } - if (content.Contains("Name")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); - } - if (content.Contains("Type")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); - } - if (content.Contains("Location")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ITrackedResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ITrackedResourceInternal)this).Location, global::System.Convert.ToString); - } - if (content.Contains("Tag")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ITrackedResourceInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ITrackedResourceTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ITrackedResourceInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.TrackedResourceTagsTypeConverter.ConvertFrom); - } - if (content.Contains("SkuName")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).SkuName = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuName) content.GetValueForProperty("SkuName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).SkuName, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuName.CreateFrom); - } - if (content.Contains("SkuTier")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).SkuTier = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuTier?) content.GetValueForProperty("SkuTier",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).SkuTier, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuTier.CreateFrom); - } - if (content.Contains("PrincipalId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).PrincipalId, global::System.Convert.ToString); - } - if (content.Contains("TenantId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).TenantId, global::System.Convert.ToString); - } - if (content.Contains("SystemDataCreatedBy")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); - } - if (content.Contains("SystemDataCreatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("Encryption")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).Encryption = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryption) content.GetValueForProperty("Encryption",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).Encryption, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.EncryptionTypeConverter.ConvertFrom); - } - if (content.Contains("SkuCapacity")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).SkuCapacity = (int?) content.GetValueForProperty("SkuCapacity",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).SkuCapacity, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - } - if (content.Contains("IdentityType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).IdentityType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ManagedServiceIdentityType?) content.GetValueForProperty("IdentityType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).IdentityType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ManagedServiceIdentityType.CreateFrom); - } - if (content.Contains("UserAssignedIdentity")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).UserAssignedIdentity = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityUserAssignedIdentities) content.GetValueForProperty("UserAssignedIdentity",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).UserAssignedIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IdentityUserAssignedIdentitiesTypeConverter.ConvertFrom); - } - if (content.Contains("SystemDataCreatedByType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); - } - if (content.Contains("SystemDataLastModifiedBy")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); - } - if (content.Contains("SystemDataLastModifiedByType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); - } - if (content.Contains("SystemDataLastModifiedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("MinimumTlsVersion")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).MinimumTlsVersion = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.TlsVersion?) content.GetValueForProperty("MinimumTlsVersion",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).MinimumTlsVersion, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.TlsVersion.CreateFrom); - } - if (content.Contains("ProvisioningState")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).ProvisioningState, global::System.Convert.ToString); - } - if (content.Contains("Status")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).Status = (string) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).Status, global::System.Convert.ToString); - } - if (content.Contains("CreatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("UpdatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).UpdatedAt = (global::System.DateTime?) content.GetValueForProperty("UpdatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).UpdatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("ServiceBusEndpoint")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).ServiceBusEndpoint = (string) content.GetValueForProperty("ServiceBusEndpoint",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).ServiceBusEndpoint, global::System.Convert.ToString); - } - if (content.Contains("MetricId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).MetricId = (string) content.GetValueForProperty("MetricId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).MetricId, global::System.Convert.ToString); - } - if (content.Contains("ZoneRedundant")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).ZoneRedundant = (bool?) content.GetValueForProperty("ZoneRedundant",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).ZoneRedundant, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("PrivateEndpointConnection")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).PrivateEndpointConnection = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection[]) content.GetValueForProperty("PrivateEndpointConnection",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).PrivateEndpointConnection, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.PrivateEndpointConnectionTypeConverter.ConvertFrom)); - } - if (content.Contains("DisableLocalAuth")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).DisableLocalAuth = (bool?) content.GetValueForProperty("DisableLocalAuth",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).DisableLocalAuth, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("AlternateName")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).AlternateName = (string) content.GetValueForProperty("AlternateName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).AlternateName, global::System.Convert.ToString); - } - if (content.Contains("PublicNetworkAccess")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).PublicNetworkAccess = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PublicNetworkAccess?) content.GetValueForProperty("PublicNetworkAccess",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).PublicNetworkAccess, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PublicNetworkAccess.CreateFrom); - } - if (content.Contains("KeySource")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).KeySource = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource?) content.GetValueForProperty("KeySource",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).KeySource, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource.CreateFrom); - } - if (content.Contains("KeyVaultProperty")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).KeyVaultProperty = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties[]) content.GetValueForProperty("KeyVaultProperty",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).KeyVaultProperty, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.KeyVaultPropertiesTypeConverter.ConvertFrom)); - } - if (content.Contains("RequireInfrastructureEncryption")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).RequireInfrastructureEncryption = (bool?) content.GetValueForProperty("RequireInfrastructureEncryption",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).RequireInfrastructureEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - AfterDeserializeDictionary(content); - } - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - internal SbNamespace(global::System.Management.Automation.PSObject content) - { - bool returnNow = false; - BeforeDeserializePSObject(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("Sku")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).Sku = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSku) content.GetValueForProperty("Sku",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).Sku, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbSkuTypeConverter.ConvertFrom); - } - if (content.Contains("Identity")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).Identity = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentity) content.GetValueForProperty("Identity",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).Identity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IdentityTypeConverter.ConvertFrom); - } - if (content.Contains("SystemData")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemDataTypeConverter.ConvertFrom); - } - if (content.Contains("Property")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbNamespacePropertiesTypeConverter.ConvertFrom); - } - if (content.Contains("Id")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); - } - if (content.Contains("Name")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); - } - if (content.Contains("Type")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); - } - if (content.Contains("Location")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ITrackedResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ITrackedResourceInternal)this).Location, global::System.Convert.ToString); - } - if (content.Contains("Tag")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ITrackedResourceInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ITrackedResourceTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ITrackedResourceInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.TrackedResourceTagsTypeConverter.ConvertFrom); - } - if (content.Contains("SkuName")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).SkuName = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuName) content.GetValueForProperty("SkuName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).SkuName, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuName.CreateFrom); - } - if (content.Contains("SkuTier")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).SkuTier = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuTier?) content.GetValueForProperty("SkuTier",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).SkuTier, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuTier.CreateFrom); - } - if (content.Contains("PrincipalId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).PrincipalId, global::System.Convert.ToString); - } - if (content.Contains("TenantId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).TenantId, global::System.Convert.ToString); - } - if (content.Contains("SystemDataCreatedBy")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); - } - if (content.Contains("SystemDataCreatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("Encryption")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).Encryption = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryption) content.GetValueForProperty("Encryption",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).Encryption, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.EncryptionTypeConverter.ConvertFrom); - } - if (content.Contains("SkuCapacity")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).SkuCapacity = (int?) content.GetValueForProperty("SkuCapacity",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).SkuCapacity, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - } - if (content.Contains("IdentityType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).IdentityType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ManagedServiceIdentityType?) content.GetValueForProperty("IdentityType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).IdentityType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ManagedServiceIdentityType.CreateFrom); - } - if (content.Contains("UserAssignedIdentity")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).UserAssignedIdentity = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityUserAssignedIdentities) content.GetValueForProperty("UserAssignedIdentity",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).UserAssignedIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IdentityUserAssignedIdentitiesTypeConverter.ConvertFrom); - } - if (content.Contains("SystemDataCreatedByType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); - } - if (content.Contains("SystemDataLastModifiedBy")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); - } - if (content.Contains("SystemDataLastModifiedByType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); - } - if (content.Contains("SystemDataLastModifiedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("MinimumTlsVersion")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).MinimumTlsVersion = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.TlsVersion?) content.GetValueForProperty("MinimumTlsVersion",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).MinimumTlsVersion, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.TlsVersion.CreateFrom); - } - if (content.Contains("ProvisioningState")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).ProvisioningState, global::System.Convert.ToString); - } - if (content.Contains("Status")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).Status = (string) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).Status, global::System.Convert.ToString); - } - if (content.Contains("CreatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("UpdatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).UpdatedAt = (global::System.DateTime?) content.GetValueForProperty("UpdatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).UpdatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("ServiceBusEndpoint")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).ServiceBusEndpoint = (string) content.GetValueForProperty("ServiceBusEndpoint",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).ServiceBusEndpoint, global::System.Convert.ToString); - } - if (content.Contains("MetricId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).MetricId = (string) content.GetValueForProperty("MetricId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).MetricId, global::System.Convert.ToString); - } - if (content.Contains("ZoneRedundant")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).ZoneRedundant = (bool?) content.GetValueForProperty("ZoneRedundant",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).ZoneRedundant, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("PrivateEndpointConnection")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).PrivateEndpointConnection = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection[]) content.GetValueForProperty("PrivateEndpointConnection",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).PrivateEndpointConnection, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.PrivateEndpointConnectionTypeConverter.ConvertFrom)); - } - if (content.Contains("DisableLocalAuth")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).DisableLocalAuth = (bool?) content.GetValueForProperty("DisableLocalAuth",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).DisableLocalAuth, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("AlternateName")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).AlternateName = (string) content.GetValueForProperty("AlternateName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).AlternateName, global::System.Convert.ToString); - } - if (content.Contains("PublicNetworkAccess")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).PublicNetworkAccess = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PublicNetworkAccess?) content.GetValueForProperty("PublicNetworkAccess",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).PublicNetworkAccess, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PublicNetworkAccess.CreateFrom); - } - if (content.Contains("KeySource")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).KeySource = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource?) content.GetValueForProperty("KeySource",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).KeySource, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource.CreateFrom); - } - if (content.Contains("KeyVaultProperty")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).KeyVaultProperty = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties[]) content.GetValueForProperty("KeyVaultProperty",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).KeyVaultProperty, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.KeyVaultPropertiesTypeConverter.ConvertFrom)); - } - if (content.Contains("RequireInfrastructureEncryption")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).RequireInfrastructureEncryption = (bool?) content.GetValueForProperty("RequireInfrastructureEncryption",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal)this).RequireInfrastructureEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - AfterDeserializePSObject(content); - } - - /// Serializes this instance to a json string. - - /// a containing this model serialized to JSON text. - public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.SerializationMode.IncludeAll)?.ToString(); - - public override string ToString() - { - var returnNow = false; - var result = global::System.String.Empty; - OverrideToString(ref result, ref returnNow); - if (returnNow) - { - return result; - } - return ToJsonString(); - } - } - /// Description of a namespace resource. - [System.ComponentModel.TypeConverter(typeof(SbNamespaceTypeConverter))] - public partial interface ISbNamespace - - { - - } -} \ No newline at end of file diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceProperties.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceProperties.PowerShell.cs deleted file mode 100644 index e2ee32d1fc55..000000000000 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceProperties.PowerShell.cs +++ /dev/null @@ -1,286 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview -{ - using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; - - /// Properties of the namespace. - [System.ComponentModel.TypeConverter(typeof(SbNamespacePropertiesTypeConverter))] - public partial class SbNamespaceProperties - { - - /// - /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the - /// object before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Collections.IDictionary content that should be used. - - partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); - - /// - /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object - /// before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Management.Automation.PSObject content that should be used. - - partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); - - /// - /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output - /// parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Collections.IDictionary content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); - - /// - /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output - /// parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); - - /// - /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior - /// - /// /// instance serialized to a string, normally it is a Json - /// /// set returnNow to true if you provide a customized OverrideToString function - - partial void OverrideToString(ref string stringResult, ref bool returnNow); - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) - { - return new SbNamespaceProperties(content); - } - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) - { - return new SbNamespaceProperties(content); - } - - /// - /// Creates a new instance of , deserializing the content from a json string. - /// - /// a string containing a JSON serialized instance of this model. - /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - internal SbNamespaceProperties(global::System.Collections.IDictionary content) - { - bool returnNow = false; - BeforeDeserializeDictionary(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("Encryption")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).Encryption = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryption) content.GetValueForProperty("Encryption",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).Encryption, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.EncryptionTypeConverter.ConvertFrom); - } - if (content.Contains("MinimumTlsVersion")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).MinimumTlsVersion = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.TlsVersion?) content.GetValueForProperty("MinimumTlsVersion",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).MinimumTlsVersion, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.TlsVersion.CreateFrom); - } - if (content.Contains("ProvisioningState")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).ProvisioningState, global::System.Convert.ToString); - } - if (content.Contains("Status")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).Status = (string) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).Status, global::System.Convert.ToString); - } - if (content.Contains("CreatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("UpdatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).UpdatedAt = (global::System.DateTime?) content.GetValueForProperty("UpdatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).UpdatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("ServiceBusEndpoint")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).ServiceBusEndpoint = (string) content.GetValueForProperty("ServiceBusEndpoint",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).ServiceBusEndpoint, global::System.Convert.ToString); - } - if (content.Contains("MetricId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).MetricId = (string) content.GetValueForProperty("MetricId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).MetricId, global::System.Convert.ToString); - } - if (content.Contains("ZoneRedundant")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).ZoneRedundant = (bool?) content.GetValueForProperty("ZoneRedundant",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).ZoneRedundant, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("PrivateEndpointConnection")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).PrivateEndpointConnection = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection[]) content.GetValueForProperty("PrivateEndpointConnection",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).PrivateEndpointConnection, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.PrivateEndpointConnectionTypeConverter.ConvertFrom)); - } - if (content.Contains("DisableLocalAuth")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).DisableLocalAuth = (bool?) content.GetValueForProperty("DisableLocalAuth",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).DisableLocalAuth, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("AlternateName")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).AlternateName = (string) content.GetValueForProperty("AlternateName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).AlternateName, global::System.Convert.ToString); - } - if (content.Contains("PublicNetworkAccess")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).PublicNetworkAccess = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PublicNetworkAccess?) content.GetValueForProperty("PublicNetworkAccess",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).PublicNetworkAccess, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PublicNetworkAccess.CreateFrom); - } - if (content.Contains("EncryptionKeySource")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).EncryptionKeySource = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource?) content.GetValueForProperty("EncryptionKeySource",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).EncryptionKeySource, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource.CreateFrom); - } - if (content.Contains("EncryptionKeyVaultProperty")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).EncryptionKeyVaultProperty = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties[]) content.GetValueForProperty("EncryptionKeyVaultProperty",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).EncryptionKeyVaultProperty, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.KeyVaultPropertiesTypeConverter.ConvertFrom)); - } - if (content.Contains("EncryptionRequireInfrastructureEncryption")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).EncryptionRequireInfrastructureEncryption = (bool?) content.GetValueForProperty("EncryptionRequireInfrastructureEncryption",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).EncryptionRequireInfrastructureEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - AfterDeserializeDictionary(content); - } - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - internal SbNamespaceProperties(global::System.Management.Automation.PSObject content) - { - bool returnNow = false; - BeforeDeserializePSObject(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("Encryption")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).Encryption = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryption) content.GetValueForProperty("Encryption",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).Encryption, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.EncryptionTypeConverter.ConvertFrom); - } - if (content.Contains("MinimumTlsVersion")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).MinimumTlsVersion = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.TlsVersion?) content.GetValueForProperty("MinimumTlsVersion",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).MinimumTlsVersion, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.TlsVersion.CreateFrom); - } - if (content.Contains("ProvisioningState")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).ProvisioningState, global::System.Convert.ToString); - } - if (content.Contains("Status")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).Status = (string) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).Status, global::System.Convert.ToString); - } - if (content.Contains("CreatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("UpdatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).UpdatedAt = (global::System.DateTime?) content.GetValueForProperty("UpdatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).UpdatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("ServiceBusEndpoint")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).ServiceBusEndpoint = (string) content.GetValueForProperty("ServiceBusEndpoint",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).ServiceBusEndpoint, global::System.Convert.ToString); - } - if (content.Contains("MetricId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).MetricId = (string) content.GetValueForProperty("MetricId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).MetricId, global::System.Convert.ToString); - } - if (content.Contains("ZoneRedundant")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).ZoneRedundant = (bool?) content.GetValueForProperty("ZoneRedundant",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).ZoneRedundant, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("PrivateEndpointConnection")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).PrivateEndpointConnection = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection[]) content.GetValueForProperty("PrivateEndpointConnection",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).PrivateEndpointConnection, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.PrivateEndpointConnectionTypeConverter.ConvertFrom)); - } - if (content.Contains("DisableLocalAuth")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).DisableLocalAuth = (bool?) content.GetValueForProperty("DisableLocalAuth",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).DisableLocalAuth, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("AlternateName")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).AlternateName = (string) content.GetValueForProperty("AlternateName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).AlternateName, global::System.Convert.ToString); - } - if (content.Contains("PublicNetworkAccess")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).PublicNetworkAccess = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PublicNetworkAccess?) content.GetValueForProperty("PublicNetworkAccess",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).PublicNetworkAccess, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PublicNetworkAccess.CreateFrom); - } - if (content.Contains("EncryptionKeySource")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).EncryptionKeySource = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource?) content.GetValueForProperty("EncryptionKeySource",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).EncryptionKeySource, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource.CreateFrom); - } - if (content.Contains("EncryptionKeyVaultProperty")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).EncryptionKeyVaultProperty = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties[]) content.GetValueForProperty("EncryptionKeyVaultProperty",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).EncryptionKeyVaultProperty, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.KeyVaultPropertiesTypeConverter.ConvertFrom)); - } - if (content.Contains("EncryptionRequireInfrastructureEncryption")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).EncryptionRequireInfrastructureEncryption = (bool?) content.GetValueForProperty("EncryptionRequireInfrastructureEncryption",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)this).EncryptionRequireInfrastructureEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - AfterDeserializePSObject(content); - } - - /// Serializes this instance to a json string. - - /// a containing this model serialized to JSON text. - public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.SerializationMode.IncludeAll)?.ToString(); - - public override string ToString() - { - var returnNow = false; - var result = global::System.String.Empty; - OverrideToString(ref result, ref returnNow); - if (returnNow) - { - return result; - } - return ToJsonString(); - } - } - /// Properties of the namespace. - [System.ComponentModel.TypeConverter(typeof(SbNamespacePropertiesTypeConverter))] - public partial interface ISbNamespaceProperties - - { - - } -} \ No newline at end of file diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceUpdateParameters.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceUpdateParameters.PowerShell.cs deleted file mode 100644 index 36fe7b36d89d..000000000000 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceUpdateParameters.PowerShell.cs +++ /dev/null @@ -1,382 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview -{ - using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; - - /// Description of a namespace resource. - [System.ComponentModel.TypeConverter(typeof(SbNamespaceUpdateParametersTypeConverter))] - public partial class SbNamespaceUpdateParameters - { - - /// - /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the - /// object before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Collections.IDictionary content that should be used. - - partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); - - /// - /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object - /// before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Management.Automation.PSObject content that should be used. - - partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); - - /// - /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output - /// parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Collections.IDictionary content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); - - /// - /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output - /// parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); - - /// - /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior - /// - /// /// instance serialized to a string, normally it is a Json - /// /// set returnNow to true if you provide a customized OverrideToString function - - partial void OverrideToString(ref string stringResult, ref bool returnNow); - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParameters DeserializeFromDictionary(global::System.Collections.IDictionary content) - { - return new SbNamespaceUpdateParameters(content); - } - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParameters DeserializeFromPSObject(global::System.Management.Automation.PSObject content) - { - return new SbNamespaceUpdateParameters(content); - } - - /// - /// Creates a new instance of , deserializing the content from a json string. - /// - /// a string containing a JSON serialized instance of this model. - /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParameters FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - internal SbNamespaceUpdateParameters(global::System.Collections.IDictionary content) - { - bool returnNow = false; - BeforeDeserializeDictionary(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("Sku")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).Sku = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSku) content.GetValueForProperty("Sku",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).Sku, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbSkuTypeConverter.ConvertFrom); - } - if (content.Contains("Property")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbNamespaceUpdatePropertiesTypeConverter.ConvertFrom); - } - if (content.Contains("Identity")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).Identity = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentity) content.GetValueForProperty("Identity",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).Identity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IdentityTypeConverter.ConvertFrom); - } - if (content.Contains("Id")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); - } - if (content.Contains("Name")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); - } - if (content.Contains("Type")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); - } - if (content.Contains("Location")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatchInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatchInternal)this).Location, global::System.Convert.ToString); - } - if (content.Contains("Tag")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatchInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatchTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatchInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ResourceNamespacePatchTagsTypeConverter.ConvertFrom); - } - if (content.Contains("SkuName")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).SkuName = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuName) content.GetValueForProperty("SkuName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).SkuName, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuName.CreateFrom); - } - if (content.Contains("SkuTier")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).SkuTier = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuTier?) content.GetValueForProperty("SkuTier",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).SkuTier, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuTier.CreateFrom); - } - if (content.Contains("Encryption")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).Encryption = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryption) content.GetValueForProperty("Encryption",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).Encryption, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.EncryptionTypeConverter.ConvertFrom); - } - if (content.Contains("IdentityPrincipalId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).IdentityPrincipalId = (string) content.GetValueForProperty("IdentityPrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).IdentityPrincipalId, global::System.Convert.ToString); - } - if (content.Contains("IdentityTenantId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).IdentityTenantId = (string) content.GetValueForProperty("IdentityTenantId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).IdentityTenantId, global::System.Convert.ToString); - } - if (content.Contains("SkuCapacity")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).SkuCapacity = (int?) content.GetValueForProperty("SkuCapacity",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).SkuCapacity, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - } - if (content.Contains("ProvisioningState")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).ProvisioningState, global::System.Convert.ToString); - } - if (content.Contains("Status")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).Status = (string) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).Status, global::System.Convert.ToString); - } - if (content.Contains("CreatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("UpdatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).UpdatedAt = (global::System.DateTime?) content.GetValueForProperty("UpdatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).UpdatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("ServiceBusEndpoint")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).ServiceBusEndpoint = (string) content.GetValueForProperty("ServiceBusEndpoint",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).ServiceBusEndpoint, global::System.Convert.ToString); - } - if (content.Contains("MetricId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).MetricId = (string) content.GetValueForProperty("MetricId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).MetricId, global::System.Convert.ToString); - } - if (content.Contains("PrivateEndpointConnection")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).PrivateEndpointConnection = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection[]) content.GetValueForProperty("PrivateEndpointConnection",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).PrivateEndpointConnection, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.PrivateEndpointConnectionTypeConverter.ConvertFrom)); - } - if (content.Contains("DisableLocalAuth")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).DisableLocalAuth = (bool?) content.GetValueForProperty("DisableLocalAuth",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).DisableLocalAuth, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("AlternateName")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).AlternateName = (string) content.GetValueForProperty("AlternateName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).AlternateName, global::System.Convert.ToString); - } - if (content.Contains("EncryptionKeySource")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).EncryptionKeySource = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource?) content.GetValueForProperty("EncryptionKeySource",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).EncryptionKeySource, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource.CreateFrom); - } - if (content.Contains("IdentityType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).IdentityType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ManagedServiceIdentityType?) content.GetValueForProperty("IdentityType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).IdentityType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ManagedServiceIdentityType.CreateFrom); - } - if (content.Contains("IdentityUserAssignedIdentity")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).IdentityUserAssignedIdentity = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityUserAssignedIdentities) content.GetValueForProperty("IdentityUserAssignedIdentity",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).IdentityUserAssignedIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IdentityUserAssignedIdentitiesTypeConverter.ConvertFrom); - } - if (content.Contains("EncryptionKeyVaultProperty")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).EncryptionKeyVaultProperty = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties[]) content.GetValueForProperty("EncryptionKeyVaultProperty",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).EncryptionKeyVaultProperty, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.KeyVaultPropertiesTypeConverter.ConvertFrom)); - } - if (content.Contains("EncryptionRequireInfrastructureEncryption")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).EncryptionRequireInfrastructureEncryption = (bool?) content.GetValueForProperty("EncryptionRequireInfrastructureEncryption",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).EncryptionRequireInfrastructureEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - AfterDeserializeDictionary(content); - } - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - internal SbNamespaceUpdateParameters(global::System.Management.Automation.PSObject content) - { - bool returnNow = false; - BeforeDeserializePSObject(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("Sku")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).Sku = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSku) content.GetValueForProperty("Sku",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).Sku, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbSkuTypeConverter.ConvertFrom); - } - if (content.Contains("Property")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbNamespaceUpdatePropertiesTypeConverter.ConvertFrom); - } - if (content.Contains("Identity")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).Identity = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentity) content.GetValueForProperty("Identity",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).Identity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IdentityTypeConverter.ConvertFrom); - } - if (content.Contains("Id")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); - } - if (content.Contains("Name")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); - } - if (content.Contains("Type")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); - } - if (content.Contains("Location")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatchInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatchInternal)this).Location, global::System.Convert.ToString); - } - if (content.Contains("Tag")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatchInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatchTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatchInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ResourceNamespacePatchTagsTypeConverter.ConvertFrom); - } - if (content.Contains("SkuName")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).SkuName = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuName) content.GetValueForProperty("SkuName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).SkuName, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuName.CreateFrom); - } - if (content.Contains("SkuTier")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).SkuTier = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuTier?) content.GetValueForProperty("SkuTier",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).SkuTier, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuTier.CreateFrom); - } - if (content.Contains("Encryption")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).Encryption = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryption) content.GetValueForProperty("Encryption",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).Encryption, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.EncryptionTypeConverter.ConvertFrom); - } - if (content.Contains("IdentityPrincipalId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).IdentityPrincipalId = (string) content.GetValueForProperty("IdentityPrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).IdentityPrincipalId, global::System.Convert.ToString); - } - if (content.Contains("IdentityTenantId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).IdentityTenantId = (string) content.GetValueForProperty("IdentityTenantId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).IdentityTenantId, global::System.Convert.ToString); - } - if (content.Contains("SkuCapacity")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).SkuCapacity = (int?) content.GetValueForProperty("SkuCapacity",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).SkuCapacity, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - } - if (content.Contains("ProvisioningState")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).ProvisioningState, global::System.Convert.ToString); - } - if (content.Contains("Status")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).Status = (string) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).Status, global::System.Convert.ToString); - } - if (content.Contains("CreatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("UpdatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).UpdatedAt = (global::System.DateTime?) content.GetValueForProperty("UpdatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).UpdatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("ServiceBusEndpoint")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).ServiceBusEndpoint = (string) content.GetValueForProperty("ServiceBusEndpoint",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).ServiceBusEndpoint, global::System.Convert.ToString); - } - if (content.Contains("MetricId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).MetricId = (string) content.GetValueForProperty("MetricId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).MetricId, global::System.Convert.ToString); - } - if (content.Contains("PrivateEndpointConnection")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).PrivateEndpointConnection = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection[]) content.GetValueForProperty("PrivateEndpointConnection",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).PrivateEndpointConnection, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.PrivateEndpointConnectionTypeConverter.ConvertFrom)); - } - if (content.Contains("DisableLocalAuth")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).DisableLocalAuth = (bool?) content.GetValueForProperty("DisableLocalAuth",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).DisableLocalAuth, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("AlternateName")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).AlternateName = (string) content.GetValueForProperty("AlternateName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).AlternateName, global::System.Convert.ToString); - } - if (content.Contains("EncryptionKeySource")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).EncryptionKeySource = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource?) content.GetValueForProperty("EncryptionKeySource",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).EncryptionKeySource, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource.CreateFrom); - } - if (content.Contains("IdentityType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).IdentityType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ManagedServiceIdentityType?) content.GetValueForProperty("IdentityType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).IdentityType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ManagedServiceIdentityType.CreateFrom); - } - if (content.Contains("IdentityUserAssignedIdentity")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).IdentityUserAssignedIdentity = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityUserAssignedIdentities) content.GetValueForProperty("IdentityUserAssignedIdentity",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).IdentityUserAssignedIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IdentityUserAssignedIdentitiesTypeConverter.ConvertFrom); - } - if (content.Contains("EncryptionKeyVaultProperty")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).EncryptionKeyVaultProperty = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties[]) content.GetValueForProperty("EncryptionKeyVaultProperty",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).EncryptionKeyVaultProperty, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.KeyVaultPropertiesTypeConverter.ConvertFrom)); - } - if (content.Contains("EncryptionRequireInfrastructureEncryption")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).EncryptionRequireInfrastructureEncryption = (bool?) content.GetValueForProperty("EncryptionRequireInfrastructureEncryption",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal)this).EncryptionRequireInfrastructureEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - AfterDeserializePSObject(content); - } - - /// Serializes this instance to a json string. - - /// a containing this model serialized to JSON text. - public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.SerializationMode.IncludeAll)?.ToString(); - - public override string ToString() - { - var returnNow = false; - var result = global::System.String.Empty; - OverrideToString(ref result, ref returnNow); - if (returnNow) - { - return result; - } - return ToJsonString(); - } - } - /// Description of a namespace resource. - [System.ComponentModel.TypeConverter(typeof(SbNamespaceUpdateParametersTypeConverter))] - public partial interface ISbNamespaceUpdateParameters - - { - - } -} \ No newline at end of file diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceUpdateProperties.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceUpdateProperties.PowerShell.cs deleted file mode 100644 index fde8069ef85f..000000000000 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceUpdateProperties.PowerShell.cs +++ /dev/null @@ -1,262 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview -{ - using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; - - /// Properties of the namespace. - [System.ComponentModel.TypeConverter(typeof(SbNamespaceUpdatePropertiesTypeConverter))] - public partial class SbNamespaceUpdateProperties - { - - /// - /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the - /// object before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Collections.IDictionary content that should be used. - - partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); - - /// - /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object - /// before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Management.Automation.PSObject content that should be used. - - partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); - - /// - /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output - /// parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Collections.IDictionary content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); - - /// - /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output - /// parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); - - /// - /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior - /// - /// /// instance serialized to a string, normally it is a Json - /// /// set returnNow to true if you provide a customized OverrideToString function - - partial void OverrideToString(ref string stringResult, ref bool returnNow); - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) - { - return new SbNamespaceUpdateProperties(content); - } - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) - { - return new SbNamespaceUpdateProperties(content); - } - - /// - /// Creates a new instance of , deserializing the content from a json string. - /// - /// a string containing a JSON serialized instance of this model. - /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - internal SbNamespaceUpdateProperties(global::System.Collections.IDictionary content) - { - bool returnNow = false; - BeforeDeserializeDictionary(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("Encryption")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).Encryption = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryption) content.GetValueForProperty("Encryption",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).Encryption, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.EncryptionTypeConverter.ConvertFrom); - } - if (content.Contains("ProvisioningState")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).ProvisioningState, global::System.Convert.ToString); - } - if (content.Contains("Status")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).Status = (string) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).Status, global::System.Convert.ToString); - } - if (content.Contains("CreatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("UpdatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).UpdatedAt = (global::System.DateTime?) content.GetValueForProperty("UpdatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).UpdatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("ServiceBusEndpoint")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).ServiceBusEndpoint = (string) content.GetValueForProperty("ServiceBusEndpoint",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).ServiceBusEndpoint, global::System.Convert.ToString); - } - if (content.Contains("MetricId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).MetricId = (string) content.GetValueForProperty("MetricId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).MetricId, global::System.Convert.ToString); - } - if (content.Contains("PrivateEndpointConnection")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).PrivateEndpointConnection = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection[]) content.GetValueForProperty("PrivateEndpointConnection",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).PrivateEndpointConnection, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.PrivateEndpointConnectionTypeConverter.ConvertFrom)); - } - if (content.Contains("DisableLocalAuth")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).DisableLocalAuth = (bool?) content.GetValueForProperty("DisableLocalAuth",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).DisableLocalAuth, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("AlternateName")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).AlternateName = (string) content.GetValueForProperty("AlternateName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).AlternateName, global::System.Convert.ToString); - } - if (content.Contains("EncryptionKeySource")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).EncryptionKeySource = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource?) content.GetValueForProperty("EncryptionKeySource",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).EncryptionKeySource, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource.CreateFrom); - } - if (content.Contains("EncryptionKeyVaultProperty")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).EncryptionKeyVaultProperty = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties[]) content.GetValueForProperty("EncryptionKeyVaultProperty",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).EncryptionKeyVaultProperty, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.KeyVaultPropertiesTypeConverter.ConvertFrom)); - } - if (content.Contains("EncryptionRequireInfrastructureEncryption")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).EncryptionRequireInfrastructureEncryption = (bool?) content.GetValueForProperty("EncryptionRequireInfrastructureEncryption",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).EncryptionRequireInfrastructureEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - AfterDeserializeDictionary(content); - } - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - internal SbNamespaceUpdateProperties(global::System.Management.Automation.PSObject content) - { - bool returnNow = false; - BeforeDeserializePSObject(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("Encryption")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).Encryption = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryption) content.GetValueForProperty("Encryption",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).Encryption, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.EncryptionTypeConverter.ConvertFrom); - } - if (content.Contains("ProvisioningState")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).ProvisioningState, global::System.Convert.ToString); - } - if (content.Contains("Status")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).Status = (string) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).Status, global::System.Convert.ToString); - } - if (content.Contains("CreatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("UpdatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).UpdatedAt = (global::System.DateTime?) content.GetValueForProperty("UpdatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).UpdatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("ServiceBusEndpoint")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).ServiceBusEndpoint = (string) content.GetValueForProperty("ServiceBusEndpoint",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).ServiceBusEndpoint, global::System.Convert.ToString); - } - if (content.Contains("MetricId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).MetricId = (string) content.GetValueForProperty("MetricId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).MetricId, global::System.Convert.ToString); - } - if (content.Contains("PrivateEndpointConnection")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).PrivateEndpointConnection = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection[]) content.GetValueForProperty("PrivateEndpointConnection",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).PrivateEndpointConnection, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.PrivateEndpointConnectionTypeConverter.ConvertFrom)); - } - if (content.Contains("DisableLocalAuth")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).DisableLocalAuth = (bool?) content.GetValueForProperty("DisableLocalAuth",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).DisableLocalAuth, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("AlternateName")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).AlternateName = (string) content.GetValueForProperty("AlternateName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).AlternateName, global::System.Convert.ToString); - } - if (content.Contains("EncryptionKeySource")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).EncryptionKeySource = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource?) content.GetValueForProperty("EncryptionKeySource",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).EncryptionKeySource, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource.CreateFrom); - } - if (content.Contains("EncryptionKeyVaultProperty")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).EncryptionKeyVaultProperty = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties[]) content.GetValueForProperty("EncryptionKeyVaultProperty",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).EncryptionKeyVaultProperty, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.KeyVaultPropertiesTypeConverter.ConvertFrom)); - } - if (content.Contains("EncryptionRequireInfrastructureEncryption")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).EncryptionRequireInfrastructureEncryption = (bool?) content.GetValueForProperty("EncryptionRequireInfrastructureEncryption",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)this).EncryptionRequireInfrastructureEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - AfterDeserializePSObject(content); - } - - /// Serializes this instance to a json string. - - /// a containing this model serialized to JSON text. - public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.SerializationMode.IncludeAll)?.ToString(); - - public override string ToString() - { - var returnNow = false; - var result = global::System.String.Empty; - OverrideToString(ref result, ref returnNow); - if (returnNow) - { - return result; - } - return ToJsonString(); - } - } - /// Properties of the namespace. - [System.ComponentModel.TypeConverter(typeof(SbNamespaceUpdatePropertiesTypeConverter))] - public partial interface ISbNamespaceUpdateProperties - - { - - } -} \ No newline at end of file diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbQueue.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbQueue.PowerShell.cs deleted file mode 100644 index c520fbaf93cb..000000000000 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbQueue.PowerShell.cs +++ /dev/null @@ -1,468 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview -{ - using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; - - /// Description of queue Resource. - [System.ComponentModel.TypeConverter(typeof(SbQueueTypeConverter))] - public partial class SbQueue - { - - /// - /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the - /// object before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Collections.IDictionary content that should be used. - - partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); - - /// - /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object - /// before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Management.Automation.PSObject content that should be used. - - partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); - - /// - /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output - /// parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Collections.IDictionary content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); - - /// - /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output - /// parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); - - /// - /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior - /// - /// /// instance serialized to a string, normally it is a Json - /// /// set returnNow to true if you provide a customized OverrideToString function - - partial void OverrideToString(ref string stringResult, ref bool returnNow); - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue DeserializeFromDictionary(global::System.Collections.IDictionary content) - { - return new SbQueue(content); - } - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue DeserializeFromPSObject(global::System.Management.Automation.PSObject content) - { - return new SbQueue(content); - } - - /// - /// Creates a new instance of , deserializing the content from a json string. - /// - /// a string containing a JSON serialized instance of this model. - /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - internal SbQueue(global::System.Collections.IDictionary content) - { - bool returnNow = false; - BeforeDeserializeDictionary(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("Property")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbQueuePropertiesTypeConverter.ConvertFrom); - } - if (content.Contains("SystemData")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemDataTypeConverter.ConvertFrom); - } - if (content.Contains("Id")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Id, global::System.Convert.ToString); - } - if (content.Contains("Name")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Name, global::System.Convert.ToString); - } - if (content.Contains("Type")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Type, global::System.Convert.ToString); - } - if (content.Contains("Location")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Location, global::System.Convert.ToString); - } - if (content.Contains("SystemDataCreatedBy")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); - } - if (content.Contains("SystemDataCreatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("CountDetail")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).CountDetail = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetails) content.GetValueForProperty("CountDetail",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).CountDetail, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.MessageCountDetailsTypeConverter.ConvertFrom); - } - if (content.Contains("CreatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("UpdatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).UpdatedAt = (global::System.DateTime?) content.GetValueForProperty("UpdatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).UpdatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("AccessedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).AccessedAt = (global::System.DateTime?) content.GetValueForProperty("AccessedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).AccessedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("SizeInByte")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).SizeInByte = (long?) content.GetValueForProperty("SizeInByte",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).SizeInByte, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("MessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).MessageCount = (long?) content.GetValueForProperty("MessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).MessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("LockDuration")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).LockDuration = (global::System.TimeSpan?) content.GetValueForProperty("LockDuration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).LockDuration, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - } - if (content.Contains("MaxSizeInMegabytes")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).MaxSizeInMegabytes = (int?) content.GetValueForProperty("MaxSizeInMegabytes",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).MaxSizeInMegabytes, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - } - if (content.Contains("MaxMessageSizeInKilobytes")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).MaxMessageSizeInKilobytes = (long?) content.GetValueForProperty("MaxMessageSizeInKilobytes",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).MaxMessageSizeInKilobytes, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("RequiresDuplicateDetection")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).RequiresDuplicateDetection = (bool?) content.GetValueForProperty("RequiresDuplicateDetection",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).RequiresDuplicateDetection, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("RequiresSession")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).RequiresSession = (bool?) content.GetValueForProperty("RequiresSession",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).RequiresSession, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("DefaultMessageTimeToLive")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).DefaultMessageTimeToLive = (global::System.TimeSpan?) content.GetValueForProperty("DefaultMessageTimeToLive",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).DefaultMessageTimeToLive, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - } - if (content.Contains("DeadLetteringOnMessageExpiration")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).DeadLetteringOnMessageExpiration = (bool?) content.GetValueForProperty("DeadLetteringOnMessageExpiration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).DeadLetteringOnMessageExpiration, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("DuplicateDetectionHistoryTimeWindow")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).DuplicateDetectionHistoryTimeWindow = (global::System.TimeSpan?) content.GetValueForProperty("DuplicateDetectionHistoryTimeWindow",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).DuplicateDetectionHistoryTimeWindow, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - } - if (content.Contains("MaxDeliveryCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).MaxDeliveryCount = (int?) content.GetValueForProperty("MaxDeliveryCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).MaxDeliveryCount, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - } - if (content.Contains("Status")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).Status = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus?) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).Status, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus.CreateFrom); - } - if (content.Contains("EnableBatchedOperations")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).EnableBatchedOperations = (bool?) content.GetValueForProperty("EnableBatchedOperations",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).EnableBatchedOperations, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("AutoDeleteOnIdle")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).AutoDeleteOnIdle = (global::System.TimeSpan?) content.GetValueForProperty("AutoDeleteOnIdle",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).AutoDeleteOnIdle, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - } - if (content.Contains("EnablePartitioning")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).EnablePartitioning = (bool?) content.GetValueForProperty("EnablePartitioning",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).EnablePartitioning, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("EnableExpress")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).EnableExpress = (bool?) content.GetValueForProperty("EnableExpress",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).EnableExpress, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("ForwardTo")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).ForwardTo = (string) content.GetValueForProperty("ForwardTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).ForwardTo, global::System.Convert.ToString); - } - if (content.Contains("ForwardDeadLetteredMessagesTo")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).ForwardDeadLetteredMessagesTo = (string) content.GetValueForProperty("ForwardDeadLetteredMessagesTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).ForwardDeadLetteredMessagesTo, global::System.Convert.ToString); - } - if (content.Contains("SystemDataCreatedByType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); - } - if (content.Contains("SystemDataLastModifiedBy")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); - } - if (content.Contains("SystemDataLastModifiedByType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); - } - if (content.Contains("SystemDataLastModifiedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("CountDetailActiveMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).CountDetailActiveMessageCount = (long?) content.GetValueForProperty("CountDetailActiveMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).CountDetailActiveMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailDeadLetterMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).CountDetailDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).CountDetailDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailScheduledMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).CountDetailScheduledMessageCount = (long?) content.GetValueForProperty("CountDetailScheduledMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).CountDetailScheduledMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailTransferMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).CountDetailTransferMessageCount = (long?) content.GetValueForProperty("CountDetailTransferMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).CountDetailTransferMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailTransferDeadLetterMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).CountDetailTransferDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailTransferDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).CountDetailTransferDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - AfterDeserializeDictionary(content); - } - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - internal SbQueue(global::System.Management.Automation.PSObject content) - { - bool returnNow = false; - BeforeDeserializePSObject(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("Property")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbQueuePropertiesTypeConverter.ConvertFrom); - } - if (content.Contains("SystemData")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemDataTypeConverter.ConvertFrom); - } - if (content.Contains("Id")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Id, global::System.Convert.ToString); - } - if (content.Contains("Name")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Name, global::System.Convert.ToString); - } - if (content.Contains("Type")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Type, global::System.Convert.ToString); - } - if (content.Contains("Location")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Location, global::System.Convert.ToString); - } - if (content.Contains("SystemDataCreatedBy")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); - } - if (content.Contains("SystemDataCreatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("CountDetail")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).CountDetail = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetails) content.GetValueForProperty("CountDetail",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).CountDetail, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.MessageCountDetailsTypeConverter.ConvertFrom); - } - if (content.Contains("CreatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("UpdatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).UpdatedAt = (global::System.DateTime?) content.GetValueForProperty("UpdatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).UpdatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("AccessedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).AccessedAt = (global::System.DateTime?) content.GetValueForProperty("AccessedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).AccessedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("SizeInByte")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).SizeInByte = (long?) content.GetValueForProperty("SizeInByte",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).SizeInByte, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("MessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).MessageCount = (long?) content.GetValueForProperty("MessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).MessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("LockDuration")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).LockDuration = (global::System.TimeSpan?) content.GetValueForProperty("LockDuration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).LockDuration, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - } - if (content.Contains("MaxSizeInMegabytes")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).MaxSizeInMegabytes = (int?) content.GetValueForProperty("MaxSizeInMegabytes",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).MaxSizeInMegabytes, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - } - if (content.Contains("MaxMessageSizeInKilobytes")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).MaxMessageSizeInKilobytes = (long?) content.GetValueForProperty("MaxMessageSizeInKilobytes",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).MaxMessageSizeInKilobytes, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("RequiresDuplicateDetection")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).RequiresDuplicateDetection = (bool?) content.GetValueForProperty("RequiresDuplicateDetection",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).RequiresDuplicateDetection, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("RequiresSession")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).RequiresSession = (bool?) content.GetValueForProperty("RequiresSession",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).RequiresSession, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("DefaultMessageTimeToLive")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).DefaultMessageTimeToLive = (global::System.TimeSpan?) content.GetValueForProperty("DefaultMessageTimeToLive",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).DefaultMessageTimeToLive, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - } - if (content.Contains("DeadLetteringOnMessageExpiration")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).DeadLetteringOnMessageExpiration = (bool?) content.GetValueForProperty("DeadLetteringOnMessageExpiration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).DeadLetteringOnMessageExpiration, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("DuplicateDetectionHistoryTimeWindow")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).DuplicateDetectionHistoryTimeWindow = (global::System.TimeSpan?) content.GetValueForProperty("DuplicateDetectionHistoryTimeWindow",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).DuplicateDetectionHistoryTimeWindow, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - } - if (content.Contains("MaxDeliveryCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).MaxDeliveryCount = (int?) content.GetValueForProperty("MaxDeliveryCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).MaxDeliveryCount, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - } - if (content.Contains("Status")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).Status = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus?) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).Status, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus.CreateFrom); - } - if (content.Contains("EnableBatchedOperations")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).EnableBatchedOperations = (bool?) content.GetValueForProperty("EnableBatchedOperations",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).EnableBatchedOperations, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("AutoDeleteOnIdle")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).AutoDeleteOnIdle = (global::System.TimeSpan?) content.GetValueForProperty("AutoDeleteOnIdle",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).AutoDeleteOnIdle, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - } - if (content.Contains("EnablePartitioning")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).EnablePartitioning = (bool?) content.GetValueForProperty("EnablePartitioning",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).EnablePartitioning, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("EnableExpress")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).EnableExpress = (bool?) content.GetValueForProperty("EnableExpress",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).EnableExpress, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("ForwardTo")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).ForwardTo = (string) content.GetValueForProperty("ForwardTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).ForwardTo, global::System.Convert.ToString); - } - if (content.Contains("ForwardDeadLetteredMessagesTo")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).ForwardDeadLetteredMessagesTo = (string) content.GetValueForProperty("ForwardDeadLetteredMessagesTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).ForwardDeadLetteredMessagesTo, global::System.Convert.ToString); - } - if (content.Contains("SystemDataCreatedByType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); - } - if (content.Contains("SystemDataLastModifiedBy")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); - } - if (content.Contains("SystemDataLastModifiedByType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); - } - if (content.Contains("SystemDataLastModifiedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("CountDetailActiveMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).CountDetailActiveMessageCount = (long?) content.GetValueForProperty("CountDetailActiveMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).CountDetailActiveMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailDeadLetterMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).CountDetailDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).CountDetailDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailScheduledMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).CountDetailScheduledMessageCount = (long?) content.GetValueForProperty("CountDetailScheduledMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).CountDetailScheduledMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailTransferMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).CountDetailTransferMessageCount = (long?) content.GetValueForProperty("CountDetailTransferMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).CountDetailTransferMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailTransferDeadLetterMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).CountDetailTransferDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailTransferDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal)this).CountDetailTransferDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - AfterDeserializePSObject(content); - } - - /// Serializes this instance to a json string. - - /// a containing this model serialized to JSON text. - public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.SerializationMode.IncludeAll)?.ToString(); - - public override string ToString() - { - var returnNow = false; - var result = global::System.String.Empty; - OverrideToString(ref result, ref returnNow); - if (returnNow) - { - return result; - } - return ToJsonString(); - } - } - /// Description of queue Resource. - [System.ComponentModel.TypeConverter(typeof(SbQueueTypeConverter))] - public partial interface ISbQueue - - { - - } -} \ No newline at end of file diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbQueueProperties.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbQueueProperties.PowerShell.cs deleted file mode 100644 index fb112c33c846..000000000000 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbQueueProperties.PowerShell.cs +++ /dev/null @@ -1,372 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview -{ - using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; - - /// The Queue Properties definition. - [System.ComponentModel.TypeConverter(typeof(SbQueuePropertiesTypeConverter))] - public partial class SbQueueProperties - { - - /// - /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the - /// object before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Collections.IDictionary content that should be used. - - partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); - - /// - /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object - /// before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Management.Automation.PSObject content that should be used. - - partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); - - /// - /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output - /// parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Collections.IDictionary content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); - - /// - /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output - /// parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); - - /// - /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior - /// - /// /// instance serialized to a string, normally it is a Json - /// /// set returnNow to true if you provide a customized OverrideToString function - - partial void OverrideToString(ref string stringResult, ref bool returnNow); - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) - { - return new SbQueueProperties(content); - } - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) - { - return new SbQueueProperties(content); - } - - /// - /// Creates a new instance of , deserializing the content from a json string. - /// - /// a string containing a JSON serialized instance of this model. - /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - internal SbQueueProperties(global::System.Collections.IDictionary content) - { - bool returnNow = false; - BeforeDeserializeDictionary(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("CountDetail")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).CountDetail = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetails) content.GetValueForProperty("CountDetail",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).CountDetail, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.MessageCountDetailsTypeConverter.ConvertFrom); - } - if (content.Contains("CreatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("UpdatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).UpdatedAt = (global::System.DateTime?) content.GetValueForProperty("UpdatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).UpdatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("AccessedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).AccessedAt = (global::System.DateTime?) content.GetValueForProperty("AccessedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).AccessedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("SizeInByte")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).SizeInByte = (long?) content.GetValueForProperty("SizeInByte",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).SizeInByte, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("MessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).MessageCount = (long?) content.GetValueForProperty("MessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).MessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("LockDuration")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).LockDuration = (global::System.TimeSpan?) content.GetValueForProperty("LockDuration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).LockDuration, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - } - if (content.Contains("MaxSizeInMegabytes")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).MaxSizeInMegabytes = (int?) content.GetValueForProperty("MaxSizeInMegabytes",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).MaxSizeInMegabytes, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - } - if (content.Contains("MaxMessageSizeInKilobytes")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).MaxMessageSizeInKilobytes = (long?) content.GetValueForProperty("MaxMessageSizeInKilobytes",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).MaxMessageSizeInKilobytes, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("RequiresDuplicateDetection")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).RequiresDuplicateDetection = (bool?) content.GetValueForProperty("RequiresDuplicateDetection",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).RequiresDuplicateDetection, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("RequiresSession")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).RequiresSession = (bool?) content.GetValueForProperty("RequiresSession",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).RequiresSession, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("DefaultMessageTimeToLive")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).DefaultMessageTimeToLive = (global::System.TimeSpan?) content.GetValueForProperty("DefaultMessageTimeToLive",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).DefaultMessageTimeToLive, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - } - if (content.Contains("DeadLetteringOnMessageExpiration")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).DeadLetteringOnMessageExpiration = (bool?) content.GetValueForProperty("DeadLetteringOnMessageExpiration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).DeadLetteringOnMessageExpiration, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("DuplicateDetectionHistoryTimeWindow")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).DuplicateDetectionHistoryTimeWindow = (global::System.TimeSpan?) content.GetValueForProperty("DuplicateDetectionHistoryTimeWindow",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).DuplicateDetectionHistoryTimeWindow, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - } - if (content.Contains("MaxDeliveryCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).MaxDeliveryCount = (int?) content.GetValueForProperty("MaxDeliveryCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).MaxDeliveryCount, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - } - if (content.Contains("Status")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).Status = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus?) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).Status, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus.CreateFrom); - } - if (content.Contains("EnableBatchedOperations")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).EnableBatchedOperations = (bool?) content.GetValueForProperty("EnableBatchedOperations",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).EnableBatchedOperations, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("AutoDeleteOnIdle")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).AutoDeleteOnIdle = (global::System.TimeSpan?) content.GetValueForProperty("AutoDeleteOnIdle",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).AutoDeleteOnIdle, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - } - if (content.Contains("EnablePartitioning")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).EnablePartitioning = (bool?) content.GetValueForProperty("EnablePartitioning",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).EnablePartitioning, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("EnableExpress")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).EnableExpress = (bool?) content.GetValueForProperty("EnableExpress",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).EnableExpress, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("ForwardTo")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).ForwardTo = (string) content.GetValueForProperty("ForwardTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).ForwardTo, global::System.Convert.ToString); - } - if (content.Contains("ForwardDeadLetteredMessagesTo")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).ForwardDeadLetteredMessagesTo = (string) content.GetValueForProperty("ForwardDeadLetteredMessagesTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).ForwardDeadLetteredMessagesTo, global::System.Convert.ToString); - } - if (content.Contains("CountDetailActiveMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).CountDetailActiveMessageCount = (long?) content.GetValueForProperty("CountDetailActiveMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).CountDetailActiveMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailDeadLetterMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).CountDetailDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).CountDetailDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailScheduledMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).CountDetailScheduledMessageCount = (long?) content.GetValueForProperty("CountDetailScheduledMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).CountDetailScheduledMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailTransferMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).CountDetailTransferMessageCount = (long?) content.GetValueForProperty("CountDetailTransferMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).CountDetailTransferMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailTransferDeadLetterMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).CountDetailTransferDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailTransferDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).CountDetailTransferDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - AfterDeserializeDictionary(content); - } - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - internal SbQueueProperties(global::System.Management.Automation.PSObject content) - { - bool returnNow = false; - BeforeDeserializePSObject(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("CountDetail")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).CountDetail = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetails) content.GetValueForProperty("CountDetail",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).CountDetail, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.MessageCountDetailsTypeConverter.ConvertFrom); - } - if (content.Contains("CreatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("UpdatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).UpdatedAt = (global::System.DateTime?) content.GetValueForProperty("UpdatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).UpdatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("AccessedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).AccessedAt = (global::System.DateTime?) content.GetValueForProperty("AccessedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).AccessedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("SizeInByte")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).SizeInByte = (long?) content.GetValueForProperty("SizeInByte",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).SizeInByte, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("MessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).MessageCount = (long?) content.GetValueForProperty("MessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).MessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("LockDuration")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).LockDuration = (global::System.TimeSpan?) content.GetValueForProperty("LockDuration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).LockDuration, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - } - if (content.Contains("MaxSizeInMegabytes")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).MaxSizeInMegabytes = (int?) content.GetValueForProperty("MaxSizeInMegabytes",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).MaxSizeInMegabytes, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - } - if (content.Contains("MaxMessageSizeInKilobytes")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).MaxMessageSizeInKilobytes = (long?) content.GetValueForProperty("MaxMessageSizeInKilobytes",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).MaxMessageSizeInKilobytes, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("RequiresDuplicateDetection")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).RequiresDuplicateDetection = (bool?) content.GetValueForProperty("RequiresDuplicateDetection",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).RequiresDuplicateDetection, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("RequiresSession")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).RequiresSession = (bool?) content.GetValueForProperty("RequiresSession",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).RequiresSession, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("DefaultMessageTimeToLive")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).DefaultMessageTimeToLive = (global::System.TimeSpan?) content.GetValueForProperty("DefaultMessageTimeToLive",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).DefaultMessageTimeToLive, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - } - if (content.Contains("DeadLetteringOnMessageExpiration")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).DeadLetteringOnMessageExpiration = (bool?) content.GetValueForProperty("DeadLetteringOnMessageExpiration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).DeadLetteringOnMessageExpiration, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("DuplicateDetectionHistoryTimeWindow")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).DuplicateDetectionHistoryTimeWindow = (global::System.TimeSpan?) content.GetValueForProperty("DuplicateDetectionHistoryTimeWindow",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).DuplicateDetectionHistoryTimeWindow, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - } - if (content.Contains("MaxDeliveryCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).MaxDeliveryCount = (int?) content.GetValueForProperty("MaxDeliveryCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).MaxDeliveryCount, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - } - if (content.Contains("Status")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).Status = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus?) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).Status, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus.CreateFrom); - } - if (content.Contains("EnableBatchedOperations")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).EnableBatchedOperations = (bool?) content.GetValueForProperty("EnableBatchedOperations",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).EnableBatchedOperations, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("AutoDeleteOnIdle")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).AutoDeleteOnIdle = (global::System.TimeSpan?) content.GetValueForProperty("AutoDeleteOnIdle",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).AutoDeleteOnIdle, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - } - if (content.Contains("EnablePartitioning")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).EnablePartitioning = (bool?) content.GetValueForProperty("EnablePartitioning",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).EnablePartitioning, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("EnableExpress")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).EnableExpress = (bool?) content.GetValueForProperty("EnableExpress",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).EnableExpress, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("ForwardTo")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).ForwardTo = (string) content.GetValueForProperty("ForwardTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).ForwardTo, global::System.Convert.ToString); - } - if (content.Contains("ForwardDeadLetteredMessagesTo")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).ForwardDeadLetteredMessagesTo = (string) content.GetValueForProperty("ForwardDeadLetteredMessagesTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).ForwardDeadLetteredMessagesTo, global::System.Convert.ToString); - } - if (content.Contains("CountDetailActiveMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).CountDetailActiveMessageCount = (long?) content.GetValueForProperty("CountDetailActiveMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).CountDetailActiveMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailDeadLetterMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).CountDetailDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).CountDetailDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailScheduledMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).CountDetailScheduledMessageCount = (long?) content.GetValueForProperty("CountDetailScheduledMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).CountDetailScheduledMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailTransferMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).CountDetailTransferMessageCount = (long?) content.GetValueForProperty("CountDetailTransferMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).CountDetailTransferMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailTransferDeadLetterMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).CountDetailTransferDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailTransferDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)this).CountDetailTransferDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - AfterDeserializePSObject(content); - } - - /// Serializes this instance to a json string. - - /// a containing this model serialized to JSON text. - public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.SerializationMode.IncludeAll)?.ToString(); - - public override string ToString() - { - var returnNow = false; - var result = global::System.String.Empty; - OverrideToString(ref result, ref returnNow); - if (returnNow) - { - return result; - } - return ToJsonString(); - } - } - /// The Queue Properties definition. - [System.ComponentModel.TypeConverter(typeof(SbQueuePropertiesTypeConverter))] - public partial interface ISbQueueProperties - - { - - } -} \ No newline at end of file diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSubscription.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSubscription.PowerShell.cs deleted file mode 100644 index 86a310394adc..000000000000 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSubscription.PowerShell.cs +++ /dev/null @@ -1,468 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview -{ - using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; - - /// Description of subscription resource. - [System.ComponentModel.TypeConverter(typeof(SbSubscriptionTypeConverter))] - public partial class SbSubscription - { - - /// - /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the - /// object before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Collections.IDictionary content that should be used. - - partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); - - /// - /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object - /// before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Management.Automation.PSObject content that should be used. - - partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); - - /// - /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output - /// parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Collections.IDictionary content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); - - /// - /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output - /// parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); - - /// - /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior - /// - /// /// instance serialized to a string, normally it is a Json - /// /// set returnNow to true if you provide a customized OverrideToString function - - partial void OverrideToString(ref string stringResult, ref bool returnNow); - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription DeserializeFromDictionary(global::System.Collections.IDictionary content) - { - return new SbSubscription(content); - } - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription DeserializeFromPSObject(global::System.Management.Automation.PSObject content) - { - return new SbSubscription(content); - } - - /// - /// Creates a new instance of , deserializing the content from a json string. - /// - /// a string containing a JSON serialized instance of this model. - /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - internal SbSubscription(global::System.Collections.IDictionary content) - { - bool returnNow = false; - BeforeDeserializeDictionary(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("Property")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbSubscriptionPropertiesTypeConverter.ConvertFrom); - } - if (content.Contains("SystemData")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemDataTypeConverter.ConvertFrom); - } - if (content.Contains("Id")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Id, global::System.Convert.ToString); - } - if (content.Contains("Name")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Name, global::System.Convert.ToString); - } - if (content.Contains("Type")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Type, global::System.Convert.ToString); - } - if (content.Contains("Location")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Location, global::System.Convert.ToString); - } - if (content.Contains("SystemDataCreatedBy")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); - } - if (content.Contains("SystemDataCreatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("CountDetail")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).CountDetail = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetails) content.GetValueForProperty("CountDetail",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).CountDetail, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.MessageCountDetailsTypeConverter.ConvertFrom); - } - if (content.Contains("ClientAffineProperty")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).ClientAffineProperty = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbClientAffineProperties) content.GetValueForProperty("ClientAffineProperty",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).ClientAffineProperty, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbClientAffinePropertiesTypeConverter.ConvertFrom); - } - if (content.Contains("MessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).MessageCount = (long?) content.GetValueForProperty("MessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).MessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CreatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("AccessedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).AccessedAt = (global::System.DateTime?) content.GetValueForProperty("AccessedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).AccessedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("UpdatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).UpdatedAt = (global::System.DateTime?) content.GetValueForProperty("UpdatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).UpdatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("LockDuration")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).LockDuration = (global::System.TimeSpan?) content.GetValueForProperty("LockDuration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).LockDuration, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - } - if (content.Contains("RequiresSession")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).RequiresSession = (bool?) content.GetValueForProperty("RequiresSession",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).RequiresSession, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("DefaultMessageTimeToLive")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).DefaultMessageTimeToLive = (global::System.TimeSpan?) content.GetValueForProperty("DefaultMessageTimeToLive",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).DefaultMessageTimeToLive, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - } - if (content.Contains("DeadLetteringOnFilterEvaluationException")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).DeadLetteringOnFilterEvaluationException = (bool?) content.GetValueForProperty("DeadLetteringOnFilterEvaluationException",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).DeadLetteringOnFilterEvaluationException, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("DeadLetteringOnMessageExpiration")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).DeadLetteringOnMessageExpiration = (bool?) content.GetValueForProperty("DeadLetteringOnMessageExpiration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).DeadLetteringOnMessageExpiration, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("DuplicateDetectionHistoryTimeWindow")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).DuplicateDetectionHistoryTimeWindow = (global::System.TimeSpan?) content.GetValueForProperty("DuplicateDetectionHistoryTimeWindow",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).DuplicateDetectionHistoryTimeWindow, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - } - if (content.Contains("MaxDeliveryCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).MaxDeliveryCount = (int?) content.GetValueForProperty("MaxDeliveryCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).MaxDeliveryCount, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - } - if (content.Contains("Status")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).Status = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus?) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).Status, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus.CreateFrom); - } - if (content.Contains("EnableBatchedOperations")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).EnableBatchedOperations = (bool?) content.GetValueForProperty("EnableBatchedOperations",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).EnableBatchedOperations, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("AutoDeleteOnIdle")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).AutoDeleteOnIdle = (global::System.TimeSpan?) content.GetValueForProperty("AutoDeleteOnIdle",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).AutoDeleteOnIdle, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - } - if (content.Contains("ForwardTo")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).ForwardTo = (string) content.GetValueForProperty("ForwardTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).ForwardTo, global::System.Convert.ToString); - } - if (content.Contains("ForwardDeadLetteredMessagesTo")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).ForwardDeadLetteredMessagesTo = (string) content.GetValueForProperty("ForwardDeadLetteredMessagesTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).ForwardDeadLetteredMessagesTo, global::System.Convert.ToString); - } - if (content.Contains("IsClientAffine")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).IsClientAffine = (bool?) content.GetValueForProperty("IsClientAffine",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).IsClientAffine, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("SystemDataCreatedByType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); - } - if (content.Contains("SystemDataLastModifiedBy")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); - } - if (content.Contains("SystemDataLastModifiedByType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); - } - if (content.Contains("SystemDataLastModifiedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("CountDetailActiveMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).CountDetailActiveMessageCount = (long?) content.GetValueForProperty("CountDetailActiveMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).CountDetailActiveMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailDeadLetterMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).CountDetailDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).CountDetailDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailScheduledMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).CountDetailScheduledMessageCount = (long?) content.GetValueForProperty("CountDetailScheduledMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).CountDetailScheduledMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailTransferMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).CountDetailTransferMessageCount = (long?) content.GetValueForProperty("CountDetailTransferMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).CountDetailTransferMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailTransferDeadLetterMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).CountDetailTransferDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailTransferDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).CountDetailTransferDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("ClientId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).ClientId, global::System.Convert.ToString); - } - if (content.Contains("IsDurable")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).IsDurable = (bool?) content.GetValueForProperty("IsDurable",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).IsDurable, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("IsShared")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).IsShared = (bool?) content.GetValueForProperty("IsShared",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).IsShared, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - AfterDeserializeDictionary(content); - } - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - internal SbSubscription(global::System.Management.Automation.PSObject content) - { - bool returnNow = false; - BeforeDeserializePSObject(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("Property")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbSubscriptionPropertiesTypeConverter.ConvertFrom); - } - if (content.Contains("SystemData")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemDataTypeConverter.ConvertFrom); - } - if (content.Contains("Id")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Id, global::System.Convert.ToString); - } - if (content.Contains("Name")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Name, global::System.Convert.ToString); - } - if (content.Contains("Type")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Type, global::System.Convert.ToString); - } - if (content.Contains("Location")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Location, global::System.Convert.ToString); - } - if (content.Contains("SystemDataCreatedBy")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); - } - if (content.Contains("SystemDataCreatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("CountDetail")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).CountDetail = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetails) content.GetValueForProperty("CountDetail",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).CountDetail, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.MessageCountDetailsTypeConverter.ConvertFrom); - } - if (content.Contains("ClientAffineProperty")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).ClientAffineProperty = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbClientAffineProperties) content.GetValueForProperty("ClientAffineProperty",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).ClientAffineProperty, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbClientAffinePropertiesTypeConverter.ConvertFrom); - } - if (content.Contains("MessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).MessageCount = (long?) content.GetValueForProperty("MessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).MessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CreatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("AccessedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).AccessedAt = (global::System.DateTime?) content.GetValueForProperty("AccessedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).AccessedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("UpdatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).UpdatedAt = (global::System.DateTime?) content.GetValueForProperty("UpdatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).UpdatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("LockDuration")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).LockDuration = (global::System.TimeSpan?) content.GetValueForProperty("LockDuration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).LockDuration, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - } - if (content.Contains("RequiresSession")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).RequiresSession = (bool?) content.GetValueForProperty("RequiresSession",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).RequiresSession, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("DefaultMessageTimeToLive")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).DefaultMessageTimeToLive = (global::System.TimeSpan?) content.GetValueForProperty("DefaultMessageTimeToLive",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).DefaultMessageTimeToLive, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - } - if (content.Contains("DeadLetteringOnFilterEvaluationException")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).DeadLetteringOnFilterEvaluationException = (bool?) content.GetValueForProperty("DeadLetteringOnFilterEvaluationException",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).DeadLetteringOnFilterEvaluationException, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("DeadLetteringOnMessageExpiration")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).DeadLetteringOnMessageExpiration = (bool?) content.GetValueForProperty("DeadLetteringOnMessageExpiration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).DeadLetteringOnMessageExpiration, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("DuplicateDetectionHistoryTimeWindow")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).DuplicateDetectionHistoryTimeWindow = (global::System.TimeSpan?) content.GetValueForProperty("DuplicateDetectionHistoryTimeWindow",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).DuplicateDetectionHistoryTimeWindow, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - } - if (content.Contains("MaxDeliveryCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).MaxDeliveryCount = (int?) content.GetValueForProperty("MaxDeliveryCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).MaxDeliveryCount, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - } - if (content.Contains("Status")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).Status = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus?) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).Status, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus.CreateFrom); - } - if (content.Contains("EnableBatchedOperations")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).EnableBatchedOperations = (bool?) content.GetValueForProperty("EnableBatchedOperations",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).EnableBatchedOperations, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("AutoDeleteOnIdle")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).AutoDeleteOnIdle = (global::System.TimeSpan?) content.GetValueForProperty("AutoDeleteOnIdle",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).AutoDeleteOnIdle, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - } - if (content.Contains("ForwardTo")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).ForwardTo = (string) content.GetValueForProperty("ForwardTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).ForwardTo, global::System.Convert.ToString); - } - if (content.Contains("ForwardDeadLetteredMessagesTo")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).ForwardDeadLetteredMessagesTo = (string) content.GetValueForProperty("ForwardDeadLetteredMessagesTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).ForwardDeadLetteredMessagesTo, global::System.Convert.ToString); - } - if (content.Contains("IsClientAffine")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).IsClientAffine = (bool?) content.GetValueForProperty("IsClientAffine",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).IsClientAffine, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("SystemDataCreatedByType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); - } - if (content.Contains("SystemDataLastModifiedBy")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); - } - if (content.Contains("SystemDataLastModifiedByType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); - } - if (content.Contains("SystemDataLastModifiedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("CountDetailActiveMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).CountDetailActiveMessageCount = (long?) content.GetValueForProperty("CountDetailActiveMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).CountDetailActiveMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailDeadLetterMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).CountDetailDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).CountDetailDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailScheduledMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).CountDetailScheduledMessageCount = (long?) content.GetValueForProperty("CountDetailScheduledMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).CountDetailScheduledMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailTransferMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).CountDetailTransferMessageCount = (long?) content.GetValueForProperty("CountDetailTransferMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).CountDetailTransferMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailTransferDeadLetterMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).CountDetailTransferDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailTransferDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).CountDetailTransferDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("ClientId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).ClientId, global::System.Convert.ToString); - } - if (content.Contains("IsDurable")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).IsDurable = (bool?) content.GetValueForProperty("IsDurable",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).IsDurable, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("IsShared")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).IsShared = (bool?) content.GetValueForProperty("IsShared",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal)this).IsShared, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - AfterDeserializePSObject(content); - } - - /// Serializes this instance to a json string. - - /// a containing this model serialized to JSON text. - public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.SerializationMode.IncludeAll)?.ToString(); - - public override string ToString() - { - var returnNow = false; - var result = global::System.String.Empty; - OverrideToString(ref result, ref returnNow); - if (returnNow) - { - return result; - } - return ToJsonString(); - } - } - /// Description of subscription resource. - [System.ComponentModel.TypeConverter(typeof(SbSubscriptionTypeConverter))] - public partial interface ISbSubscription - - { - - } -} \ No newline at end of file diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSubscriptionProperties.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSubscriptionProperties.PowerShell.cs deleted file mode 100644 index 808ac89af292..000000000000 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSubscriptionProperties.PowerShell.cs +++ /dev/null @@ -1,374 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview -{ - using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; - - /// Description of Subscription Resource. - [System.ComponentModel.TypeConverter(typeof(SbSubscriptionPropertiesTypeConverter))] - public partial class SbSubscriptionProperties - { - - /// - /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the - /// object before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Collections.IDictionary content that should be used. - - partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); - - /// - /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object - /// before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Management.Automation.PSObject content that should be used. - - partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); - - /// - /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output - /// parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Collections.IDictionary content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); - - /// - /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output - /// parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); - - /// - /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior - /// - /// /// instance serialized to a string, normally it is a Json - /// /// set returnNow to true if you provide a customized OverrideToString function - - partial void OverrideToString(ref string stringResult, ref bool returnNow); - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) - { - return new SbSubscriptionProperties(content); - } - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) - { - return new SbSubscriptionProperties(content); - } - - /// - /// Creates a new instance of , deserializing the content from a json string. - /// - /// a string containing a JSON serialized instance of this model. - /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - internal SbSubscriptionProperties(global::System.Collections.IDictionary content) - { - bool returnNow = false; - BeforeDeserializeDictionary(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("CountDetail")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).CountDetail = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetails) content.GetValueForProperty("CountDetail",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).CountDetail, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.MessageCountDetailsTypeConverter.ConvertFrom); - } - if (content.Contains("ClientAffineProperty")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).ClientAffineProperty = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbClientAffineProperties) content.GetValueForProperty("ClientAffineProperty",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).ClientAffineProperty, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbClientAffinePropertiesTypeConverter.ConvertFrom); - } - if (content.Contains("MessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).MessageCount = (long?) content.GetValueForProperty("MessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).MessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CreatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("AccessedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).AccessedAt = (global::System.DateTime?) content.GetValueForProperty("AccessedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).AccessedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("UpdatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).UpdatedAt = (global::System.DateTime?) content.GetValueForProperty("UpdatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).UpdatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("LockDuration")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).LockDuration = (global::System.TimeSpan?) content.GetValueForProperty("LockDuration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).LockDuration, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - } - if (content.Contains("RequiresSession")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).RequiresSession = (bool?) content.GetValueForProperty("RequiresSession",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).RequiresSession, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("DefaultMessageTimeToLive")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).DefaultMessageTimeToLive = (global::System.TimeSpan?) content.GetValueForProperty("DefaultMessageTimeToLive",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).DefaultMessageTimeToLive, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - } - if (content.Contains("DeadLetteringOnFilterEvaluationException")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).DeadLetteringOnFilterEvaluationException = (bool?) content.GetValueForProperty("DeadLetteringOnFilterEvaluationException",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).DeadLetteringOnFilterEvaluationException, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("DeadLetteringOnMessageExpiration")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).DeadLetteringOnMessageExpiration = (bool?) content.GetValueForProperty("DeadLetteringOnMessageExpiration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).DeadLetteringOnMessageExpiration, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("DuplicateDetectionHistoryTimeWindow")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).DuplicateDetectionHistoryTimeWindow = (global::System.TimeSpan?) content.GetValueForProperty("DuplicateDetectionHistoryTimeWindow",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).DuplicateDetectionHistoryTimeWindow, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - } - if (content.Contains("MaxDeliveryCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).MaxDeliveryCount = (int?) content.GetValueForProperty("MaxDeliveryCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).MaxDeliveryCount, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - } - if (content.Contains("Status")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).Status = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus?) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).Status, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus.CreateFrom); - } - if (content.Contains("EnableBatchedOperations")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).EnableBatchedOperations = (bool?) content.GetValueForProperty("EnableBatchedOperations",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).EnableBatchedOperations, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("AutoDeleteOnIdle")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).AutoDeleteOnIdle = (global::System.TimeSpan?) content.GetValueForProperty("AutoDeleteOnIdle",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).AutoDeleteOnIdle, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - } - if (content.Contains("ForwardTo")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).ForwardTo = (string) content.GetValueForProperty("ForwardTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).ForwardTo, global::System.Convert.ToString); - } - if (content.Contains("ForwardDeadLetteredMessagesTo")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).ForwardDeadLetteredMessagesTo = (string) content.GetValueForProperty("ForwardDeadLetteredMessagesTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).ForwardDeadLetteredMessagesTo, global::System.Convert.ToString); - } - if (content.Contains("IsClientAffine")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).IsClientAffine = (bool?) content.GetValueForProperty("IsClientAffine",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).IsClientAffine, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("CountDetailActiveMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).CountDetailActiveMessageCount = (long?) content.GetValueForProperty("CountDetailActiveMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).CountDetailActiveMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailDeadLetterMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).CountDetailDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).CountDetailDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailScheduledMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).CountDetailScheduledMessageCount = (long?) content.GetValueForProperty("CountDetailScheduledMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).CountDetailScheduledMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailTransferMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).CountDetailTransferMessageCount = (long?) content.GetValueForProperty("CountDetailTransferMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).CountDetailTransferMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailTransferDeadLetterMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).CountDetailTransferDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailTransferDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).CountDetailTransferDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("ClientAffinePropertyClientId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).ClientAffinePropertyClientId = (string) content.GetValueForProperty("ClientAffinePropertyClientId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).ClientAffinePropertyClientId, global::System.Convert.ToString); - } - if (content.Contains("ClientAffinePropertyIsDurable")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).ClientAffinePropertyIsDurable = (bool?) content.GetValueForProperty("ClientAffinePropertyIsDurable",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).ClientAffinePropertyIsDurable, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("ClientAffinePropertyIsShared")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).ClientAffinePropertyIsShared = (bool?) content.GetValueForProperty("ClientAffinePropertyIsShared",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).ClientAffinePropertyIsShared, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - AfterDeserializeDictionary(content); - } - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - internal SbSubscriptionProperties(global::System.Management.Automation.PSObject content) - { - bool returnNow = false; - BeforeDeserializePSObject(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("CountDetail")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).CountDetail = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetails) content.GetValueForProperty("CountDetail",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).CountDetail, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.MessageCountDetailsTypeConverter.ConvertFrom); - } - if (content.Contains("ClientAffineProperty")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).ClientAffineProperty = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbClientAffineProperties) content.GetValueForProperty("ClientAffineProperty",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).ClientAffineProperty, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbClientAffinePropertiesTypeConverter.ConvertFrom); - } - if (content.Contains("MessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).MessageCount = (long?) content.GetValueForProperty("MessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).MessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CreatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("AccessedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).AccessedAt = (global::System.DateTime?) content.GetValueForProperty("AccessedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).AccessedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("UpdatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).UpdatedAt = (global::System.DateTime?) content.GetValueForProperty("UpdatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).UpdatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("LockDuration")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).LockDuration = (global::System.TimeSpan?) content.GetValueForProperty("LockDuration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).LockDuration, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - } - if (content.Contains("RequiresSession")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).RequiresSession = (bool?) content.GetValueForProperty("RequiresSession",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).RequiresSession, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("DefaultMessageTimeToLive")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).DefaultMessageTimeToLive = (global::System.TimeSpan?) content.GetValueForProperty("DefaultMessageTimeToLive",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).DefaultMessageTimeToLive, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - } - if (content.Contains("DeadLetteringOnFilterEvaluationException")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).DeadLetteringOnFilterEvaluationException = (bool?) content.GetValueForProperty("DeadLetteringOnFilterEvaluationException",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).DeadLetteringOnFilterEvaluationException, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("DeadLetteringOnMessageExpiration")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).DeadLetteringOnMessageExpiration = (bool?) content.GetValueForProperty("DeadLetteringOnMessageExpiration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).DeadLetteringOnMessageExpiration, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("DuplicateDetectionHistoryTimeWindow")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).DuplicateDetectionHistoryTimeWindow = (global::System.TimeSpan?) content.GetValueForProperty("DuplicateDetectionHistoryTimeWindow",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).DuplicateDetectionHistoryTimeWindow, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - } - if (content.Contains("MaxDeliveryCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).MaxDeliveryCount = (int?) content.GetValueForProperty("MaxDeliveryCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).MaxDeliveryCount, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - } - if (content.Contains("Status")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).Status = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus?) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).Status, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus.CreateFrom); - } - if (content.Contains("EnableBatchedOperations")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).EnableBatchedOperations = (bool?) content.GetValueForProperty("EnableBatchedOperations",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).EnableBatchedOperations, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("AutoDeleteOnIdle")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).AutoDeleteOnIdle = (global::System.TimeSpan?) content.GetValueForProperty("AutoDeleteOnIdle",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).AutoDeleteOnIdle, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - } - if (content.Contains("ForwardTo")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).ForwardTo = (string) content.GetValueForProperty("ForwardTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).ForwardTo, global::System.Convert.ToString); - } - if (content.Contains("ForwardDeadLetteredMessagesTo")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).ForwardDeadLetteredMessagesTo = (string) content.GetValueForProperty("ForwardDeadLetteredMessagesTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).ForwardDeadLetteredMessagesTo, global::System.Convert.ToString); - } - if (content.Contains("IsClientAffine")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).IsClientAffine = (bool?) content.GetValueForProperty("IsClientAffine",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).IsClientAffine, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("CountDetailActiveMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).CountDetailActiveMessageCount = (long?) content.GetValueForProperty("CountDetailActiveMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).CountDetailActiveMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailDeadLetterMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).CountDetailDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).CountDetailDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailScheduledMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).CountDetailScheduledMessageCount = (long?) content.GetValueForProperty("CountDetailScheduledMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).CountDetailScheduledMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailTransferMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).CountDetailTransferMessageCount = (long?) content.GetValueForProperty("CountDetailTransferMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).CountDetailTransferMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailTransferDeadLetterMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).CountDetailTransferDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailTransferDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).CountDetailTransferDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("ClientAffinePropertyClientId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).ClientAffinePropertyClientId = (string) content.GetValueForProperty("ClientAffinePropertyClientId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).ClientAffinePropertyClientId, global::System.Convert.ToString); - } - if (content.Contains("ClientAffinePropertyIsDurable")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).ClientAffinePropertyIsDurable = (bool?) content.GetValueForProperty("ClientAffinePropertyIsDurable",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).ClientAffinePropertyIsDurable, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("ClientAffinePropertyIsShared")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).ClientAffinePropertyIsShared = (bool?) content.GetValueForProperty("ClientAffinePropertyIsShared",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)this).ClientAffinePropertyIsShared, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - AfterDeserializePSObject(content); - } - - /// Serializes this instance to a json string. - - /// a containing this model serialized to JSON text. - public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.SerializationMode.IncludeAll)?.ToString(); - - public override string ToString() - { - var returnNow = false; - var result = global::System.String.Empty; - OverrideToString(ref result, ref returnNow); - if (returnNow) - { - return result; - } - return ToJsonString(); - } - } - /// Description of Subscription Resource. - [System.ComponentModel.TypeConverter(typeof(SbSubscriptionPropertiesTypeConverter))] - public partial interface ISbSubscriptionProperties - - { - - } -} \ No newline at end of file diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbTopic.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbTopic.PowerShell.cs deleted file mode 100644 index 76c61e83b056..000000000000 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbTopic.PowerShell.cs +++ /dev/null @@ -1,428 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview -{ - using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; - - /// Description of topic resource. - [System.ComponentModel.TypeConverter(typeof(SbTopicTypeConverter))] - public partial class SbTopic - { - - /// - /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the - /// object before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Collections.IDictionary content that should be used. - - partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); - - /// - /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object - /// before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Management.Automation.PSObject content that should be used. - - partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); - - /// - /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output - /// parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Collections.IDictionary content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); - - /// - /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output - /// parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); - - /// - /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior - /// - /// /// instance serialized to a string, normally it is a Json - /// /// set returnNow to true if you provide a customized OverrideToString function - - partial void OverrideToString(ref string stringResult, ref bool returnNow); - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic DeserializeFromDictionary(global::System.Collections.IDictionary content) - { - return new SbTopic(content); - } - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic DeserializeFromPSObject(global::System.Management.Automation.PSObject content) - { - return new SbTopic(content); - } - - /// - /// Creates a new instance of , deserializing the content from a json string. - /// - /// a string containing a JSON serialized instance of this model. - /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - internal SbTopic(global::System.Collections.IDictionary content) - { - bool returnNow = false; - BeforeDeserializeDictionary(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("Property")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbTopicPropertiesTypeConverter.ConvertFrom); - } - if (content.Contains("SystemData")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemDataTypeConverter.ConvertFrom); - } - if (content.Contains("Id")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Id, global::System.Convert.ToString); - } - if (content.Contains("Name")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Name, global::System.Convert.ToString); - } - if (content.Contains("Type")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Type, global::System.Convert.ToString); - } - if (content.Contains("Location")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Location, global::System.Convert.ToString); - } - if (content.Contains("SystemDataCreatedBy")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); - } - if (content.Contains("SystemDataCreatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("CountDetail")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).CountDetail = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetails) content.GetValueForProperty("CountDetail",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).CountDetail, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.MessageCountDetailsTypeConverter.ConvertFrom); - } - if (content.Contains("SizeInByte")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).SizeInByte = (long?) content.GetValueForProperty("SizeInByte",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).SizeInByte, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CreatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("UpdatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).UpdatedAt = (global::System.DateTime?) content.GetValueForProperty("UpdatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).UpdatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("AccessedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).AccessedAt = (global::System.DateTime?) content.GetValueForProperty("AccessedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).AccessedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("SubscriptionCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).SubscriptionCount = (int?) content.GetValueForProperty("SubscriptionCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).SubscriptionCount, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - } - if (content.Contains("DefaultMessageTimeToLive")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).DefaultMessageTimeToLive = (global::System.TimeSpan?) content.GetValueForProperty("DefaultMessageTimeToLive",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).DefaultMessageTimeToLive, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - } - if (content.Contains("MaxSizeInMegabytes")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).MaxSizeInMegabytes = (int?) content.GetValueForProperty("MaxSizeInMegabytes",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).MaxSizeInMegabytes, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - } - if (content.Contains("MaxMessageSizeInKilobytes")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).MaxMessageSizeInKilobytes = (long?) content.GetValueForProperty("MaxMessageSizeInKilobytes",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).MaxMessageSizeInKilobytes, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("RequiresDuplicateDetection")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).RequiresDuplicateDetection = (bool?) content.GetValueForProperty("RequiresDuplicateDetection",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).RequiresDuplicateDetection, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("DuplicateDetectionHistoryTimeWindow")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).DuplicateDetectionHistoryTimeWindow = (global::System.TimeSpan?) content.GetValueForProperty("DuplicateDetectionHistoryTimeWindow",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).DuplicateDetectionHistoryTimeWindow, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - } - if (content.Contains("EnableBatchedOperations")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).EnableBatchedOperations = (bool?) content.GetValueForProperty("EnableBatchedOperations",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).EnableBatchedOperations, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("Status")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).Status = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus?) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).Status, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus.CreateFrom); - } - if (content.Contains("SupportOrdering")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).SupportOrdering = (bool?) content.GetValueForProperty("SupportOrdering",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).SupportOrdering, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("AutoDeleteOnIdle")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).AutoDeleteOnIdle = (global::System.TimeSpan?) content.GetValueForProperty("AutoDeleteOnIdle",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).AutoDeleteOnIdle, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - } - if (content.Contains("EnablePartitioning")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).EnablePartitioning = (bool?) content.GetValueForProperty("EnablePartitioning",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).EnablePartitioning, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("EnableExpress")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).EnableExpress = (bool?) content.GetValueForProperty("EnableExpress",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).EnableExpress, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("SystemDataCreatedByType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); - } - if (content.Contains("SystemDataLastModifiedBy")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); - } - if (content.Contains("SystemDataLastModifiedByType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); - } - if (content.Contains("SystemDataLastModifiedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("CountDetailActiveMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).CountDetailActiveMessageCount = (long?) content.GetValueForProperty("CountDetailActiveMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).CountDetailActiveMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailDeadLetterMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).CountDetailDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).CountDetailDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailScheduledMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).CountDetailScheduledMessageCount = (long?) content.GetValueForProperty("CountDetailScheduledMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).CountDetailScheduledMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailTransferMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).CountDetailTransferMessageCount = (long?) content.GetValueForProperty("CountDetailTransferMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).CountDetailTransferMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailTransferDeadLetterMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).CountDetailTransferDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailTransferDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).CountDetailTransferDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - AfterDeserializeDictionary(content); - } - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - internal SbTopic(global::System.Management.Automation.PSObject content) - { - bool returnNow = false; - BeforeDeserializePSObject(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("Property")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbTopicPropertiesTypeConverter.ConvertFrom); - } - if (content.Contains("SystemData")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemDataTypeConverter.ConvertFrom); - } - if (content.Contains("Id")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Id, global::System.Convert.ToString); - } - if (content.Contains("Name")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Name, global::System.Convert.ToString); - } - if (content.Contains("Type")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Type, global::System.Convert.ToString); - } - if (content.Contains("Location")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Location, global::System.Convert.ToString); - } - if (content.Contains("SystemDataCreatedBy")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); - } - if (content.Contains("SystemDataCreatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("CountDetail")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).CountDetail = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetails) content.GetValueForProperty("CountDetail",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).CountDetail, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.MessageCountDetailsTypeConverter.ConvertFrom); - } - if (content.Contains("SizeInByte")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).SizeInByte = (long?) content.GetValueForProperty("SizeInByte",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).SizeInByte, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CreatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("UpdatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).UpdatedAt = (global::System.DateTime?) content.GetValueForProperty("UpdatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).UpdatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("AccessedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).AccessedAt = (global::System.DateTime?) content.GetValueForProperty("AccessedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).AccessedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("SubscriptionCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).SubscriptionCount = (int?) content.GetValueForProperty("SubscriptionCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).SubscriptionCount, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - } - if (content.Contains("DefaultMessageTimeToLive")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).DefaultMessageTimeToLive = (global::System.TimeSpan?) content.GetValueForProperty("DefaultMessageTimeToLive",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).DefaultMessageTimeToLive, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - } - if (content.Contains("MaxSizeInMegabytes")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).MaxSizeInMegabytes = (int?) content.GetValueForProperty("MaxSizeInMegabytes",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).MaxSizeInMegabytes, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - } - if (content.Contains("MaxMessageSizeInKilobytes")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).MaxMessageSizeInKilobytes = (long?) content.GetValueForProperty("MaxMessageSizeInKilobytes",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).MaxMessageSizeInKilobytes, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("RequiresDuplicateDetection")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).RequiresDuplicateDetection = (bool?) content.GetValueForProperty("RequiresDuplicateDetection",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).RequiresDuplicateDetection, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("DuplicateDetectionHistoryTimeWindow")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).DuplicateDetectionHistoryTimeWindow = (global::System.TimeSpan?) content.GetValueForProperty("DuplicateDetectionHistoryTimeWindow",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).DuplicateDetectionHistoryTimeWindow, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - } - if (content.Contains("EnableBatchedOperations")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).EnableBatchedOperations = (bool?) content.GetValueForProperty("EnableBatchedOperations",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).EnableBatchedOperations, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("Status")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).Status = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus?) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).Status, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus.CreateFrom); - } - if (content.Contains("SupportOrdering")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).SupportOrdering = (bool?) content.GetValueForProperty("SupportOrdering",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).SupportOrdering, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("AutoDeleteOnIdle")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).AutoDeleteOnIdle = (global::System.TimeSpan?) content.GetValueForProperty("AutoDeleteOnIdle",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).AutoDeleteOnIdle, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - } - if (content.Contains("EnablePartitioning")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).EnablePartitioning = (bool?) content.GetValueForProperty("EnablePartitioning",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).EnablePartitioning, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("EnableExpress")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).EnableExpress = (bool?) content.GetValueForProperty("EnableExpress",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).EnableExpress, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("SystemDataCreatedByType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); - } - if (content.Contains("SystemDataLastModifiedBy")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); - } - if (content.Contains("SystemDataLastModifiedByType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); - } - if (content.Contains("SystemDataLastModifiedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("CountDetailActiveMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).CountDetailActiveMessageCount = (long?) content.GetValueForProperty("CountDetailActiveMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).CountDetailActiveMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailDeadLetterMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).CountDetailDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).CountDetailDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailScheduledMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).CountDetailScheduledMessageCount = (long?) content.GetValueForProperty("CountDetailScheduledMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).CountDetailScheduledMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailTransferMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).CountDetailTransferMessageCount = (long?) content.GetValueForProperty("CountDetailTransferMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).CountDetailTransferMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailTransferDeadLetterMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).CountDetailTransferDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailTransferDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal)this).CountDetailTransferDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - AfterDeserializePSObject(content); - } - - /// Serializes this instance to a json string. - - /// a containing this model serialized to JSON text. - public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.SerializationMode.IncludeAll)?.ToString(); - - public override string ToString() - { - var returnNow = false; - var result = global::System.String.Empty; - OverrideToString(ref result, ref returnNow); - if (returnNow) - { - return result; - } - return ToJsonString(); - } - } - /// Description of topic resource. - [System.ComponentModel.TypeConverter(typeof(SbTopicTypeConverter))] - public partial interface ISbTopic - - { - - } -} \ No newline at end of file diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbTopicProperties.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbTopicProperties.PowerShell.cs deleted file mode 100644 index b46662dbdac2..000000000000 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbTopicProperties.PowerShell.cs +++ /dev/null @@ -1,332 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview -{ - using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; - - /// The Topic Properties definition. - [System.ComponentModel.TypeConverter(typeof(SbTopicPropertiesTypeConverter))] - public partial class SbTopicProperties - { - - /// - /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the - /// object before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Collections.IDictionary content that should be used. - - partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); - - /// - /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object - /// before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Management.Automation.PSObject content that should be used. - - partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); - - /// - /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output - /// parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Collections.IDictionary content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); - - /// - /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output - /// parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); - - /// - /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior - /// - /// /// instance serialized to a string, normally it is a Json - /// /// set returnNow to true if you provide a customized OverrideToString function - - partial void OverrideToString(ref string stringResult, ref bool returnNow); - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) - { - return new SbTopicProperties(content); - } - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) - { - return new SbTopicProperties(content); - } - - /// - /// Creates a new instance of , deserializing the content from a json string. - /// - /// a string containing a JSON serialized instance of this model. - /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - internal SbTopicProperties(global::System.Collections.IDictionary content) - { - bool returnNow = false; - BeforeDeserializeDictionary(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("CountDetail")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).CountDetail = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetails) content.GetValueForProperty("CountDetail",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).CountDetail, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.MessageCountDetailsTypeConverter.ConvertFrom); - } - if (content.Contains("SizeInByte")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).SizeInByte = (long?) content.GetValueForProperty("SizeInByte",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).SizeInByte, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CreatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("UpdatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).UpdatedAt = (global::System.DateTime?) content.GetValueForProperty("UpdatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).UpdatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("AccessedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).AccessedAt = (global::System.DateTime?) content.GetValueForProperty("AccessedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).AccessedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("SubscriptionCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).SubscriptionCount = (int?) content.GetValueForProperty("SubscriptionCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).SubscriptionCount, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - } - if (content.Contains("DefaultMessageTimeToLive")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).DefaultMessageTimeToLive = (global::System.TimeSpan?) content.GetValueForProperty("DefaultMessageTimeToLive",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).DefaultMessageTimeToLive, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - } - if (content.Contains("MaxSizeInMegabytes")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).MaxSizeInMegabytes = (int?) content.GetValueForProperty("MaxSizeInMegabytes",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).MaxSizeInMegabytes, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - } - if (content.Contains("MaxMessageSizeInKilobytes")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).MaxMessageSizeInKilobytes = (long?) content.GetValueForProperty("MaxMessageSizeInKilobytes",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).MaxMessageSizeInKilobytes, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("RequiresDuplicateDetection")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).RequiresDuplicateDetection = (bool?) content.GetValueForProperty("RequiresDuplicateDetection",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).RequiresDuplicateDetection, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("DuplicateDetectionHistoryTimeWindow")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).DuplicateDetectionHistoryTimeWindow = (global::System.TimeSpan?) content.GetValueForProperty("DuplicateDetectionHistoryTimeWindow",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).DuplicateDetectionHistoryTimeWindow, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - } - if (content.Contains("EnableBatchedOperations")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).EnableBatchedOperations = (bool?) content.GetValueForProperty("EnableBatchedOperations",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).EnableBatchedOperations, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("Status")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).Status = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus?) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).Status, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus.CreateFrom); - } - if (content.Contains("SupportOrdering")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).SupportOrdering = (bool?) content.GetValueForProperty("SupportOrdering",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).SupportOrdering, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("AutoDeleteOnIdle")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).AutoDeleteOnIdle = (global::System.TimeSpan?) content.GetValueForProperty("AutoDeleteOnIdle",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).AutoDeleteOnIdle, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - } - if (content.Contains("EnablePartitioning")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).EnablePartitioning = (bool?) content.GetValueForProperty("EnablePartitioning",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).EnablePartitioning, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("EnableExpress")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).EnableExpress = (bool?) content.GetValueForProperty("EnableExpress",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).EnableExpress, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("CountDetailActiveMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).CountDetailActiveMessageCount = (long?) content.GetValueForProperty("CountDetailActiveMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).CountDetailActiveMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailDeadLetterMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).CountDetailDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).CountDetailDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailScheduledMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).CountDetailScheduledMessageCount = (long?) content.GetValueForProperty("CountDetailScheduledMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).CountDetailScheduledMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailTransferMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).CountDetailTransferMessageCount = (long?) content.GetValueForProperty("CountDetailTransferMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).CountDetailTransferMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailTransferDeadLetterMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).CountDetailTransferDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailTransferDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).CountDetailTransferDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - AfterDeserializeDictionary(content); - } - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - internal SbTopicProperties(global::System.Management.Automation.PSObject content) - { - bool returnNow = false; - BeforeDeserializePSObject(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("CountDetail")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).CountDetail = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetails) content.GetValueForProperty("CountDetail",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).CountDetail, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.MessageCountDetailsTypeConverter.ConvertFrom); - } - if (content.Contains("SizeInByte")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).SizeInByte = (long?) content.GetValueForProperty("SizeInByte",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).SizeInByte, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CreatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("UpdatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).UpdatedAt = (global::System.DateTime?) content.GetValueForProperty("UpdatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).UpdatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("AccessedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).AccessedAt = (global::System.DateTime?) content.GetValueForProperty("AccessedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).AccessedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("SubscriptionCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).SubscriptionCount = (int?) content.GetValueForProperty("SubscriptionCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).SubscriptionCount, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - } - if (content.Contains("DefaultMessageTimeToLive")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).DefaultMessageTimeToLive = (global::System.TimeSpan?) content.GetValueForProperty("DefaultMessageTimeToLive",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).DefaultMessageTimeToLive, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - } - if (content.Contains("MaxSizeInMegabytes")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).MaxSizeInMegabytes = (int?) content.GetValueForProperty("MaxSizeInMegabytes",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).MaxSizeInMegabytes, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); - } - if (content.Contains("MaxMessageSizeInKilobytes")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).MaxMessageSizeInKilobytes = (long?) content.GetValueForProperty("MaxMessageSizeInKilobytes",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).MaxMessageSizeInKilobytes, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("RequiresDuplicateDetection")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).RequiresDuplicateDetection = (bool?) content.GetValueForProperty("RequiresDuplicateDetection",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).RequiresDuplicateDetection, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("DuplicateDetectionHistoryTimeWindow")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).DuplicateDetectionHistoryTimeWindow = (global::System.TimeSpan?) content.GetValueForProperty("DuplicateDetectionHistoryTimeWindow",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).DuplicateDetectionHistoryTimeWindow, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - } - if (content.Contains("EnableBatchedOperations")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).EnableBatchedOperations = (bool?) content.GetValueForProperty("EnableBatchedOperations",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).EnableBatchedOperations, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("Status")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).Status = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus?) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).Status, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus.CreateFrom); - } - if (content.Contains("SupportOrdering")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).SupportOrdering = (bool?) content.GetValueForProperty("SupportOrdering",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).SupportOrdering, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("AutoDeleteOnIdle")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).AutoDeleteOnIdle = (global::System.TimeSpan?) content.GetValueForProperty("AutoDeleteOnIdle",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).AutoDeleteOnIdle, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); - } - if (content.Contains("EnablePartitioning")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).EnablePartitioning = (bool?) content.GetValueForProperty("EnablePartitioning",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).EnablePartitioning, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("EnableExpress")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).EnableExpress = (bool?) content.GetValueForProperty("EnableExpress",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).EnableExpress, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); - } - if (content.Contains("CountDetailActiveMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).CountDetailActiveMessageCount = (long?) content.GetValueForProperty("CountDetailActiveMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).CountDetailActiveMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailDeadLetterMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).CountDetailDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).CountDetailDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailScheduledMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).CountDetailScheduledMessageCount = (long?) content.GetValueForProperty("CountDetailScheduledMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).CountDetailScheduledMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailTransferMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).CountDetailTransferMessageCount = (long?) content.GetValueForProperty("CountDetailTransferMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).CountDetailTransferMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - if (content.Contains("CountDetailTransferDeadLetterMessageCount")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).CountDetailTransferDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailTransferDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)this).CountDetailTransferDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); - } - AfterDeserializePSObject(content); - } - - /// Serializes this instance to a json string. - - /// a containing this model serialized to JSON text. - public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.SerializationMode.IncludeAll)?.ToString(); - - public override string ToString() - { - var returnNow = false; - var result = global::System.String.Empty; - OverrideToString(ref result, ref returnNow); - if (returnNow) - { - return result; - } - return ToJsonString(); - } - } - /// The Topic Properties definition. - [System.ComponentModel.TypeConverter(typeof(SbTopicPropertiesTypeConverter))] - public partial interface ISbTopicProperties - - { - - } -} \ No newline at end of file diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/AccessKeys.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/AccessKeys.PowerShell.cs similarity index 66% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/AccessKeys.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/AccessKeys.PowerShell.cs index 80594a9034c9..f9a1bed7f6f9 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/AccessKeys.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/AccessKeys.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -63,7 +63,7 @@ public partial class AccessKeys partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -78,37 +78,37 @@ internal AccessKeys(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("PrimaryConnectionString")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeysInternal)this).PrimaryConnectionString = (string) content.GetValueForProperty("PrimaryConnectionString",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeysInternal)this).PrimaryConnectionString, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeysInternal)this).PrimaryConnectionString = (string) content.GetValueForProperty("PrimaryConnectionString",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeysInternal)this).PrimaryConnectionString, global::System.Convert.ToString); } if (content.Contains("SecondaryConnectionString")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeysInternal)this).SecondaryConnectionString = (string) content.GetValueForProperty("SecondaryConnectionString",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeysInternal)this).SecondaryConnectionString, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeysInternal)this).SecondaryConnectionString = (string) content.GetValueForProperty("SecondaryConnectionString",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeysInternal)this).SecondaryConnectionString, global::System.Convert.ToString); } if (content.Contains("AliasPrimaryConnectionString")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeysInternal)this).AliasPrimaryConnectionString = (string) content.GetValueForProperty("AliasPrimaryConnectionString",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeysInternal)this).AliasPrimaryConnectionString, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeysInternal)this).AliasPrimaryConnectionString = (string) content.GetValueForProperty("AliasPrimaryConnectionString",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeysInternal)this).AliasPrimaryConnectionString, global::System.Convert.ToString); } if (content.Contains("AliasSecondaryConnectionString")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeysInternal)this).AliasSecondaryConnectionString = (string) content.GetValueForProperty("AliasSecondaryConnectionString",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeysInternal)this).AliasSecondaryConnectionString, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeysInternal)this).AliasSecondaryConnectionString = (string) content.GetValueForProperty("AliasSecondaryConnectionString",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeysInternal)this).AliasSecondaryConnectionString, global::System.Convert.ToString); } if (content.Contains("PrimaryKey")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeysInternal)this).PrimaryKey = (string) content.GetValueForProperty("PrimaryKey",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeysInternal)this).PrimaryKey, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeysInternal)this).PrimaryKey = (string) content.GetValueForProperty("PrimaryKey",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeysInternal)this).PrimaryKey, global::System.Convert.ToString); } if (content.Contains("SecondaryKey")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeysInternal)this).SecondaryKey = (string) content.GetValueForProperty("SecondaryKey",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeysInternal)this).SecondaryKey, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeysInternal)this).SecondaryKey = (string) content.GetValueForProperty("SecondaryKey",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeysInternal)this).SecondaryKey, global::System.Convert.ToString); } if (content.Contains("KeyName")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeysInternal)this).KeyName = (string) content.GetValueForProperty("KeyName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeysInternal)this).KeyName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeysInternal)this).KeyName = (string) content.GetValueForProperty("KeyName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeysInternal)this).KeyName, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -123,57 +123,57 @@ internal AccessKeys(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("PrimaryConnectionString")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeysInternal)this).PrimaryConnectionString = (string) content.GetValueForProperty("PrimaryConnectionString",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeysInternal)this).PrimaryConnectionString, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeysInternal)this).PrimaryConnectionString = (string) content.GetValueForProperty("PrimaryConnectionString",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeysInternal)this).PrimaryConnectionString, global::System.Convert.ToString); } if (content.Contains("SecondaryConnectionString")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeysInternal)this).SecondaryConnectionString = (string) content.GetValueForProperty("SecondaryConnectionString",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeysInternal)this).SecondaryConnectionString, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeysInternal)this).SecondaryConnectionString = (string) content.GetValueForProperty("SecondaryConnectionString",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeysInternal)this).SecondaryConnectionString, global::System.Convert.ToString); } if (content.Contains("AliasPrimaryConnectionString")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeysInternal)this).AliasPrimaryConnectionString = (string) content.GetValueForProperty("AliasPrimaryConnectionString",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeysInternal)this).AliasPrimaryConnectionString, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeysInternal)this).AliasPrimaryConnectionString = (string) content.GetValueForProperty("AliasPrimaryConnectionString",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeysInternal)this).AliasPrimaryConnectionString, global::System.Convert.ToString); } if (content.Contains("AliasSecondaryConnectionString")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeysInternal)this).AliasSecondaryConnectionString = (string) content.GetValueForProperty("AliasSecondaryConnectionString",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeysInternal)this).AliasSecondaryConnectionString, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeysInternal)this).AliasSecondaryConnectionString = (string) content.GetValueForProperty("AliasSecondaryConnectionString",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeysInternal)this).AliasSecondaryConnectionString, global::System.Convert.ToString); } if (content.Contains("PrimaryKey")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeysInternal)this).PrimaryKey = (string) content.GetValueForProperty("PrimaryKey",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeysInternal)this).PrimaryKey, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeysInternal)this).PrimaryKey = (string) content.GetValueForProperty("PrimaryKey",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeysInternal)this).PrimaryKey, global::System.Convert.ToString); } if (content.Contains("SecondaryKey")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeysInternal)this).SecondaryKey = (string) content.GetValueForProperty("SecondaryKey",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeysInternal)this).SecondaryKey, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeysInternal)this).SecondaryKey = (string) content.GetValueForProperty("SecondaryKey",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeysInternal)this).SecondaryKey, global::System.Convert.ToString); } if (content.Contains("KeyName")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeysInternal)this).KeyName = (string) content.GetValueForProperty("KeyName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeysInternal)this).KeyName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeysInternal)this).KeyName = (string) content.GetValueForProperty("KeyName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeysInternal)this).KeyName, global::System.Convert.ToString); } AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new AccessKeys(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new AccessKeys(content); } @@ -183,7 +183,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/AccessKeys.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/AccessKeys.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/AccessKeys.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/AccessKeys.TypeConverter.cs index e43e7a28b85d..10adb5299f9b 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/AccessKeys.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/AccessKeys.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -105,14 +105,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/AccessKeys.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/AccessKeys.cs similarity index 89% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/AccessKeys.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/AccessKeys.cs index 6d5810183895..23ba16511adc 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/AccessKeys.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/AccessKeys.cs @@ -3,15 +3,15 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// Namespace/ServiceBus Connection String [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class AccessKeys : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeysInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeysInternal { /// Backing field for property. @@ -36,25 +36,25 @@ public partial class AccessKeys : public string KeyName { get => this._keyName; } /// Internal Acessors for AliasPrimaryConnectionString - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeysInternal.AliasPrimaryConnectionString { get => this._aliasPrimaryConnectionString; set { {_aliasPrimaryConnectionString = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeysInternal.AliasPrimaryConnectionString { get => this._aliasPrimaryConnectionString; set { {_aliasPrimaryConnectionString = value;} } } /// Internal Acessors for AliasSecondaryConnectionString - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeysInternal.AliasSecondaryConnectionString { get => this._aliasSecondaryConnectionString; set { {_aliasSecondaryConnectionString = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeysInternal.AliasSecondaryConnectionString { get => this._aliasSecondaryConnectionString; set { {_aliasSecondaryConnectionString = value;} } } /// Internal Acessors for KeyName - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeysInternal.KeyName { get => this._keyName; set { {_keyName = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeysInternal.KeyName { get => this._keyName; set { {_keyName = value;} } } /// Internal Acessors for PrimaryConnectionString - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeysInternal.PrimaryConnectionString { get => this._primaryConnectionString; set { {_primaryConnectionString = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeysInternal.PrimaryConnectionString { get => this._primaryConnectionString; set { {_primaryConnectionString = value;} } } /// Internal Acessors for PrimaryKey - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeysInternal.PrimaryKey { get => this._primaryKey; set { {_primaryKey = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeysInternal.PrimaryKey { get => this._primaryKey; set { {_primaryKey = value;} } } /// Internal Acessors for SecondaryConnectionString - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeysInternal.SecondaryConnectionString { get => this._secondaryConnectionString; set { {_secondaryConnectionString = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeysInternal.SecondaryConnectionString { get => this._secondaryConnectionString; set { {_secondaryConnectionString = value;} } } /// Internal Acessors for SecondaryKey - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeysInternal.SecondaryKey { get => this._secondaryKey; set { {_secondaryKey = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeysInternal.SecondaryKey { get => this._secondaryKey; set { {_secondaryKey = value;} } } /// Backing field for property. private string _primaryConnectionString; diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/AccessKeys.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/AccessKeys.json.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/AccessKeys.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/AccessKeys.json.cs index 32ff01a43cd6..f9b778ae2dc6 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/AccessKeys.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/AccessKeys.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -76,13 +76,13 @@ internal AccessKeys(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.J } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new AccessKeys(json) : null; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Action.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Action.PowerShell.cs similarity index 76% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Action.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Action.PowerShell.cs index 32e66c8c05f7..def678ee079b 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Action.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Action.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -66,7 +66,7 @@ public partial class Action partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -81,21 +81,21 @@ internal Action(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("SqlExpression")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IActionInternal)this).SqlExpression = (string) content.GetValueForProperty("SqlExpression",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IActionInternal)this).SqlExpression, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IActionInternal)this).SqlExpression = (string) content.GetValueForProperty("SqlExpression",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IActionInternal)this).SqlExpression, global::System.Convert.ToString); } if (content.Contains("CompatibilityLevel")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IActionInternal)this).CompatibilityLevel = (int?) content.GetValueForProperty("CompatibilityLevel",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IActionInternal)this).CompatibilityLevel, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IActionInternal)this).CompatibilityLevel = (int?) content.GetValueForProperty("CompatibilityLevel",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IActionInternal)this).CompatibilityLevel, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); } if (content.Contains("RequiresPreprocessing")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IActionInternal)this).RequiresPreprocessing = (bool?) content.GetValueForProperty("RequiresPreprocessing",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IActionInternal)this).RequiresPreprocessing, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IActionInternal)this).RequiresPreprocessing = (bool?) content.GetValueForProperty("RequiresPreprocessing",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IActionInternal)this).RequiresPreprocessing, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -110,41 +110,41 @@ internal Action(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("SqlExpression")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IActionInternal)this).SqlExpression = (string) content.GetValueForProperty("SqlExpression",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IActionInternal)this).SqlExpression, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IActionInternal)this).SqlExpression = (string) content.GetValueForProperty("SqlExpression",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IActionInternal)this).SqlExpression, global::System.Convert.ToString); } if (content.Contains("CompatibilityLevel")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IActionInternal)this).CompatibilityLevel = (int?) content.GetValueForProperty("CompatibilityLevel",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IActionInternal)this).CompatibilityLevel, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IActionInternal)this).CompatibilityLevel = (int?) content.GetValueForProperty("CompatibilityLevel",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IActionInternal)this).CompatibilityLevel, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); } if (content.Contains("RequiresPreprocessing")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IActionInternal)this).RequiresPreprocessing = (bool?) content.GetValueForProperty("RequiresPreprocessing",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IActionInternal)this).RequiresPreprocessing, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IActionInternal)this).RequiresPreprocessing = (bool?) content.GetValueForProperty("RequiresPreprocessing",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IActionInternal)this).RequiresPreprocessing, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAction DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAction DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new Action(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAction DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAction DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new Action(content); } @@ -154,7 +154,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAction FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAction FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Action.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Action.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Action.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Action.TypeConverter.cs index 4a6221ecb946..3723ceb28b1d 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Action.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Action.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -105,14 +105,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAction ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAction ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAction).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAction).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Action.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Action.cs similarity index 98% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Action.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Action.cs index 7becfe075af0..f2abfdbe57cf 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Action.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Action.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -13,8 +13,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class Action : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAction, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IActionInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAction, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IActionInternal { /// Backing field for property. diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Action.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Action.json.cs similarity index 96% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Action.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Action.json.cs index 8ee44e0fcaa8..46b9b6960ab7 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Action.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Action.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -75,13 +75,13 @@ internal Action(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonO } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAction. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAction. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAction. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAction. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAction FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAction FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new Action(json) : null; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ArmDisasterRecovery.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ArmDisasterRecovery.PowerShell.cs similarity index 56% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ArmDisasterRecovery.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ArmDisasterRecovery.PowerShell.cs index f747a4d37745..bb53e7410dfa 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ArmDisasterRecovery.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ArmDisasterRecovery.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -63,7 +63,7 @@ public partial class ArmDisasterRecovery partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -78,11 +78,11 @@ internal ArmDisasterRecovery(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Property")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ArmDisasterRecoveryPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ArmDisasterRecoveryPropertiesTypeConverter.ConvertFrom); } if (content.Contains("SystemData")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemDataTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemDataTypeConverter.ConvertFrom); } if (content.Contains("Id")) { @@ -102,53 +102,53 @@ internal ArmDisasterRecovery(global::System.Collections.IDictionary content) } if (content.Contains("SystemDataCreatedBy")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); } if (content.Contains("SystemDataCreatedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } if (content.Contains("ProvisioningState")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ProvisioningStateDr?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ProvisioningStateDr.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ProvisioningStateDr?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ProvisioningStateDr.CreateFrom); } if (content.Contains("PendingReplicationOperationsCount")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).PendingReplicationOperationsCount = (long?) content.GetValueForProperty("PendingReplicationOperationsCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).PendingReplicationOperationsCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).PendingReplicationOperationsCount = (long?) content.GetValueForProperty("PendingReplicationOperationsCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).PendingReplicationOperationsCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); } if (content.Contains("PartnerNamespace")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).PartnerNamespace = (string) content.GetValueForProperty("PartnerNamespace",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).PartnerNamespace, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).PartnerNamespace = (string) content.GetValueForProperty("PartnerNamespace",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).PartnerNamespace, global::System.Convert.ToString); } if (content.Contains("AlternateName")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).AlternateName = (string) content.GetValueForProperty("AlternateName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).AlternateName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).AlternateName = (string) content.GetValueForProperty("AlternateName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).AlternateName, global::System.Convert.ToString); } if (content.Contains("Role")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).Role = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.RoleDisasterRecovery?) content.GetValueForProperty("Role",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).Role, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.RoleDisasterRecovery.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).Role = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.RoleDisasterRecovery?) content.GetValueForProperty("Role",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).Role, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.RoleDisasterRecovery.CreateFrom); } if (content.Contains("SystemDataCreatedByType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); } if (content.Contains("SystemDataLastModifiedBy")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); } if (content.Contains("SystemDataLastModifiedByType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); } if (content.Contains("SystemDataLastModifiedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -163,11 +163,11 @@ internal ArmDisasterRecovery(global::System.Management.Automation.PSObject conte // actually deserialize if (content.Contains("Property")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ArmDisasterRecoveryPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ArmDisasterRecoveryPropertiesTypeConverter.ConvertFrom); } if (content.Contains("SystemData")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemDataTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemDataTypeConverter.ConvertFrom); } if (content.Contains("Id")) { @@ -187,75 +187,75 @@ internal ArmDisasterRecovery(global::System.Management.Automation.PSObject conte } if (content.Contains("SystemDataCreatedBy")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); } if (content.Contains("SystemDataCreatedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } if (content.Contains("ProvisioningState")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ProvisioningStateDr?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ProvisioningStateDr.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ProvisioningStateDr?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ProvisioningStateDr.CreateFrom); } if (content.Contains("PendingReplicationOperationsCount")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).PendingReplicationOperationsCount = (long?) content.GetValueForProperty("PendingReplicationOperationsCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).PendingReplicationOperationsCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).PendingReplicationOperationsCount = (long?) content.GetValueForProperty("PendingReplicationOperationsCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).PendingReplicationOperationsCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); } if (content.Contains("PartnerNamespace")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).PartnerNamespace = (string) content.GetValueForProperty("PartnerNamespace",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).PartnerNamespace, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).PartnerNamespace = (string) content.GetValueForProperty("PartnerNamespace",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).PartnerNamespace, global::System.Convert.ToString); } if (content.Contains("AlternateName")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).AlternateName = (string) content.GetValueForProperty("AlternateName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).AlternateName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).AlternateName = (string) content.GetValueForProperty("AlternateName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).AlternateName, global::System.Convert.ToString); } if (content.Contains("Role")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).Role = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.RoleDisasterRecovery?) content.GetValueForProperty("Role",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).Role, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.RoleDisasterRecovery.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).Role = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.RoleDisasterRecovery?) content.GetValueForProperty("Role",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).Role, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.RoleDisasterRecovery.CreateFrom); } if (content.Contains("SystemDataCreatedByType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); } if (content.Contains("SystemDataLastModifiedBy")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); } if (content.Contains("SystemDataLastModifiedByType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); } if (content.Contains("SystemDataLastModifiedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new ArmDisasterRecovery(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new ArmDisasterRecovery(content); } @@ -265,7 +265,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ArmDisasterRecovery.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ArmDisasterRecovery.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ArmDisasterRecovery.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ArmDisasterRecovery.TypeConverter.cs index 447aef1b4154..1725cd060901 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ArmDisasterRecovery.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ArmDisasterRecovery.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ArmDisasterRecovery.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ArmDisasterRecovery.cs similarity index 87% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ArmDisasterRecovery.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ArmDisasterRecovery.cs index 76c7f0a2bbfb..a374d8de9ac9 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ArmDisasterRecovery.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ArmDisasterRecovery.cs @@ -3,15 +3,15 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// Single item in List or Get Alias(Disaster Recovery configuration) operation [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class ArmDisasterRecovery : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IValidates { /// @@ -22,7 +22,7 @@ public partial class ArmDisasterRecovery : /// Primary/Secondary eventhub namespace name, which is part of GEO DR pairing [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string AlternateName { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryPropertiesInternal)Property).AlternateName; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryPropertiesInternal)Property).AlternateName = value ?? null; } + public string AlternateName { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryPropertiesInternal)Property).AlternateName; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryPropertiesInternal)Property).AlternateName = value ?? null; } /// /// Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} @@ -47,19 +47,19 @@ public partial class ArmDisasterRecovery : string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)__proxyResource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)__proxyResource).Type = value; } /// Internal Acessors for PendingReplicationOperationsCount - long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal.PendingReplicationOperationsCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryPropertiesInternal)Property).PendingReplicationOperationsCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryPropertiesInternal)Property).PendingReplicationOperationsCount = value; } + long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal.PendingReplicationOperationsCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryPropertiesInternal)Property).PendingReplicationOperationsCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryPropertiesInternal)Property).PendingReplicationOperationsCount = value; } /// Internal Acessors for Property - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryProperties Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ArmDisasterRecoveryProperties()); set { {_property = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryProperties Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ArmDisasterRecoveryProperties()); set { {_property = value;} } } /// Internal Acessors for ProvisioningState - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ProvisioningStateDr? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal.ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryPropertiesInternal)Property).ProvisioningState; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryPropertiesInternal)Property).ProvisioningState = value; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ProvisioningStateDr? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal.ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryPropertiesInternal)Property).ProvisioningState; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryPropertiesInternal)Property).ProvisioningState = value; } /// Internal Acessors for Role - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.RoleDisasterRecovery? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal.Role { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryPropertiesInternal)Property).Role; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryPropertiesInternal)Property).Role = value; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.RoleDisasterRecovery? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal.Role { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryPropertiesInternal)Property).Role; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryPropertiesInternal)Property).Role = value; } /// Internal Acessors for SystemData - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryInternal.SystemData { get => (this._systemData = this._systemData ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemData()); set { {_systemData = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryInternal.SystemData { get => (this._systemData = this._systemData ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemData()); set { {_systemData = value;} } } /// The name of the resource [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inherited)] @@ -69,26 +69,26 @@ public partial class ArmDisasterRecovery : /// ARM Id of the Primary/Secondary eventhub namespace name, which is part of GEO DR pairing /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string PartnerNamespace { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryPropertiesInternal)Property).PartnerNamespace; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryPropertiesInternal)Property).PartnerNamespace = value ?? null; } + public string PartnerNamespace { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryPropertiesInternal)Property).PartnerNamespace; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryPropertiesInternal)Property).PartnerNamespace = value ?? null; } /// Number of entities pending to be replicated. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public long? PendingReplicationOperationsCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryPropertiesInternal)Property).PendingReplicationOperationsCount; } + public long? PendingReplicationOperationsCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryPropertiesInternal)Property).PendingReplicationOperationsCount; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryProperties _property; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryProperties _property; /// /// Properties required to the Create Or Update Alias(Disaster Recovery configurations) /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ArmDisasterRecoveryProperties()); set => this._property = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ArmDisasterRecoveryProperties()); set => this._property = value; } /// /// Provisioning state of the Alias(Disaster Recovery configuration) - possible values 'Accepted' or 'Succeeded' or 'Failed' /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ProvisioningStateDr? ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryPropertiesInternal)Property).ProvisioningState; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ProvisioningStateDr? ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryPropertiesInternal)Property).ProvisioningState; } /// Gets the resource group name [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] @@ -98,7 +98,7 @@ public partial class ArmDisasterRecovery : /// role of namespace in GEO DR - possible values 'Primary' or 'PrimaryNotReplicating' or 'Secondary' /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.RoleDisasterRecovery? Role { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryPropertiesInternal)Property).Role; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.RoleDisasterRecovery? Role { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryPropertiesInternal)Property).Role; } /// Backing field for property. private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData _systemData; @@ -271,7 +271,7 @@ internal partial interface IArmDisasterRecoveryInternal : /// /// Properties required to the Create Or Update Alias(Disaster Recovery configurations) /// - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryProperties Property { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryProperties Property { get; set; } /// /// Provisioning state of the Alias(Disaster Recovery configuration) - possible values 'Accepted' or 'Succeeded' or 'Failed' /// diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ArmDisasterRecovery.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ArmDisasterRecovery.json.cs similarity index 94% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ArmDisasterRecovery.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ArmDisasterRecovery.json.cs index 4056dd343213..5f8e78a2d0a8 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ArmDisasterRecovery.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ArmDisasterRecovery.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -66,19 +66,19 @@ internal ArmDisasterRecovery(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runti return; } __proxyResource = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ProxyResource(json); - {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ArmDisasterRecoveryProperties.FromJson(__jsonProperties) : Property;} + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ArmDisasterRecoveryProperties.FromJson(__jsonProperties) : Property;} {_systemData = If( json?.PropertyT("systemData"), out var __jsonSystemData) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemData.FromJson(__jsonSystemData) : SystemData;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new ArmDisasterRecovery(json) : null; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ArmDisasterRecoveryListResult.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ArmDisasterRecoveryListResult.PowerShell.cs similarity index 75% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ArmDisasterRecoveryListResult.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ArmDisasterRecoveryListResult.PowerShell.cs index 867e29a3db48..a323f4213965 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ArmDisasterRecoveryListResult.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ArmDisasterRecoveryListResult.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -63,7 +63,7 @@ public partial class ArmDisasterRecoveryListResult partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -78,17 +78,17 @@ internal ArmDisasterRecoveryListResult(global::System.Collections.IDictionary co // actually deserialize if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ArmDisasterRecoveryTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ArmDisasterRecoveryTypeConverter.ConvertFrom)); } if (content.Contains("NextLink")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryListResultInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryListResultInternal)this).NextLink, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -103,39 +103,39 @@ internal ArmDisasterRecoveryListResult(global::System.Management.Automation.PSOb // actually deserialize if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ArmDisasterRecoveryTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ArmDisasterRecoveryTypeConverter.ConvertFrom)); } if (content.Contains("NextLink")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryListResultInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryListResultInternal)this).NextLink, global::System.Convert.ToString); } AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new ArmDisasterRecoveryListResult(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new ArmDisasterRecoveryListResult(content); } @@ -145,7 +145,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ArmDisasterRecoveryListResult.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ArmDisasterRecoveryListResult.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ArmDisasterRecoveryListResult.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ArmDisasterRecoveryListResult.TypeConverter.cs index 1a3754a4e104..022d76c065e1 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ArmDisasterRecoveryListResult.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ArmDisasterRecoveryListResult.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryListResult ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryListResult ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryListResult).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryListResult).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ArmDisasterRecoveryListResult.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ArmDisasterRecoveryListResult.cs similarity index 86% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ArmDisasterRecoveryListResult.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ArmDisasterRecoveryListResult.cs index e266ce9d1baf..f344583f19f1 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ArmDisasterRecoveryListResult.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ArmDisasterRecoveryListResult.cs @@ -3,19 +3,19 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// The result of the List Alias(Disaster Recovery configuration) operation. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class ArmDisasterRecoveryListResult : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryListResult, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryListResultInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryListResult, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryListResultInternal { /// Internal Acessors for NextLink - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryListResultInternal.NextLink { get => this._nextLink; set { {_nextLink = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryListResultInternal.NextLink { get => this._nextLink; set { {_nextLink = value;} } } /// Backing field for property. private string _nextLink; @@ -27,11 +27,11 @@ public partial class ArmDisasterRecoveryListResult : public string NextLink { get => this._nextLink; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery[] _value; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery[] _value; /// List of Alias(Disaster Recovery configurations) [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery[] Value { get => this._value; set => this._value = value; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery[] Value { get => this._value; set => this._value = value; } /// Creates an new instance. public ArmDisasterRecoveryListResult() @@ -59,8 +59,8 @@ public partial interface IArmDisasterRecoveryListResult : ReadOnly = false, Description = @"List of Alias(Disaster Recovery configurations)", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery[] Value { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery[] Value { get; set; } } /// The result of the List Alias(Disaster Recovery configuration) operation. @@ -72,7 +72,7 @@ internal partial interface IArmDisasterRecoveryListResultInternal /// string NextLink { get; set; } /// List of Alias(Disaster Recovery configurations) - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery[] Value { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery[] Value { get; set; } } } \ No newline at end of file diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ArmDisasterRecoveryListResult.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ArmDisasterRecoveryListResult.json.cs similarity index 91% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ArmDisasterRecoveryListResult.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ArmDisasterRecoveryListResult.json.cs index 6eabe9a4465e..eab69dbc84de 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ArmDisasterRecoveryListResult.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ArmDisasterRecoveryListResult.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -65,19 +65,19 @@ internal ArmDisasterRecoveryListResult(Microsoft.Azure.PowerShell.Cmdlets.Servic { return; } - {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery) (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ArmDisasterRecovery.FromJson(__u) )) ))() : null : Value;} + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery) (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ArmDisasterRecovery.FromJson(__u) )) ))() : null : Value;} {_nextLink = If( json?.PropertyT("nextLink"), out var __jsonNextLink) ? (string)__jsonNextLink : (string)NextLink;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryListResult. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryListResult. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryListResult. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryListResult. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new ArmDisasterRecoveryListResult(json) : null; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ArmDisasterRecoveryProperties.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ArmDisasterRecoveryProperties.PowerShell.cs similarity index 66% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ArmDisasterRecoveryProperties.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ArmDisasterRecoveryProperties.PowerShell.cs index 7a5e57d107c8..57369b901b3e 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ArmDisasterRecoveryProperties.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ArmDisasterRecoveryProperties.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -65,7 +65,7 @@ public partial class ArmDisasterRecoveryProperties partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -80,29 +80,29 @@ internal ArmDisasterRecoveryProperties(global::System.Collections.IDictionary co // actually deserialize if (content.Contains("ProvisioningState")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryPropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ProvisioningStateDr?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryPropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ProvisioningStateDr.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryPropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ProvisioningStateDr?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryPropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ProvisioningStateDr.CreateFrom); } if (content.Contains("PendingReplicationOperationsCount")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryPropertiesInternal)this).PendingReplicationOperationsCount = (long?) content.GetValueForProperty("PendingReplicationOperationsCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryPropertiesInternal)this).PendingReplicationOperationsCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryPropertiesInternal)this).PendingReplicationOperationsCount = (long?) content.GetValueForProperty("PendingReplicationOperationsCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryPropertiesInternal)this).PendingReplicationOperationsCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); } if (content.Contains("PartnerNamespace")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryPropertiesInternal)this).PartnerNamespace = (string) content.GetValueForProperty("PartnerNamespace",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryPropertiesInternal)this).PartnerNamespace, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryPropertiesInternal)this).PartnerNamespace = (string) content.GetValueForProperty("PartnerNamespace",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryPropertiesInternal)this).PartnerNamespace, global::System.Convert.ToString); } if (content.Contains("AlternateName")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryPropertiesInternal)this).AlternateName = (string) content.GetValueForProperty("AlternateName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryPropertiesInternal)this).AlternateName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryPropertiesInternal)this).AlternateName = (string) content.GetValueForProperty("AlternateName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryPropertiesInternal)this).AlternateName, global::System.Convert.ToString); } if (content.Contains("Role")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryPropertiesInternal)this).Role = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.RoleDisasterRecovery?) content.GetValueForProperty("Role",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryPropertiesInternal)this).Role, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.RoleDisasterRecovery.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryPropertiesInternal)this).Role = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.RoleDisasterRecovery?) content.GetValueForProperty("Role",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryPropertiesInternal)this).Role, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.RoleDisasterRecovery.CreateFrom); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -117,51 +117,51 @@ internal ArmDisasterRecoveryProperties(global::System.Management.Automation.PSOb // actually deserialize if (content.Contains("ProvisioningState")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryPropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ProvisioningStateDr?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryPropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ProvisioningStateDr.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryPropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ProvisioningStateDr?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryPropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ProvisioningStateDr.CreateFrom); } if (content.Contains("PendingReplicationOperationsCount")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryPropertiesInternal)this).PendingReplicationOperationsCount = (long?) content.GetValueForProperty("PendingReplicationOperationsCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryPropertiesInternal)this).PendingReplicationOperationsCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryPropertiesInternal)this).PendingReplicationOperationsCount = (long?) content.GetValueForProperty("PendingReplicationOperationsCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryPropertiesInternal)this).PendingReplicationOperationsCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); } if (content.Contains("PartnerNamespace")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryPropertiesInternal)this).PartnerNamespace = (string) content.GetValueForProperty("PartnerNamespace",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryPropertiesInternal)this).PartnerNamespace, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryPropertiesInternal)this).PartnerNamespace = (string) content.GetValueForProperty("PartnerNamespace",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryPropertiesInternal)this).PartnerNamespace, global::System.Convert.ToString); } if (content.Contains("AlternateName")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryPropertiesInternal)this).AlternateName = (string) content.GetValueForProperty("AlternateName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryPropertiesInternal)this).AlternateName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryPropertiesInternal)this).AlternateName = (string) content.GetValueForProperty("AlternateName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryPropertiesInternal)this).AlternateName, global::System.Convert.ToString); } if (content.Contains("Role")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryPropertiesInternal)this).Role = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.RoleDisasterRecovery?) content.GetValueForProperty("Role",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryPropertiesInternal)this).Role, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.RoleDisasterRecovery.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryPropertiesInternal)this).Role = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.RoleDisasterRecovery?) content.GetValueForProperty("Role",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryPropertiesInternal)this).Role, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.RoleDisasterRecovery.CreateFrom); } AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new ArmDisasterRecoveryProperties(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new ArmDisasterRecoveryProperties(content); } @@ -171,7 +171,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ArmDisasterRecoveryProperties.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ArmDisasterRecoveryProperties.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ArmDisasterRecoveryProperties.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ArmDisasterRecoveryProperties.TypeConverter.cs index 0796f92ab777..f29cc8900dc0 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ArmDisasterRecoveryProperties.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ArmDisasterRecoveryProperties.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryProperties ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryProperties ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryProperties).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryProperties).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ArmDisasterRecoveryProperties.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ArmDisasterRecoveryProperties.cs similarity index 93% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ArmDisasterRecoveryProperties.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ArmDisasterRecoveryProperties.cs index 0eb7dc49677c..eb514f850384 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ArmDisasterRecoveryProperties.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ArmDisasterRecoveryProperties.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -12,8 +12,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class ArmDisasterRecoveryProperties : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryProperties, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryPropertiesInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryProperties, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryPropertiesInternal { /// Backing field for property. @@ -24,13 +24,13 @@ public partial class ArmDisasterRecoveryProperties : public string AlternateName { get => this._alternateName; set => this._alternateName = value; } /// Internal Acessors for PendingReplicationOperationsCount - long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryPropertiesInternal.PendingReplicationOperationsCount { get => this._pendingReplicationOperationsCount; set { {_pendingReplicationOperationsCount = value;} } } + long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryPropertiesInternal.PendingReplicationOperationsCount { get => this._pendingReplicationOperationsCount; set { {_pendingReplicationOperationsCount = value;} } } /// Internal Acessors for ProvisioningState - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ProvisioningStateDr? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryPropertiesInternal.ProvisioningState { get => this._provisioningState; set { {_provisioningState = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ProvisioningStateDr? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryPropertiesInternal.ProvisioningState { get => this._provisioningState; set { {_provisioningState = value;} } } /// Internal Acessors for Role - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.RoleDisasterRecovery? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryPropertiesInternal.Role { get => this._role; set { {_role = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.RoleDisasterRecovery? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryPropertiesInternal.Role { get => this._role; set { {_role = value;} } } /// Backing field for property. private string _partnerNamespace; diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ArmDisasterRecoveryProperties.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ArmDisasterRecoveryProperties.json.cs similarity index 96% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ArmDisasterRecoveryProperties.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ArmDisasterRecoveryProperties.json.cs index 2c3c80a480cc..df0a4cdc2663 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ArmDisasterRecoveryProperties.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ArmDisasterRecoveryProperties.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -76,13 +76,13 @@ internal ArmDisasterRecoveryProperties(Microsoft.Azure.PowerShell.Cmdlets.Servic } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryProperties. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryProperties. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryProperties. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryProperties. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new ArmDisasterRecoveryProperties(json) : null; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CheckNameAvailability.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CheckNameAvailability.PowerShell.cs similarity index 84% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CheckNameAvailability.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CheckNameAvailability.PowerShell.cs index b3b55c916053..0d3f76f69f9d 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CheckNameAvailability.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CheckNameAvailability.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -63,7 +63,7 @@ public partial class CheckNameAvailability partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -78,13 +78,13 @@ internal CheckNameAvailability(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityInternal)this).Name, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -99,35 +99,35 @@ internal CheckNameAvailability(global::System.Management.Automation.PSObject con // actually deserialize if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityInternal)this).Name, global::System.Convert.ToString); } AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailability DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailability DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new CheckNameAvailability(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailability DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailability DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new CheckNameAvailability(content); } @@ -137,7 +137,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailability FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailability FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CheckNameAvailability.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CheckNameAvailability.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CheckNameAvailability.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CheckNameAvailability.TypeConverter.cs index 7e9f0ed023b1..2a9aa5b30096 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CheckNameAvailability.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CheckNameAvailability.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailability ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailability ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailability).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailability).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CheckNameAvailability.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CheckNameAvailability.cs similarity index 96% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CheckNameAvailability.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CheckNameAvailability.cs index f5bca31d12e9..8ca8fb4d648d 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CheckNameAvailability.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CheckNameAvailability.cs @@ -3,15 +3,15 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// Description of a Check Name availability request properties. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class CheckNameAvailability : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailability, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailability, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityInternal { /// Backing field for property. diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CheckNameAvailability.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CheckNameAvailability.json.cs similarity index 95% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CheckNameAvailability.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CheckNameAvailability.json.cs index d4d78059475b..037a6ab2338f 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CheckNameAvailability.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CheckNameAvailability.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -70,13 +70,13 @@ internal CheckNameAvailability(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Run } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailability. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailability. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailability. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailability. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailability FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailability FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new CheckNameAvailability(json) : null; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CheckNameAvailabilityResult.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CheckNameAvailabilityResult.PowerShell.cs similarity index 73% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CheckNameAvailabilityResult.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CheckNameAvailabilityResult.PowerShell.cs index fe716de70d1f..85e0e2b460ff 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CheckNameAvailabilityResult.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CheckNameAvailabilityResult.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -63,7 +63,7 @@ public partial class CheckNameAvailabilityResult partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -78,21 +78,21 @@ internal CheckNameAvailabilityResult(global::System.Collections.IDictionary cont // actually deserialize if (content.Contains("Message")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResultInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResultInternal)this).Message, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResultInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResultInternal)this).Message, global::System.Convert.ToString); } if (content.Contains("NameAvailable")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResultInternal)this).NameAvailable = (bool?) content.GetValueForProperty("NameAvailable",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResultInternal)this).NameAvailable, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResultInternal)this).NameAvailable = (bool?) content.GetValueForProperty("NameAvailable",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResultInternal)this).NameAvailable, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } if (content.Contains("Reason")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResultInternal)this).Reason = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.UnavailableReason?) content.GetValueForProperty("Reason",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResultInternal)this).Reason, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.UnavailableReason.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResultInternal)this).Reason = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.UnavailableReason?) content.GetValueForProperty("Reason",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResultInternal)this).Reason, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.UnavailableReason.CreateFrom); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -107,43 +107,43 @@ internal CheckNameAvailabilityResult(global::System.Management.Automation.PSObje // actually deserialize if (content.Contains("Message")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResultInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResultInternal)this).Message, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResultInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResultInternal)this).Message, global::System.Convert.ToString); } if (content.Contains("NameAvailable")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResultInternal)this).NameAvailable = (bool?) content.GetValueForProperty("NameAvailable",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResultInternal)this).NameAvailable, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResultInternal)this).NameAvailable = (bool?) content.GetValueForProperty("NameAvailable",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResultInternal)this).NameAvailable, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } if (content.Contains("Reason")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResultInternal)this).Reason = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.UnavailableReason?) content.GetValueForProperty("Reason",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResultInternal)this).Reason, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.UnavailableReason.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResultInternal)this).Reason = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.UnavailableReason?) content.GetValueForProperty("Reason",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResultInternal)this).Reason, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.UnavailableReason.CreateFrom); } AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new CheckNameAvailabilityResult(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new CheckNameAvailabilityResult(content); } @@ -153,7 +153,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CheckNameAvailabilityResult.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CheckNameAvailabilityResult.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CheckNameAvailabilityResult.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CheckNameAvailabilityResult.TypeConverter.cs index c3e4d3697227..4e0c2d7fb1f7 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CheckNameAvailabilityResult.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CheckNameAvailabilityResult.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CheckNameAvailabilityResult.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CheckNameAvailabilityResult.cs similarity index 95% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CheckNameAvailabilityResult.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CheckNameAvailabilityResult.cs index 97f5efb08006..59939522b0e4 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CheckNameAvailabilityResult.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CheckNameAvailabilityResult.cs @@ -3,15 +3,15 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// Description of a Check Name availability request properties. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class CheckNameAvailabilityResult : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResultInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResultInternal { /// Backing field for property. @@ -22,7 +22,7 @@ public partial class CheckNameAvailabilityResult : public string Message { get => this._message; } /// Internal Acessors for Message - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResultInternal.Message { get => this._message; set { {_message = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResultInternal.Message { get => this._message; set { {_message = value;} } } /// Backing field for property. private bool? _nameAvailable; diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CheckNameAvailabilityResult.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CheckNameAvailabilityResult.json.cs similarity index 96% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CheckNameAvailabilityResult.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CheckNameAvailabilityResult.json.cs index 03a06ea9422a..39261ffbdf68 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CheckNameAvailabilityResult.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CheckNameAvailabilityResult.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -72,13 +72,13 @@ internal CheckNameAvailabilityResult(Microsoft.Azure.PowerShell.Cmdlets.ServiceB } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new CheckNameAvailabilityResult(json) : null; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ConnectionState.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ConnectionState.PowerShell.cs similarity index 78% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ConnectionState.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ConnectionState.PowerShell.cs index bd217345b76d..0e96b8cb91ce 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ConnectionState.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ConnectionState.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -63,7 +63,7 @@ public partial class ConnectionState partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -78,17 +78,17 @@ internal ConnectionState(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Status")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IConnectionStateInternal)this).Status = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PrivateLinkConnectionStatus?) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IConnectionStateInternal)this).Status, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PrivateLinkConnectionStatus.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IConnectionStateInternal)this).Status = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PrivateLinkConnectionStatus?) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IConnectionStateInternal)this).Status, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PrivateLinkConnectionStatus.CreateFrom); } if (content.Contains("Description")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IConnectionStateInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IConnectionStateInternal)this).Description, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IConnectionStateInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IConnectionStateInternal)this).Description, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -103,37 +103,37 @@ internal ConnectionState(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("Status")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IConnectionStateInternal)this).Status = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PrivateLinkConnectionStatus?) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IConnectionStateInternal)this).Status, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PrivateLinkConnectionStatus.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IConnectionStateInternal)this).Status = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PrivateLinkConnectionStatus?) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IConnectionStateInternal)this).Status, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PrivateLinkConnectionStatus.CreateFrom); } if (content.Contains("Description")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IConnectionStateInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IConnectionStateInternal)this).Description, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IConnectionStateInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IConnectionStateInternal)this).Description, global::System.Convert.ToString); } AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IConnectionState DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IConnectionState DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new ConnectionState(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IConnectionState DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IConnectionState DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new ConnectionState(content); } @@ -143,7 +143,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IConnectionState FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IConnectionState FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ConnectionState.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ConnectionState.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ConnectionState.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ConnectionState.TypeConverter.cs index f63709990fca..bb99a8eabee3 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ConnectionState.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ConnectionState.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IConnectionState ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IConnectionState ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IConnectionState).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IConnectionState).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ConnectionState.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ConnectionState.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ConnectionState.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ConnectionState.cs index 0b05c0df106c..3c8a904de274 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ConnectionState.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ConnectionState.cs @@ -3,15 +3,15 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// ConnectionState information. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class ConnectionState : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IConnectionState, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IConnectionStateInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IConnectionState, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IConnectionStateInternal { /// Backing field for property. diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ConnectionState.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ConnectionState.json.cs similarity index 96% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ConnectionState.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ConnectionState.json.cs index d546509b5cf8..f365539809dc 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ConnectionState.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ConnectionState.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -71,13 +71,13 @@ internal ConnectionState(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.J } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IConnectionState. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IConnectionState. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IConnectionState. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IConnectionState. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IConnectionState FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IConnectionState FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new ConnectionState(json) : null; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CorrelationFilter.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CorrelationFilter.PowerShell.cs similarity index 60% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CorrelationFilter.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CorrelationFilter.PowerShell.cs index 46c36cb702c3..867bf7689252 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CorrelationFilter.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CorrelationFilter.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -63,7 +63,7 @@ public partial class CorrelationFilter partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -78,49 +78,49 @@ internal CorrelationFilter(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Property")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.CorrelationFilterPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.CorrelationFilterPropertiesTypeConverter.ConvertFrom); } if (content.Contains("CorrelationId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)this).CorrelationId = (string) content.GetValueForProperty("CorrelationId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)this).CorrelationId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)this).CorrelationId = (string) content.GetValueForProperty("CorrelationId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)this).CorrelationId, global::System.Convert.ToString); } if (content.Contains("MessageId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)this).MessageId = (string) content.GetValueForProperty("MessageId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)this).MessageId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)this).MessageId = (string) content.GetValueForProperty("MessageId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)this).MessageId, global::System.Convert.ToString); } if (content.Contains("To")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)this).To = (string) content.GetValueForProperty("To",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)this).To, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)this).To = (string) content.GetValueForProperty("To",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)this).To, global::System.Convert.ToString); } if (content.Contains("ReplyTo")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)this).ReplyTo = (string) content.GetValueForProperty("ReplyTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)this).ReplyTo, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)this).ReplyTo = (string) content.GetValueForProperty("ReplyTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)this).ReplyTo, global::System.Convert.ToString); } if (content.Contains("Label")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)this).Label = (string) content.GetValueForProperty("Label",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)this).Label, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)this).Label = (string) content.GetValueForProperty("Label",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)this).Label, global::System.Convert.ToString); } if (content.Contains("SessionId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)this).SessionId = (string) content.GetValueForProperty("SessionId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)this).SessionId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)this).SessionId = (string) content.GetValueForProperty("SessionId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)this).SessionId, global::System.Convert.ToString); } if (content.Contains("ReplyToSessionId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)this).ReplyToSessionId = (string) content.GetValueForProperty("ReplyToSessionId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)this).ReplyToSessionId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)this).ReplyToSessionId = (string) content.GetValueForProperty("ReplyToSessionId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)this).ReplyToSessionId, global::System.Convert.ToString); } if (content.Contains("ContentType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)this).ContentType = (string) content.GetValueForProperty("ContentType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)this).ContentType, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)this).ContentType = (string) content.GetValueForProperty("ContentType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)this).ContentType, global::System.Convert.ToString); } if (content.Contains("RequiresPreprocessing")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)this).RequiresPreprocessing = (bool?) content.GetValueForProperty("RequiresPreprocessing",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)this).RequiresPreprocessing, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)this).RequiresPreprocessing = (bool?) content.GetValueForProperty("RequiresPreprocessing",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)this).RequiresPreprocessing, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -135,69 +135,71 @@ internal CorrelationFilter(global::System.Management.Automation.PSObject content // actually deserialize if (content.Contains("Property")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.CorrelationFilterPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.CorrelationFilterPropertiesTypeConverter.ConvertFrom); } if (content.Contains("CorrelationId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)this).CorrelationId = (string) content.GetValueForProperty("CorrelationId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)this).CorrelationId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)this).CorrelationId = (string) content.GetValueForProperty("CorrelationId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)this).CorrelationId, global::System.Convert.ToString); } if (content.Contains("MessageId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)this).MessageId = (string) content.GetValueForProperty("MessageId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)this).MessageId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)this).MessageId = (string) content.GetValueForProperty("MessageId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)this).MessageId, global::System.Convert.ToString); } if (content.Contains("To")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)this).To = (string) content.GetValueForProperty("To",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)this).To, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)this).To = (string) content.GetValueForProperty("To",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)this).To, global::System.Convert.ToString); } if (content.Contains("ReplyTo")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)this).ReplyTo = (string) content.GetValueForProperty("ReplyTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)this).ReplyTo, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)this).ReplyTo = (string) content.GetValueForProperty("ReplyTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)this).ReplyTo, global::System.Convert.ToString); } if (content.Contains("Label")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)this).Label = (string) content.GetValueForProperty("Label",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)this).Label, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)this).Label = (string) content.GetValueForProperty("Label",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)this).Label, global::System.Convert.ToString); } if (content.Contains("SessionId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)this).SessionId = (string) content.GetValueForProperty("SessionId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)this).SessionId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)this).SessionId = (string) content.GetValueForProperty("SessionId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)this).SessionId, global::System.Convert.ToString); } if (content.Contains("ReplyToSessionId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)this).ReplyToSessionId = (string) content.GetValueForProperty("ReplyToSessionId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)this).ReplyToSessionId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)this).ReplyToSessionId = (string) content.GetValueForProperty("ReplyToSessionId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)this).ReplyToSessionId, global::System.Convert.ToString); } if (content.Contains("ContentType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)this).ContentType = (string) content.GetValueForProperty("ContentType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)this).ContentType, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)this).ContentType = (string) content.GetValueForProperty("ContentType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)this).ContentType, global::System.Convert.ToString); } if (content.Contains("RequiresPreprocessing")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)this).RequiresPreprocessing = (bool?) content.GetValueForProperty("RequiresPreprocessing",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)this).RequiresPreprocessing, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)this).RequiresPreprocessing = (bool?) content.GetValueForProperty("RequiresPreprocessing",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)this).RequiresPreprocessing, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilter DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilter DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new CorrelationFilter(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilter DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilter DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new CorrelationFilter(content); } @@ -207,7 +209,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilter FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilter FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CorrelationFilter.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CorrelationFilter.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CorrelationFilter.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CorrelationFilter.TypeConverter.cs index e32976f60275..c9a0def3a7dd 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CorrelationFilter.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CorrelationFilter.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilter ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilter ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilter).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilter).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CorrelationFilter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CorrelationFilter.cs similarity index 94% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CorrelationFilter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CorrelationFilter.cs index 68f141d2d1b2..f920910f2926 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CorrelationFilter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CorrelationFilter.cs @@ -3,15 +3,15 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// Represents the correlation filter expression. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class CorrelationFilter : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilter, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilter, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal { /// Backing field for property. @@ -43,11 +43,11 @@ public partial class CorrelationFilter : public string MessageId { get => this._messageId; set => this._messageId = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterProperties _property; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterProperties _property; /// dictionary object for custom filters [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.CorrelationFilterProperties()); set => this._property = value; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.CorrelationFilterProperties()); set => this._property = value; } /// Backing field for property. private string _replyTo; @@ -132,8 +132,8 @@ public partial interface ICorrelationFilter : ReadOnly = false, Description = @"dictionary object for custom filters", SerializedName = @"properties", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterProperties) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterProperties Property { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterProperties) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterProperties Property { get; set; } /// Address of the queue to reply to. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Info( Required = false, @@ -189,7 +189,7 @@ internal partial interface ICorrelationFilterInternal /// Identifier of the message. string MessageId { get; set; } /// dictionary object for custom filters - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterProperties Property { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterProperties Property { get; set; } /// Address of the queue to reply to. string ReplyTo { get; set; } /// Session identifier to reply to. diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CorrelationFilter.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CorrelationFilter.json.cs similarity index 96% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CorrelationFilter.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CorrelationFilter.json.cs index d692f63b37f5..56272de615d6 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CorrelationFilter.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CorrelationFilter.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -65,7 +65,7 @@ internal CorrelationFilter(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime { return; } - {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.CorrelationFilterProperties.FromJson(__jsonProperties) : Property;} + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.CorrelationFilterProperties.FromJson(__jsonProperties) : Property;} {_correlationId = If( json?.PropertyT("correlationId"), out var __jsonCorrelationId) ? (string)__jsonCorrelationId : (string)CorrelationId;} {_messageId = If( json?.PropertyT("messageId"), out var __jsonMessageId) ? (string)__jsonMessageId : (string)MessageId;} {_to = If( json?.PropertyT("to"), out var __jsonTo) ? (string)__jsonTo : (string)To;} @@ -79,13 +79,13 @@ internal CorrelationFilter(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilter. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilter. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilter. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilter. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilter FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilter FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new CorrelationFilter(json) : null; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CorrelationFilterProperties.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CorrelationFilterProperties.PowerShell.cs similarity index 88% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CorrelationFilterProperties.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CorrelationFilterProperties.PowerShell.cs index 7dc6b6db3c76..a9dc711d9342 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CorrelationFilterProperties.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CorrelationFilterProperties.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -63,7 +63,7 @@ public partial class CorrelationFilterProperties partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -82,7 +82,7 @@ internal CorrelationFilterProperties(global::System.Collections.IDictionary cont } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -101,29 +101,29 @@ internal CorrelationFilterProperties(global::System.Management.Automation.PSObje } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new CorrelationFilterProperties(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new CorrelationFilterProperties(content); } @@ -133,7 +133,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CorrelationFilterProperties.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CorrelationFilterProperties.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CorrelationFilterProperties.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CorrelationFilterProperties.TypeConverter.cs index a7746ec8c6f6..9e499c9afe38 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CorrelationFilterProperties.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CorrelationFilterProperties.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterProperties ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterProperties ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterProperties).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterProperties).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CorrelationFilterProperties.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CorrelationFilterProperties.cs similarity index 91% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CorrelationFilterProperties.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CorrelationFilterProperties.cs index f21f0c0aa758..49167e2ac708 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CorrelationFilterProperties.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CorrelationFilterProperties.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// dictionary object for custom filters public partial class CorrelationFilterProperties : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterProperties, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterPropertiesInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterProperties, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterPropertiesInternal { /// Creates an new instance. diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CorrelationFilterProperties.dictionary.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CorrelationFilterProperties.dictionary.cs similarity index 96% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CorrelationFilterProperties.dictionary.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CorrelationFilterProperties.dictionary.cs index 7fb513f05e36..6ed3a97b75eb 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CorrelationFilterProperties.dictionary.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CorrelationFilterProperties.dictionary.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -70,6 +70,6 @@ public void CopyFrom(global::System.Management.Automation.PSObject source) /// - public static implicit operator global::System.Collections.Generic.Dictionary(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.CorrelationFilterProperties source) => source.__additionalProperties; + public static implicit operator global::System.Collections.Generic.Dictionary(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.CorrelationFilterProperties source) => source.__additionalProperties; } } \ No newline at end of file diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CorrelationFilterProperties.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CorrelationFilterProperties.json.cs similarity index 95% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CorrelationFilterProperties.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CorrelationFilterProperties.json.cs index cb7289f0c5fb..4085321a0cc7 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/CorrelationFilterProperties.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/CorrelationFilterProperties.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -71,13 +71,13 @@ internal CorrelationFilterProperties(Microsoft.Azure.PowerShell.Cmdlets.ServiceB } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterProperties. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterProperties. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterProperties. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterProperties. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new CorrelationFilterProperties(json) : null; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Encryption.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Encryption.PowerShell.cs similarity index 70% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Encryption.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Encryption.PowerShell.cs index 813dc96531d3..9d8817c27252 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Encryption.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Encryption.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -63,33 +63,33 @@ public partial class Encryption partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryption DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryption DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new Encryption(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryption DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryption DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new Encryption(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -104,21 +104,21 @@ internal Encryption(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("KeyVaultProperty")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryptionInternal)this).KeyVaultProperty = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties[]) content.GetValueForProperty("KeyVaultProperty",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryptionInternal)this).KeyVaultProperty, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.KeyVaultPropertiesTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryptionInternal)this).KeyVaultProperty = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties[]) content.GetValueForProperty("KeyVaultProperty",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryptionInternal)this).KeyVaultProperty, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.KeyVaultPropertiesTypeConverter.ConvertFrom)); } if (content.Contains("KeySource")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryptionInternal)this).KeySource = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource?) content.GetValueForProperty("KeySource",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryptionInternal)this).KeySource, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryptionInternal)this).KeySource = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource?) content.GetValueForProperty("KeySource",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryptionInternal)this).KeySource, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource.CreateFrom); } if (content.Contains("RequireInfrastructureEncryption")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryptionInternal)this).RequireInfrastructureEncryption = (bool?) content.GetValueForProperty("RequireInfrastructureEncryption",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryptionInternal)this).RequireInfrastructureEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryptionInternal)this).RequireInfrastructureEncryption = (bool?) content.GetValueForProperty("RequireInfrastructureEncryption",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryptionInternal)this).RequireInfrastructureEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -133,15 +133,15 @@ internal Encryption(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("KeyVaultProperty")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryptionInternal)this).KeyVaultProperty = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties[]) content.GetValueForProperty("KeyVaultProperty",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryptionInternal)this).KeyVaultProperty, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.KeyVaultPropertiesTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryptionInternal)this).KeyVaultProperty = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties[]) content.GetValueForProperty("KeyVaultProperty",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryptionInternal)this).KeyVaultProperty, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.KeyVaultPropertiesTypeConverter.ConvertFrom)); } if (content.Contains("KeySource")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryptionInternal)this).KeySource = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource?) content.GetValueForProperty("KeySource",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryptionInternal)this).KeySource, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryptionInternal)this).KeySource = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource?) content.GetValueForProperty("KeySource",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryptionInternal)this).KeySource, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource.CreateFrom); } if (content.Contains("RequireInfrastructureEncryption")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryptionInternal)this).RequireInfrastructureEncryption = (bool?) content.GetValueForProperty("RequireInfrastructureEncryption",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryptionInternal)this).RequireInfrastructureEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryptionInternal)this).RequireInfrastructureEncryption = (bool?) content.GetValueForProperty("RequireInfrastructureEncryption",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryptionInternal)this).RequireInfrastructureEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } AfterDeserializePSObject(content); } @@ -151,7 +151,7 @@ internal Encryption(global::System.Management.Automation.PSObject content) /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryption FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryption FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Encryption.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Encryption.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Encryption.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Encryption.TypeConverter.cs index a9f6c498ad97..8c5dfaf0f817 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Encryption.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Encryption.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -105,14 +105,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryption ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryption ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryption).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryption).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Encryption.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Encryption.cs similarity index 90% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Encryption.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Encryption.cs index 95d7f33a676a..8fc2693563b9 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Encryption.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Encryption.cs @@ -3,15 +3,15 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// Properties to configure Encryption [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class Encryption : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryption, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryptionInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryption, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryptionInternal { /// Backing field for property. @@ -22,11 +22,11 @@ public partial class Encryption : public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource? KeySource { get => this._keySource; set => this._keySource = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties[] _keyVaultProperty; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties[] _keyVaultProperty; /// Properties of KeyVault [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties[] KeyVaultProperty { get => this._keyVaultProperty; set => this._keyVaultProperty = value; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties[] KeyVaultProperty { get => this._keyVaultProperty; set => this._keyVaultProperty = value; } /// Backing field for property. private bool? _requireInfrastructureEncryption; @@ -59,8 +59,8 @@ public partial interface IEncryption : ReadOnly = false, Description = @"Properties of KeyVault", SerializedName = @"keyVaultProperties", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties[] KeyVaultProperty { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties[] KeyVaultProperty { get; set; } /// Enable Infrastructure Encryption (Double Encryption) [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Info( Required = false, @@ -78,7 +78,7 @@ internal partial interface IEncryptionInternal /// Enumerates the possible value of keySource for Encryption Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource? KeySource { get; set; } /// Properties of KeyVault - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties[] KeyVaultProperty { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties[] KeyVaultProperty { get; set; } /// Enable Infrastructure Encryption (Double Encryption) bool? RequireInfrastructureEncryption { get; set; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Encryption.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Encryption.json.cs similarity index 91% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Encryption.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Encryption.json.cs index d2c3fe32f578..a04423ccbab1 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Encryption.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Encryption.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -65,20 +65,20 @@ internal Encryption(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.J { return; } - {_keyVaultProperty = If( json?.PropertyT("keyVaultProperties"), out var __jsonKeyVaultProperties) ? If( __jsonKeyVaultProperties as Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties) (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.KeyVaultProperties.FromJson(__u) )) ))() : null : KeyVaultProperty;} + {_keyVaultProperty = If( json?.PropertyT("keyVaultProperties"), out var __jsonKeyVaultProperties) ? If( __jsonKeyVaultProperties as Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties) (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.KeyVaultProperties.FromJson(__u) )) ))() : null : KeyVaultProperty;} {_keySource = If( json?.PropertyT("keySource"), out var __jsonKeySource) ? (string)__jsonKeySource : (string)KeySource;} {_requireInfrastructureEncryption = If( json?.PropertyT("requireInfrastructureEncryption"), out var __jsonRequireInfrastructureEncryption) ? (bool?)__jsonRequireInfrastructureEncryption : RequireInfrastructureEncryption;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryption. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryption. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryption. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryption. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryption FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryption FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new Encryption(json) : null; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/FailoverProperties.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/FailoverProperties.PowerShell.cs similarity index 76% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/FailoverProperties.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/FailoverProperties.PowerShell.cs index c01c578beaf5..da6cedc3ac2c 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/FailoverProperties.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/FailoverProperties.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -65,33 +65,35 @@ public partial class FailoverProperties partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new FailoverProperties(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new FailoverProperties(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -106,17 +108,17 @@ internal FailoverProperties(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Property")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverPropertiesInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverPropertiesAutoGenerated) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverPropertiesInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.FailoverPropertiesAutoGeneratedTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverPropertiesInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverPropertiesAutoGenerated) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverPropertiesInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.FailoverPropertiesAutoGeneratedTypeConverter.ConvertFrom); } if (content.Contains("IsSafeFailover")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverPropertiesInternal)this).IsSafeFailover = (bool?) content.GetValueForProperty("IsSafeFailover",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverPropertiesInternal)this).IsSafeFailover, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverPropertiesInternal)this).IsSafeFailover = (bool?) content.GetValueForProperty("IsSafeFailover",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverPropertiesInternal)this).IsSafeFailover, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -131,11 +133,11 @@ internal FailoverProperties(global::System.Management.Automation.PSObject conten // actually deserialize if (content.Contains("Property")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverPropertiesInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverPropertiesAutoGenerated) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverPropertiesInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.FailoverPropertiesAutoGeneratedTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverPropertiesInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverPropertiesAutoGenerated) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverPropertiesInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.FailoverPropertiesAutoGeneratedTypeConverter.ConvertFrom); } if (content.Contains("IsSafeFailover")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverPropertiesInternal)this).IsSafeFailover = (bool?) content.GetValueForProperty("IsSafeFailover",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverPropertiesInternal)this).IsSafeFailover, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverPropertiesInternal)this).IsSafeFailover = (bool?) content.GetValueForProperty("IsSafeFailover",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverPropertiesInternal)this).IsSafeFailover, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } AfterDeserializePSObject(content); } @@ -145,7 +147,7 @@ internal FailoverProperties(global::System.Management.Automation.PSObject conten /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/FailoverProperties.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/FailoverProperties.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/FailoverProperties.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/FailoverProperties.TypeConverter.cs index 7b72498cad94..554118db5a9e 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/FailoverProperties.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/FailoverProperties.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverProperties ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverProperties ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverProperties).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverProperties).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/FailoverProperties.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/FailoverProperties.cs similarity index 75% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/FailoverProperties.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/FailoverProperties.cs index 8ea65eec24a6..a7438f84c852 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/FailoverProperties.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/FailoverProperties.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -12,27 +12,27 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class FailoverProperties : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverProperties, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverPropertiesInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverProperties, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverPropertiesInternal { /// /// Safe failover is to indicate the service should wait for pending replication to finish before switching to the secondary. /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public bool? IsSafeFailover { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverPropertiesAutoGeneratedInternal)Property).IsSafeFailover; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverPropertiesAutoGeneratedInternal)Property).IsSafeFailover = value ?? default(bool); } + public bool? IsSafeFailover { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverPropertiesAutoGeneratedInternal)Property).IsSafeFailover; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverPropertiesAutoGeneratedInternal)Property).IsSafeFailover = value ?? default(bool); } /// Internal Acessors for Property - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverPropertiesAutoGenerated Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverPropertiesInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.FailoverPropertiesAutoGenerated()); set { {_property = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverPropertiesAutoGenerated Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverPropertiesInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.FailoverPropertiesAutoGenerated()); set { {_property = value;} } } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverPropertiesAutoGenerated _property; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverPropertiesAutoGenerated _property; /// /// Safe failover is to indicate the service should wait for pending replication to finish before switching to the secondary. /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverPropertiesAutoGenerated Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.FailoverPropertiesAutoGenerated()); set => this._property = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverPropertiesAutoGenerated Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.FailoverPropertiesAutoGenerated()); set => this._property = value; } /// Creates an new instance. public FailoverProperties() @@ -67,7 +67,7 @@ internal partial interface IFailoverPropertiesInternal /// /// Safe failover is to indicate the service should wait for pending replication to finish before switching to the secondary. /// - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverPropertiesAutoGenerated Property { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverPropertiesAutoGenerated Property { get; set; } } } \ No newline at end of file diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/FailoverProperties.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/FailoverProperties.json.cs similarity index 94% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/FailoverProperties.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/FailoverProperties.json.cs index 651dde6fa295..d37dbbaeaf82 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/FailoverProperties.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/FailoverProperties.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -67,18 +67,18 @@ internal FailoverProperties(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtim { return; } - {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.FailoverPropertiesAutoGenerated.FromJson(__jsonProperties) : Property;} + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.FailoverPropertiesAutoGenerated.FromJson(__jsonProperties) : Property;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverProperties. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverProperties. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverProperties. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverProperties. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new FailoverProperties(json) : null; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/FailoverPropertiesAutoGenerated.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/FailoverPropertiesAutoGenerated.PowerShell.cs similarity index 82% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/FailoverPropertiesAutoGenerated.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/FailoverPropertiesAutoGenerated.PowerShell.cs index 741f3fb9740d..8ae79ebf62b5 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/FailoverPropertiesAutoGenerated.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/FailoverPropertiesAutoGenerated.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -65,35 +65,35 @@ public partial class FailoverPropertiesAutoGenerated partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverPropertiesAutoGenerated DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverPropertiesAutoGenerated DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new FailoverPropertiesAutoGenerated(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverPropertiesAutoGenerated DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverPropertiesAutoGenerated DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new FailoverPropertiesAutoGenerated(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -108,13 +108,13 @@ internal FailoverPropertiesAutoGenerated(global::System.Collections.IDictionary // actually deserialize if (content.Contains("IsSafeFailover")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverPropertiesAutoGeneratedInternal)this).IsSafeFailover = (bool?) content.GetValueForProperty("IsSafeFailover",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverPropertiesAutoGeneratedInternal)this).IsSafeFailover, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverPropertiesAutoGeneratedInternal)this).IsSafeFailover = (bool?) content.GetValueForProperty("IsSafeFailover",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverPropertiesAutoGeneratedInternal)this).IsSafeFailover, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -129,7 +129,7 @@ internal FailoverPropertiesAutoGenerated(global::System.Management.Automation.PS // actually deserialize if (content.Contains("IsSafeFailover")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverPropertiesAutoGeneratedInternal)this).IsSafeFailover = (bool?) content.GetValueForProperty("IsSafeFailover",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverPropertiesAutoGeneratedInternal)this).IsSafeFailover, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverPropertiesAutoGeneratedInternal)this).IsSafeFailover = (bool?) content.GetValueForProperty("IsSafeFailover",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverPropertiesAutoGeneratedInternal)this).IsSafeFailover, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } AfterDeserializePSObject(content); } @@ -139,7 +139,7 @@ internal FailoverPropertiesAutoGenerated(global::System.Management.Automation.PS /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverPropertiesAutoGenerated FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverPropertiesAutoGenerated FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/FailoverPropertiesAutoGenerated.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/FailoverPropertiesAutoGenerated.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/FailoverPropertiesAutoGenerated.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/FailoverPropertiesAutoGenerated.TypeConverter.cs index a0c1112eb857..7a1e3ddf30f0 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/FailoverPropertiesAutoGenerated.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/FailoverPropertiesAutoGenerated.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -107,14 +107,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverPropertiesAutoGenerated ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverPropertiesAutoGenerated ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverPropertiesAutoGenerated).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverPropertiesAutoGenerated).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/FailoverPropertiesAutoGenerated.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/FailoverPropertiesAutoGenerated.cs similarity index 95% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/FailoverPropertiesAutoGenerated.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/FailoverPropertiesAutoGenerated.cs index 9c09495df94f..4da922ace6a3 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/FailoverPropertiesAutoGenerated.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/FailoverPropertiesAutoGenerated.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -12,8 +12,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class FailoverPropertiesAutoGenerated : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverPropertiesAutoGenerated, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverPropertiesAutoGeneratedInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverPropertiesAutoGenerated, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverPropertiesAutoGeneratedInternal { /// Backing field for property. diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/FailoverPropertiesAutoGenerated.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/FailoverPropertiesAutoGenerated.json.cs similarity index 95% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/FailoverPropertiesAutoGenerated.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/FailoverPropertiesAutoGenerated.json.cs index 8ee9cb92540c..a8c9612df347 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/FailoverPropertiesAutoGenerated.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/FailoverPropertiesAutoGenerated.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -72,13 +72,13 @@ internal FailoverPropertiesAutoGenerated(Microsoft.Azure.PowerShell.Cmdlets.Serv } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverPropertiesAutoGenerated. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverPropertiesAutoGenerated. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverPropertiesAutoGenerated. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverPropertiesAutoGenerated. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverPropertiesAutoGenerated FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverPropertiesAutoGenerated FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new FailoverPropertiesAutoGenerated(json) : null; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Identity.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Identity.PowerShell.cs similarity index 71% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Identity.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Identity.PowerShell.cs index 2e83b17a689e..d9d31ad0073b 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Identity.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Identity.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -63,27 +63,27 @@ public partial class Identity partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentity DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentity DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new Identity(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentity DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentity DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new Identity(content); } @@ -93,10 +93,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentity FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentity FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -111,25 +111,25 @@ internal Identity(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("PrincipalId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityInternal)this).PrincipalId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityInternal)this).PrincipalId, global::System.Convert.ToString); } if (content.Contains("TenantId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityInternal)this).TenantId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityInternal)this).TenantId, global::System.Convert.ToString); } if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ManagedServiceIdentityType?) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ManagedServiceIdentityType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ManagedServiceIdentityType?) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ManagedServiceIdentityType.CreateFrom); } if (content.Contains("UserAssignedIdentity")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityInternal)this).UserAssignedIdentity = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityUserAssignedIdentities) content.GetValueForProperty("UserAssignedIdentity",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityInternal)this).UserAssignedIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IdentityUserAssignedIdentitiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityInternal)this).UserAssignedIdentity = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityUserAssignedIdentities) content.GetValueForProperty("UserAssignedIdentity",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityInternal)this).UserAssignedIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IdentityUserAssignedIdentitiesTypeConverter.ConvertFrom); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -144,19 +144,19 @@ internal Identity(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("PrincipalId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityInternal)this).PrincipalId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityInternal)this).PrincipalId, global::System.Convert.ToString); } if (content.Contains("TenantId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityInternal)this).TenantId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityInternal)this).TenantId, global::System.Convert.ToString); } if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ManagedServiceIdentityType?) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ManagedServiceIdentityType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ManagedServiceIdentityType?) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ManagedServiceIdentityType.CreateFrom); } if (content.Contains("UserAssignedIdentity")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityInternal)this).UserAssignedIdentity = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityUserAssignedIdentities) content.GetValueForProperty("UserAssignedIdentity",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityInternal)this).UserAssignedIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IdentityUserAssignedIdentitiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityInternal)this).UserAssignedIdentity = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityUserAssignedIdentities) content.GetValueForProperty("UserAssignedIdentity",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityInternal)this).UserAssignedIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IdentityUserAssignedIdentitiesTypeConverter.ConvertFrom); } AfterDeserializePSObject(content); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Identity.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Identity.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Identity.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Identity.TypeConverter.cs index 28209e524326..f26bec0e0b0d 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Identity.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Identity.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -105,14 +105,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentity ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentity ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentity).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentity).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Identity.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Identity.cs similarity index 85% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Identity.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Identity.cs index 42c96dbbdf25..090cc24aa485 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Identity.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Identity.cs @@ -3,22 +3,22 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// Properties to configure User Assigned Identities for Bring your Own Keys [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class Identity : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentity, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentity, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityInternal { /// Internal Acessors for PrincipalId - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityInternal.PrincipalId { get => this._principalId; set { {_principalId = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityInternal.PrincipalId { get => this._principalId; set { {_principalId = value;} } } /// Internal Acessors for TenantId - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityInternal.TenantId { get => this._tenantId; set { {_tenantId = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityInternal.TenantId { get => this._tenantId; set { {_tenantId = value;} } } /// Backing field for property. private string _principalId; @@ -42,11 +42,11 @@ public partial class Identity : public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ManagedServiceIdentityType? Type { get => this._type; set => this._type = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityUserAssignedIdentities _userAssignedIdentity; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityUserAssignedIdentities _userAssignedIdentity; /// Properties for User Assigned Identities [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityUserAssignedIdentities UserAssignedIdentity { get => (this._userAssignedIdentity = this._userAssignedIdentity ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IdentityUserAssignedIdentities()); set => this._userAssignedIdentity = value; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityUserAssignedIdentities UserAssignedIdentity { get => (this._userAssignedIdentity = this._userAssignedIdentity ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IdentityUserAssignedIdentities()); set => this._userAssignedIdentity = value; } /// Creates an new instance. public Identity() @@ -88,8 +88,8 @@ public partial interface IIdentity : ReadOnly = false, Description = @"Properties for User Assigned Identities", SerializedName = @"userAssignedIdentities", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityUserAssignedIdentities) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityUserAssignedIdentities UserAssignedIdentity { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityUserAssignedIdentities) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityUserAssignedIdentities UserAssignedIdentity { get; set; } } /// Properties to configure User Assigned Identities for Bring your Own Keys @@ -103,7 +103,7 @@ internal partial interface IIdentityInternal /// Type of managed service identity. Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ManagedServiceIdentityType? Type { get; set; } /// Properties for User Assigned Identities - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityUserAssignedIdentities UserAssignedIdentity { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityUserAssignedIdentities UserAssignedIdentity { get; set; } } } \ No newline at end of file diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Identity.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Identity.json.cs similarity index 95% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Identity.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Identity.json.cs index 80a701b5b485..0f809a1cdfa0 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Identity.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Identity.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class Identity partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentity. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentity. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentity. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentity. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentity FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentity FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new Identity(json) : null; } @@ -80,7 +80,7 @@ internal Identity(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.Jso {_principalId = If( json?.PropertyT("principalId"), out var __jsonPrincipalId) ? (string)__jsonPrincipalId : (string)PrincipalId;} {_tenantId = If( json?.PropertyT("tenantId"), out var __jsonTenantId) ? (string)__jsonTenantId : (string)TenantId;} {_type = If( json?.PropertyT("type"), out var __jsonType) ? (string)__jsonType : (string)Type;} - {_userAssignedIdentity = If( json?.PropertyT("userAssignedIdentities"), out var __jsonUserAssignedIdentities) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IdentityUserAssignedIdentities.FromJson(__jsonUserAssignedIdentities) : UserAssignedIdentity;} + {_userAssignedIdentity = If( json?.PropertyT("userAssignedIdentities"), out var __jsonUserAssignedIdentities) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IdentityUserAssignedIdentities.FromJson(__jsonUserAssignedIdentities) : UserAssignedIdentity;} AfterFromJson(json); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/IdentityUserAssignedIdentities.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/IdentityUserAssignedIdentities.PowerShell.cs similarity index 88% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/IdentityUserAssignedIdentities.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/IdentityUserAssignedIdentities.PowerShell.cs index b5b812c3bb75..ab5737c3ba70 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/IdentityUserAssignedIdentities.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/IdentityUserAssignedIdentities.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -63,29 +63,29 @@ public partial class IdentityUserAssignedIdentities partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityUserAssignedIdentities DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityUserAssignedIdentities DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new IdentityUserAssignedIdentities(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityUserAssignedIdentities DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityUserAssignedIdentities DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new IdentityUserAssignedIdentities(content); } @@ -95,10 +95,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityUserAssignedIdentities FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityUserAssignedIdentities FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -117,7 +117,7 @@ internal IdentityUserAssignedIdentities(global::System.Collections.IDictionary c } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/IdentityUserAssignedIdentities.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/IdentityUserAssignedIdentities.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/IdentityUserAssignedIdentities.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/IdentityUserAssignedIdentities.TypeConverter.cs index f08daa47814e..a76ed616fc2a 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/IdentityUserAssignedIdentities.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/IdentityUserAssignedIdentities.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -107,14 +107,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityUserAssignedIdentities ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityUserAssignedIdentities ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityUserAssignedIdentities).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityUserAssignedIdentities).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/IdentityUserAssignedIdentities.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/IdentityUserAssignedIdentities.cs similarity index 88% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/IdentityUserAssignedIdentities.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/IdentityUserAssignedIdentities.cs index 9a24cd4c1d6a..dced66cde0f6 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/IdentityUserAssignedIdentities.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/IdentityUserAssignedIdentities.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// Properties for User Assigned Identities public partial class IdentityUserAssignedIdentities : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityUserAssignedIdentities, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityUserAssignedIdentitiesInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityUserAssignedIdentities, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityUserAssignedIdentitiesInternal { /// Creates an new instance. @@ -22,7 +22,7 @@ public IdentityUserAssignedIdentities() /// Properties for User Assigned Identities public partial interface IIdentityUserAssignedIdentities : Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IJsonSerializable, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IAssociativeArray + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IAssociativeArray { } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/IdentityUserAssignedIdentities.dictionary.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/IdentityUserAssignedIdentities.dictionary.cs similarity index 66% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/IdentityUserAssignedIdentities.dictionary.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/IdentityUserAssignedIdentities.dictionary.cs index d634781ef585..66431d5240c8 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/IdentityUserAssignedIdentities.dictionary.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/IdentityUserAssignedIdentities.dictionary.cs @@ -3,28 +3,28 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; public partial class IdentityUserAssignedIdentities : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IAssociativeArray + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IAssociativeArray { - protected global::System.Collections.Generic.Dictionary __additionalProperties = new global::System.Collections.Generic.Dictionary(); + protected global::System.Collections.Generic.Dictionary __additionalProperties = new global::System.Collections.Generic.Dictionary(); - global::System.Collections.Generic.IDictionary Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IAssociativeArray.AdditionalProperties { get => __additionalProperties; } + global::System.Collections.Generic.IDictionary Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IAssociativeArray.AdditionalProperties { get => __additionalProperties; } - int Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IAssociativeArray.Count { get => __additionalProperties.Count; } + int Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IAssociativeArray.Count { get => __additionalProperties.Count; } - global::System.Collections.Generic.IEnumerable Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IAssociativeArray.Keys { get => __additionalProperties.Keys; } + global::System.Collections.Generic.IEnumerable Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IAssociativeArray.Keys { get => __additionalProperties.Keys; } - global::System.Collections.Generic.IEnumerable Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IAssociativeArray.Values { get => __additionalProperties.Values; } + global::System.Collections.Generic.IEnumerable Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IAssociativeArray.Values { get => __additionalProperties.Values; } - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IUserAssignedIdentity this[global::System.String index] { get => __additionalProperties[index]; set => __additionalProperties[index] = value; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IUserAssignedIdentity this[global::System.String index] { get => __additionalProperties[index]; set => __additionalProperties[index] = value; } /// /// - public void Add(global::System.String key, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IUserAssignedIdentity value) => __additionalProperties.Add( key, value); + public void Add(global::System.String key, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IUserAssignedIdentity value) => __additionalProperties.Add( key, value); public void Clear() => __additionalProperties.Clear(); @@ -40,7 +40,7 @@ public void CopyFrom(global::System.Collections.IDictionary source) { if ((null != property.Key && null != property.Value)) { - this.__additionalProperties.Add(property.Key.ToString(), global::System.Management.Automation.LanguagePrimitives.ConvertTo( property.Value)); + this.__additionalProperties.Add(property.Key.ToString(), global::System.Management.Automation.LanguagePrimitives.ConvertTo( property.Value)); } } } @@ -55,7 +55,7 @@ public void CopyFrom(global::System.Management.Automation.PSObject source) { if ((null != property.Key && null != property.Value)) { - this.__additionalProperties.Add(property.Key.ToString(), global::System.Management.Automation.LanguagePrimitives.ConvertTo( property.Value)); + this.__additionalProperties.Add(property.Key.ToString(), global::System.Management.Automation.LanguagePrimitives.ConvertTo( property.Value)); } } } @@ -66,10 +66,10 @@ public void CopyFrom(global::System.Management.Automation.PSObject source) /// /// - public bool TryGetValue(global::System.String key, out Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IUserAssignedIdentity value) => __additionalProperties.TryGetValue( key, out value); + public bool TryGetValue(global::System.String key, out Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IUserAssignedIdentity value) => __additionalProperties.TryGetValue( key, out value); /// - public static implicit operator global::System.Collections.Generic.Dictionary(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IdentityUserAssignedIdentities source) => source.__additionalProperties; + public static implicit operator global::System.Collections.Generic.Dictionary(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IdentityUserAssignedIdentities source) => source.__additionalProperties; } } \ No newline at end of file diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/IdentityUserAssignedIdentities.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/IdentityUserAssignedIdentities.json.cs similarity index 90% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/IdentityUserAssignedIdentities.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/IdentityUserAssignedIdentities.json.cs index 8af5f78007fd..54e1882bca71 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/IdentityUserAssignedIdentities.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/IdentityUserAssignedIdentities.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class IdentityUserAssignedIdentities partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityUserAssignedIdentities. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityUserAssignedIdentities. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityUserAssignedIdentities. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityUserAssignedIdentities. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityUserAssignedIdentities FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityUserAssignedIdentities FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new IdentityUserAssignedIdentities(json) : null; } @@ -78,7 +78,7 @@ internal IdentityUserAssignedIdentities(Microsoft.Azure.PowerShell.Cmdlets.Servi { return; } - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.JsonSerializable.FromJson( json, ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IAssociativeArray)this).AdditionalProperties, (j) => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.UserAssignedIdentity.FromJson(j) ,exclusions ); + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.JsonSerializable.FromJson( json, ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IAssociativeArray)this).AdditionalProperties, (j) => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.UserAssignedIdentity.FromJson(j) ,exclusions ); AfterFromJson(json); } @@ -101,7 +101,7 @@ public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode ToJso { return container; } - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.JsonSerializable.ToJson( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IAssociativeArray)this).AdditionalProperties, container); + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.JsonSerializable.ToJson( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IAssociativeArray)this).AdditionalProperties, container); AfterToJson(ref container); return container; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/KeyVaultProperties.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/KeyVaultProperties.PowerShell.cs similarity index 68% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/KeyVaultProperties.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/KeyVaultProperties.PowerShell.cs index e80ef554cd77..a2b1ffdc98d4 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/KeyVaultProperties.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/KeyVaultProperties.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -63,27 +63,29 @@ public partial class KeyVaultProperties partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new KeyVaultProperties(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new KeyVaultProperties(content); } @@ -93,10 +95,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -111,29 +113,29 @@ internal KeyVaultProperties(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Identity")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultPropertiesInternal)this).Identity = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IUserAssignedIdentityProperties) content.GetValueForProperty("Identity",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultPropertiesInternal)this).Identity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.UserAssignedIdentityPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultPropertiesInternal)this).Identity = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IUserAssignedIdentityProperties) content.GetValueForProperty("Identity",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultPropertiesInternal)this).Identity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.UserAssignedIdentityPropertiesTypeConverter.ConvertFrom); } if (content.Contains("KeyName")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultPropertiesInternal)this).KeyName = (string) content.GetValueForProperty("KeyName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultPropertiesInternal)this).KeyName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultPropertiesInternal)this).KeyName = (string) content.GetValueForProperty("KeyName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultPropertiesInternal)this).KeyName, global::System.Convert.ToString); } if (content.Contains("KeyVaultUri")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultPropertiesInternal)this).KeyVaultUri = (string) content.GetValueForProperty("KeyVaultUri",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultPropertiesInternal)this).KeyVaultUri, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultPropertiesInternal)this).KeyVaultUri = (string) content.GetValueForProperty("KeyVaultUri",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultPropertiesInternal)this).KeyVaultUri, global::System.Convert.ToString); } if (content.Contains("KeyVersion")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultPropertiesInternal)this).KeyVersion = (string) content.GetValueForProperty("KeyVersion",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultPropertiesInternal)this).KeyVersion, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultPropertiesInternal)this).KeyVersion = (string) content.GetValueForProperty("KeyVersion",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultPropertiesInternal)this).KeyVersion, global::System.Convert.ToString); } if (content.Contains("UserAssignedIdentity")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultPropertiesInternal)this).UserAssignedIdentity = (string) content.GetValueForProperty("UserAssignedIdentity",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultPropertiesInternal)this).UserAssignedIdentity, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultPropertiesInternal)this).UserAssignedIdentity = (string) content.GetValueForProperty("UserAssignedIdentity",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultPropertiesInternal)this).UserAssignedIdentity, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -148,23 +150,23 @@ internal KeyVaultProperties(global::System.Management.Automation.PSObject conten // actually deserialize if (content.Contains("Identity")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultPropertiesInternal)this).Identity = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IUserAssignedIdentityProperties) content.GetValueForProperty("Identity",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultPropertiesInternal)this).Identity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.UserAssignedIdentityPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultPropertiesInternal)this).Identity = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IUserAssignedIdentityProperties) content.GetValueForProperty("Identity",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultPropertiesInternal)this).Identity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.UserAssignedIdentityPropertiesTypeConverter.ConvertFrom); } if (content.Contains("KeyName")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultPropertiesInternal)this).KeyName = (string) content.GetValueForProperty("KeyName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultPropertiesInternal)this).KeyName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultPropertiesInternal)this).KeyName = (string) content.GetValueForProperty("KeyName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultPropertiesInternal)this).KeyName, global::System.Convert.ToString); } if (content.Contains("KeyVaultUri")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultPropertiesInternal)this).KeyVaultUri = (string) content.GetValueForProperty("KeyVaultUri",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultPropertiesInternal)this).KeyVaultUri, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultPropertiesInternal)this).KeyVaultUri = (string) content.GetValueForProperty("KeyVaultUri",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultPropertiesInternal)this).KeyVaultUri, global::System.Convert.ToString); } if (content.Contains("KeyVersion")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultPropertiesInternal)this).KeyVersion = (string) content.GetValueForProperty("KeyVersion",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultPropertiesInternal)this).KeyVersion, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultPropertiesInternal)this).KeyVersion = (string) content.GetValueForProperty("KeyVersion",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultPropertiesInternal)this).KeyVersion, global::System.Convert.ToString); } if (content.Contains("UserAssignedIdentity")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultPropertiesInternal)this).UserAssignedIdentity = (string) content.GetValueForProperty("UserAssignedIdentity",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultPropertiesInternal)this).UserAssignedIdentity, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultPropertiesInternal)this).UserAssignedIdentity = (string) content.GetValueForProperty("UserAssignedIdentity",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultPropertiesInternal)this).UserAssignedIdentity, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/KeyVaultProperties.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/KeyVaultProperties.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/KeyVaultProperties.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/KeyVaultProperties.TypeConverter.cs index 18ddff3d9cde..0cec573e0923 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/KeyVaultProperties.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/KeyVaultProperties.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/KeyVaultProperties.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/KeyVaultProperties.cs similarity index 81% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/KeyVaultProperties.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/KeyVaultProperties.cs index 5aba7ef66f56..06cb99a2e673 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/KeyVaultProperties.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/KeyVaultProperties.cs @@ -3,22 +3,22 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// Properties to configure keyVault Properties [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class KeyVaultProperties : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultPropertiesInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultPropertiesInternal { /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IUserAssignedIdentityProperties _identity; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IUserAssignedIdentityProperties _identity; [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IUserAssignedIdentityProperties Identity { get => (this._identity = this._identity ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.UserAssignedIdentityProperties()); set => this._identity = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IUserAssignedIdentityProperties Identity { get => (this._identity = this._identity ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.UserAssignedIdentityProperties()); set => this._identity = value; } /// Backing field for property. private string _keyName; @@ -42,11 +42,11 @@ public partial class KeyVaultProperties : public string KeyVersion { get => this._keyVersion; set => this._keyVersion = value; } /// Internal Acessors for Identity - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IUserAssignedIdentityProperties Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultPropertiesInternal.Identity { get => (this._identity = this._identity ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.UserAssignedIdentityProperties()); set { {_identity = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IUserAssignedIdentityProperties Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultPropertiesInternal.Identity { get => (this._identity = this._identity ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.UserAssignedIdentityProperties()); set { {_identity = value;} } } /// ARM ID of user Identity selected for encryption [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string UserAssignedIdentity { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IUserAssignedIdentityPropertiesInternal)Identity).UserAssignedIdentity; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IUserAssignedIdentityPropertiesInternal)Identity).UserAssignedIdentity = value ?? null; } + public string UserAssignedIdentity { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IUserAssignedIdentityPropertiesInternal)Identity).UserAssignedIdentity; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IUserAssignedIdentityPropertiesInternal)Identity).UserAssignedIdentity = value ?? null; } /// Creates an new instance. public KeyVaultProperties() @@ -96,7 +96,7 @@ public partial interface IKeyVaultProperties : internal partial interface IKeyVaultPropertiesInternal { - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IUserAssignedIdentityProperties Identity { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IUserAssignedIdentityProperties Identity { get; set; } /// Name of the Key from KeyVault string KeyName { get; set; } /// Uri of KeyVault diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/KeyVaultProperties.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/KeyVaultProperties.json.cs similarity index 95% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/KeyVaultProperties.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/KeyVaultProperties.json.cs index c3662d6d389a..15de929e82d1 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/KeyVaultProperties.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/KeyVaultProperties.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class KeyVaultProperties partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new KeyVaultProperties(json) : null; } @@ -77,7 +77,7 @@ internal KeyVaultProperties(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtim { return; } - {_identity = If( json?.PropertyT("identity"), out var __jsonIdentity) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.UserAssignedIdentityProperties.FromJson(__jsonIdentity) : Identity;} + {_identity = If( json?.PropertyT("identity"), out var __jsonIdentity) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.UserAssignedIdentityProperties.FromJson(__jsonIdentity) : Identity;} {_keyName = If( json?.PropertyT("keyName"), out var __jsonKeyName) ? (string)__jsonKeyName : (string)KeyName;} {_keyVaultUri = If( json?.PropertyT("keyVaultUri"), out var __jsonKeyVaultUri) ? (string)__jsonKeyVaultUri : (string)KeyVaultUri;} {_keyVersion = If( json?.PropertyT("keyVersion"), out var __jsonKeyVersion) ? (string)__jsonKeyVersion : (string)KeyVersion;} diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/MigrationConfigListResult.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/MigrationConfigListResult.PowerShell.cs similarity index 75% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/MigrationConfigListResult.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/MigrationConfigListResult.PowerShell.cs index dcb230c7ff6f..947c0c375299 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/MigrationConfigListResult.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/MigrationConfigListResult.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -63,29 +63,29 @@ public partial class MigrationConfigListResult partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new MigrationConfigListResult(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new MigrationConfigListResult(content); } @@ -95,10 +95,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -113,17 +113,17 @@ internal MigrationConfigListResult(global::System.Collections.IDictionary conten // actually deserialize if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.MigrationConfigPropertiesTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.MigrationConfigPropertiesTypeConverter.ConvertFrom)); } if (content.Contains("NextLink")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigListResultInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigListResultInternal)this).NextLink, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -138,11 +138,11 @@ internal MigrationConfigListResult(global::System.Management.Automation.PSObject // actually deserialize if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.MigrationConfigPropertiesTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.MigrationConfigPropertiesTypeConverter.ConvertFrom)); } if (content.Contains("NextLink")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigListResultInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigListResultInternal)this).NextLink, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/MigrationConfigListResult.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/MigrationConfigListResult.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/MigrationConfigListResult.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/MigrationConfigListResult.TypeConverter.cs index a421845c0bf0..e7775c73aa94 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/MigrationConfigListResult.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/MigrationConfigListResult.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigListResult ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigListResult ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigListResult).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigListResult).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/MigrationConfigListResult.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/MigrationConfigListResult.cs similarity index 85% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/MigrationConfigListResult.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/MigrationConfigListResult.cs index f55c396b7fd9..35a24cd4846b 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/MigrationConfigListResult.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/MigrationConfigListResult.cs @@ -3,19 +3,19 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// The result of the List migrationConfigurations operation. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class MigrationConfigListResult : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigListResult, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigListResultInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigListResult, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigListResultInternal { /// Internal Acessors for NextLink - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigListResultInternal.NextLink { get => this._nextLink; set { {_nextLink = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigListResultInternal.NextLink { get => this._nextLink; set { {_nextLink = value;} } } /// Backing field for property. private string _nextLink; @@ -27,11 +27,11 @@ public partial class MigrationConfigListResult : public string NextLink { get => this._nextLink; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties[] _value; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties[] _value; /// List of Migration Configs [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties[] Value { get => this._value; set => this._value = value; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties[] Value { get => this._value; set => this._value = value; } /// Creates an new instance. public MigrationConfigListResult() @@ -59,8 +59,8 @@ public partial interface IMigrationConfigListResult : ReadOnly = false, Description = @"List of Migration Configs", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties[] Value { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties[] Value { get; set; } } /// The result of the List migrationConfigurations operation. @@ -72,7 +72,7 @@ internal partial interface IMigrationConfigListResultInternal /// string NextLink { get; set; } /// List of Migration Configs - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties[] Value { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties[] Value { get; set; } } } \ No newline at end of file diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/MigrationConfigListResult.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/MigrationConfigListResult.json.cs similarity index 91% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/MigrationConfigListResult.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/MigrationConfigListResult.json.cs index 2fd9ed3e4e15..cfcee298fe9f 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/MigrationConfigListResult.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/MigrationConfigListResult.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class MigrationConfigListResult partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigListResult. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigListResult. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigListResult. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigListResult. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new MigrationConfigListResult(json) : null; } @@ -77,7 +77,7 @@ internal MigrationConfigListResult(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus { return; } - {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties) (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.MigrationConfigProperties.FromJson(__u) )) ))() : null : Value;} + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties) (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.MigrationConfigProperties.FromJson(__u) )) ))() : null : Value;} {_nextLink = If( json?.PropertyT("nextLink"), out var __jsonNextLink) ? (string)__jsonNextLink : (string)NextLink;} AfterFromJson(json); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/MigrationConfigProperties.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/MigrationConfigProperties.PowerShell.cs similarity index 56% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/MigrationConfigProperties.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/MigrationConfigProperties.PowerShell.cs index 84daf188412f..aaec0f99dc6a 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/MigrationConfigProperties.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/MigrationConfigProperties.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -63,29 +63,29 @@ public partial class MigrationConfigProperties partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new MigrationConfigProperties(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new MigrationConfigProperties(content); } @@ -95,10 +95,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -113,11 +113,11 @@ internal MigrationConfigProperties(global::System.Collections.IDictionary conten // actually deserialize if (content.Contains("Property")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGenerated) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.MigrationConfigPropertiesAutoGeneratedTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGenerated) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.MigrationConfigPropertiesAutoGeneratedTypeConverter.ConvertFrom); } if (content.Contains("SystemData")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemDataTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemDataTypeConverter.ConvertFrom); } if (content.Contains("Id")) { @@ -137,53 +137,53 @@ internal MigrationConfigProperties(global::System.Collections.IDictionary conten } if (content.Contains("SystemDataCreatedBy")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); } if (content.Contains("SystemDataCreatedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } if (content.Contains("ProvisioningState")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).ProvisioningState, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).ProvisioningState, global::System.Convert.ToString); } if (content.Contains("PendingReplicationOperationsCount")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).PendingReplicationOperationsCount = (long?) content.GetValueForProperty("PendingReplicationOperationsCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).PendingReplicationOperationsCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).PendingReplicationOperationsCount = (long?) content.GetValueForProperty("PendingReplicationOperationsCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).PendingReplicationOperationsCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); } if (content.Contains("TargetNamespace")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).TargetNamespace = (string) content.GetValueForProperty("TargetNamespace",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).TargetNamespace, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).TargetNamespace = (string) content.GetValueForProperty("TargetNamespace",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).TargetNamespace, global::System.Convert.ToString); } if (content.Contains("PostMigrationName")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).PostMigrationName = (string) content.GetValueForProperty("PostMigrationName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).PostMigrationName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).PostMigrationName = (string) content.GetValueForProperty("PostMigrationName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).PostMigrationName, global::System.Convert.ToString); } if (content.Contains("MigrationState")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).MigrationState = (string) content.GetValueForProperty("MigrationState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).MigrationState, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).MigrationState = (string) content.GetValueForProperty("MigrationState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).MigrationState, global::System.Convert.ToString); } if (content.Contains("SystemDataCreatedByType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); } if (content.Contains("SystemDataLastModifiedBy")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); } if (content.Contains("SystemDataLastModifiedByType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); } if (content.Contains("SystemDataLastModifiedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -198,11 +198,11 @@ internal MigrationConfigProperties(global::System.Management.Automation.PSObject // actually deserialize if (content.Contains("Property")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGenerated) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.MigrationConfigPropertiesAutoGeneratedTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGenerated) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.MigrationConfigPropertiesAutoGeneratedTypeConverter.ConvertFrom); } if (content.Contains("SystemData")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemDataTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemDataTypeConverter.ConvertFrom); } if (content.Contains("Id")) { @@ -222,47 +222,47 @@ internal MigrationConfigProperties(global::System.Management.Automation.PSObject } if (content.Contains("SystemDataCreatedBy")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); } if (content.Contains("SystemDataCreatedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } if (content.Contains("ProvisioningState")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).ProvisioningState, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).ProvisioningState, global::System.Convert.ToString); } if (content.Contains("PendingReplicationOperationsCount")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).PendingReplicationOperationsCount = (long?) content.GetValueForProperty("PendingReplicationOperationsCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).PendingReplicationOperationsCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).PendingReplicationOperationsCount = (long?) content.GetValueForProperty("PendingReplicationOperationsCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).PendingReplicationOperationsCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); } if (content.Contains("TargetNamespace")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).TargetNamespace = (string) content.GetValueForProperty("TargetNamespace",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).TargetNamespace, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).TargetNamespace = (string) content.GetValueForProperty("TargetNamespace",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).TargetNamespace, global::System.Convert.ToString); } if (content.Contains("PostMigrationName")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).PostMigrationName = (string) content.GetValueForProperty("PostMigrationName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).PostMigrationName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).PostMigrationName = (string) content.GetValueForProperty("PostMigrationName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).PostMigrationName, global::System.Convert.ToString); } if (content.Contains("MigrationState")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).MigrationState = (string) content.GetValueForProperty("MigrationState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).MigrationState, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).MigrationState = (string) content.GetValueForProperty("MigrationState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).MigrationState, global::System.Convert.ToString); } if (content.Contains("SystemDataCreatedByType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); } if (content.Contains("SystemDataLastModifiedBy")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); } if (content.Contains("SystemDataLastModifiedByType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); } if (content.Contains("SystemDataLastModifiedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } AfterDeserializePSObject(content); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/MigrationConfigProperties.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/MigrationConfigProperties.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/MigrationConfigProperties.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/MigrationConfigProperties.TypeConverter.cs index 5315d97dd620..1bee264e4f25 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/MigrationConfigProperties.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/MigrationConfigProperties.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/MigrationConfigProperties.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/MigrationConfigProperties.cs similarity index 85% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/MigrationConfigProperties.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/MigrationConfigProperties.cs index e14fa6726df3..4681977353b0 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/MigrationConfigProperties.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/MigrationConfigProperties.cs @@ -3,15 +3,15 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// Single item in List or Get Migration Config operation [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class MigrationConfigProperties : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IValidates { /// @@ -43,26 +43,26 @@ public partial class MigrationConfigProperties : string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)__proxyResource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)__proxyResource).Type = value; } /// Internal Acessors for MigrationState - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal.MigrationState { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGeneratedInternal)Property).MigrationState; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGeneratedInternal)Property).MigrationState = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal.MigrationState { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGeneratedInternal)Property).MigrationState; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGeneratedInternal)Property).MigrationState = value; } /// Internal Acessors for PendingReplicationOperationsCount - long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal.PendingReplicationOperationsCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGeneratedInternal)Property).PendingReplicationOperationsCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGeneratedInternal)Property).PendingReplicationOperationsCount = value; } + long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal.PendingReplicationOperationsCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGeneratedInternal)Property).PendingReplicationOperationsCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGeneratedInternal)Property).PendingReplicationOperationsCount = value; } /// Internal Acessors for Property - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGenerated Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.MigrationConfigPropertiesAutoGenerated()); set { {_property = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGenerated Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.MigrationConfigPropertiesAutoGenerated()); set { {_property = value;} } } /// Internal Acessors for ProvisioningState - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal.ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGeneratedInternal)Property).ProvisioningState; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGeneratedInternal)Property).ProvisioningState = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal.ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGeneratedInternal)Property).ProvisioningState; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGeneratedInternal)Property).ProvisioningState = value; } /// Internal Acessors for SystemData - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesInternal.SystemData { get => (this._systemData = this._systemData ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemData()); set { {_systemData = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesInternal.SystemData { get => (this._systemData = this._systemData ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemData()); set { {_systemData = value;} } } /// /// State in which Standard to Premium Migration is, possible values : Unknown, Reverting, Completing, Initiating, Syncing, /// Active /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string MigrationState { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGeneratedInternal)Property).MigrationState; } + public string MigrationState { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGeneratedInternal)Property).MigrationState; } /// The name of the resource [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inherited)] @@ -70,22 +70,22 @@ public partial class MigrationConfigProperties : /// Number of entities pending to be replicated. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public long? PendingReplicationOperationsCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGeneratedInternal)Property).PendingReplicationOperationsCount; } + public long? PendingReplicationOperationsCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGeneratedInternal)Property).PendingReplicationOperationsCount; } /// Name to access Standard Namespace after migration [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string PostMigrationName { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGeneratedInternal)Property).PostMigrationName; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGeneratedInternal)Property).PostMigrationName = value ?? null; } + public string PostMigrationName { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGeneratedInternal)Property).PostMigrationName; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGeneratedInternal)Property).PostMigrationName = value ?? null; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGenerated _property; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGenerated _property; /// Properties required to the Create Migration Configuration [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGenerated Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.MigrationConfigPropertiesAutoGenerated()); set => this._property = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGenerated Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.MigrationConfigPropertiesAutoGenerated()); set => this._property = value; } /// Provisioning state of Migration Configuration [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGeneratedInternal)Property).ProvisioningState; } + public string ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGeneratedInternal)Property).ProvisioningState; } /// Gets the resource group name [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] @@ -126,7 +126,7 @@ public partial class MigrationConfigProperties : /// Existing premium Namespace ARM Id name which has no entities, will be used for migration /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string TargetNamespace { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGeneratedInternal)Property).TargetNamespace; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGeneratedInternal)Property).TargetNamespace = value ?? null; } + public string TargetNamespace { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGeneratedInternal)Property).TargetNamespace; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGeneratedInternal)Property).TargetNamespace = value ?? null; } /// /// The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs" @@ -266,7 +266,7 @@ internal partial interface IMigrationConfigPropertiesInternal : /// Name to access Standard Namespace after migration string PostMigrationName { get; set; } /// Properties required to the Create Migration Configuration - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGenerated Property { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGenerated Property { get; set; } /// Provisioning state of Migration Configuration string ProvisioningState { get; set; } /// The system meta data relating to this resource. diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/MigrationConfigProperties.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/MigrationConfigProperties.json.cs similarity index 94% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/MigrationConfigProperties.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/MigrationConfigProperties.json.cs index 761ca3a29677..9183c29ca66c 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/MigrationConfigProperties.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/MigrationConfigProperties.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class MigrationConfigProperties partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new MigrationConfigProperties(json) : null; } @@ -78,7 +78,7 @@ internal MigrationConfigProperties(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus return; } __proxyResource = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ProxyResource(json); - {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.MigrationConfigPropertiesAutoGenerated.FromJson(__jsonProperties) : Property;} + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.MigrationConfigPropertiesAutoGenerated.FromJson(__jsonProperties) : Property;} {_systemData = If( json?.PropertyT("systemData"), out var __jsonSystemData) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemData.FromJson(__jsonSystemData) : SystemData;} AfterFromJson(json); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/MigrationConfigPropertiesAutoGenerated.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/MigrationConfigPropertiesAutoGenerated.PowerShell.cs similarity index 67% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/MigrationConfigPropertiesAutoGenerated.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/MigrationConfigPropertiesAutoGenerated.PowerShell.cs index cc631fe3ea77..98cc2d8f4911 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/MigrationConfigPropertiesAutoGenerated.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/MigrationConfigPropertiesAutoGenerated.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -63,29 +63,29 @@ public partial class MigrationConfigPropertiesAutoGenerated partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGenerated DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGenerated DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new MigrationConfigPropertiesAutoGenerated(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGenerated DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGenerated DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new MigrationConfigPropertiesAutoGenerated(content); } @@ -98,10 +98,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// an instance of the model class. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGenerated FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGenerated FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -116,29 +116,29 @@ internal MigrationConfigPropertiesAutoGenerated(global::System.Collections.IDict // actually deserialize if (content.Contains("ProvisioningState")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGeneratedInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGeneratedInternal)this).ProvisioningState, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGeneratedInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGeneratedInternal)this).ProvisioningState, global::System.Convert.ToString); } if (content.Contains("PendingReplicationOperationsCount")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGeneratedInternal)this).PendingReplicationOperationsCount = (long?) content.GetValueForProperty("PendingReplicationOperationsCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGeneratedInternal)this).PendingReplicationOperationsCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGeneratedInternal)this).PendingReplicationOperationsCount = (long?) content.GetValueForProperty("PendingReplicationOperationsCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGeneratedInternal)this).PendingReplicationOperationsCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); } if (content.Contains("TargetNamespace")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGeneratedInternal)this).TargetNamespace = (string) content.GetValueForProperty("TargetNamespace",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGeneratedInternal)this).TargetNamespace, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGeneratedInternal)this).TargetNamespace = (string) content.GetValueForProperty("TargetNamespace",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGeneratedInternal)this).TargetNamespace, global::System.Convert.ToString); } if (content.Contains("PostMigrationName")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGeneratedInternal)this).PostMigrationName = (string) content.GetValueForProperty("PostMigrationName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGeneratedInternal)this).PostMigrationName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGeneratedInternal)this).PostMigrationName = (string) content.GetValueForProperty("PostMigrationName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGeneratedInternal)this).PostMigrationName, global::System.Convert.ToString); } if (content.Contains("MigrationState")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGeneratedInternal)this).MigrationState = (string) content.GetValueForProperty("MigrationState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGeneratedInternal)this).MigrationState, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGeneratedInternal)this).MigrationState = (string) content.GetValueForProperty("MigrationState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGeneratedInternal)this).MigrationState, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -153,23 +153,23 @@ internal MigrationConfigPropertiesAutoGenerated(global::System.Management.Automa // actually deserialize if (content.Contains("ProvisioningState")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGeneratedInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGeneratedInternal)this).ProvisioningState, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGeneratedInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGeneratedInternal)this).ProvisioningState, global::System.Convert.ToString); } if (content.Contains("PendingReplicationOperationsCount")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGeneratedInternal)this).PendingReplicationOperationsCount = (long?) content.GetValueForProperty("PendingReplicationOperationsCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGeneratedInternal)this).PendingReplicationOperationsCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGeneratedInternal)this).PendingReplicationOperationsCount = (long?) content.GetValueForProperty("PendingReplicationOperationsCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGeneratedInternal)this).PendingReplicationOperationsCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); } if (content.Contains("TargetNamespace")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGeneratedInternal)this).TargetNamespace = (string) content.GetValueForProperty("TargetNamespace",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGeneratedInternal)this).TargetNamespace, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGeneratedInternal)this).TargetNamespace = (string) content.GetValueForProperty("TargetNamespace",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGeneratedInternal)this).TargetNamespace, global::System.Convert.ToString); } if (content.Contains("PostMigrationName")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGeneratedInternal)this).PostMigrationName = (string) content.GetValueForProperty("PostMigrationName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGeneratedInternal)this).PostMigrationName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGeneratedInternal)this).PostMigrationName = (string) content.GetValueForProperty("PostMigrationName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGeneratedInternal)this).PostMigrationName, global::System.Convert.ToString); } if (content.Contains("MigrationState")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGeneratedInternal)this).MigrationState = (string) content.GetValueForProperty("MigrationState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGeneratedInternal)this).MigrationState, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGeneratedInternal)this).MigrationState = (string) content.GetValueForProperty("MigrationState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGeneratedInternal)this).MigrationState, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/MigrationConfigPropertiesAutoGenerated.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/MigrationConfigPropertiesAutoGenerated.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/MigrationConfigPropertiesAutoGenerated.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/MigrationConfigPropertiesAutoGenerated.TypeConverter.cs index bbb420516b21..28038175de46 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/MigrationConfigPropertiesAutoGenerated.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/MigrationConfigPropertiesAutoGenerated.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -110,14 +110,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGenerated ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGenerated ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGenerated).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGenerated).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/MigrationConfigPropertiesAutoGenerated.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/MigrationConfigPropertiesAutoGenerated.cs similarity index 91% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/MigrationConfigPropertiesAutoGenerated.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/MigrationConfigPropertiesAutoGenerated.cs index ee935f988b4d..1cdd9a47290e 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/MigrationConfigPropertiesAutoGenerated.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/MigrationConfigPropertiesAutoGenerated.cs @@ -3,25 +3,25 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// Properties required to the Create Migration Configuration [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class MigrationConfigPropertiesAutoGenerated : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGenerated, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGeneratedInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGenerated, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGeneratedInternal { /// Internal Acessors for MigrationState - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGeneratedInternal.MigrationState { get => this._migrationState; set { {_migrationState = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGeneratedInternal.MigrationState { get => this._migrationState; set { {_migrationState = value;} } } /// Internal Acessors for PendingReplicationOperationsCount - long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGeneratedInternal.PendingReplicationOperationsCount { get => this._pendingReplicationOperationsCount; set { {_pendingReplicationOperationsCount = value;} } } + long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGeneratedInternal.PendingReplicationOperationsCount { get => this._pendingReplicationOperationsCount; set { {_pendingReplicationOperationsCount = value;} } } /// Internal Acessors for ProvisioningState - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGeneratedInternal.ProvisioningState { get => this._provisioningState; set { {_provisioningState = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGeneratedInternal.ProvisioningState { get => this._provisioningState; set { {_provisioningState = value;} } } /// Backing field for property. private string _migrationState; diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/MigrationConfigPropertiesAutoGenerated.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/MigrationConfigPropertiesAutoGenerated.json.cs similarity index 96% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/MigrationConfigPropertiesAutoGenerated.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/MigrationConfigPropertiesAutoGenerated.json.cs index 83bbffd6ef9c..c6c46c400534 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/MigrationConfigPropertiesAutoGenerated.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/MigrationConfigPropertiesAutoGenerated.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class MigrationConfigPropertiesAutoGenerated partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGenerated. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGenerated. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGenerated. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGenerated. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigPropertiesAutoGenerated FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigPropertiesAutoGenerated FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new MigrationConfigPropertiesAutoGenerated(json) : null; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NetworkRuleSet.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NetworkRuleSet.PowerShell.cs similarity index 54% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NetworkRuleSet.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NetworkRuleSet.PowerShell.cs index 6378c5bc83eb..82269e1089cd 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NetworkRuleSet.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NetworkRuleSet.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -63,27 +63,27 @@ public partial class NetworkRuleSet partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new NetworkRuleSet(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new NetworkRuleSet(content); } @@ -93,10 +93,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -111,11 +111,11 @@ internal NetworkRuleSet(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Property")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.NetworkRuleSetPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.NetworkRuleSetPropertiesTypeConverter.ConvertFrom); } if (content.Contains("SystemData")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemDataTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemDataTypeConverter.ConvertFrom); } if (content.Contains("Id")) { @@ -135,53 +135,53 @@ internal NetworkRuleSet(global::System.Collections.IDictionary content) } if (content.Contains("DefaultAction")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).DefaultAction = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.DefaultAction?) content.GetValueForProperty("DefaultAction",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).DefaultAction, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.DefaultAction.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).DefaultAction = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.DefaultAction?) content.GetValueForProperty("DefaultAction",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).DefaultAction, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.DefaultAction.CreateFrom); } if (content.Contains("SystemDataCreatedBy")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); } if (content.Contains("SystemDataCreatedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } if (content.Contains("TrustedServiceAccessEnabled")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).TrustedServiceAccessEnabled = (bool?) content.GetValueForProperty("TrustedServiceAccessEnabled",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).TrustedServiceAccessEnabled, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).TrustedServiceAccessEnabled = (bool?) content.GetValueForProperty("TrustedServiceAccessEnabled",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).TrustedServiceAccessEnabled, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } if (content.Contains("VirtualNetworkRule")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).VirtualNetworkRule = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRules[]) content.GetValueForProperty("VirtualNetworkRule",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).VirtualNetworkRule, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.NwRuleSetVirtualNetworkRulesTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).VirtualNetworkRule = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRules[]) content.GetValueForProperty("VirtualNetworkRule",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).VirtualNetworkRule, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.NwRuleSetVirtualNetworkRulesTypeConverter.ConvertFrom)); } if (content.Contains("IPRule")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).IPRule = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRules[]) content.GetValueForProperty("IPRule",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).IPRule, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.NwRuleSetIPRulesTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).IPRule = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRules[]) content.GetValueForProperty("IPRule",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).IPRule, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.NwRuleSetIPRulesTypeConverter.ConvertFrom)); } if (content.Contains("PublicNetworkAccess")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).PublicNetworkAccess = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PublicNetworkAccessFlag?) content.GetValueForProperty("PublicNetworkAccess",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).PublicNetworkAccess, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PublicNetworkAccessFlag.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).PublicNetworkAccess = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PublicNetworkAccessFlag?) content.GetValueForProperty("PublicNetworkAccess",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).PublicNetworkAccess, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PublicNetworkAccessFlag.CreateFrom); } if (content.Contains("SystemDataCreatedByType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); } if (content.Contains("SystemDataLastModifiedBy")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); } if (content.Contains("SystemDataLastModifiedByType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); } if (content.Contains("SystemDataLastModifiedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -196,11 +196,11 @@ internal NetworkRuleSet(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("Property")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.NetworkRuleSetPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.NetworkRuleSetPropertiesTypeConverter.ConvertFrom); } if (content.Contains("SystemData")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemDataTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemDataTypeConverter.ConvertFrom); } if (content.Contains("Id")) { @@ -220,47 +220,47 @@ internal NetworkRuleSet(global::System.Management.Automation.PSObject content) } if (content.Contains("DefaultAction")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).DefaultAction = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.DefaultAction?) content.GetValueForProperty("DefaultAction",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).DefaultAction, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.DefaultAction.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).DefaultAction = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.DefaultAction?) content.GetValueForProperty("DefaultAction",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).DefaultAction, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.DefaultAction.CreateFrom); } if (content.Contains("SystemDataCreatedBy")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); } if (content.Contains("SystemDataCreatedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } if (content.Contains("TrustedServiceAccessEnabled")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).TrustedServiceAccessEnabled = (bool?) content.GetValueForProperty("TrustedServiceAccessEnabled",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).TrustedServiceAccessEnabled, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).TrustedServiceAccessEnabled = (bool?) content.GetValueForProperty("TrustedServiceAccessEnabled",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).TrustedServiceAccessEnabled, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } if (content.Contains("VirtualNetworkRule")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).VirtualNetworkRule = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRules[]) content.GetValueForProperty("VirtualNetworkRule",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).VirtualNetworkRule, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.NwRuleSetVirtualNetworkRulesTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).VirtualNetworkRule = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRules[]) content.GetValueForProperty("VirtualNetworkRule",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).VirtualNetworkRule, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.NwRuleSetVirtualNetworkRulesTypeConverter.ConvertFrom)); } if (content.Contains("IPRule")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).IPRule = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRules[]) content.GetValueForProperty("IPRule",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).IPRule, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.NwRuleSetIPRulesTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).IPRule = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRules[]) content.GetValueForProperty("IPRule",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).IPRule, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.NwRuleSetIPRulesTypeConverter.ConvertFrom)); } if (content.Contains("PublicNetworkAccess")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).PublicNetworkAccess = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PublicNetworkAccessFlag?) content.GetValueForProperty("PublicNetworkAccess",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).PublicNetworkAccess, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PublicNetworkAccessFlag.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).PublicNetworkAccess = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PublicNetworkAccessFlag?) content.GetValueForProperty("PublicNetworkAccess",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).PublicNetworkAccess, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PublicNetworkAccessFlag.CreateFrom); } if (content.Contains("SystemDataCreatedByType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); } if (content.Contains("SystemDataLastModifiedBy")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); } if (content.Contains("SystemDataLastModifiedByType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); } if (content.Contains("SystemDataLastModifiedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } AfterDeserializePSObject(content); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NetworkRuleSet.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NetworkRuleSet.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NetworkRuleSet.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NetworkRuleSet.TypeConverter.cs index 48d4e49019e0..8a61dc0a5ded 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NetworkRuleSet.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NetworkRuleSet.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NetworkRuleSet.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NetworkRuleSet.cs similarity index 86% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NetworkRuleSet.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NetworkRuleSet.cs index 66d24f5d0ae1..d1f17ab001fb 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NetworkRuleSet.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NetworkRuleSet.cs @@ -3,15 +3,15 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// Description of NetworkRuleSet resource. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class NetworkRuleSet : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IValidates { /// @@ -22,11 +22,11 @@ public partial class NetworkRuleSet : /// Default Action for Network Rule Set [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.DefaultAction? DefaultAction { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetPropertiesInternal)Property).DefaultAction; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetPropertiesInternal)Property).DefaultAction = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.DefaultAction)""); } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.DefaultAction? DefaultAction { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetPropertiesInternal)Property).DefaultAction; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetPropertiesInternal)Property).DefaultAction = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.DefaultAction)""); } /// List of IpRules [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRules[] IPRule { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetPropertiesInternal)Property).IPRule; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetPropertiesInternal)Property).IPRule = value ?? null /* arrayOf */; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRules[] IPRule { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetPropertiesInternal)Property).IPRule; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetPropertiesInternal)Property).IPRule = value ?? null /* arrayOf */; } /// /// Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} @@ -51,27 +51,27 @@ public partial class NetworkRuleSet : string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)__proxyResource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)__proxyResource).Type = value; } /// Internal Acessors for Property - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetProperties Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.NetworkRuleSetProperties()); set { {_property = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetProperties Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.NetworkRuleSetProperties()); set { {_property = value;} } } /// Internal Acessors for SystemData - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetInternal.SystemData { get => (this._systemData = this._systemData ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemData()); set { {_systemData = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetInternal.SystemData { get => (this._systemData = this._systemData ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemData()); set { {_systemData = value;} } } /// The name of the resource [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inherited)] public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)__proxyResource).Name; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetProperties _property; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetProperties _property; /// NetworkRuleSet properties [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.NetworkRuleSetProperties()); set => this._property = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.NetworkRuleSetProperties()); set => this._property = value; } /// /// This determines if traffic is allowed over public network. By default it is enabled. /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PublicNetworkAccessFlag? PublicNetworkAccess { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetPropertiesInternal)Property).PublicNetworkAccess; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetPropertiesInternal)Property).PublicNetworkAccess = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PublicNetworkAccessFlag)""); } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PublicNetworkAccessFlag? PublicNetworkAccess { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetPropertiesInternal)Property).PublicNetworkAccess; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetPropertiesInternal)Property).PublicNetworkAccess = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PublicNetworkAccessFlag)""); } /// Gets the resource group name [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] @@ -110,7 +110,7 @@ public partial class NetworkRuleSet : /// Value that indicates whether Trusted Service Access is Enabled or not. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public bool? TrustedServiceAccessEnabled { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetPropertiesInternal)Property).TrustedServiceAccessEnabled; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetPropertiesInternal)Property).TrustedServiceAccessEnabled = value ?? default(bool); } + public bool? TrustedServiceAccessEnabled { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetPropertiesInternal)Property).TrustedServiceAccessEnabled; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetPropertiesInternal)Property).TrustedServiceAccessEnabled = value ?? default(bool); } /// /// The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs" @@ -120,7 +120,7 @@ public partial class NetworkRuleSet : /// List VirtualNetwork Rules [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRules[] VirtualNetworkRule { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetPropertiesInternal)Property).VirtualNetworkRule; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetPropertiesInternal)Property).VirtualNetworkRule = value ?? null /* arrayOf */; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRules[] VirtualNetworkRule { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetPropertiesInternal)Property).VirtualNetworkRule; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetPropertiesInternal)Property).VirtualNetworkRule = value ?? null /* arrayOf */; } /// Creates an new instance. public NetworkRuleSet() @@ -159,8 +159,8 @@ public partial interface INetworkRuleSet : ReadOnly = false, Description = @"List of IpRules", SerializedName = @"ipRules", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRules) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRules[] IPRule { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRules) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRules[] IPRule { get; set; } /// /// This determines if traffic is allowed over public network. By default it is enabled. /// @@ -233,8 +233,8 @@ public partial interface INetworkRuleSet : ReadOnly = false, Description = @"List VirtualNetwork Rules", SerializedName = @"virtualNetworkRules", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRules) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRules[] VirtualNetworkRule { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRules) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRules[] VirtualNetworkRule { get; set; } } /// Description of NetworkRuleSet resource. @@ -244,9 +244,9 @@ internal partial interface INetworkRuleSetInternal : /// Default Action for Network Rule Set Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.DefaultAction? DefaultAction { get; set; } /// List of IpRules - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRules[] IPRule { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRules[] IPRule { get; set; } /// NetworkRuleSet properties - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetProperties Property { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetProperties Property { get; set; } /// /// This determines if traffic is allowed over public network. By default it is enabled. /// @@ -268,7 +268,7 @@ internal partial interface INetworkRuleSetInternal : /// Value that indicates whether Trusted Service Access is Enabled or not. bool? TrustedServiceAccessEnabled { get; set; } /// List VirtualNetwork Rules - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRules[] VirtualNetworkRule { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRules[] VirtualNetworkRule { get; set; } } } \ No newline at end of file diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NetworkRuleSet.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NetworkRuleSet.json.cs similarity index 94% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NetworkRuleSet.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NetworkRuleSet.json.cs index 32f7064442cf..730c92171715 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NetworkRuleSet.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NetworkRuleSet.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class NetworkRuleSet partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new NetworkRuleSet(json) : null; } @@ -78,7 +78,7 @@ internal NetworkRuleSet(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Js return; } __proxyResource = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ProxyResource(json); - {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.NetworkRuleSetProperties.FromJson(__jsonProperties) : Property;} + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.NetworkRuleSetProperties.FromJson(__jsonProperties) : Property;} {_systemData = If( json?.PropertyT("systemData"), out var __jsonSystemData) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemData.FromJson(__jsonSystemData) : SystemData;} AfterFromJson(json); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NetworkRuleSetListResult.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NetworkRuleSetListResult.PowerShell.cs similarity index 75% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NetworkRuleSetListResult.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NetworkRuleSetListResult.PowerShell.cs index 21932bdb9144..331fad86431c 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NetworkRuleSetListResult.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NetworkRuleSetListResult.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -63,29 +63,29 @@ public partial class NetworkRuleSetListResult partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new NetworkRuleSetListResult(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new NetworkRuleSetListResult(content); } @@ -95,10 +95,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -113,17 +113,17 @@ internal NetworkRuleSetListResult(global::System.Collections.IDictionary content // actually deserialize if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.NetworkRuleSetTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.NetworkRuleSetTypeConverter.ConvertFrom)); } if (content.Contains("NextLink")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetListResultInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetListResultInternal)this).NextLink, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -138,11 +138,11 @@ internal NetworkRuleSetListResult(global::System.Management.Automation.PSObject // actually deserialize if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.NetworkRuleSetTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.NetworkRuleSetTypeConverter.ConvertFrom)); } if (content.Contains("NextLink")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetListResultInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetListResultInternal)this).NextLink, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NetworkRuleSetListResult.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NetworkRuleSetListResult.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NetworkRuleSetListResult.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NetworkRuleSetListResult.TypeConverter.cs index 91c8dba25796..052562768094 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NetworkRuleSetListResult.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NetworkRuleSetListResult.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetListResult ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetListResult ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetListResult).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetListResult).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NetworkRuleSetListResult.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NetworkRuleSetListResult.cs similarity index 88% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NetworkRuleSetListResult.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NetworkRuleSetListResult.cs index bd59eeaeeb26..ab1068f4c16c 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NetworkRuleSetListResult.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NetworkRuleSetListResult.cs @@ -3,15 +3,15 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// The response of the List NetworkRuleSet operation. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class NetworkRuleSetListResult : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetListResult, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetListResultInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetListResult, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetListResultInternal { /// Backing field for property. @@ -24,11 +24,11 @@ public partial class NetworkRuleSetListResult : public string NextLink { get => this._nextLink; set => this._nextLink = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet[] _value; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet[] _value; /// Result of the List NetworkRuleSet operation. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet[] Value { get => this._value; set => this._value = value; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet[] Value { get => this._value; set => this._value = value; } /// Creates an new instance. public NetworkRuleSetListResult() @@ -56,8 +56,8 @@ public partial interface INetworkRuleSetListResult : ReadOnly = false, Description = @"Result of the List NetworkRuleSet operation.", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet[] Value { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet[] Value { get; set; } } /// The response of the List NetworkRuleSet operation. @@ -69,7 +69,7 @@ internal partial interface INetworkRuleSetListResultInternal /// string NextLink { get; set; } /// Result of the List NetworkRuleSet operation. - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet[] Value { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet[] Value { get; set; } } } \ No newline at end of file diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NetworkRuleSetListResult.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NetworkRuleSetListResult.json.cs similarity index 91% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NetworkRuleSetListResult.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NetworkRuleSetListResult.json.cs index 5966c5290c9e..0aaa00d561ec 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NetworkRuleSetListResult.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NetworkRuleSetListResult.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class NetworkRuleSetListResult partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetListResult. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetListResult. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetListResult. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetListResult. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new NetworkRuleSetListResult(json) : null; } @@ -77,7 +77,7 @@ internal NetworkRuleSetListResult(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus. { return; } - {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet) (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.NetworkRuleSet.FromJson(__u) )) ))() : null : Value;} + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet) (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.NetworkRuleSet.FromJson(__u) )) ))() : null : Value;} {_nextLink = If( json?.PropertyT("nextLink"), out var __jsonNextLink) ? (string)__jsonNextLink : (string)NextLink;} AfterFromJson(json); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NetworkRuleSetProperties.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NetworkRuleSetProperties.PowerShell.cs similarity index 60% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NetworkRuleSetProperties.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NetworkRuleSetProperties.PowerShell.cs index 6a692f38d500..225b542e86e3 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NetworkRuleSetProperties.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NetworkRuleSetProperties.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -63,29 +63,29 @@ public partial class NetworkRuleSetProperties partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new NetworkRuleSetProperties(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new NetworkRuleSetProperties(content); } @@ -95,10 +95,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -113,29 +113,29 @@ internal NetworkRuleSetProperties(global::System.Collections.IDictionary content // actually deserialize if (content.Contains("TrustedServiceAccessEnabled")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetPropertiesInternal)this).TrustedServiceAccessEnabled = (bool?) content.GetValueForProperty("TrustedServiceAccessEnabled",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetPropertiesInternal)this).TrustedServiceAccessEnabled, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetPropertiesInternal)this).TrustedServiceAccessEnabled = (bool?) content.GetValueForProperty("TrustedServiceAccessEnabled",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetPropertiesInternal)this).TrustedServiceAccessEnabled, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } if (content.Contains("DefaultAction")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetPropertiesInternal)this).DefaultAction = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.DefaultAction?) content.GetValueForProperty("DefaultAction",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetPropertiesInternal)this).DefaultAction, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.DefaultAction.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetPropertiesInternal)this).DefaultAction = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.DefaultAction?) content.GetValueForProperty("DefaultAction",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetPropertiesInternal)this).DefaultAction, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.DefaultAction.CreateFrom); } if (content.Contains("VirtualNetworkRule")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetPropertiesInternal)this).VirtualNetworkRule = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRules[]) content.GetValueForProperty("VirtualNetworkRule",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetPropertiesInternal)this).VirtualNetworkRule, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.NwRuleSetVirtualNetworkRulesTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetPropertiesInternal)this).VirtualNetworkRule = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRules[]) content.GetValueForProperty("VirtualNetworkRule",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetPropertiesInternal)this).VirtualNetworkRule, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.NwRuleSetVirtualNetworkRulesTypeConverter.ConvertFrom)); } if (content.Contains("IPRule")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetPropertiesInternal)this).IPRule = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRules[]) content.GetValueForProperty("IPRule",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetPropertiesInternal)this).IPRule, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.NwRuleSetIPRulesTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetPropertiesInternal)this).IPRule = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRules[]) content.GetValueForProperty("IPRule",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetPropertiesInternal)this).IPRule, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.NwRuleSetIPRulesTypeConverter.ConvertFrom)); } if (content.Contains("PublicNetworkAccess")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetPropertiesInternal)this).PublicNetworkAccess = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PublicNetworkAccessFlag?) content.GetValueForProperty("PublicNetworkAccess",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetPropertiesInternal)this).PublicNetworkAccess, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PublicNetworkAccessFlag.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetPropertiesInternal)this).PublicNetworkAccess = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PublicNetworkAccessFlag?) content.GetValueForProperty("PublicNetworkAccess",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetPropertiesInternal)this).PublicNetworkAccess, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PublicNetworkAccessFlag.CreateFrom); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -150,23 +150,23 @@ internal NetworkRuleSetProperties(global::System.Management.Automation.PSObject // actually deserialize if (content.Contains("TrustedServiceAccessEnabled")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetPropertiesInternal)this).TrustedServiceAccessEnabled = (bool?) content.GetValueForProperty("TrustedServiceAccessEnabled",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetPropertiesInternal)this).TrustedServiceAccessEnabled, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetPropertiesInternal)this).TrustedServiceAccessEnabled = (bool?) content.GetValueForProperty("TrustedServiceAccessEnabled",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetPropertiesInternal)this).TrustedServiceAccessEnabled, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } if (content.Contains("DefaultAction")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetPropertiesInternal)this).DefaultAction = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.DefaultAction?) content.GetValueForProperty("DefaultAction",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetPropertiesInternal)this).DefaultAction, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.DefaultAction.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetPropertiesInternal)this).DefaultAction = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.DefaultAction?) content.GetValueForProperty("DefaultAction",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetPropertiesInternal)this).DefaultAction, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.DefaultAction.CreateFrom); } if (content.Contains("VirtualNetworkRule")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetPropertiesInternal)this).VirtualNetworkRule = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRules[]) content.GetValueForProperty("VirtualNetworkRule",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetPropertiesInternal)this).VirtualNetworkRule, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.NwRuleSetVirtualNetworkRulesTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetPropertiesInternal)this).VirtualNetworkRule = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRules[]) content.GetValueForProperty("VirtualNetworkRule",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetPropertiesInternal)this).VirtualNetworkRule, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.NwRuleSetVirtualNetworkRulesTypeConverter.ConvertFrom)); } if (content.Contains("IPRule")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetPropertiesInternal)this).IPRule = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRules[]) content.GetValueForProperty("IPRule",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetPropertiesInternal)this).IPRule, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.NwRuleSetIPRulesTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetPropertiesInternal)this).IPRule = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRules[]) content.GetValueForProperty("IPRule",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetPropertiesInternal)this).IPRule, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.NwRuleSetIPRulesTypeConverter.ConvertFrom)); } if (content.Contains("PublicNetworkAccess")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetPropertiesInternal)this).PublicNetworkAccess = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PublicNetworkAccessFlag?) content.GetValueForProperty("PublicNetworkAccess",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetPropertiesInternal)this).PublicNetworkAccess, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PublicNetworkAccessFlag.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetPropertiesInternal)this).PublicNetworkAccess = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PublicNetworkAccessFlag?) content.GetValueForProperty("PublicNetworkAccess",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetPropertiesInternal)this).PublicNetworkAccess, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PublicNetworkAccessFlag.CreateFrom); } AfterDeserializePSObject(content); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NetworkRuleSetProperties.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NetworkRuleSetProperties.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NetworkRuleSetProperties.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NetworkRuleSetProperties.TypeConverter.cs index 1a9302b53216..677d86c1b59a 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NetworkRuleSetProperties.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NetworkRuleSetProperties.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetProperties ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetProperties ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetProperties).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetProperties).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NetworkRuleSetProperties.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NetworkRuleSetProperties.cs similarity index 88% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NetworkRuleSetProperties.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NetworkRuleSetProperties.cs index 39cb70f8dece..625baef5b434 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NetworkRuleSetProperties.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NetworkRuleSetProperties.cs @@ -3,15 +3,15 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// NetworkRuleSet properties [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class NetworkRuleSetProperties : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetProperties, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetPropertiesInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetProperties, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetPropertiesInternal { /// Backing field for property. @@ -22,11 +22,11 @@ public partial class NetworkRuleSetProperties : public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.DefaultAction? DefaultAction { get => this._defaultAction; set => this._defaultAction = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRules[] _iPRule; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRules[] _iPRule; /// List of IpRules [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRules[] IPRule { get => this._iPRule; set => this._iPRule = value; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRules[] IPRule { get => this._iPRule; set => this._iPRule = value; } /// Backing field for property. private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PublicNetworkAccessFlag? _publicNetworkAccess; @@ -45,11 +45,11 @@ public partial class NetworkRuleSetProperties : public bool? TrustedServiceAccessEnabled { get => this._trustedServiceAccessEnabled; set => this._trustedServiceAccessEnabled = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRules[] _virtualNetworkRule; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRules[] _virtualNetworkRule; /// List VirtualNetwork Rules [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRules[] VirtualNetworkRule { get => this._virtualNetworkRule; set => this._virtualNetworkRule = value; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRules[] VirtualNetworkRule { get => this._virtualNetworkRule; set => this._virtualNetworkRule = value; } /// Creates an new instance. public NetworkRuleSetProperties() @@ -75,8 +75,8 @@ public partial interface INetworkRuleSetProperties : ReadOnly = false, Description = @"List of IpRules", SerializedName = @"ipRules", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRules) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRules[] IPRule { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRules) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRules[] IPRule { get; set; } /// /// This determines if traffic is allowed over public network. By default it is enabled. /// @@ -101,8 +101,8 @@ public partial interface INetworkRuleSetProperties : ReadOnly = false, Description = @"List VirtualNetwork Rules", SerializedName = @"virtualNetworkRules", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRules) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRules[] VirtualNetworkRule { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRules) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRules[] VirtualNetworkRule { get; set; } } /// NetworkRuleSet properties @@ -112,7 +112,7 @@ internal partial interface INetworkRuleSetPropertiesInternal /// Default Action for Network Rule Set Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.DefaultAction? DefaultAction { get; set; } /// List of IpRules - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRules[] IPRule { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRules[] IPRule { get; set; } /// /// This determines if traffic is allowed over public network. By default it is enabled. /// @@ -120,7 +120,7 @@ internal partial interface INetworkRuleSetPropertiesInternal /// Value that indicates whether Trusted Service Access is Enabled or not. bool? TrustedServiceAccessEnabled { get; set; } /// List VirtualNetwork Rules - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRules[] VirtualNetworkRule { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRules[] VirtualNetworkRule { get; set; } } } \ No newline at end of file diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NetworkRuleSetProperties.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NetworkRuleSetProperties.json.cs similarity index 89% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NetworkRuleSetProperties.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NetworkRuleSetProperties.json.cs index 0fe8732b096a..1636c02e1577 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NetworkRuleSetProperties.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NetworkRuleSetProperties.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class NetworkRuleSetProperties partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetProperties. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetProperties. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetProperties. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetProperties. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new NetworkRuleSetProperties(json) : null; } @@ -79,8 +79,8 @@ internal NetworkRuleSetProperties(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus. } {_trustedServiceAccessEnabled = If( json?.PropertyT("trustedServiceAccessEnabled"), out var __jsonTrustedServiceAccessEnabled) ? (bool?)__jsonTrustedServiceAccessEnabled : TrustedServiceAccessEnabled;} {_defaultAction = If( json?.PropertyT("defaultAction"), out var __jsonDefaultAction) ? (string)__jsonDefaultAction : (string)DefaultAction;} - {_virtualNetworkRule = If( json?.PropertyT("virtualNetworkRules"), out var __jsonVirtualNetworkRules) ? If( __jsonVirtualNetworkRules as Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRules) (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.NwRuleSetVirtualNetworkRules.FromJson(__u) )) ))() : null : VirtualNetworkRule;} - {_iPRule = If( json?.PropertyT("ipRules"), out var __jsonIPRules) ? If( __jsonIPRules as Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonArray, out var __q) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__q, (__p)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRules) (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.NwRuleSetIPRules.FromJson(__p) )) ))() : null : IPRule;} + {_virtualNetworkRule = If( json?.PropertyT("virtualNetworkRules"), out var __jsonVirtualNetworkRules) ? If( __jsonVirtualNetworkRules as Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRules) (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.NwRuleSetVirtualNetworkRules.FromJson(__u) )) ))() : null : VirtualNetworkRule;} + {_iPRule = If( json?.PropertyT("ipRules"), out var __jsonIPRules) ? If( __jsonIPRules as Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonArray, out var __q) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__q, (__p)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRules) (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.NwRuleSetIPRules.FromJson(__p) )) ))() : null : IPRule;} {_publicNetworkAccess = If( json?.PropertyT("publicNetworkAccess"), out var __jsonPublicNetworkAccess) ? (string)__jsonPublicNetworkAccess : (string)PublicNetworkAccess;} AfterFromJson(json); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NwRuleSetIPRules.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NwRuleSetIPRules.PowerShell.cs similarity index 78% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NwRuleSetIPRules.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NwRuleSetIPRules.PowerShell.cs index fe5db04276a6..bfbb581e7ac7 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NwRuleSetIPRules.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NwRuleSetIPRules.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -63,27 +63,27 @@ public partial class NwRuleSetIPRules partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRules DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRules DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new NwRuleSetIPRules(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRules DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRules DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new NwRuleSetIPRules(content); } @@ -93,10 +93,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRules FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRules FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -111,17 +111,17 @@ internal NwRuleSetIPRules(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("IPMask")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRulesInternal)this).IPMask = (string) content.GetValueForProperty("IPMask",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRulesInternal)this).IPMask, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRulesInternal)this).IPMask = (string) content.GetValueForProperty("IPMask",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRulesInternal)this).IPMask, global::System.Convert.ToString); } if (content.Contains("Action")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRulesInternal)this).Action = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.NetworkRuleIPAction?) content.GetValueForProperty("Action",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRulesInternal)this).Action, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.NetworkRuleIPAction.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRulesInternal)this).Action = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.NetworkRuleIPAction?) content.GetValueForProperty("Action",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRulesInternal)this).Action, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.NetworkRuleIPAction.CreateFrom); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -136,11 +136,11 @@ internal NwRuleSetIPRules(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("IPMask")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRulesInternal)this).IPMask = (string) content.GetValueForProperty("IPMask",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRulesInternal)this).IPMask, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRulesInternal)this).IPMask = (string) content.GetValueForProperty("IPMask",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRulesInternal)this).IPMask, global::System.Convert.ToString); } if (content.Contains("Action")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRulesInternal)this).Action = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.NetworkRuleIPAction?) content.GetValueForProperty("Action",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRulesInternal)this).Action, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.NetworkRuleIPAction.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRulesInternal)this).Action = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.NetworkRuleIPAction?) content.GetValueForProperty("Action",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRulesInternal)this).Action, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.NetworkRuleIPAction.CreateFrom); } AfterDeserializePSObject(content); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NwRuleSetIPRules.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NwRuleSetIPRules.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NwRuleSetIPRules.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NwRuleSetIPRules.TypeConverter.cs index f570a1cf176a..1034c9077a5e 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NwRuleSetIPRules.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NwRuleSetIPRules.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRules ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRules ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRules).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRules).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NwRuleSetIPRules.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NwRuleSetIPRules.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NwRuleSetIPRules.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NwRuleSetIPRules.cs index d3c70e2de8b0..80520d3797eb 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NwRuleSetIPRules.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NwRuleSetIPRules.cs @@ -3,15 +3,15 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// Description of NetWorkRuleSet - IpRules resource. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class NwRuleSetIPRules : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRules, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRulesInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRules, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRulesInternal { /// Backing field for property. diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NwRuleSetIPRules.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NwRuleSetIPRules.json.cs similarity index 96% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NwRuleSetIPRules.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NwRuleSetIPRules.json.cs index b7e17f03e62a..856575433ef8 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NwRuleSetIPRules.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NwRuleSetIPRules.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class NwRuleSetIPRules partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRules. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRules. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRules. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRules. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRules FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRules FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new NwRuleSetIPRules(json) : null; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NwRuleSetVirtualNetworkRules.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NwRuleSetVirtualNetworkRules.PowerShell.cs similarity index 72% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NwRuleSetVirtualNetworkRules.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NwRuleSetVirtualNetworkRules.PowerShell.cs index e7496c722eff..6cd351e327d2 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NwRuleSetVirtualNetworkRules.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NwRuleSetVirtualNetworkRules.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -63,29 +63,29 @@ public partial class NwRuleSetVirtualNetworkRules partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRules DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRules DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new NwRuleSetVirtualNetworkRules(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRules DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRules DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new NwRuleSetVirtualNetworkRules(content); } @@ -95,10 +95,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRules FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRules FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -113,21 +113,21 @@ internal NwRuleSetVirtualNetworkRules(global::System.Collections.IDictionary con // actually deserialize if (content.Contains("Subnet")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRulesInternal)this).Subnet = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISubnet) content.GetValueForProperty("Subnet",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRulesInternal)this).Subnet, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SubnetTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRulesInternal)this).Subnet = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISubnet) content.GetValueForProperty("Subnet",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRulesInternal)this).Subnet, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SubnetTypeConverter.ConvertFrom); } if (content.Contains("IgnoreMissingVnetServiceEndpoint")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRulesInternal)this).IgnoreMissingVnetServiceEndpoint = (bool?) content.GetValueForProperty("IgnoreMissingVnetServiceEndpoint",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRulesInternal)this).IgnoreMissingVnetServiceEndpoint, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRulesInternal)this).IgnoreMissingVnetServiceEndpoint = (bool?) content.GetValueForProperty("IgnoreMissingVnetServiceEndpoint",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRulesInternal)this).IgnoreMissingVnetServiceEndpoint, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } if (content.Contains("SubnetId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRulesInternal)this).SubnetId = (string) content.GetValueForProperty("SubnetId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRulesInternal)this).SubnetId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRulesInternal)this).SubnetId = (string) content.GetValueForProperty("SubnetId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRulesInternal)this).SubnetId, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -142,15 +142,15 @@ internal NwRuleSetVirtualNetworkRules(global::System.Management.Automation.PSObj // actually deserialize if (content.Contains("Subnet")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRulesInternal)this).Subnet = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISubnet) content.GetValueForProperty("Subnet",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRulesInternal)this).Subnet, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SubnetTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRulesInternal)this).Subnet = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISubnet) content.GetValueForProperty("Subnet",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRulesInternal)this).Subnet, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SubnetTypeConverter.ConvertFrom); } if (content.Contains("IgnoreMissingVnetServiceEndpoint")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRulesInternal)this).IgnoreMissingVnetServiceEndpoint = (bool?) content.GetValueForProperty("IgnoreMissingVnetServiceEndpoint",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRulesInternal)this).IgnoreMissingVnetServiceEndpoint, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRulesInternal)this).IgnoreMissingVnetServiceEndpoint = (bool?) content.GetValueForProperty("IgnoreMissingVnetServiceEndpoint",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRulesInternal)this).IgnoreMissingVnetServiceEndpoint, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } if (content.Contains("SubnetId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRulesInternal)this).SubnetId = (string) content.GetValueForProperty("SubnetId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRulesInternal)this).SubnetId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRulesInternal)this).SubnetId = (string) content.GetValueForProperty("SubnetId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRulesInternal)this).SubnetId, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NwRuleSetVirtualNetworkRules.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NwRuleSetVirtualNetworkRules.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NwRuleSetVirtualNetworkRules.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NwRuleSetVirtualNetworkRules.TypeConverter.cs index 5045488928a7..9d48a69db6ed 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NwRuleSetVirtualNetworkRules.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NwRuleSetVirtualNetworkRules.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRules ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRules ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRules).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRules).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NwRuleSetVirtualNetworkRules.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NwRuleSetVirtualNetworkRules.cs similarity index 81% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NwRuleSetVirtualNetworkRules.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NwRuleSetVirtualNetworkRules.cs index 6fe9ba7e517c..6b85859ebbfa 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NwRuleSetVirtualNetworkRules.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NwRuleSetVirtualNetworkRules.cs @@ -3,15 +3,15 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// Description of VirtualNetworkRules - NetworkRules resource. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class NwRuleSetVirtualNetworkRules : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRules, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRulesInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRules, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRulesInternal { /// Backing field for property. @@ -22,18 +22,18 @@ public partial class NwRuleSetVirtualNetworkRules : public bool? IgnoreMissingVnetServiceEndpoint { get => this._ignoreMissingVnetServiceEndpoint; set => this._ignoreMissingVnetServiceEndpoint = value; } /// Internal Acessors for Subnet - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISubnet Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRulesInternal.Subnet { get => (this._subnet = this._subnet ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.Subnet()); set { {_subnet = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISubnet Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRulesInternal.Subnet { get => (this._subnet = this._subnet ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.Subnet()); set { {_subnet = value;} } } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISubnet _subnet; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISubnet _subnet; /// Subnet properties [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISubnet Subnet { get => (this._subnet = this._subnet ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.Subnet()); set => this._subnet = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISubnet Subnet { get => (this._subnet = this._subnet ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.Subnet()); set => this._subnet = value; } /// Resource ID of Virtual Network Subnet [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string SubnetId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISubnetInternal)Subnet).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISubnetInternal)Subnet).Id = value ?? null; } + public string SubnetId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISubnetInternal)Subnet).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISubnetInternal)Subnet).Id = value ?? null; } /// Creates an new instance. public NwRuleSetVirtualNetworkRules() @@ -70,7 +70,7 @@ internal partial interface INwRuleSetVirtualNetworkRulesInternal /// Value that indicates whether to ignore missing VNet Service Endpoint bool? IgnoreMissingVnetServiceEndpoint { get; set; } /// Subnet properties - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISubnet Subnet { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISubnet Subnet { get; set; } /// Resource ID of Virtual Network Subnet string SubnetId { get; set; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NwRuleSetVirtualNetworkRules.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NwRuleSetVirtualNetworkRules.json.cs similarity index 94% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NwRuleSetVirtualNetworkRules.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NwRuleSetVirtualNetworkRules.json.cs index a091395302a9..2840a9f100be 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/NwRuleSetVirtualNetworkRules.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/NwRuleSetVirtualNetworkRules.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class NwRuleSetVirtualNetworkRules partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRules. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRules. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRules. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRules. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRules FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRules FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new NwRuleSetVirtualNetworkRules(json) : null; } @@ -77,7 +77,7 @@ internal NwRuleSetVirtualNetworkRules(Microsoft.Azure.PowerShell.Cmdlets.Service { return; } - {_subnet = If( json?.PropertyT("subnet"), out var __jsonSubnet) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.Subnet.FromJson(__jsonSubnet) : Subnet;} + {_subnet = If( json?.PropertyT("subnet"), out var __jsonSubnet) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.Subnet.FromJson(__jsonSubnet) : Subnet;} {_ignoreMissingVnetServiceEndpoint = If( json?.PropertyT("ignoreMissingVnetServiceEndpoint"), out var __jsonIgnoreMissingVnetServiceEndpoint) ? (bool?)__jsonIgnoreMissingVnetServiceEndpoint : IgnoreMissingVnetServiceEndpoint;} AfterFromJson(json); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Operation.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Operation.PowerShell.cs similarity index 62% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Operation.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Operation.PowerShell.cs index 52f7099d8ee1..7aa19ca99df3 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Operation.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Operation.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -63,27 +63,27 @@ public partial class Operation partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperation DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperation DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new Operation(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperation DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperation DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new Operation(content); } @@ -93,10 +93,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperation FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperation FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -111,45 +111,45 @@ internal Operation(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Display")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationInternal)this).Display = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplay) content.GetValueForProperty("Display",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationInternal)this).Display, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.OperationDisplayTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationInternal)this).Display = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplay) content.GetValueForProperty("Display",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationInternal)this).Display, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.OperationDisplayTypeConverter.ConvertFrom); } if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationInternal)this).Name, global::System.Convert.ToString); } if (content.Contains("IsDataAction")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationInternal)this).IsDataAction = (bool?) content.GetValueForProperty("IsDataAction",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationInternal)this).IsDataAction, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationInternal)this).IsDataAction = (bool?) content.GetValueForProperty("IsDataAction",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationInternal)this).IsDataAction, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } if (content.Contains("Origin")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationInternal)this).Origin = (string) content.GetValueForProperty("Origin",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationInternal)this).Origin, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationInternal)this).Origin = (string) content.GetValueForProperty("Origin",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationInternal)this).Origin, global::System.Convert.ToString); } if (content.Contains("Property")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IAny) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.AnyTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IAny) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.AnyTypeConverter.ConvertFrom); } if (content.Contains("DisplayProvider")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationInternal)this).DisplayProvider = (string) content.GetValueForProperty("DisplayProvider",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationInternal)this).DisplayProvider, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationInternal)this).DisplayProvider = (string) content.GetValueForProperty("DisplayProvider",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationInternal)this).DisplayProvider, global::System.Convert.ToString); } if (content.Contains("DisplayResource")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationInternal)this).DisplayResource = (string) content.GetValueForProperty("DisplayResource",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationInternal)this).DisplayResource, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationInternal)this).DisplayResource = (string) content.GetValueForProperty("DisplayResource",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationInternal)this).DisplayResource, global::System.Convert.ToString); } if (content.Contains("DisplayOperation")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationInternal)this).DisplayOperation = (string) content.GetValueForProperty("DisplayOperation",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationInternal)this).DisplayOperation, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationInternal)this).DisplayOperation = (string) content.GetValueForProperty("DisplayOperation",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationInternal)this).DisplayOperation, global::System.Convert.ToString); } if (content.Contains("DisplayDescription")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationInternal)this).DisplayDescription = (string) content.GetValueForProperty("DisplayDescription",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationInternal)this).DisplayDescription, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationInternal)this).DisplayDescription = (string) content.GetValueForProperty("DisplayDescription",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationInternal)this).DisplayDescription, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -164,39 +164,39 @@ internal Operation(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("Display")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationInternal)this).Display = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplay) content.GetValueForProperty("Display",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationInternal)this).Display, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.OperationDisplayTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationInternal)this).Display = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplay) content.GetValueForProperty("Display",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationInternal)this).Display, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.OperationDisplayTypeConverter.ConvertFrom); } if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationInternal)this).Name, global::System.Convert.ToString); } if (content.Contains("IsDataAction")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationInternal)this).IsDataAction = (bool?) content.GetValueForProperty("IsDataAction",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationInternal)this).IsDataAction, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationInternal)this).IsDataAction = (bool?) content.GetValueForProperty("IsDataAction",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationInternal)this).IsDataAction, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } if (content.Contains("Origin")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationInternal)this).Origin = (string) content.GetValueForProperty("Origin",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationInternal)this).Origin, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationInternal)this).Origin = (string) content.GetValueForProperty("Origin",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationInternal)this).Origin, global::System.Convert.ToString); } if (content.Contains("Property")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IAny) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.AnyTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IAny) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.AnyTypeConverter.ConvertFrom); } if (content.Contains("DisplayProvider")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationInternal)this).DisplayProvider = (string) content.GetValueForProperty("DisplayProvider",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationInternal)this).DisplayProvider, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationInternal)this).DisplayProvider = (string) content.GetValueForProperty("DisplayProvider",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationInternal)this).DisplayProvider, global::System.Convert.ToString); } if (content.Contains("DisplayResource")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationInternal)this).DisplayResource = (string) content.GetValueForProperty("DisplayResource",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationInternal)this).DisplayResource, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationInternal)this).DisplayResource = (string) content.GetValueForProperty("DisplayResource",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationInternal)this).DisplayResource, global::System.Convert.ToString); } if (content.Contains("DisplayOperation")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationInternal)this).DisplayOperation = (string) content.GetValueForProperty("DisplayOperation",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationInternal)this).DisplayOperation, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationInternal)this).DisplayOperation = (string) content.GetValueForProperty("DisplayOperation",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationInternal)this).DisplayOperation, global::System.Convert.ToString); } if (content.Contains("DisplayDescription")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationInternal)this).DisplayDescription = (string) content.GetValueForProperty("DisplayDescription",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationInternal)this).DisplayDescription, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationInternal)this).DisplayDescription = (string) content.GetValueForProperty("DisplayDescription",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationInternal)this).DisplayDescription, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Operation.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Operation.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Operation.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Operation.TypeConverter.cs index 7763245def23..476134aba397 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Operation.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Operation.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -105,14 +105,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperation ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperation ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperation).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperation).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Operation.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Operation.cs similarity index 79% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Operation.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Operation.cs index 84f89150f20a..3a70cbfe473f 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Operation.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Operation.cs @@ -3,39 +3,39 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// A Service Bus REST API operation [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class Operation : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperation, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperation, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationInternal { /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplay _display; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplay _display; /// Display of the operation [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplay Display { get => (this._display = this._display ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.OperationDisplay()); set => this._display = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplay Display { get => (this._display = this._display ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.OperationDisplay()); set => this._display = value; } /// Localized friendly description for the operation [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string DisplayDescription { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplayInternal)Display).Description; } + public string DisplayDescription { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplayInternal)Display).Description; } /// Localized friendly name for the operation [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string DisplayOperation { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplayInternal)Display).Operation; } + public string DisplayOperation { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplayInternal)Display).Operation; } /// Resource provider of the operation [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string DisplayProvider { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplayInternal)Display).Provider; } + public string DisplayProvider { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplayInternal)Display).Provider; } /// Resource of the operation [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string DisplayResource { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplayInternal)Display).Resource; } + public string DisplayResource { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplayInternal)Display).Resource; } /// Backing field for property. private bool? _isDataAction; @@ -45,22 +45,22 @@ public partial class Operation : public bool? IsDataAction { get => this._isDataAction; set => this._isDataAction = value; } /// Internal Acessors for Display - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplay Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationInternal.Display { get => (this._display = this._display ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.OperationDisplay()); set { {_display = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplay Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationInternal.Display { get => (this._display = this._display ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.OperationDisplay()); set { {_display = value;} } } /// Internal Acessors for DisplayDescription - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationInternal.DisplayDescription { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplayInternal)Display).Description; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplayInternal)Display).Description = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationInternal.DisplayDescription { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplayInternal)Display).Description; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplayInternal)Display).Description = value; } /// Internal Acessors for DisplayOperation - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationInternal.DisplayOperation { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplayInternal)Display).Operation; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplayInternal)Display).Operation = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationInternal.DisplayOperation { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplayInternal)Display).Operation; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplayInternal)Display).Operation = value; } /// Internal Acessors for DisplayProvider - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationInternal.DisplayProvider { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplayInternal)Display).Provider; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplayInternal)Display).Provider = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationInternal.DisplayProvider { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplayInternal)Display).Provider; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplayInternal)Display).Provider = value; } /// Internal Acessors for DisplayResource - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationInternal.DisplayResource { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplayInternal)Display).Resource; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplayInternal)Display).Resource = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationInternal.DisplayResource { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplayInternal)Display).Resource; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplayInternal)Display).Resource = value; } /// Internal Acessors for Name - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationInternal.Name { get => this._name; set { {_name = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationInternal.Name { get => this._name; set { {_name = value;} } } /// Backing field for property. private string _name; @@ -164,7 +164,7 @@ internal partial interface IOperationInternal { /// Display of the operation - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplay Display { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplay Display { get; set; } /// Localized friendly description for the operation string DisplayDescription { get; set; } /// Localized friendly name for the operation diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Operation.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Operation.json.cs similarity index 95% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Operation.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Operation.json.cs index 87334bff5137..a97ba9b37bb5 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Operation.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Operation.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class Operation partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperation. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperation. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperation. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperation. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperation FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperation FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new Operation(json) : null; } @@ -77,7 +77,7 @@ internal Operation(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.Js { return; } - {_display = If( json?.PropertyT("display"), out var __jsonDisplay) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.OperationDisplay.FromJson(__jsonDisplay) : Display;} + {_display = If( json?.PropertyT("display"), out var __jsonDisplay) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.OperationDisplay.FromJson(__jsonDisplay) : Display;} {_name = If( json?.PropertyT("name"), out var __jsonName) ? (string)__jsonName : (string)Name;} {_isDataAction = If( json?.PropertyT("isDataAction"), out var __jsonIsDataAction) ? (bool?)__jsonIsDataAction : IsDataAction;} {_origin = If( json?.PropertyT("origin"), out var __jsonOrigin) ? (string)__jsonOrigin : (string)Origin;} diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/OperationDisplay.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/OperationDisplay.PowerShell.cs similarity index 74% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/OperationDisplay.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/OperationDisplay.PowerShell.cs index 9724680687a0..61c31ebfe2dc 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/OperationDisplay.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/OperationDisplay.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -63,27 +63,27 @@ public partial class OperationDisplay partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplay DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplay DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new OperationDisplay(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplay DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplay DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new OperationDisplay(content); } @@ -93,10 +93,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplay FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplay FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -111,25 +111,25 @@ internal OperationDisplay(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Provider")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplayInternal)this).Provider = (string) content.GetValueForProperty("Provider",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplayInternal)this).Provider, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplayInternal)this).Provider = (string) content.GetValueForProperty("Provider",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplayInternal)this).Provider, global::System.Convert.ToString); } if (content.Contains("Resource")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplayInternal)this).Resource = (string) content.GetValueForProperty("Resource",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplayInternal)this).Resource, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplayInternal)this).Resource = (string) content.GetValueForProperty("Resource",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplayInternal)this).Resource, global::System.Convert.ToString); } if (content.Contains("Operation")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplayInternal)this).Operation = (string) content.GetValueForProperty("Operation",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplayInternal)this).Operation, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplayInternal)this).Operation = (string) content.GetValueForProperty("Operation",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplayInternal)this).Operation, global::System.Convert.ToString); } if (content.Contains("Description")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplayInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplayInternal)this).Description, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplayInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplayInternal)this).Description, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -144,19 +144,19 @@ internal OperationDisplay(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("Provider")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplayInternal)this).Provider = (string) content.GetValueForProperty("Provider",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplayInternal)this).Provider, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplayInternal)this).Provider = (string) content.GetValueForProperty("Provider",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplayInternal)this).Provider, global::System.Convert.ToString); } if (content.Contains("Resource")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplayInternal)this).Resource = (string) content.GetValueForProperty("Resource",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplayInternal)this).Resource, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplayInternal)this).Resource = (string) content.GetValueForProperty("Resource",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplayInternal)this).Resource, global::System.Convert.ToString); } if (content.Contains("Operation")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplayInternal)this).Operation = (string) content.GetValueForProperty("Operation",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplayInternal)this).Operation, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplayInternal)this).Operation = (string) content.GetValueForProperty("Operation",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplayInternal)this).Operation, global::System.Convert.ToString); } if (content.Contains("Description")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplayInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplayInternal)this).Description, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplayInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplayInternal)this).Description, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/OperationDisplay.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/OperationDisplay.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/OperationDisplay.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/OperationDisplay.TypeConverter.cs index 0dcd2a4cd77e..a545f183bc5f 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/OperationDisplay.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/OperationDisplay.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplay ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplay ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplay).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplay).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/OperationDisplay.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/OperationDisplay.cs similarity index 90% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/OperationDisplay.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/OperationDisplay.cs index 458df9feface..2ca5a8bfa9d6 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/OperationDisplay.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/OperationDisplay.cs @@ -3,15 +3,15 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// Operation display payload [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class OperationDisplay : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplay, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplayInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplay, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplayInternal { /// Backing field for property. @@ -22,16 +22,16 @@ public partial class OperationDisplay : public string Description { get => this._description; } /// Internal Acessors for Description - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplayInternal.Description { get => this._description; set { {_description = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplayInternal.Description { get => this._description; set { {_description = value;} } } /// Internal Acessors for Operation - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplayInternal.Operation { get => this._operation; set { {_operation = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplayInternal.Operation { get => this._operation; set { {_operation = value;} } } /// Internal Acessors for Provider - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplayInternal.Provider { get => this._provider; set { {_provider = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplayInternal.Provider { get => this._provider; set { {_provider = value;} } } /// Internal Acessors for Resource - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplayInternal.Resource { get => this._resource; set { {_resource = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplayInternal.Resource { get => this._resource; set { {_resource = value;} } } /// Backing field for property. private string _operation; diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/OperationDisplay.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/OperationDisplay.json.cs similarity index 96% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/OperationDisplay.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/OperationDisplay.json.cs index 5ccc7a084171..8262cbcd621b 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/OperationDisplay.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/OperationDisplay.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class OperationDisplay partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplay. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplay. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplay. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplay. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationDisplay FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationDisplay FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new OperationDisplay(json) : null; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/OperationListResult.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/OperationListResult.PowerShell.cs similarity index 76% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/OperationListResult.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/OperationListResult.PowerShell.cs index b14c6c5c5126..7033d8972e7f 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/OperationListResult.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/OperationListResult.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -66,29 +66,29 @@ public partial class OperationListResult partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new OperationListResult(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new OperationListResult(content); } @@ -98,10 +98,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -116,17 +116,17 @@ internal OperationListResult(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperation[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.OperationTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperation[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.OperationTypeConverter.ConvertFrom)); } if (content.Contains("NextLink")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationListResultInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationListResultInternal)this).NextLink, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -141,11 +141,11 @@ internal OperationListResult(global::System.Management.Automation.PSObject conte // actually deserialize if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperation[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.OperationTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperation[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.OperationTypeConverter.ConvertFrom)); } if (content.Contains("NextLink")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationListResultInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationListResultInternal)this).NextLink, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/OperationListResult.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/OperationListResult.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/OperationListResult.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/OperationListResult.TypeConverter.cs index 21791c3af4a6..e0539e9ac044 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/OperationListResult.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/OperationListResult.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationListResult ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationListResult ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationListResult).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationListResult).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/OperationListResult.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/OperationListResult.cs similarity index 85% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/OperationListResult.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/OperationListResult.cs index c9e22b11a3a6..73433a855cda 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/OperationListResult.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/OperationListResult.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -13,15 +13,15 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class OperationListResult : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationListResult, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationListResultInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationListResult, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationListResultInternal { /// Internal Acessors for NextLink - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationListResultInternal.NextLink { get => this._nextLink; set { {_nextLink = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationListResultInternal.NextLink { get => this._nextLink; set { {_nextLink = value;} } } /// Internal Acessors for Value - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperation[] Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationListResultInternal.Value { get => this._value; set { {_value = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperation[] Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationListResultInternal.Value { get => this._value; set { {_value = value;} } } /// Backing field for property. private string _nextLink; @@ -31,13 +31,13 @@ public partial class OperationListResult : public string NextLink { get => this._nextLink; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperation[] _value; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperation[] _value; /// /// List of ServiceBus operations supported by the Microsoft.ServiceBus resource provider. /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperation[] Value { get => this._value; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperation[] Value { get => this._value; } /// Creates an new instance. public OperationListResult() @@ -66,8 +66,8 @@ public partial interface IOperationListResult : ReadOnly = true, Description = @"List of ServiceBus operations supported by the Microsoft.ServiceBus resource provider.", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperation) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperation[] Value { get; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperation) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperation[] Value { get; } } /// Result of the request to list ServiceBus operations. It contains a list of operations and a URL link to get the next set @@ -80,7 +80,7 @@ internal partial interface IOperationListResultInternal /// /// List of ServiceBus operations supported by the Microsoft.ServiceBus resource provider. /// - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperation[] Value { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperation[] Value { get; set; } } } \ No newline at end of file diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/OperationListResult.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/OperationListResult.json.cs similarity index 92% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/OperationListResult.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/OperationListResult.json.cs index 6c4aff67faa2..93abb86ed35a 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/OperationListResult.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/OperationListResult.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -57,13 +57,13 @@ public partial class OperationListResult partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationListResult. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationListResult. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationListResult. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationListResult. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new OperationListResult(json) : null; } @@ -80,7 +80,7 @@ internal OperationListResult(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runti { return; } - {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperation) (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.Operation.FromJson(__u) )) ))() : null : Value;} + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperation) (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.Operation.FromJson(__u) )) ))() : null : Value;} {_nextLink = If( json?.PropertyT("nextLink"), out var __jsonNextLink) ? (string)__jsonNextLink : (string)NextLink;} AfterFromJson(json); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpoint.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpoint.PowerShell.cs similarity index 85% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpoint.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpoint.PowerShell.cs index e2c122478428..c7401bc3e5fc 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpoint.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpoint.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -63,27 +63,27 @@ public partial class PrivateEndpoint partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpoint DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpoint DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new PrivateEndpoint(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpoint DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpoint DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new PrivateEndpoint(content); } @@ -93,10 +93,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpoint FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpoint FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -111,13 +111,13 @@ internal PrivateEndpoint(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Id")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointInternal)this).Id, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -132,7 +132,7 @@ internal PrivateEndpoint(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("Id")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointInternal)this).Id, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpoint.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpoint.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpoint.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpoint.TypeConverter.cs index 95ca8e1652bb..c49e0b27090b 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpoint.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpoint.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpoint ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpoint ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpoint).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpoint).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpoint.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpoint.cs similarity index 95% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpoint.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpoint.cs index 21a1b1a60268..e7767cfcebaf 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpoint.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpoint.cs @@ -3,15 +3,15 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// PrivateEndpoint information. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class PrivateEndpoint : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpoint, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpoint, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointInternal { /// Backing field for property. diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpoint.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpoint.json.cs similarity index 95% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpoint.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpoint.json.cs index b351ab9604cd..ac79970f266a 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpoint.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpoint.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class PrivateEndpoint partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpoint. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpoint. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpoint. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpoint. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpoint FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpoint FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new PrivateEndpoint(json) : null; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpointConnection.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpointConnection.PowerShell.cs similarity index 54% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpointConnection.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpointConnection.PowerShell.cs index 113136a97e07..55707b4b4a1a 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpointConnection.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpointConnection.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -63,29 +63,29 @@ public partial class PrivateEndpointConnection partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new PrivateEndpointConnection(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new PrivateEndpointConnection(content); } @@ -95,10 +95,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -113,11 +113,11 @@ internal PrivateEndpointConnection(global::System.Collections.IDictionary conten // actually deserialize if (content.Contains("Property")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.PrivateEndpointConnectionPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.PrivateEndpointConnectionPropertiesTypeConverter.ConvertFrom); } if (content.Contains("SystemData")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemDataTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemDataTypeConverter.ConvertFrom); } if (content.Contains("Id")) { @@ -137,57 +137,57 @@ internal PrivateEndpointConnection(global::System.Collections.IDictionary conten } if (content.Contains("PrivateEndpoint")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).PrivateEndpoint = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpoint) content.GetValueForProperty("PrivateEndpoint",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).PrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.PrivateEndpointTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).PrivateEndpoint = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpoint) content.GetValueForProperty("PrivateEndpoint",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).PrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.PrivateEndpointTypeConverter.ConvertFrom); } if (content.Contains("SystemDataCreatedBy")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); } if (content.Contains("SystemDataCreatedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } if (content.Contains("PrivateLinkServiceConnectionState")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).PrivateLinkServiceConnectionState = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IConnectionState) content.GetValueForProperty("PrivateLinkServiceConnectionState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).PrivateLinkServiceConnectionState, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ConnectionStateTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).PrivateLinkServiceConnectionState = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IConnectionState) content.GetValueForProperty("PrivateLinkServiceConnectionState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).PrivateLinkServiceConnectionState, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ConnectionStateTypeConverter.ConvertFrom); } if (content.Contains("ProvisioningState")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EndPointProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EndPointProvisioningState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EndPointProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EndPointProvisioningState.CreateFrom); } if (content.Contains("PrivateEndpointId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).PrivateEndpointId = (string) content.GetValueForProperty("PrivateEndpointId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).PrivateEndpointId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).PrivateEndpointId = (string) content.GetValueForProperty("PrivateEndpointId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).PrivateEndpointId, global::System.Convert.ToString); } if (content.Contains("SystemDataCreatedByType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); } if (content.Contains("SystemDataLastModifiedBy")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); } if (content.Contains("SystemDataLastModifiedByType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); } if (content.Contains("SystemDataLastModifiedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } if (content.Contains("ConnectionState")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).ConnectionState = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PrivateLinkConnectionStatus?) content.GetValueForProperty("ConnectionState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).ConnectionState, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PrivateLinkConnectionStatus.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).ConnectionState = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PrivateLinkConnectionStatus?) content.GetValueForProperty("ConnectionState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).ConnectionState, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PrivateLinkConnectionStatus.CreateFrom); } if (content.Contains("Description")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).Description, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).Description, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -202,11 +202,11 @@ internal PrivateEndpointConnection(global::System.Management.Automation.PSObject // actually deserialize if (content.Contains("Property")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.PrivateEndpointConnectionPropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.PrivateEndpointConnectionPropertiesTypeConverter.ConvertFrom); } if (content.Contains("SystemData")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemDataTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemDataTypeConverter.ConvertFrom); } if (content.Contains("Id")) { @@ -226,51 +226,51 @@ internal PrivateEndpointConnection(global::System.Management.Automation.PSObject } if (content.Contains("PrivateEndpoint")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).PrivateEndpoint = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpoint) content.GetValueForProperty("PrivateEndpoint",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).PrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.PrivateEndpointTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).PrivateEndpoint = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpoint) content.GetValueForProperty("PrivateEndpoint",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).PrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.PrivateEndpointTypeConverter.ConvertFrom); } if (content.Contains("SystemDataCreatedBy")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); } if (content.Contains("SystemDataCreatedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } if (content.Contains("PrivateLinkServiceConnectionState")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).PrivateLinkServiceConnectionState = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IConnectionState) content.GetValueForProperty("PrivateLinkServiceConnectionState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).PrivateLinkServiceConnectionState, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ConnectionStateTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).PrivateLinkServiceConnectionState = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IConnectionState) content.GetValueForProperty("PrivateLinkServiceConnectionState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).PrivateLinkServiceConnectionState, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ConnectionStateTypeConverter.ConvertFrom); } if (content.Contains("ProvisioningState")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EndPointProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EndPointProvisioningState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EndPointProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EndPointProvisioningState.CreateFrom); } if (content.Contains("PrivateEndpointId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).PrivateEndpointId = (string) content.GetValueForProperty("PrivateEndpointId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).PrivateEndpointId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).PrivateEndpointId = (string) content.GetValueForProperty("PrivateEndpointId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).PrivateEndpointId, global::System.Convert.ToString); } if (content.Contains("SystemDataCreatedByType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); } if (content.Contains("SystemDataLastModifiedBy")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); } if (content.Contains("SystemDataLastModifiedByType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); } if (content.Contains("SystemDataLastModifiedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } if (content.Contains("ConnectionState")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).ConnectionState = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PrivateLinkConnectionStatus?) content.GetValueForProperty("ConnectionState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).ConnectionState, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PrivateLinkConnectionStatus.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).ConnectionState = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PrivateLinkConnectionStatus?) content.GetValueForProperty("ConnectionState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).ConnectionState, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PrivateLinkConnectionStatus.CreateFrom); } if (content.Contains("Description")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal)this).Description, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal)this).Description, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpointConnection.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpointConnection.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpointConnection.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpointConnection.TypeConverter.cs index d9c347b8222e..6cd7db333d6d 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpointConnection.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpointConnection.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpointConnection.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpointConnection.cs similarity index 84% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpointConnection.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpointConnection.cs index e84b0dce92fc..5e604f261c38 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpointConnection.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpointConnection.cs @@ -3,15 +3,15 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// Properties of the PrivateEndpointConnection. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class PrivateEndpointConnection : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IValidates { /// @@ -22,11 +22,11 @@ public partial class PrivateEndpointConnection : /// Status of the connection. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PrivateLinkConnectionStatus? ConnectionState { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionPropertiesInternal)Property).PrivateLinkServiceConnectionStateStatus; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionPropertiesInternal)Property).PrivateLinkServiceConnectionStateStatus = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PrivateLinkConnectionStatus)""); } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PrivateLinkConnectionStatus? ConnectionState { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionPropertiesInternal)Property).PrivateLinkServiceConnectionStateStatus; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionPropertiesInternal)Property).PrivateLinkServiceConnectionStateStatus = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PrivateLinkConnectionStatus)""); } /// Description of the connection state. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string Description { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionPropertiesInternal)Property).PrivateLinkServiceConnectionStateDescription; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionPropertiesInternal)Property).PrivateLinkServiceConnectionStateDescription = value ?? null; } + public string Description { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionPropertiesInternal)Property).PrivateLinkServiceConnectionStateDescription; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionPropertiesInternal)Property).PrivateLinkServiceConnectionStateDescription = value ?? null; } /// /// Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} @@ -51,16 +51,16 @@ public partial class PrivateEndpointConnection : string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)__proxyResource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)__proxyResource).Type = value; } /// Internal Acessors for PrivateEndpoint - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpoint Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal.PrivateEndpoint { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionPropertiesInternal)Property).PrivateEndpoint; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionPropertiesInternal)Property).PrivateEndpoint = value; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpoint Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal.PrivateEndpoint { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionPropertiesInternal)Property).PrivateEndpoint; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionPropertiesInternal)Property).PrivateEndpoint = value; } /// Internal Acessors for PrivateLinkServiceConnectionState - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IConnectionState Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal.PrivateLinkServiceConnectionState { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionPropertiesInternal)Property).PrivateLinkServiceConnectionState; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionPropertiesInternal)Property).PrivateLinkServiceConnectionState = value; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IConnectionState Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal.PrivateLinkServiceConnectionState { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionPropertiesInternal)Property).PrivateLinkServiceConnectionState; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionPropertiesInternal)Property).PrivateLinkServiceConnectionState = value; } /// Internal Acessors for Property - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionProperties Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.PrivateEndpointConnectionProperties()); set { {_property = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionProperties Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.PrivateEndpointConnectionProperties()); set { {_property = value;} } } /// Internal Acessors for SystemData - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionInternal.SystemData { get => (this._systemData = this._systemData ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemData()); set { {_systemData = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionInternal.SystemData { get => (this._systemData = this._systemData ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemData()); set { {_systemData = value;} } } /// The name of the resource [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inherited)] @@ -68,18 +68,18 @@ public partial class PrivateEndpointConnection : /// The ARM identifier for Private Endpoint. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string PrivateEndpointId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionPropertiesInternal)Property).PrivateEndpointId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionPropertiesInternal)Property).PrivateEndpointId = value ?? null; } + public string PrivateEndpointId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionPropertiesInternal)Property).PrivateEndpointId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionPropertiesInternal)Property).PrivateEndpointId = value ?? null; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionProperties _property; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionProperties _property; /// Properties of the PrivateEndpointConnection. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.PrivateEndpointConnectionProperties()); set => this._property = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.PrivateEndpointConnectionProperties()); set => this._property = value; } /// Provisioning state of the Private Endpoint Connection. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EndPointProvisioningState? ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionPropertiesInternal)Property).ProvisioningState; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionPropertiesInternal)Property).ProvisioningState = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EndPointProvisioningState)""); } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EndPointProvisioningState? ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionPropertiesInternal)Property).ProvisioningState; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionPropertiesInternal)Property).ProvisioningState = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EndPointProvisioningState)""); } /// Gets the resource group name [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] @@ -236,13 +236,13 @@ internal partial interface IPrivateEndpointConnectionInternal : /// Description of the connection state. string Description { get; set; } /// The Private Endpoint resource for this Connection. - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpoint PrivateEndpoint { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpoint PrivateEndpoint { get; set; } /// The ARM identifier for Private Endpoint. string PrivateEndpointId { get; set; } /// Details about the state of the connection. - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IConnectionState PrivateLinkServiceConnectionState { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IConnectionState PrivateLinkServiceConnectionState { get; set; } /// Properties of the PrivateEndpointConnection. - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionProperties Property { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionProperties Property { get; set; } /// Provisioning state of the Private Endpoint Connection. Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EndPointProvisioningState? ProvisioningState { get; set; } /// The system meta data relating to this resource. diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpointConnection.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpointConnection.json.cs similarity index 94% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpointConnection.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpointConnection.json.cs index aee562ada1cf..b4f81d4c62ef 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpointConnection.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpointConnection.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class PrivateEndpointConnection partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new PrivateEndpointConnection(json) : null; } @@ -78,7 +78,7 @@ internal PrivateEndpointConnection(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus return; } __proxyResource = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ProxyResource(json); - {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.PrivateEndpointConnectionProperties.FromJson(__jsonProperties) : Property;} + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.PrivateEndpointConnectionProperties.FromJson(__jsonProperties) : Property;} {_systemData = If( json?.PropertyT("systemData"), out var __jsonSystemData) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemData.FromJson(__jsonSystemData) : SystemData;} AfterFromJson(json); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpointConnectionListResult.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpointConnectionListResult.PowerShell.cs similarity index 74% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpointConnectionListResult.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpointConnectionListResult.PowerShell.cs index 8e758f288dad..fe03ab68dffb 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpointConnectionListResult.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpointConnectionListResult.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -63,29 +63,29 @@ public partial class PrivateEndpointConnectionListResult partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new PrivateEndpointConnectionListResult(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new PrivateEndpointConnectionListResult(content); } @@ -97,10 +97,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// an instance of the model class. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -115,17 +115,17 @@ internal PrivateEndpointConnectionListResult(global::System.Collections.IDiction // actually deserialize if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.PrivateEndpointConnectionTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.PrivateEndpointConnectionTypeConverter.ConvertFrom)); } if (content.Contains("NextLink")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionListResultInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionListResultInternal)this).NextLink, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -140,11 +140,11 @@ internal PrivateEndpointConnectionListResult(global::System.Management.Automatio // actually deserialize if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.PrivateEndpointConnectionTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.PrivateEndpointConnectionTypeConverter.ConvertFrom)); } if (content.Contains("NextLink")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionListResultInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionListResultInternal)this).NextLink, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpointConnectionListResult.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpointConnectionListResult.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpointConnectionListResult.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpointConnectionListResult.TypeConverter.cs index e5d6f3758a04..b1408c636d18 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpointConnectionListResult.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpointConnectionListResult.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -108,14 +108,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionListResult ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionListResult ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionListResult).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionListResult).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpointConnectionListResult.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpointConnectionListResult.cs similarity index 86% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpointConnectionListResult.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpointConnectionListResult.cs index 73bf63e13eb9..a6d72745c2cd 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpointConnectionListResult.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpointConnectionListResult.cs @@ -3,15 +3,15 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// Result of the list of all private endpoint connections operation. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class PrivateEndpointConnectionListResult : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionListResult, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionListResultInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionListResult, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionListResultInternal { /// Backing field for property. @@ -22,11 +22,11 @@ public partial class PrivateEndpointConnectionListResult : public string NextLink { get => this._nextLink; set => this._nextLink = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection[] _value; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection[] _value; /// A collection of private endpoint connection resources. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection[] Value { get => this._value; set => this._value = value; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection[] Value { get => this._value; set => this._value = value; } /// Creates an new instance. public PrivateEndpointConnectionListResult() @@ -52,8 +52,8 @@ public partial interface IPrivateEndpointConnectionListResult : ReadOnly = false, Description = @"A collection of private endpoint connection resources.", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection[] Value { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection[] Value { get; set; } } /// Result of the list of all private endpoint connections operation. @@ -63,7 +63,7 @@ internal partial interface IPrivateEndpointConnectionListResultInternal /// A link for the next page of private endpoint connection resources. string NextLink { get; set; } /// A collection of private endpoint connection resources. - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection[] Value { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection[] Value { get; set; } } } \ No newline at end of file diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpointConnectionListResult.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpointConnectionListResult.json.cs similarity index 91% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpointConnectionListResult.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpointConnectionListResult.json.cs index f196f52f7b47..1b548059ffd6 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpointConnectionListResult.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpointConnectionListResult.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class PrivateEndpointConnectionListResult partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionListResult. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionListResult. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionListResult. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionListResult. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new PrivateEndpointConnectionListResult(json) : null; } @@ -77,7 +77,7 @@ internal PrivateEndpointConnectionListResult(Microsoft.Azure.PowerShell.Cmdlets. { return; } - {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection) (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.PrivateEndpointConnection.FromJson(__u) )) ))() : null : Value;} + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection) (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.PrivateEndpointConnection.FromJson(__u) )) ))() : null : Value;} {_nextLink = If( json?.PropertyT("nextLink"), out var __jsonNextLink) ? (string)__jsonNextLink : (string)NextLink;} AfterFromJson(json); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpointConnectionProperties.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpointConnectionProperties.PowerShell.cs similarity index 59% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpointConnectionProperties.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpointConnectionProperties.PowerShell.cs index 962c35989a19..36be47815fb3 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpointConnectionProperties.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpointConnectionProperties.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -63,29 +63,29 @@ public partial class PrivateEndpointConnectionProperties partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new PrivateEndpointConnectionProperties(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new PrivateEndpointConnectionProperties(content); } @@ -97,10 +97,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// an instance of the model class. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -115,33 +115,33 @@ internal PrivateEndpointConnectionProperties(global::System.Collections.IDiction // actually deserialize if (content.Contains("PrivateEndpoint")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionPropertiesInternal)this).PrivateEndpoint = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpoint) content.GetValueForProperty("PrivateEndpoint",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionPropertiesInternal)this).PrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.PrivateEndpointTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionPropertiesInternal)this).PrivateEndpoint = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpoint) content.GetValueForProperty("PrivateEndpoint",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionPropertiesInternal)this).PrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.PrivateEndpointTypeConverter.ConvertFrom); } if (content.Contains("PrivateLinkServiceConnectionState")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionPropertiesInternal)this).PrivateLinkServiceConnectionState = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IConnectionState) content.GetValueForProperty("PrivateLinkServiceConnectionState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionPropertiesInternal)this).PrivateLinkServiceConnectionState, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ConnectionStateTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionPropertiesInternal)this).PrivateLinkServiceConnectionState = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IConnectionState) content.GetValueForProperty("PrivateLinkServiceConnectionState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionPropertiesInternal)this).PrivateLinkServiceConnectionState, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ConnectionStateTypeConverter.ConvertFrom); } if (content.Contains("ProvisioningState")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionPropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EndPointProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionPropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EndPointProvisioningState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionPropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EndPointProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionPropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EndPointProvisioningState.CreateFrom); } if (content.Contains("PrivateEndpointId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionPropertiesInternal)this).PrivateEndpointId = (string) content.GetValueForProperty("PrivateEndpointId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionPropertiesInternal)this).PrivateEndpointId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionPropertiesInternal)this).PrivateEndpointId = (string) content.GetValueForProperty("PrivateEndpointId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionPropertiesInternal)this).PrivateEndpointId, global::System.Convert.ToString); } if (content.Contains("PrivateLinkServiceConnectionStateStatus")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionPropertiesInternal)this).PrivateLinkServiceConnectionStateStatus = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PrivateLinkConnectionStatus?) content.GetValueForProperty("PrivateLinkServiceConnectionStateStatus",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionPropertiesInternal)this).PrivateLinkServiceConnectionStateStatus, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PrivateLinkConnectionStatus.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionPropertiesInternal)this).PrivateLinkServiceConnectionStateStatus = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PrivateLinkConnectionStatus?) content.GetValueForProperty("PrivateLinkServiceConnectionStateStatus",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionPropertiesInternal)this).PrivateLinkServiceConnectionStateStatus, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PrivateLinkConnectionStatus.CreateFrom); } if (content.Contains("PrivateLinkServiceConnectionStateDescription")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionPropertiesInternal)this).PrivateLinkServiceConnectionStateDescription = (string) content.GetValueForProperty("PrivateLinkServiceConnectionStateDescription",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionPropertiesInternal)this).PrivateLinkServiceConnectionStateDescription, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionPropertiesInternal)this).PrivateLinkServiceConnectionStateDescription = (string) content.GetValueForProperty("PrivateLinkServiceConnectionStateDescription",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionPropertiesInternal)this).PrivateLinkServiceConnectionStateDescription, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -156,27 +156,27 @@ internal PrivateEndpointConnectionProperties(global::System.Management.Automatio // actually deserialize if (content.Contains("PrivateEndpoint")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionPropertiesInternal)this).PrivateEndpoint = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpoint) content.GetValueForProperty("PrivateEndpoint",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionPropertiesInternal)this).PrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.PrivateEndpointTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionPropertiesInternal)this).PrivateEndpoint = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpoint) content.GetValueForProperty("PrivateEndpoint",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionPropertiesInternal)this).PrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.PrivateEndpointTypeConverter.ConvertFrom); } if (content.Contains("PrivateLinkServiceConnectionState")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionPropertiesInternal)this).PrivateLinkServiceConnectionState = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IConnectionState) content.GetValueForProperty("PrivateLinkServiceConnectionState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionPropertiesInternal)this).PrivateLinkServiceConnectionState, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ConnectionStateTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionPropertiesInternal)this).PrivateLinkServiceConnectionState = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IConnectionState) content.GetValueForProperty("PrivateLinkServiceConnectionState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionPropertiesInternal)this).PrivateLinkServiceConnectionState, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ConnectionStateTypeConverter.ConvertFrom); } if (content.Contains("ProvisioningState")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionPropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EndPointProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionPropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EndPointProvisioningState.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionPropertiesInternal)this).ProvisioningState = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EndPointProvisioningState?) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionPropertiesInternal)this).ProvisioningState, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EndPointProvisioningState.CreateFrom); } if (content.Contains("PrivateEndpointId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionPropertiesInternal)this).PrivateEndpointId = (string) content.GetValueForProperty("PrivateEndpointId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionPropertiesInternal)this).PrivateEndpointId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionPropertiesInternal)this).PrivateEndpointId = (string) content.GetValueForProperty("PrivateEndpointId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionPropertiesInternal)this).PrivateEndpointId, global::System.Convert.ToString); } if (content.Contains("PrivateLinkServiceConnectionStateStatus")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionPropertiesInternal)this).PrivateLinkServiceConnectionStateStatus = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PrivateLinkConnectionStatus?) content.GetValueForProperty("PrivateLinkServiceConnectionStateStatus",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionPropertiesInternal)this).PrivateLinkServiceConnectionStateStatus, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PrivateLinkConnectionStatus.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionPropertiesInternal)this).PrivateLinkServiceConnectionStateStatus = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PrivateLinkConnectionStatus?) content.GetValueForProperty("PrivateLinkServiceConnectionStateStatus",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionPropertiesInternal)this).PrivateLinkServiceConnectionStateStatus, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PrivateLinkConnectionStatus.CreateFrom); } if (content.Contains("PrivateLinkServiceConnectionStateDescription")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionPropertiesInternal)this).PrivateLinkServiceConnectionStateDescription = (string) content.GetValueForProperty("PrivateLinkServiceConnectionStateDescription",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionPropertiesInternal)this).PrivateLinkServiceConnectionStateDescription, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionPropertiesInternal)this).PrivateLinkServiceConnectionStateDescription = (string) content.GetValueForProperty("PrivateLinkServiceConnectionStateDescription",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionPropertiesInternal)this).PrivateLinkServiceConnectionStateDescription, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpointConnectionProperties.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpointConnectionProperties.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpointConnectionProperties.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpointConnectionProperties.TypeConverter.cs index 4e3b689f6400..06b7cfc7d795 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpointConnectionProperties.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpointConnectionProperties.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -108,14 +108,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionProperties ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionProperties ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionProperties).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionProperties).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpointConnectionProperties.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpointConnectionProperties.cs similarity index 72% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpointConnectionProperties.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpointConnectionProperties.cs index 785e4966894a..7be948398111 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpointConnectionProperties.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpointConnectionProperties.cs @@ -3,48 +3,48 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// Properties of the private endpoint connection resource. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class PrivateEndpointConnectionProperties : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionProperties, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionPropertiesInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionProperties, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionPropertiesInternal { /// Internal Acessors for PrivateEndpoint - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpoint Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionPropertiesInternal.PrivateEndpoint { get => (this._privateEndpoint = this._privateEndpoint ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.PrivateEndpoint()); set { {_privateEndpoint = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpoint Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionPropertiesInternal.PrivateEndpoint { get => (this._privateEndpoint = this._privateEndpoint ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.PrivateEndpoint()); set { {_privateEndpoint = value;} } } /// Internal Acessors for PrivateLinkServiceConnectionState - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IConnectionState Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionPropertiesInternal.PrivateLinkServiceConnectionState { get => (this._privateLinkServiceConnectionState = this._privateLinkServiceConnectionState ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ConnectionState()); set { {_privateLinkServiceConnectionState = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IConnectionState Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionPropertiesInternal.PrivateLinkServiceConnectionState { get => (this._privateLinkServiceConnectionState = this._privateLinkServiceConnectionState ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ConnectionState()); set { {_privateLinkServiceConnectionState = value;} } } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpoint _privateEndpoint; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpoint _privateEndpoint; /// The Private Endpoint resource for this Connection. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpoint PrivateEndpoint { get => (this._privateEndpoint = this._privateEndpoint ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.PrivateEndpoint()); set => this._privateEndpoint = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpoint PrivateEndpoint { get => (this._privateEndpoint = this._privateEndpoint ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.PrivateEndpoint()); set => this._privateEndpoint = value; } /// The ARM identifier for Private Endpoint. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string PrivateEndpointId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointInternal)PrivateEndpoint).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointInternal)PrivateEndpoint).Id = value ?? null; } + public string PrivateEndpointId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointInternal)PrivateEndpoint).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointInternal)PrivateEndpoint).Id = value ?? null; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IConnectionState _privateLinkServiceConnectionState; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IConnectionState _privateLinkServiceConnectionState; /// Details about the state of the connection. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IConnectionState PrivateLinkServiceConnectionState { get => (this._privateLinkServiceConnectionState = this._privateLinkServiceConnectionState ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ConnectionState()); set => this._privateLinkServiceConnectionState = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IConnectionState PrivateLinkServiceConnectionState { get => (this._privateLinkServiceConnectionState = this._privateLinkServiceConnectionState ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ConnectionState()); set => this._privateLinkServiceConnectionState = value; } /// Description of the connection state. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string PrivateLinkServiceConnectionStateDescription { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IConnectionStateInternal)PrivateLinkServiceConnectionState).Description; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IConnectionStateInternal)PrivateLinkServiceConnectionState).Description = value ?? null; } + public string PrivateLinkServiceConnectionStateDescription { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IConnectionStateInternal)PrivateLinkServiceConnectionState).Description; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IConnectionStateInternal)PrivateLinkServiceConnectionState).Description = value ?? null; } /// Status of the connection. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PrivateLinkConnectionStatus? PrivateLinkServiceConnectionStateStatus { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IConnectionStateInternal)PrivateLinkServiceConnectionState).Status; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IConnectionStateInternal)PrivateLinkServiceConnectionState).Status = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PrivateLinkConnectionStatus)""); } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PrivateLinkConnectionStatus? PrivateLinkServiceConnectionStateStatus { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IConnectionStateInternal)PrivateLinkServiceConnectionState).Status; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IConnectionStateInternal)PrivateLinkServiceConnectionState).Status = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PrivateLinkConnectionStatus)""); } /// Backing field for property. private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EndPointProvisioningState? _provisioningState; @@ -102,11 +102,11 @@ internal partial interface IPrivateEndpointConnectionPropertiesInternal { /// The Private Endpoint resource for this Connection. - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpoint PrivateEndpoint { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpoint PrivateEndpoint { get; set; } /// The ARM identifier for Private Endpoint. string PrivateEndpointId { get; set; } /// Details about the state of the connection. - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IConnectionState PrivateLinkServiceConnectionState { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IConnectionState PrivateLinkServiceConnectionState { get; set; } /// Description of the connection state. string PrivateLinkServiceConnectionStateDescription { get; set; } /// Status of the connection. diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpointConnectionProperties.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpointConnectionProperties.json.cs similarity index 92% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpointConnectionProperties.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpointConnectionProperties.json.cs index c28cd5827657..cf88d6ae6e66 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateEndpointConnectionProperties.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateEndpointConnectionProperties.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class PrivateEndpointConnectionProperties partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionProperties. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionProperties. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionProperties. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionProperties. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new PrivateEndpointConnectionProperties(json) : null; } @@ -77,8 +77,8 @@ internal PrivateEndpointConnectionProperties(Microsoft.Azure.PowerShell.Cmdlets. { return; } - {_privateEndpoint = If( json?.PropertyT("privateEndpoint"), out var __jsonPrivateEndpoint) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.PrivateEndpoint.FromJson(__jsonPrivateEndpoint) : PrivateEndpoint;} - {_privateLinkServiceConnectionState = If( json?.PropertyT("privateLinkServiceConnectionState"), out var __jsonPrivateLinkServiceConnectionState) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ConnectionState.FromJson(__jsonPrivateLinkServiceConnectionState) : PrivateLinkServiceConnectionState;} + {_privateEndpoint = If( json?.PropertyT("privateEndpoint"), out var __jsonPrivateEndpoint) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.PrivateEndpoint.FromJson(__jsonPrivateEndpoint) : PrivateEndpoint;} + {_privateLinkServiceConnectionState = If( json?.PropertyT("privateLinkServiceConnectionState"), out var __jsonPrivateLinkServiceConnectionState) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ConnectionState.FromJson(__jsonPrivateLinkServiceConnectionState) : PrivateLinkServiceConnectionState;} {_provisioningState = If( json?.PropertyT("provisioningState"), out var __jsonProvisioningState) ? (string)__jsonProvisioningState : (string)ProvisioningState;} AfterFromJson(json); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateLinkResource.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateLinkResource.PowerShell.cs similarity index 64% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateLinkResource.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateLinkResource.PowerShell.cs index ef1c4ad19a88..6c57785ee057 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateLinkResource.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateLinkResource.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -63,29 +63,29 @@ public partial class PrivateLinkResource partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResource DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResource DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new PrivateLinkResource(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResource DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResource DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new PrivateLinkResource(content); } @@ -95,10 +95,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResource FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResource FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -113,37 +113,37 @@ internal PrivateLinkResource(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Property")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourceInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourceProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourceInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.PrivateLinkResourcePropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourceInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourceProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourceInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.PrivateLinkResourcePropertiesTypeConverter.ConvertFrom); } if (content.Contains("Id")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourceInternal)this).Id, global::System.Convert.ToString); } if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourceInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourceInternal)this).Name, global::System.Convert.ToString); } if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourceInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourceInternal)this).Type, global::System.Convert.ToString); } if (content.Contains("GroupId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourceInternal)this).GroupId = (string) content.GetValueForProperty("GroupId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourceInternal)this).GroupId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourceInternal)this).GroupId = (string) content.GetValueForProperty("GroupId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourceInternal)this).GroupId, global::System.Convert.ToString); } if (content.Contains("RequiredMember")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourceInternal)this).RequiredMember = (string[]) content.GetValueForProperty("RequiredMember",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourceInternal)this).RequiredMember, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourceInternal)this).RequiredMember = (string[]) content.GetValueForProperty("RequiredMember",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourceInternal)this).RequiredMember, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); } if (content.Contains("RequiredZoneName")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourceInternal)this).RequiredZoneName = (string[]) content.GetValueForProperty("RequiredZoneName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourceInternal)this).RequiredZoneName, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourceInternal)this).RequiredZoneName = (string[]) content.GetValueForProperty("RequiredZoneName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourceInternal)this).RequiredZoneName, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -158,31 +158,31 @@ internal PrivateLinkResource(global::System.Management.Automation.PSObject conte // actually deserialize if (content.Contains("Property")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourceInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourceProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourceInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.PrivateLinkResourcePropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourceInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourceProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourceInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.PrivateLinkResourcePropertiesTypeConverter.ConvertFrom); } if (content.Contains("Id")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourceInternal)this).Id, global::System.Convert.ToString); } if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourceInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourceInternal)this).Name, global::System.Convert.ToString); } if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourceInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourceInternal)this).Type, global::System.Convert.ToString); } if (content.Contains("GroupId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourceInternal)this).GroupId = (string) content.GetValueForProperty("GroupId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourceInternal)this).GroupId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourceInternal)this).GroupId = (string) content.GetValueForProperty("GroupId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourceInternal)this).GroupId, global::System.Convert.ToString); } if (content.Contains("RequiredMember")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourceInternal)this).RequiredMember = (string[]) content.GetValueForProperty("RequiredMember",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourceInternal)this).RequiredMember, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourceInternal)this).RequiredMember = (string[]) content.GetValueForProperty("RequiredMember",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourceInternal)this).RequiredMember, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); } if (content.Contains("RequiredZoneName")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourceInternal)this).RequiredZoneName = (string[]) content.GetValueForProperty("RequiredZoneName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourceInternal)this).RequiredZoneName, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourceInternal)this).RequiredZoneName = (string[]) content.GetValueForProperty("RequiredZoneName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourceInternal)this).RequiredZoneName, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); } AfterDeserializePSObject(content); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateLinkResource.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateLinkResource.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateLinkResource.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateLinkResource.TypeConverter.cs index bafaf9536697..8ca63215de07 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateLinkResource.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateLinkResource.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResource ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResource ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResource).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResource).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateLinkResource.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateLinkResource.cs similarity index 78% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateLinkResource.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateLinkResource.cs index 209e41604334..7d6b3f213d3e 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateLinkResource.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateLinkResource.cs @@ -3,19 +3,19 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// Information of the private link resource. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class PrivateLinkResource : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResource, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourceInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResource, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourceInternal { [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string GroupId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcePropertiesInternal)Property).GroupId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcePropertiesInternal)Property).GroupId = value ?? null; } + public string GroupId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcePropertiesInternal)Property).GroupId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcePropertiesInternal)Property).GroupId = value ?? null; } /// Backing field for property. private string _id; @@ -25,7 +25,7 @@ public partial class PrivateLinkResource : public string Id { get => this._id; set => this._id = value; } /// Internal Acessors for Property - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourceProperties Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourceInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.PrivateLinkResourceProperties()); set { {_property = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourceProperties Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourceInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.PrivateLinkResourceProperties()); set { {_property = value;} } } /// Backing field for property. private string _name; @@ -35,19 +35,19 @@ public partial class PrivateLinkResource : public string Name { get => this._name; set => this._name = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourceProperties _property; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourceProperties _property; /// Properties of the private link resource. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourceProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.PrivateLinkResourceProperties()); set => this._property = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourceProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.PrivateLinkResourceProperties()); set => this._property = value; } /// Required Members [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string[] RequiredMember { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcePropertiesInternal)Property).RequiredMember; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcePropertiesInternal)Property).RequiredMember = value ?? null /* arrayOf */; } + public string[] RequiredMember { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcePropertiesInternal)Property).RequiredMember; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcePropertiesInternal)Property).RequiredMember = value ?? null /* arrayOf */; } /// Required Zone Names [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string[] RequiredZoneName { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcePropertiesInternal)Property).RequiredZoneName; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcePropertiesInternal)Property).RequiredZoneName = value ?? null /* arrayOf */; } + public string[] RequiredZoneName { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcePropertiesInternal)Property).RequiredZoneName; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcePropertiesInternal)Property).RequiredZoneName = value ?? null /* arrayOf */; } /// Backing field for property. private string _type; @@ -125,7 +125,7 @@ internal partial interface IPrivateLinkResourceInternal /// Name of the resource string Name { get; set; } /// Properties of the private link resource. - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourceProperties Property { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourceProperties Property { get; set; } /// Required Members string[] RequiredMember { get; set; } /// Required Zone Names diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateLinkResource.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateLinkResource.json.cs similarity index 95% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateLinkResource.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateLinkResource.json.cs index da49730a1fa7..0d1a6af3e9a7 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateLinkResource.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateLinkResource.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class PrivateLinkResource partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResource. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResource. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResource. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResource. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResource FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResource FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new PrivateLinkResource(json) : null; } @@ -77,7 +77,7 @@ internal PrivateLinkResource(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runti { return; } - {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.PrivateLinkResourceProperties.FromJson(__jsonProperties) : Property;} + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.PrivateLinkResourceProperties.FromJson(__jsonProperties) : Property;} {_id = If( json?.PropertyT("id"), out var __jsonId) ? (string)__jsonId : (string)Id;} {_name = If( json?.PropertyT("name"), out var __jsonName) ? (string)__jsonName : (string)Name;} {_type = If( json?.PropertyT("type"), out var __jsonType) ? (string)__jsonType : (string)Type;} diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateLinkResourceProperties.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateLinkResourceProperties.PowerShell.cs similarity index 73% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateLinkResourceProperties.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateLinkResourceProperties.PowerShell.cs index d40d5110c4d3..6cc775acf53c 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateLinkResourceProperties.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateLinkResourceProperties.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -63,29 +63,29 @@ public partial class PrivateLinkResourceProperties partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourceProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourceProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new PrivateLinkResourceProperties(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourceProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourceProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new PrivateLinkResourceProperties(content); } @@ -95,10 +95,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourceProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourceProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -113,21 +113,21 @@ internal PrivateLinkResourceProperties(global::System.Collections.IDictionary co // actually deserialize if (content.Contains("GroupId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcePropertiesInternal)this).GroupId = (string) content.GetValueForProperty("GroupId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcePropertiesInternal)this).GroupId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcePropertiesInternal)this).GroupId = (string) content.GetValueForProperty("GroupId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcePropertiesInternal)this).GroupId, global::System.Convert.ToString); } if (content.Contains("RequiredMember")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcePropertiesInternal)this).RequiredMember = (string[]) content.GetValueForProperty("RequiredMember",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcePropertiesInternal)this).RequiredMember, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcePropertiesInternal)this).RequiredMember = (string[]) content.GetValueForProperty("RequiredMember",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcePropertiesInternal)this).RequiredMember, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); } if (content.Contains("RequiredZoneName")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcePropertiesInternal)this).RequiredZoneName = (string[]) content.GetValueForProperty("RequiredZoneName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcePropertiesInternal)this).RequiredZoneName, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcePropertiesInternal)this).RequiredZoneName = (string[]) content.GetValueForProperty("RequiredZoneName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcePropertiesInternal)this).RequiredZoneName, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -142,15 +142,15 @@ internal PrivateLinkResourceProperties(global::System.Management.Automation.PSOb // actually deserialize if (content.Contains("GroupId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcePropertiesInternal)this).GroupId = (string) content.GetValueForProperty("GroupId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcePropertiesInternal)this).GroupId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcePropertiesInternal)this).GroupId = (string) content.GetValueForProperty("GroupId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcePropertiesInternal)this).GroupId, global::System.Convert.ToString); } if (content.Contains("RequiredMember")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcePropertiesInternal)this).RequiredMember = (string[]) content.GetValueForProperty("RequiredMember",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcePropertiesInternal)this).RequiredMember, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcePropertiesInternal)this).RequiredMember = (string[]) content.GetValueForProperty("RequiredMember",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcePropertiesInternal)this).RequiredMember, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); } if (content.Contains("RequiredZoneName")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcePropertiesInternal)this).RequiredZoneName = (string[]) content.GetValueForProperty("RequiredZoneName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcePropertiesInternal)this).RequiredZoneName, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcePropertiesInternal)this).RequiredZoneName = (string[]) content.GetValueForProperty("RequiredZoneName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcePropertiesInternal)this).RequiredZoneName, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); } AfterDeserializePSObject(content); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateLinkResourceProperties.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateLinkResourceProperties.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateLinkResourceProperties.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateLinkResourceProperties.TypeConverter.cs index 33ec85ce7321..90ad6c107cc3 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateLinkResourceProperties.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateLinkResourceProperties.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourceProperties ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourceProperties ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourceProperties).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourceProperties).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateLinkResourceProperties.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateLinkResourceProperties.cs similarity index 96% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateLinkResourceProperties.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateLinkResourceProperties.cs index 495cd948c6fe..9bd0b6c05cee 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateLinkResourceProperties.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateLinkResourceProperties.cs @@ -3,15 +3,15 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// Properties of PrivateLinkResource [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class PrivateLinkResourceProperties : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourceProperties, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcePropertiesInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourceProperties, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcePropertiesInternal { /// Backing field for property. diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateLinkResourceProperties.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateLinkResourceProperties.json.cs similarity index 96% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateLinkResourceProperties.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateLinkResourceProperties.json.cs index 308fbbb864d6..01ea92c88ca7 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateLinkResourceProperties.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateLinkResourceProperties.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class PrivateLinkResourceProperties partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourceProperties. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourceProperties. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourceProperties. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourceProperties. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourceProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourceProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new PrivateLinkResourceProperties(json) : null; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateLinkResourcesListResult.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateLinkResourcesListResult.PowerShell.cs similarity index 74% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateLinkResourcesListResult.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateLinkResourcesListResult.PowerShell.cs index b0b9d82d084e..c91876f9e526 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateLinkResourcesListResult.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateLinkResourcesListResult.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -63,29 +63,29 @@ public partial class PrivateLinkResourcesListResult partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcesListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcesListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new PrivateLinkResourcesListResult(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcesListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcesListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new PrivateLinkResourcesListResult(content); } @@ -95,10 +95,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcesListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcesListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -113,17 +113,17 @@ internal PrivateLinkResourcesListResult(global::System.Collections.IDictionary c // actually deserialize if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcesListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResource[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcesListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.PrivateLinkResourceTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcesListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResource[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcesListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.PrivateLinkResourceTypeConverter.ConvertFrom)); } if (content.Contains("NextLink")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcesListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcesListResultInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcesListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcesListResultInternal)this).NextLink, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -138,11 +138,11 @@ internal PrivateLinkResourcesListResult(global::System.Management.Automation.PSO // actually deserialize if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcesListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResource[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcesListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.PrivateLinkResourceTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcesListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResource[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcesListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.PrivateLinkResourceTypeConverter.ConvertFrom)); } if (content.Contains("NextLink")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcesListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcesListResultInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcesListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcesListResultInternal)this).NextLink, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateLinkResourcesListResult.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateLinkResourcesListResult.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateLinkResourcesListResult.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateLinkResourcesListResult.TypeConverter.cs index d49097de0bf0..2ad30c284477 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateLinkResourcesListResult.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateLinkResourcesListResult.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -107,14 +107,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcesListResult ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcesListResult ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcesListResult).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcesListResult).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateLinkResourcesListResult.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateLinkResourcesListResult.cs similarity index 87% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateLinkResourcesListResult.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateLinkResourcesListResult.cs index 5f69d2aa79e4..dbb903844024 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateLinkResourcesListResult.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateLinkResourcesListResult.cs @@ -3,15 +3,15 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// Result of the List private link resources operation. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class PrivateLinkResourcesListResult : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcesListResult, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcesListResultInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcesListResult, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcesListResultInternal { /// Backing field for property. @@ -22,11 +22,11 @@ public partial class PrivateLinkResourcesListResult : public string NextLink { get => this._nextLink; set => this._nextLink = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResource[] _value; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResource[] _value; /// A collection of private link resources [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResource[] Value { get => this._value; set => this._value = value; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResource[] Value { get => this._value; set => this._value = value; } /// Creates an new instance. public PrivateLinkResourcesListResult() @@ -52,8 +52,8 @@ public partial interface IPrivateLinkResourcesListResult : ReadOnly = false, Description = @"A collection of private link resources", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResource) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResource[] Value { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResource) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResource[] Value { get; set; } } /// Result of the List private link resources operation. @@ -63,7 +63,7 @@ internal partial interface IPrivateLinkResourcesListResultInternal /// A link for the next page of private link resources. string NextLink { get; set; } /// A collection of private link resources - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResource[] Value { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResource[] Value { get; set; } } } \ No newline at end of file diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateLinkResourcesListResult.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateLinkResourcesListResult.json.cs similarity index 91% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateLinkResourcesListResult.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateLinkResourcesListResult.json.cs index ec0f84568633..c342da42f399 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/PrivateLinkResourcesListResult.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/PrivateLinkResourcesListResult.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class PrivateLinkResourcesListResult partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcesListResult. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcesListResult. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcesListResult. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcesListResult. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcesListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcesListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new PrivateLinkResourcesListResult(json) : null; } @@ -77,7 +77,7 @@ internal PrivateLinkResourcesListResult(Microsoft.Azure.PowerShell.Cmdlets.Servi { return; } - {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResource) (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.PrivateLinkResource.FromJson(__u) )) ))() : null : Value;} + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResource) (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.PrivateLinkResource.FromJson(__u) )) ))() : null : Value;} {_nextLink = If( json?.PropertyT("nextLink"), out var __jsonNextLink) ? (string)__jsonNextLink : (string)NextLink;} AfterFromJson(json); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/RegenerateAccessKeyParameters.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/RegenerateAccessKeyParameters.PowerShell.cs similarity index 78% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/RegenerateAccessKeyParameters.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/RegenerateAccessKeyParameters.PowerShell.cs index fc7bf5da030f..dfb28b3ebfc4 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/RegenerateAccessKeyParameters.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/RegenerateAccessKeyParameters.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -65,29 +65,29 @@ public partial class RegenerateAccessKeyParameters partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParameters DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParameters DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new RegenerateAccessKeyParameters(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParameters DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParameters DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new RegenerateAccessKeyParameters(content); } @@ -97,10 +97,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParameters FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParameters FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -115,17 +115,17 @@ internal RegenerateAccessKeyParameters(global::System.Collections.IDictionary co // actually deserialize if (content.Contains("KeyType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParametersInternal)this).KeyType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeyType) content.GetValueForProperty("KeyType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParametersInternal)this).KeyType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeyType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParametersInternal)this).KeyType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeyType) content.GetValueForProperty("KeyType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParametersInternal)this).KeyType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeyType.CreateFrom); } if (content.Contains("Key")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParametersInternal)this).Key = (string) content.GetValueForProperty("Key",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParametersInternal)this).Key, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParametersInternal)this).Key = (string) content.GetValueForProperty("Key",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParametersInternal)this).Key, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -140,11 +140,11 @@ internal RegenerateAccessKeyParameters(global::System.Management.Automation.PSOb // actually deserialize if (content.Contains("KeyType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParametersInternal)this).KeyType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeyType) content.GetValueForProperty("KeyType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParametersInternal)this).KeyType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeyType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParametersInternal)this).KeyType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeyType) content.GetValueForProperty("KeyType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParametersInternal)this).KeyType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeyType.CreateFrom); } if (content.Contains("Key")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParametersInternal)this).Key = (string) content.GetValueForProperty("Key",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParametersInternal)this).Key, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParametersInternal)this).Key = (string) content.GetValueForProperty("Key",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParametersInternal)this).Key, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/RegenerateAccessKeyParameters.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/RegenerateAccessKeyParameters.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/RegenerateAccessKeyParameters.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/RegenerateAccessKeyParameters.TypeConverter.cs index 35f2c81c2383..d06b161c8a67 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/RegenerateAccessKeyParameters.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/RegenerateAccessKeyParameters.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParameters ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParameters ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParameters).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParameters).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/RegenerateAccessKeyParameters.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/RegenerateAccessKeyParameters.cs similarity index 96% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/RegenerateAccessKeyParameters.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/RegenerateAccessKeyParameters.cs index ebb2b18f2cbc..364c67ab4fb6 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/RegenerateAccessKeyParameters.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/RegenerateAccessKeyParameters.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -12,8 +12,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class RegenerateAccessKeyParameters : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParameters, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParametersInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParameters, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParametersInternal { /// Backing field for property. diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/RegenerateAccessKeyParameters.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/RegenerateAccessKeyParameters.json.cs similarity index 95% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/RegenerateAccessKeyParameters.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/RegenerateAccessKeyParameters.json.cs index d1b642031920..27f1ae36a940 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/RegenerateAccessKeyParameters.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/RegenerateAccessKeyParameters.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -56,13 +56,13 @@ public partial class RegenerateAccessKeyParameters partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParameters. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParameters. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParameters. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParameters. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParameters FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParameters FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new RegenerateAccessKeyParameters(json) : null; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ResourceNamespacePatch.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ResourceNamespacePatch.PowerShell.cs similarity index 81% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ResourceNamespacePatch.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ResourceNamespacePatch.PowerShell.cs index 256acb152049..5e04aa060bed 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ResourceNamespacePatch.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ResourceNamespacePatch.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -63,29 +63,29 @@ public partial class ResourceNamespacePatch partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatch DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatch DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new ResourceNamespacePatch(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatch DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatch DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new ResourceNamespacePatch(content); } @@ -95,10 +95,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatch FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatch FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -113,11 +113,11 @@ internal ResourceNamespacePatch(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Location")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatchInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatchInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatchInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatchInternal)this).Location, global::System.Convert.ToString); } if (content.Contains("Tag")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatchInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatchTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatchInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ResourceNamespacePatchTagsTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatchInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatchTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatchInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ResourceNamespacePatchTagsTypeConverter.ConvertFrom); } if (content.Contains("Id")) { @@ -135,7 +135,7 @@ internal ResourceNamespacePatch(global::System.Collections.IDictionary content) } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -150,11 +150,11 @@ internal ResourceNamespacePatch(global::System.Management.Automation.PSObject co // actually deserialize if (content.Contains("Location")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatchInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatchInternal)this).Location, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatchInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatchInternal)this).Location, global::System.Convert.ToString); } if (content.Contains("Tag")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatchInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatchTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatchInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ResourceNamespacePatchTagsTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatchInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatchTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatchInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ResourceNamespacePatchTagsTypeConverter.ConvertFrom); } if (content.Contains("Id")) { diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ResourceNamespacePatch.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ResourceNamespacePatch.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ResourceNamespacePatch.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ResourceNamespacePatch.TypeConverter.cs index 765bf3055792..43665c33721b 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ResourceNamespacePatch.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ResourceNamespacePatch.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatch ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatch ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatch).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatch).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ResourceNamespacePatch.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ResourceNamespacePatch.cs similarity index 91% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ResourceNamespacePatch.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ResourceNamespacePatch.cs index ae0c1353f6a5..9b0831dc0575 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ResourceNamespacePatch.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ResourceNamespacePatch.cs @@ -3,15 +3,15 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// The Resource definition. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class ResourceNamespacePatch : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatch, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatchInternal, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatch, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatchInternal, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IValidates { /// @@ -44,11 +44,11 @@ public partial class ResourceNamespacePatch : public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)__resource).Name; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatchTags _tag; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatchTags _tag; /// Resource tags [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatchTags Tag { get => (this._tag = this._tag ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ResourceNamespacePatchTags()); set => this._tag = value; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatchTags Tag { get => (this._tag = this._tag ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ResourceNamespacePatchTags()); set => this._tag = value; } /// Resource type [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inherited)] @@ -91,8 +91,8 @@ public partial interface IResourceNamespacePatch : ReadOnly = false, Description = @"Resource tags", SerializedName = @"tags", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatchTags) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatchTags Tag { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatchTags) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatchTags Tag { get; set; } } /// The Resource definition. @@ -102,7 +102,7 @@ internal partial interface IResourceNamespacePatchInternal : /// Resource location string Location { get; set; } /// Resource tags - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatchTags Tag { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatchTags Tag { get; set; } } } \ No newline at end of file diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ResourceNamespacePatch.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ResourceNamespacePatch.json.cs similarity index 94% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ResourceNamespacePatch.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ResourceNamespacePatch.json.cs index a63ff899d8eb..c06d9e17173e 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ResourceNamespacePatch.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ResourceNamespacePatch.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class ResourceNamespacePatch partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatch. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatch. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatch. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatch. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatch FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatch FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new ResourceNamespacePatch(json) : null; } @@ -79,7 +79,7 @@ internal ResourceNamespacePatch(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Ru } __resource = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.Resource(json); {_location = If( json?.PropertyT("location"), out var __jsonLocation) ? (string)__jsonLocation : (string)Location;} - {_tag = If( json?.PropertyT("tags"), out var __jsonTags) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ResourceNamespacePatchTags.FromJson(__jsonTags) : Tag;} + {_tag = If( json?.PropertyT("tags"), out var __jsonTags) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ResourceNamespacePatchTags.FromJson(__jsonTags) : Tag;} AfterFromJson(json); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ResourceNamespacePatchTags.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ResourceNamespacePatchTags.PowerShell.cs similarity index 88% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ResourceNamespacePatchTags.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ResourceNamespacePatchTags.PowerShell.cs index 3f74a559e111..f0b270c3fe4d 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ResourceNamespacePatchTags.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ResourceNamespacePatchTags.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -63,29 +63,29 @@ public partial class ResourceNamespacePatchTags partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatchTags DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatchTags DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new ResourceNamespacePatchTags(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatchTags DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatchTags DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new ResourceNamespacePatchTags(content); } @@ -95,10 +95,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatchTags FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatchTags FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -117,7 +117,7 @@ internal ResourceNamespacePatchTags(global::System.Collections.IDictionary conte } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ResourceNamespacePatchTags.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ResourceNamespacePatchTags.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ResourceNamespacePatchTags.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ResourceNamespacePatchTags.TypeConverter.cs index 282e9416ea3f..2ade70124dc0 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ResourceNamespacePatchTags.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ResourceNamespacePatchTags.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatchTags ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatchTags ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatchTags).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatchTags).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ResourceNamespacePatchTags.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ResourceNamespacePatchTags.cs similarity index 91% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ResourceNamespacePatchTags.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ResourceNamespacePatchTags.cs index ef75176da80d..d7a5d74397b0 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ResourceNamespacePatchTags.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ResourceNamespacePatchTags.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// Resource tags public partial class ResourceNamespacePatchTags : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatchTags, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatchTagsInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatchTags, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatchTagsInternal { /// Creates an new instance. diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ResourceNamespacePatchTags.dictionary.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ResourceNamespacePatchTags.dictionary.cs similarity index 96% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ResourceNamespacePatchTags.dictionary.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ResourceNamespacePatchTags.dictionary.cs index ebe353d35c6c..d5992701dc9e 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ResourceNamespacePatchTags.dictionary.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ResourceNamespacePatchTags.dictionary.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -70,6 +70,6 @@ public void CopyFrom(global::System.Management.Automation.PSObject source) /// - public static implicit operator global::System.Collections.Generic.Dictionary(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ResourceNamespacePatchTags source) => source.__additionalProperties; + public static implicit operator global::System.Collections.Generic.Dictionary(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ResourceNamespacePatchTags source) => source.__additionalProperties; } } \ No newline at end of file diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ResourceNamespacePatchTags.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ResourceNamespacePatchTags.json.cs similarity index 95% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ResourceNamespacePatchTags.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ResourceNamespacePatchTags.json.cs index b5e48b5dae77..56c1c2d0b569 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/ResourceNamespacePatchTags.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/ResourceNamespacePatchTags.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class ResourceNamespacePatchTags partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatchTags. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatchTags. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatchTags. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatchTags. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatchTags FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatchTags FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new ResourceNamespacePatchTags(json) : null; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Rule.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Rule.PowerShell.cs new file mode 100644 index 000000000000..db5010e33f24 --- /dev/null +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Rule.PowerShell.cs @@ -0,0 +1,412 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; + + /// Description of Rule Resource. + [System.ComponentModel.TypeConverter(typeof(RuleTypeConverter))] + public partial class Rule + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior + /// + /// /// instance serialized to a string, normally it is a Json + /// /// set returnNow to true if you provide a customized OverrideToString function + + partial void OverrideToString(ref string stringResult, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new Rule(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new Rule(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal Rule(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Property")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleproperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.RulepropertiesTypeConverter.ConvertFrom); + } + if (content.Contains("SystemData")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemDataTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Type, global::System.Convert.ToString); + } + if (content.Contains("Location")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Location, global::System.Convert.ToString); + } + if (content.Contains("Action")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).Action = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAction) content.GetValueForProperty("Action",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).Action, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ActionTypeConverter.ConvertFrom); + } + if (content.Contains("SqlFilter")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SqlFilter = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlFilter) content.GetValueForProperty("SqlFilter",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SqlFilter, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SqlFilterTypeConverter.ConvertFrom); + } + if (content.Contains("CorrelationFilter")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).CorrelationFilter = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilter) content.GetValueForProperty("CorrelationFilter",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).CorrelationFilter, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.CorrelationFilterTypeConverter.ConvertFrom); + } + if (content.Contains("FilterType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).FilterType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.FilterType?) content.GetValueForProperty("FilterType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).FilterType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.FilterType.CreateFrom); + } + if (content.Contains("SystemDataCreatedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("ActionSqlExpression")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).ActionSqlExpression = (string) content.GetValueForProperty("ActionSqlExpression",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).ActionSqlExpression, global::System.Convert.ToString); + } + if (content.Contains("ActionCompatibilityLevel")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).ActionCompatibilityLevel = (int?) content.GetValueForProperty("ActionCompatibilityLevel",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).ActionCompatibilityLevel, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + } + if (content.Contains("SqlExpression")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SqlExpression = (string) content.GetValueForProperty("SqlExpression",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SqlExpression, global::System.Convert.ToString); + } + if (content.Contains("SqlFilterCompatibilityLevel")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SqlFilterCompatibilityLevel = (int?) content.GetValueForProperty("SqlFilterCompatibilityLevel",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SqlFilterCompatibilityLevel, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + } + if (content.Contains("CorrelationFilterProperty")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).CorrelationFilterProperty = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterProperties) content.GetValueForProperty("CorrelationFilterProperty",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).CorrelationFilterProperty, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.CorrelationFilterPropertiesTypeConverter.ConvertFrom); + } + if (content.Contains("CorrelationId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).CorrelationId = (string) content.GetValueForProperty("CorrelationId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).CorrelationId, global::System.Convert.ToString); + } + if (content.Contains("MessageId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).MessageId = (string) content.GetValueForProperty("MessageId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).MessageId, global::System.Convert.ToString); + } + if (content.Contains("To")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).To = (string) content.GetValueForProperty("To",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).To, global::System.Convert.ToString); + } + if (content.Contains("ReplyTo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).ReplyTo = (string) content.GetValueForProperty("ReplyTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).ReplyTo, global::System.Convert.ToString); + } + if (content.Contains("Label")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).Label = (string) content.GetValueForProperty("Label",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).Label, global::System.Convert.ToString); + } + if (content.Contains("SessionId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SessionId = (string) content.GetValueForProperty("SessionId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SessionId, global::System.Convert.ToString); + } + if (content.Contains("ContentType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).ContentType = (string) content.GetValueForProperty("ContentType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).ContentType, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("ActionRequiresPreprocessing")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).ActionRequiresPreprocessing = (bool?) content.GetValueForProperty("ActionRequiresPreprocessing",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).ActionRequiresPreprocessing, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("SqlFilterRequiresPreprocessing")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SqlFilterRequiresPreprocessing = (bool?) content.GetValueForProperty("SqlFilterRequiresPreprocessing",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SqlFilterRequiresPreprocessing, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("ReplyToSessionId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).ReplyToSessionId = (string) content.GetValueForProperty("ReplyToSessionId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).ReplyToSessionId, global::System.Convert.ToString); + } + if (content.Contains("CorrelationFilterRequiresPreprocessing")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).CorrelationFilterRequiresPreprocessing = (bool?) content.GetValueForProperty("CorrelationFilterRequiresPreprocessing",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).CorrelationFilterRequiresPreprocessing, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal Rule(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Property")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleproperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.RulepropertiesTypeConverter.ConvertFrom); + } + if (content.Contains("SystemData")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemDataTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Type, global::System.Convert.ToString); + } + if (content.Contains("Location")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Location, global::System.Convert.ToString); + } + if (content.Contains("Action")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).Action = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAction) content.GetValueForProperty("Action",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).Action, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ActionTypeConverter.ConvertFrom); + } + if (content.Contains("SqlFilter")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SqlFilter = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlFilter) content.GetValueForProperty("SqlFilter",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SqlFilter, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SqlFilterTypeConverter.ConvertFrom); + } + if (content.Contains("CorrelationFilter")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).CorrelationFilter = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilter) content.GetValueForProperty("CorrelationFilter",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).CorrelationFilter, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.CorrelationFilterTypeConverter.ConvertFrom); + } + if (content.Contains("FilterType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).FilterType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.FilterType?) content.GetValueForProperty("FilterType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).FilterType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.FilterType.CreateFrom); + } + if (content.Contains("SystemDataCreatedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("ActionSqlExpression")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).ActionSqlExpression = (string) content.GetValueForProperty("ActionSqlExpression",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).ActionSqlExpression, global::System.Convert.ToString); + } + if (content.Contains("ActionCompatibilityLevel")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).ActionCompatibilityLevel = (int?) content.GetValueForProperty("ActionCompatibilityLevel",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).ActionCompatibilityLevel, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + } + if (content.Contains("SqlExpression")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SqlExpression = (string) content.GetValueForProperty("SqlExpression",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SqlExpression, global::System.Convert.ToString); + } + if (content.Contains("SqlFilterCompatibilityLevel")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SqlFilterCompatibilityLevel = (int?) content.GetValueForProperty("SqlFilterCompatibilityLevel",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SqlFilterCompatibilityLevel, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + } + if (content.Contains("CorrelationFilterProperty")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).CorrelationFilterProperty = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterProperties) content.GetValueForProperty("CorrelationFilterProperty",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).CorrelationFilterProperty, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.CorrelationFilterPropertiesTypeConverter.ConvertFrom); + } + if (content.Contains("CorrelationId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).CorrelationId = (string) content.GetValueForProperty("CorrelationId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).CorrelationId, global::System.Convert.ToString); + } + if (content.Contains("MessageId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).MessageId = (string) content.GetValueForProperty("MessageId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).MessageId, global::System.Convert.ToString); + } + if (content.Contains("To")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).To = (string) content.GetValueForProperty("To",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).To, global::System.Convert.ToString); + } + if (content.Contains("ReplyTo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).ReplyTo = (string) content.GetValueForProperty("ReplyTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).ReplyTo, global::System.Convert.ToString); + } + if (content.Contains("Label")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).Label = (string) content.GetValueForProperty("Label",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).Label, global::System.Convert.ToString); + } + if (content.Contains("SessionId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SessionId = (string) content.GetValueForProperty("SessionId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SessionId, global::System.Convert.ToString); + } + if (content.Contains("ContentType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).ContentType = (string) content.GetValueForProperty("ContentType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).ContentType, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("ActionRequiresPreprocessing")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).ActionRequiresPreprocessing = (bool?) content.GetValueForProperty("ActionRequiresPreprocessing",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).ActionRequiresPreprocessing, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("SqlFilterRequiresPreprocessing")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SqlFilterRequiresPreprocessing = (bool?) content.GetValueForProperty("SqlFilterRequiresPreprocessing",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).SqlFilterRequiresPreprocessing, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("ReplyToSessionId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).ReplyToSessionId = (string) content.GetValueForProperty("ReplyToSessionId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).ReplyToSessionId, global::System.Convert.ToString); + } + if (content.Contains("CorrelationFilterRequiresPreprocessing")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).CorrelationFilterRequiresPreprocessing = (bool?) content.GetValueForProperty("CorrelationFilterRequiresPreprocessing",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal)this).CorrelationFilterRequiresPreprocessing, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.SerializationMode.IncludeAll)?.ToString(); + + public override string ToString() + { + var returnNow = false; + var result = global::System.String.Empty; + OverrideToString(ref result, ref returnNow); + if (returnNow) + { + return result; + } + return ToJsonString(); + } + } + /// Description of Rule Resource. + [System.ComponentModel.TypeConverter(typeof(RuleTypeConverter))] + public partial interface IRule + + { + + } +} \ No newline at end of file diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Rule.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Rule.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Rule.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Rule.TypeConverter.cs index d4ba3bfb77e2..6c9e4f84c946 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Rule.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Rule.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -105,14 +105,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Rule.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Rule.cs similarity index 80% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Rule.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Rule.cs index 997fa22baa0e..85d538bd010e 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Rule.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Rule.cs @@ -3,15 +3,15 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// Description of Rule Resource. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class Rule : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IValidates { /// @@ -24,35 +24,35 @@ public partial class Rule : /// This property is reserved for future use. An integer value showing the compatibility level, currently hard-coded to 20. /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public int? ActionCompatibilityLevel { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)Property).ActionCompatibilityLevel; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)Property).ActionCompatibilityLevel = value ?? default(int); } + public int? ActionCompatibilityLevel { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)Property).ActionCompatibilityLevel; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)Property).ActionCompatibilityLevel = value ?? default(int); } /// Value that indicates whether the rule action requires preprocessing. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public bool? ActionRequiresPreprocessing { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)Property).ActionRequiresPreprocessing; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)Property).ActionRequiresPreprocessing = value ?? default(bool); } + public bool? ActionRequiresPreprocessing { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)Property).ActionRequiresPreprocessing; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)Property).ActionRequiresPreprocessing = value ?? default(bool); } /// SQL expression. e.g. MyProperty='ABC' [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string ActionSqlExpression { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)Property).ActionSqlExpression; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)Property).ActionSqlExpression = value ?? null; } + public string ActionSqlExpression { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)Property).ActionSqlExpression; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)Property).ActionSqlExpression = value ?? null; } /// Content type of the message. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string ContentType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)Property).CorrelationFilterContentType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)Property).CorrelationFilterContentType = value ?? null; } + public string ContentType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)Property).CorrelationFilterContentType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)Property).CorrelationFilterContentType = value ?? null; } /// dictionary object for custom filters [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterProperties CorrelationFilterProperty { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)Property).CorrelationFilterProperty; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)Property).CorrelationFilterProperty = value ?? null /* model class */; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterProperties CorrelationFilterProperty { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)Property).CorrelationFilterProperty; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)Property).CorrelationFilterProperty = value ?? null /* model class */; } /// Value that indicates whether the rule action requires preprocessing. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public bool? CorrelationFilterRequiresPreprocessing { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)Property).CorrelationFilterRequiresPreprocessing; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)Property).CorrelationFilterRequiresPreprocessing = value ?? default(bool); } + public bool? CorrelationFilterRequiresPreprocessing { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)Property).CorrelationFilterRequiresPreprocessing; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)Property).CorrelationFilterRequiresPreprocessing = value ?? default(bool); } /// Identifier of the correlation. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string CorrelationId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)Property).CorrelationFilterCorrelationId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)Property).CorrelationFilterCorrelationId = value ?? null; } + public string CorrelationId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)Property).CorrelationFilterCorrelationId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)Property).CorrelationFilterCorrelationId = value ?? null; } /// Filter type that is evaluated against a BrokeredMessage. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.FilterType? FilterType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)Property).FilterType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)Property).FilterType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.FilterType)""); } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.FilterType? FilterType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)Property).FilterType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)Property).FilterType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.FilterType)""); } /// /// Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} @@ -62,7 +62,7 @@ public partial class Rule : /// Application specific label. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string Label { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)Property).CorrelationFilterLabel; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)Property).CorrelationFilterLabel = value ?? null; } + public string Label { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)Property).CorrelationFilterLabel; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)Property).CorrelationFilterLabel = value ?? null; } /// The geo-location where the resource lives [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inherited)] @@ -70,7 +70,7 @@ public partial class Rule : /// Identifier of the message. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string MessageId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)Property).CorrelationFilterMessageId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)Property).CorrelationFilterMessageId = value ?? null; } + public string MessageId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)Property).CorrelationFilterMessageId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)Property).CorrelationFilterMessageId = value ?? null; } /// Internal Acessors for Id string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)__proxyResource).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)__proxyResource).Id = value; } @@ -85,38 +85,38 @@ public partial class Rule : string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)__proxyResource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)__proxyResource).Type = value; } /// Internal Acessors for Action - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAction Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal.Action { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)Property).Action; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)Property).Action = value; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAction Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal.Action { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)Property).Action; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)Property).Action = value; } /// Internal Acessors for CorrelationFilter - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilter Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal.CorrelationFilter { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)Property).CorrelationFilter; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)Property).CorrelationFilter = value; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilter Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal.CorrelationFilter { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)Property).CorrelationFilter; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)Property).CorrelationFilter = value; } /// Internal Acessors for Property - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleproperties Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.Ruleproperties()); set { {_property = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleproperties Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.Ruleproperties()); set { {_property = value;} } } /// Internal Acessors for SqlFilter - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlFilter Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal.SqlFilter { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)Property).SqlFilter; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)Property).SqlFilter = value; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlFilter Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal.SqlFilter { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)Property).SqlFilter; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)Property).SqlFilter = value; } /// Internal Acessors for SystemData - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleInternal.SystemData { get => (this._systemData = this._systemData ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemData()); set { {_systemData = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleInternal.SystemData { get => (this._systemData = this._systemData ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemData()); set { {_systemData = value;} } } /// The name of the resource [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inherited)] public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)__proxyResource).Name; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleproperties _property; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleproperties _property; /// Properties of Rule resource [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleproperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.Ruleproperties()); set => this._property = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleproperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.Ruleproperties()); set => this._property = value; } /// Address of the queue to reply to. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string ReplyTo { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)Property).CorrelationFilterReplyTo; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)Property).CorrelationFilterReplyTo = value ?? null; } + public string ReplyTo { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)Property).CorrelationFilterReplyTo; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)Property).CorrelationFilterReplyTo = value ?? null; } /// Session identifier to reply to. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string ReplyToSessionId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)Property).CorrelationFilterReplyToSessionId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)Property).CorrelationFilterReplyToSessionId = value ?? null; } + public string ReplyToSessionId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)Property).CorrelationFilterReplyToSessionId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)Property).CorrelationFilterReplyToSessionId = value ?? null; } /// Gets the resource group name [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] @@ -124,21 +124,21 @@ public partial class Rule : /// Session identifier. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string SessionId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)Property).CorrelationFilterSessionId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)Property).CorrelationFilterSessionId = value ?? null; } + public string SessionId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)Property).CorrelationFilterSessionId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)Property).CorrelationFilterSessionId = value ?? null; } /// The SQL expression. e.g. MyProperty='ABC' [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string SqlExpression { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)Property).SqlFilterSqlExpression; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)Property).SqlFilterSqlExpression = value ?? null; } + public string SqlExpression { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)Property).SqlFilterSqlExpression; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)Property).SqlFilterSqlExpression = value ?? null; } /// /// This property is reserved for future use. An integer value showing the compatibility level, currently hard-coded to 20. /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public int? SqlFilterCompatibilityLevel { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)Property).SqlFilterCompatibilityLevel; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)Property).SqlFilterCompatibilityLevel = value ?? default(int); } + public int? SqlFilterCompatibilityLevel { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)Property).SqlFilterCompatibilityLevel; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)Property).SqlFilterCompatibilityLevel = value ?? default(int); } /// Value that indicates whether the rule action requires preprocessing. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public bool? SqlFilterRequiresPreprocessing { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)Property).SqlFilterRequiresPreprocessing; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)Property).SqlFilterRequiresPreprocessing = value ?? default(bool); } + public bool? SqlFilterRequiresPreprocessing { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)Property).SqlFilterRequiresPreprocessing; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)Property).SqlFilterRequiresPreprocessing = value ?? default(bool); } /// Backing field for property. private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData _systemData; @@ -173,7 +173,7 @@ public partial class Rule : /// Address to send to. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string To { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)Property).CorrelationFilterTo; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal)Property).CorrelationFilterTo = value ?? null; } + public string To { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)Property).CorrelationFilterTo; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)Property).CorrelationFilterTo = value ?? null; } /// /// The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs" @@ -244,8 +244,8 @@ public partial interface IRule : ReadOnly = false, Description = @"dictionary object for custom filters", SerializedName = @"properties", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterProperties) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterProperties CorrelationFilterProperty { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterProperties) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterProperties CorrelationFilterProperty { get; set; } /// Value that indicates whether the rule action requires preprocessing. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Info( Required = false, @@ -402,7 +402,7 @@ internal partial interface IRuleInternal : /// Represents the filter actions which are allowed for the transformation of a message that have been matched by a filter /// expression. /// - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAction Action { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAction Action { get; set; } /// /// This property is reserved for future use. An integer value showing the compatibility level, currently hard-coded to 20. /// @@ -414,9 +414,9 @@ internal partial interface IRuleInternal : /// Content type of the message. string ContentType { get; set; } /// Properties of correlationFilter - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilter CorrelationFilter { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilter CorrelationFilter { get; set; } /// dictionary object for custom filters - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterProperties CorrelationFilterProperty { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterProperties CorrelationFilterProperty { get; set; } /// Value that indicates whether the rule action requires preprocessing. bool? CorrelationFilterRequiresPreprocessing { get; set; } /// Identifier of the correlation. @@ -428,7 +428,7 @@ internal partial interface IRuleInternal : /// Identifier of the message. string MessageId { get; set; } /// Properties of Rule resource - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleproperties Property { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleproperties Property { get; set; } /// Address of the queue to reply to. string ReplyTo { get; set; } /// Session identifier to reply to. @@ -438,7 +438,7 @@ internal partial interface IRuleInternal : /// The SQL expression. e.g. MyProperty='ABC' string SqlExpression { get; set; } /// Properties of sqlFilter - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlFilter SqlFilter { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlFilter SqlFilter { get; set; } /// /// This property is reserved for future use. An integer value showing the compatibility level, currently hard-coded to 20. /// diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Rule.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Rule.json.cs similarity index 95% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Rule.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Rule.json.cs index 81031dcb8b8c..b1ad0da6e5ef 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Rule.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Rule.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class Rule partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new Rule(json) : null; } @@ -78,7 +78,7 @@ internal Rule(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObj return; } __proxyResource = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ProxyResource(json); - {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.Ruleproperties.FromJson(__jsonProperties) : Property;} + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.Ruleproperties.FromJson(__jsonProperties) : Property;} {_systemData = If( json?.PropertyT("systemData"), out var __jsonSystemData) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemData.FromJson(__jsonSystemData) : SystemData;} AfterFromJson(json); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/RuleListResult.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/RuleListResult.PowerShell.cs similarity index 76% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/RuleListResult.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/RuleListResult.PowerShell.cs index 52b2d65f4982..363d13e9db68 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/RuleListResult.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/RuleListResult.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -63,27 +63,27 @@ public partial class RuleListResult partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new RuleListResult(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new RuleListResult(content); } @@ -93,10 +93,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -111,17 +111,17 @@ internal RuleListResult(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.RuleTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.RuleTypeConverter.ConvertFrom)); } if (content.Contains("NextLink")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleListResultInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleListResultInternal)this).NextLink, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -136,11 +136,11 @@ internal RuleListResult(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.RuleTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.RuleTypeConverter.ConvertFrom)); } if (content.Contains("NextLink")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleListResultInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleListResultInternal)this).NextLink, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/RuleListResult.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/RuleListResult.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/RuleListResult.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/RuleListResult.TypeConverter.cs index e25dca5ad617..8a3db2a0e89a 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/RuleListResult.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/RuleListResult.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleListResult ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleListResult ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleListResult).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleListResult).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/RuleListResult.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/RuleListResult.cs similarity index 90% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/RuleListResult.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/RuleListResult.cs index fd5c431cf778..f0a80c8c122d 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/RuleListResult.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/RuleListResult.cs @@ -3,15 +3,15 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// The response of the List rule operation. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class RuleListResult : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleListResult, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleListResultInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleListResult, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleListResultInternal { /// Backing field for property. @@ -24,11 +24,11 @@ public partial class RuleListResult : public string NextLink { get => this._nextLink; set => this._nextLink = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule[] _value; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule[] _value; /// Result of the List Rules operation. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule[] Value { get => this._value; set => this._value = value; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule[] Value { get => this._value; set => this._value = value; } /// Creates an new instance. public RuleListResult() @@ -56,8 +56,8 @@ public partial interface IRuleListResult : ReadOnly = false, Description = @"Result of the List Rules operation.", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule[] Value { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule[] Value { get; set; } } /// The response of the List rule operation. @@ -69,7 +69,7 @@ internal partial interface IRuleListResultInternal /// string NextLink { get; set; } /// Result of the List Rules operation. - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule[] Value { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule[] Value { get; set; } } } \ No newline at end of file diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/RuleListResult.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/RuleListResult.json.cs similarity index 92% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/RuleListResult.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/RuleListResult.json.cs index e212471d4610..377ac4c3471d 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/RuleListResult.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/RuleListResult.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class RuleListResult partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleListResult. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleListResult. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleListResult. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleListResult. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new RuleListResult(json) : null; } @@ -77,7 +77,7 @@ internal RuleListResult(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Js { return; } - {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule) (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.Rule.FromJson(__u) )) ))() : null : Value;} + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule) (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.Rule.FromJson(__u) )) ))() : null : Value;} {_nextLink = If( json?.PropertyT("nextLink"), out var __jsonNextLink) ? (string)__jsonNextLink : (string)NextLink;} AfterFromJson(json); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Ruleproperties.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Ruleproperties.PowerShell.cs new file mode 100644 index 000000000000..e2a5e266fccc --- /dev/null +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Ruleproperties.PowerShell.cs @@ -0,0 +1,316 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; + + /// Description of Rule Resource. + [System.ComponentModel.TypeConverter(typeof(RulepropertiesTypeConverter))] + public partial class Ruleproperties + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior + /// + /// /// instance serialized to a string, normally it is a Json + /// /// set returnNow to true if you provide a customized OverrideToString function + + partial void OverrideToString(ref string stringResult, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleproperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new Ruleproperties(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleproperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new Ruleproperties(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleproperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal Ruleproperties(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Action")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).Action = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAction) content.GetValueForProperty("Action",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).Action, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ActionTypeConverter.ConvertFrom); + } + if (content.Contains("SqlFilter")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).SqlFilter = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlFilter) content.GetValueForProperty("SqlFilter",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).SqlFilter, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SqlFilterTypeConverter.ConvertFrom); + } + if (content.Contains("CorrelationFilter")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).CorrelationFilter = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilter) content.GetValueForProperty("CorrelationFilter",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).CorrelationFilter, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.CorrelationFilterTypeConverter.ConvertFrom); + } + if (content.Contains("FilterType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).FilterType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.FilterType?) content.GetValueForProperty("FilterType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).FilterType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.FilterType.CreateFrom); + } + if (content.Contains("ActionSqlExpression")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).ActionSqlExpression = (string) content.GetValueForProperty("ActionSqlExpression",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).ActionSqlExpression, global::System.Convert.ToString); + } + if (content.Contains("ActionCompatibilityLevel")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).ActionCompatibilityLevel = (int?) content.GetValueForProperty("ActionCompatibilityLevel",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).ActionCompatibilityLevel, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + } + if (content.Contains("SqlFilterSqlExpression")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).SqlFilterSqlExpression = (string) content.GetValueForProperty("SqlFilterSqlExpression",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).SqlFilterSqlExpression, global::System.Convert.ToString); + } + if (content.Contains("SqlFilterCompatibilityLevel")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).SqlFilterCompatibilityLevel = (int?) content.GetValueForProperty("SqlFilterCompatibilityLevel",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).SqlFilterCompatibilityLevel, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + } + if (content.Contains("CorrelationFilterProperty")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).CorrelationFilterProperty = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterProperties) content.GetValueForProperty("CorrelationFilterProperty",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).CorrelationFilterProperty, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.CorrelationFilterPropertiesTypeConverter.ConvertFrom); + } + if (content.Contains("CorrelationFilterCorrelationId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).CorrelationFilterCorrelationId = (string) content.GetValueForProperty("CorrelationFilterCorrelationId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).CorrelationFilterCorrelationId, global::System.Convert.ToString); + } + if (content.Contains("CorrelationFilterMessageId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).CorrelationFilterMessageId = (string) content.GetValueForProperty("CorrelationFilterMessageId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).CorrelationFilterMessageId, global::System.Convert.ToString); + } + if (content.Contains("CorrelationFilterTo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).CorrelationFilterTo = (string) content.GetValueForProperty("CorrelationFilterTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).CorrelationFilterTo, global::System.Convert.ToString); + } + if (content.Contains("CorrelationFilterReplyTo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).CorrelationFilterReplyTo = (string) content.GetValueForProperty("CorrelationFilterReplyTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).CorrelationFilterReplyTo, global::System.Convert.ToString); + } + if (content.Contains("CorrelationFilterLabel")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).CorrelationFilterLabel = (string) content.GetValueForProperty("CorrelationFilterLabel",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).CorrelationFilterLabel, global::System.Convert.ToString); + } + if (content.Contains("CorrelationFilterSessionId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).CorrelationFilterSessionId = (string) content.GetValueForProperty("CorrelationFilterSessionId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).CorrelationFilterSessionId, global::System.Convert.ToString); + } + if (content.Contains("CorrelationFilterContentType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).CorrelationFilterContentType = (string) content.GetValueForProperty("CorrelationFilterContentType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).CorrelationFilterContentType, global::System.Convert.ToString); + } + if (content.Contains("ActionRequiresPreprocessing")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).ActionRequiresPreprocessing = (bool?) content.GetValueForProperty("ActionRequiresPreprocessing",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).ActionRequiresPreprocessing, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("SqlFilterRequiresPreprocessing")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).SqlFilterRequiresPreprocessing = (bool?) content.GetValueForProperty("SqlFilterRequiresPreprocessing",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).SqlFilterRequiresPreprocessing, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("CorrelationFilterReplyToSessionId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).CorrelationFilterReplyToSessionId = (string) content.GetValueForProperty("CorrelationFilterReplyToSessionId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).CorrelationFilterReplyToSessionId, global::System.Convert.ToString); + } + if (content.Contains("CorrelationFilterRequiresPreprocessing")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).CorrelationFilterRequiresPreprocessing = (bool?) content.GetValueForProperty("CorrelationFilterRequiresPreprocessing",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).CorrelationFilterRequiresPreprocessing, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal Ruleproperties(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Action")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).Action = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAction) content.GetValueForProperty("Action",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).Action, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ActionTypeConverter.ConvertFrom); + } + if (content.Contains("SqlFilter")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).SqlFilter = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlFilter) content.GetValueForProperty("SqlFilter",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).SqlFilter, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SqlFilterTypeConverter.ConvertFrom); + } + if (content.Contains("CorrelationFilter")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).CorrelationFilter = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilter) content.GetValueForProperty("CorrelationFilter",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).CorrelationFilter, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.CorrelationFilterTypeConverter.ConvertFrom); + } + if (content.Contains("FilterType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).FilterType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.FilterType?) content.GetValueForProperty("FilterType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).FilterType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.FilterType.CreateFrom); + } + if (content.Contains("ActionSqlExpression")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).ActionSqlExpression = (string) content.GetValueForProperty("ActionSqlExpression",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).ActionSqlExpression, global::System.Convert.ToString); + } + if (content.Contains("ActionCompatibilityLevel")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).ActionCompatibilityLevel = (int?) content.GetValueForProperty("ActionCompatibilityLevel",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).ActionCompatibilityLevel, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + } + if (content.Contains("SqlFilterSqlExpression")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).SqlFilterSqlExpression = (string) content.GetValueForProperty("SqlFilterSqlExpression",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).SqlFilterSqlExpression, global::System.Convert.ToString); + } + if (content.Contains("SqlFilterCompatibilityLevel")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).SqlFilterCompatibilityLevel = (int?) content.GetValueForProperty("SqlFilterCompatibilityLevel",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).SqlFilterCompatibilityLevel, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + } + if (content.Contains("CorrelationFilterProperty")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).CorrelationFilterProperty = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterProperties) content.GetValueForProperty("CorrelationFilterProperty",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).CorrelationFilterProperty, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.CorrelationFilterPropertiesTypeConverter.ConvertFrom); + } + if (content.Contains("CorrelationFilterCorrelationId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).CorrelationFilterCorrelationId = (string) content.GetValueForProperty("CorrelationFilterCorrelationId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).CorrelationFilterCorrelationId, global::System.Convert.ToString); + } + if (content.Contains("CorrelationFilterMessageId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).CorrelationFilterMessageId = (string) content.GetValueForProperty("CorrelationFilterMessageId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).CorrelationFilterMessageId, global::System.Convert.ToString); + } + if (content.Contains("CorrelationFilterTo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).CorrelationFilterTo = (string) content.GetValueForProperty("CorrelationFilterTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).CorrelationFilterTo, global::System.Convert.ToString); + } + if (content.Contains("CorrelationFilterReplyTo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).CorrelationFilterReplyTo = (string) content.GetValueForProperty("CorrelationFilterReplyTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).CorrelationFilterReplyTo, global::System.Convert.ToString); + } + if (content.Contains("CorrelationFilterLabel")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).CorrelationFilterLabel = (string) content.GetValueForProperty("CorrelationFilterLabel",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).CorrelationFilterLabel, global::System.Convert.ToString); + } + if (content.Contains("CorrelationFilterSessionId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).CorrelationFilterSessionId = (string) content.GetValueForProperty("CorrelationFilterSessionId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).CorrelationFilterSessionId, global::System.Convert.ToString); + } + if (content.Contains("CorrelationFilterContentType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).CorrelationFilterContentType = (string) content.GetValueForProperty("CorrelationFilterContentType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).CorrelationFilterContentType, global::System.Convert.ToString); + } + if (content.Contains("ActionRequiresPreprocessing")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).ActionRequiresPreprocessing = (bool?) content.GetValueForProperty("ActionRequiresPreprocessing",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).ActionRequiresPreprocessing, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("SqlFilterRequiresPreprocessing")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).SqlFilterRequiresPreprocessing = (bool?) content.GetValueForProperty("SqlFilterRequiresPreprocessing",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).SqlFilterRequiresPreprocessing, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("CorrelationFilterReplyToSessionId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).CorrelationFilterReplyToSessionId = (string) content.GetValueForProperty("CorrelationFilterReplyToSessionId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).CorrelationFilterReplyToSessionId, global::System.Convert.ToString); + } + if (content.Contains("CorrelationFilterRequiresPreprocessing")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).CorrelationFilterRequiresPreprocessing = (bool?) content.GetValueForProperty("CorrelationFilterRequiresPreprocessing",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal)this).CorrelationFilterRequiresPreprocessing, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.SerializationMode.IncludeAll)?.ToString(); + + public override string ToString() + { + var returnNow = false; + var result = global::System.String.Empty; + OverrideToString(ref result, ref returnNow); + if (returnNow) + { + return result; + } + return ToJsonString(); + } + } + /// Description of Rule Resource. + [System.ComponentModel.TypeConverter(typeof(RulepropertiesTypeConverter))] + public partial interface IRuleproperties + + { + + } +} \ No newline at end of file diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Ruleproperties.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Ruleproperties.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Ruleproperties.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Ruleproperties.TypeConverter.cs index ee47deab227b..1f577577956a 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Ruleproperties.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Ruleproperties.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleproperties ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleproperties ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleproperties).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleproperties).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Ruleproperties.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Ruleproperties.cs similarity index 73% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Ruleproperties.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Ruleproperties.cs index ae17588d1851..ee573da65f46 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Ruleproperties.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Ruleproperties.cs @@ -3,87 +3,87 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// Description of Rule Resource. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class Ruleproperties : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleproperties, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleproperties, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal { /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAction _action; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAction _action; /// /// Represents the filter actions which are allowed for the transformation of a message that have been matched by a filter /// expression. /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAction Action { get => (this._action = this._action ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.Action()); set => this._action = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAction Action { get => (this._action = this._action ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.Action()); set => this._action = value; } /// /// This property is reserved for future use. An integer value showing the compatibility level, currently hard-coded to 20. /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public int? ActionCompatibilityLevel { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IActionInternal)Action).CompatibilityLevel; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IActionInternal)Action).CompatibilityLevel = value ?? default(int); } + public int? ActionCompatibilityLevel { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IActionInternal)Action).CompatibilityLevel; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IActionInternal)Action).CompatibilityLevel = value ?? default(int); } /// Value that indicates whether the rule action requires preprocessing. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public bool? ActionRequiresPreprocessing { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IActionInternal)Action).RequiresPreprocessing; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IActionInternal)Action).RequiresPreprocessing = value ?? default(bool); } + public bool? ActionRequiresPreprocessing { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IActionInternal)Action).RequiresPreprocessing; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IActionInternal)Action).RequiresPreprocessing = value ?? default(bool); } /// SQL expression. e.g. MyProperty='ABC' [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string ActionSqlExpression { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IActionInternal)Action).SqlExpression; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IActionInternal)Action).SqlExpression = value ?? null; } + public string ActionSqlExpression { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IActionInternal)Action).SqlExpression; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IActionInternal)Action).SqlExpression = value ?? null; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilter _correlationFilter; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilter _correlationFilter; /// Properties of correlationFilter [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilter CorrelationFilter { get => (this._correlationFilter = this._correlationFilter ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.CorrelationFilter()); set => this._correlationFilter = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilter CorrelationFilter { get => (this._correlationFilter = this._correlationFilter ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.CorrelationFilter()); set => this._correlationFilter = value; } /// Content type of the message. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string CorrelationFilterContentType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)CorrelationFilter).ContentType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)CorrelationFilter).ContentType = value ?? null; } + public string CorrelationFilterContentType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)CorrelationFilter).ContentType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)CorrelationFilter).ContentType = value ?? null; } /// Identifier of the correlation. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string CorrelationFilterCorrelationId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)CorrelationFilter).CorrelationId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)CorrelationFilter).CorrelationId = value ?? null; } + public string CorrelationFilterCorrelationId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)CorrelationFilter).CorrelationId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)CorrelationFilter).CorrelationId = value ?? null; } /// Application specific label. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string CorrelationFilterLabel { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)CorrelationFilter).Label; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)CorrelationFilter).Label = value ?? null; } + public string CorrelationFilterLabel { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)CorrelationFilter).Label; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)CorrelationFilter).Label = value ?? null; } /// Identifier of the message. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string CorrelationFilterMessageId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)CorrelationFilter).MessageId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)CorrelationFilter).MessageId = value ?? null; } + public string CorrelationFilterMessageId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)CorrelationFilter).MessageId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)CorrelationFilter).MessageId = value ?? null; } /// dictionary object for custom filters [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterProperties CorrelationFilterProperty { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)CorrelationFilter).Property; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)CorrelationFilter).Property = value ?? null /* model class */; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterProperties CorrelationFilterProperty { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)CorrelationFilter).Property; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)CorrelationFilter).Property = value ?? null /* model class */; } /// Address of the queue to reply to. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string CorrelationFilterReplyTo { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)CorrelationFilter).ReplyTo; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)CorrelationFilter).ReplyTo = value ?? null; } + public string CorrelationFilterReplyTo { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)CorrelationFilter).ReplyTo; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)CorrelationFilter).ReplyTo = value ?? null; } /// Session identifier to reply to. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string CorrelationFilterReplyToSessionId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)CorrelationFilter).ReplyToSessionId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)CorrelationFilter).ReplyToSessionId = value ?? null; } + public string CorrelationFilterReplyToSessionId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)CorrelationFilter).ReplyToSessionId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)CorrelationFilter).ReplyToSessionId = value ?? null; } /// Value that indicates whether the rule action requires preprocessing. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public bool? CorrelationFilterRequiresPreprocessing { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)CorrelationFilter).RequiresPreprocessing; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)CorrelationFilter).RequiresPreprocessing = value ?? default(bool); } + public bool? CorrelationFilterRequiresPreprocessing { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)CorrelationFilter).RequiresPreprocessing; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)CorrelationFilter).RequiresPreprocessing = value ?? default(bool); } /// Session identifier. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string CorrelationFilterSessionId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)CorrelationFilter).SessionId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)CorrelationFilter).SessionId = value ?? null; } + public string CorrelationFilterSessionId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)CorrelationFilter).SessionId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)CorrelationFilter).SessionId = value ?? null; } /// Address to send to. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string CorrelationFilterTo { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)CorrelationFilter).To; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterInternal)CorrelationFilter).To = value ?? null; } + public string CorrelationFilterTo { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)CorrelationFilter).To; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterInternal)CorrelationFilter).To = value ?? null; } /// Backing field for property. private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.FilterType? _filterType; @@ -93,34 +93,34 @@ public partial class Ruleproperties : public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.FilterType? FilterType { get => this._filterType; set => this._filterType = value; } /// Internal Acessors for Action - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAction Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal.Action { get => (this._action = this._action ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.Action()); set { {_action = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAction Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal.Action { get => (this._action = this._action ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.Action()); set { {_action = value;} } } /// Internal Acessors for CorrelationFilter - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilter Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal.CorrelationFilter { get => (this._correlationFilter = this._correlationFilter ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.CorrelationFilter()); set { {_correlationFilter = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilter Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal.CorrelationFilter { get => (this._correlationFilter = this._correlationFilter ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.CorrelationFilter()); set { {_correlationFilter = value;} } } /// Internal Acessors for SqlFilter - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlFilter Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRulepropertiesInternal.SqlFilter { get => (this._sqlFilter = this._sqlFilter ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SqlFilter()); set { {_sqlFilter = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlFilter Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRulepropertiesInternal.SqlFilter { get => (this._sqlFilter = this._sqlFilter ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SqlFilter()); set { {_sqlFilter = value;} } } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlFilter _sqlFilter; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlFilter _sqlFilter; /// Properties of sqlFilter [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlFilter SqlFilter { get => (this._sqlFilter = this._sqlFilter ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SqlFilter()); set => this._sqlFilter = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlFilter SqlFilter { get => (this._sqlFilter = this._sqlFilter ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SqlFilter()); set => this._sqlFilter = value; } /// /// This property is reserved for future use. An integer value showing the compatibility level, currently hard-coded to 20. /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public int? SqlFilterCompatibilityLevel { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlFilterInternal)SqlFilter).CompatibilityLevel; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlFilterInternal)SqlFilter).CompatibilityLevel = value ?? default(int); } + public int? SqlFilterCompatibilityLevel { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlFilterInternal)SqlFilter).CompatibilityLevel; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlFilterInternal)SqlFilter).CompatibilityLevel = value ?? default(int); } /// Value that indicates whether the rule action requires preprocessing. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public bool? SqlFilterRequiresPreprocessing { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlFilterInternal)SqlFilter).RequiresPreprocessing; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlFilterInternal)SqlFilter).RequiresPreprocessing = value ?? default(bool); } + public bool? SqlFilterRequiresPreprocessing { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlFilterInternal)SqlFilter).RequiresPreprocessing; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlFilterInternal)SqlFilter).RequiresPreprocessing = value ?? default(bool); } /// The SQL expression. e.g. MyProperty='ABC' [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string SqlFilterSqlExpression { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlFilterInternal)SqlFilter).SqlExpression; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlFilterInternal)SqlFilter).SqlExpression = value ?? null; } + public string SqlFilterSqlExpression { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlFilterInternal)SqlFilter).SqlExpression; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlFilterInternal)SqlFilter).SqlExpression = value ?? null; } /// Creates an new instance. public Ruleproperties() @@ -196,8 +196,8 @@ public partial interface IRuleproperties : ReadOnly = false, Description = @"dictionary object for custom filters", SerializedName = @"properties", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterProperties) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterProperties CorrelationFilterProperty { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterProperties) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterProperties CorrelationFilterProperty { get; set; } /// Address of the queue to reply to. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Info( Required = false, @@ -282,7 +282,7 @@ internal partial interface IRulepropertiesInternal /// Represents the filter actions which are allowed for the transformation of a message that have been matched by a filter /// expression. /// - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAction Action { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAction Action { get; set; } /// /// This property is reserved for future use. An integer value showing the compatibility level, currently hard-coded to 20. /// @@ -292,7 +292,7 @@ internal partial interface IRulepropertiesInternal /// SQL expression. e.g. MyProperty='ABC' string ActionSqlExpression { get; set; } /// Properties of correlationFilter - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilter CorrelationFilter { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilter CorrelationFilter { get; set; } /// Content type of the message. string CorrelationFilterContentType { get; set; } /// Identifier of the correlation. @@ -302,7 +302,7 @@ internal partial interface IRulepropertiesInternal /// Identifier of the message. string CorrelationFilterMessageId { get; set; } /// dictionary object for custom filters - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterProperties CorrelationFilterProperty { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterProperties CorrelationFilterProperty { get; set; } /// Address of the queue to reply to. string CorrelationFilterReplyTo { get; set; } /// Session identifier to reply to. @@ -316,7 +316,7 @@ internal partial interface IRulepropertiesInternal /// Filter type that is evaluated against a BrokeredMessage. Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.FilterType? FilterType { get; set; } /// Properties of sqlFilter - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlFilter SqlFilter { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlFilter SqlFilter { get; set; } /// /// This property is reserved for future use. An integer value showing the compatibility level, currently hard-coded to 20. /// diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Ruleproperties.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Ruleproperties.json.cs similarity index 93% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Ruleproperties.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Ruleproperties.json.cs index 6a03e59f7609..6748532133f2 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Ruleproperties.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Ruleproperties.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class Ruleproperties partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleproperties. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleproperties. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleproperties. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleproperties. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleproperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleproperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new Ruleproperties(json) : null; } @@ -77,9 +77,9 @@ internal Ruleproperties(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Js { return; } - {_action = If( json?.PropertyT("action"), out var __jsonAction) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.Action.FromJson(__jsonAction) : Action;} - {_sqlFilter = If( json?.PropertyT("sqlFilter"), out var __jsonSqlFilter) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SqlFilter.FromJson(__jsonSqlFilter) : SqlFilter;} - {_correlationFilter = If( json?.PropertyT("correlationFilter"), out var __jsonCorrelationFilter) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.CorrelationFilter.FromJson(__jsonCorrelationFilter) : CorrelationFilter;} + {_action = If( json?.PropertyT("action"), out var __jsonAction) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.Action.FromJson(__jsonAction) : Action;} + {_sqlFilter = If( json?.PropertyT("sqlFilter"), out var __jsonSqlFilter) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SqlFilter.FromJson(__jsonSqlFilter) : SqlFilter;} + {_correlationFilter = If( json?.PropertyT("correlationFilter"), out var __jsonCorrelationFilter) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.CorrelationFilter.FromJson(__jsonCorrelationFilter) : CorrelationFilter;} {_filterType = If( json?.PropertyT("filterType"), out var __jsonFilterType) ? (string)__jsonFilterType : (string)FilterType;} AfterFromJson(json); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbAuthorizationRule.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbAuthorizationRule.PowerShell.cs similarity index 60% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbAuthorizationRule.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbAuthorizationRule.PowerShell.cs index 1b882d538127..312aea9e1a8f 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbAuthorizationRule.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbAuthorizationRule.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -63,29 +63,29 @@ public partial class SbAuthorizationRule partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new SbAuthorizationRule(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new SbAuthorizationRule(content); } @@ -95,10 +95,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -113,11 +113,11 @@ internal SbAuthorizationRule(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Property")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbAuthorizationRulePropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbAuthorizationRulePropertiesTypeConverter.ConvertFrom); } if (content.Contains("SystemData")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemDataTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemDataTypeConverter.ConvertFrom); } if (content.Contains("Id")) { @@ -137,37 +137,37 @@ internal SbAuthorizationRule(global::System.Collections.IDictionary content) } if (content.Contains("SystemDataCreatedBy")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); } if (content.Contains("SystemDataCreatedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } if (content.Contains("Rights")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleInternal)this).Rights = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.AccessRights[]) content.GetValueForProperty("Rights",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleInternal)this).Rights, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.AccessRights.CreateFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleInternal)this).Rights = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.AccessRights[]) content.GetValueForProperty("Rights",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleInternal)this).Rights, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.AccessRights.CreateFrom)); } if (content.Contains("SystemDataCreatedByType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); } if (content.Contains("SystemDataLastModifiedBy")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); } if (content.Contains("SystemDataLastModifiedByType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); } if (content.Contains("SystemDataLastModifiedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -182,11 +182,11 @@ internal SbAuthorizationRule(global::System.Management.Automation.PSObject conte // actually deserialize if (content.Contains("Property")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbAuthorizationRulePropertiesTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbAuthorizationRulePropertiesTypeConverter.ConvertFrom); } if (content.Contains("SystemData")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemDataTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemDataTypeConverter.ConvertFrom); } if (content.Contains("Id")) { @@ -206,31 +206,31 @@ internal SbAuthorizationRule(global::System.Management.Automation.PSObject conte } if (content.Contains("SystemDataCreatedBy")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); } if (content.Contains("SystemDataCreatedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } if (content.Contains("Rights")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleInternal)this).Rights = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.AccessRights[]) content.GetValueForProperty("Rights",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleInternal)this).Rights, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.AccessRights.CreateFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleInternal)this).Rights = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.AccessRights[]) content.GetValueForProperty("Rights",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleInternal)this).Rights, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.AccessRights.CreateFrom)); } if (content.Contains("SystemDataCreatedByType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); } if (content.Contains("SystemDataLastModifiedBy")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); } if (content.Contains("SystemDataLastModifiedByType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); } if (content.Contains("SystemDataLastModifiedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } AfterDeserializePSObject(content); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbAuthorizationRule.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbAuthorizationRule.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbAuthorizationRule.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbAuthorizationRule.TypeConverter.cs index a4c5ee8d9dd7..8972472e6a8a 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbAuthorizationRule.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbAuthorizationRule.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbAuthorizationRule.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbAuthorizationRule.cs similarity index 92% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbAuthorizationRule.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbAuthorizationRule.cs index 22cbcd0d313a..9d5061e23553 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbAuthorizationRule.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbAuthorizationRule.cs @@ -3,15 +3,15 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// Description of a namespace authorization rule. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class SbAuthorizationRule : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleInternal, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleInternal, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IValidates { /// @@ -43,21 +43,21 @@ public partial class SbAuthorizationRule : string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)__proxyResource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)__proxyResource).Type = value; } /// Internal Acessors for Property - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleProperties Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbAuthorizationRuleProperties()); set { {_property = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleProperties Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbAuthorizationRuleProperties()); set { {_property = value;} } } /// Internal Acessors for SystemData - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleInternal.SystemData { get => (this._systemData = this._systemData ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemData()); set { {_systemData = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleInternal.SystemData { get => (this._systemData = this._systemData ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemData()); set { {_systemData = value;} } } /// The name of the resource [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inherited)] public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)__proxyResource).Name; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleProperties _property; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleProperties _property; /// AuthorizationRule properties. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbAuthorizationRuleProperties()); set => this._property = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbAuthorizationRuleProperties()); set => this._property = value; } /// Gets the resource group name [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] @@ -65,7 +65,7 @@ public partial class SbAuthorizationRule : /// The rights associated with the rule. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.AccessRights[] Rights { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRulePropertiesInternal)Property).Rights; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRulePropertiesInternal)Property).Rights = value ?? null /* arrayOf */; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.AccessRights[] Rights { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRulePropertiesInternal)Property).Rights; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRulePropertiesInternal)Property).Rights = value ?? null /* arrayOf */; } /// Backing field for property. private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData _systemData; @@ -190,7 +190,7 @@ internal partial interface ISbAuthorizationRuleInternal : Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal { /// AuthorizationRule properties. - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleProperties Property { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleProperties Property { get; set; } /// The rights associated with the rule. Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.AccessRights[] Rights { get; set; } /// The system meta data relating to this resource. diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbAuthorizationRule.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbAuthorizationRule.json.cs similarity index 94% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbAuthorizationRule.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbAuthorizationRule.json.cs index 72f75fbd6aba..bb972e13c2ce 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbAuthorizationRule.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbAuthorizationRule.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class SbAuthorizationRule partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new SbAuthorizationRule(json) : null; } @@ -78,7 +78,7 @@ internal SbAuthorizationRule(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runti return; } __proxyResource = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ProxyResource(json); - {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbAuthorizationRuleProperties.FromJson(__jsonProperties) : Property;} + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbAuthorizationRuleProperties.FromJson(__jsonProperties) : Property;} {_systemData = If( json?.PropertyT("systemData"), out var __jsonSystemData) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemData.FromJson(__jsonSystemData) : SystemData;} AfterFromJson(json); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbAuthorizationRuleListResult.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbAuthorizationRuleListResult.PowerShell.cs similarity index 74% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbAuthorizationRuleListResult.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbAuthorizationRuleListResult.PowerShell.cs index bb184d98d621..d9fea5f917b2 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbAuthorizationRuleListResult.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbAuthorizationRuleListResult.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -63,29 +63,29 @@ public partial class SbAuthorizationRuleListResult partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new SbAuthorizationRuleListResult(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new SbAuthorizationRuleListResult(content); } @@ -95,10 +95,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -113,17 +113,17 @@ internal SbAuthorizationRuleListResult(global::System.Collections.IDictionary co // actually deserialize if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbAuthorizationRuleTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbAuthorizationRuleTypeConverter.ConvertFrom)); } if (content.Contains("NextLink")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleListResultInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleListResultInternal)this).NextLink, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -138,11 +138,11 @@ internal SbAuthorizationRuleListResult(global::System.Management.Automation.PSOb // actually deserialize if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbAuthorizationRuleTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbAuthorizationRuleTypeConverter.ConvertFrom)); } if (content.Contains("NextLink")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleListResultInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleListResultInternal)this).NextLink, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbAuthorizationRuleListResult.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbAuthorizationRuleListResult.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbAuthorizationRuleListResult.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbAuthorizationRuleListResult.TypeConverter.cs index 4745ed2f3d3c..1bde44eb754c 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbAuthorizationRuleListResult.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbAuthorizationRuleListResult.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleListResult ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleListResult ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleListResult).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleListResult).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbAuthorizationRuleListResult.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbAuthorizationRuleListResult.cs similarity index 88% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbAuthorizationRuleListResult.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbAuthorizationRuleListResult.cs index ee9447de1631..4eb6704c3d35 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbAuthorizationRuleListResult.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbAuthorizationRuleListResult.cs @@ -3,15 +3,15 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// The response to the List Namespace operation. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class SbAuthorizationRuleListResult : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleListResult, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleListResultInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleListResult, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleListResultInternal { /// Backing field for property. @@ -24,11 +24,11 @@ public partial class SbAuthorizationRuleListResult : public string NextLink { get => this._nextLink; set => this._nextLink = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule[] _value; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule[] _value; /// Result of the List Authorization Rules operation. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule[] Value { get => this._value; set => this._value = value; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule[] Value { get => this._value; set => this._value = value; } /// Creates an new instance. public SbAuthorizationRuleListResult() @@ -56,8 +56,8 @@ public partial interface ISbAuthorizationRuleListResult : ReadOnly = false, Description = @"Result of the List Authorization Rules operation.", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule[] Value { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule[] Value { get; set; } } /// The response to the List Namespace operation. @@ -69,7 +69,7 @@ internal partial interface ISbAuthorizationRuleListResultInternal /// string NextLink { get; set; } /// Result of the List Authorization Rules operation. - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule[] Value { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule[] Value { get; set; } } } \ No newline at end of file diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbAuthorizationRuleListResult.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbAuthorizationRuleListResult.json.cs similarity index 91% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbAuthorizationRuleListResult.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbAuthorizationRuleListResult.json.cs index 6b8da24c0e9c..5fd67a931058 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbAuthorizationRuleListResult.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbAuthorizationRuleListResult.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class SbAuthorizationRuleListResult partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleListResult. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleListResult. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleListResult. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleListResult. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new SbAuthorizationRuleListResult(json) : null; } @@ -77,7 +77,7 @@ internal SbAuthorizationRuleListResult(Microsoft.Azure.PowerShell.Cmdlets.Servic { return; } - {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule) (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbAuthorizationRule.FromJson(__u) )) ))() : null : Value;} + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule) (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbAuthorizationRule.FromJson(__u) )) ))() : null : Value;} {_nextLink = If( json?.PropertyT("nextLink"), out var __jsonNextLink) ? (string)__jsonNextLink : (string)NextLink;} AfterFromJson(json); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbAuthorizationRuleProperties.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbAuthorizationRuleProperties.PowerShell.cs similarity index 79% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbAuthorizationRuleProperties.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbAuthorizationRuleProperties.PowerShell.cs index 96a794484c42..196cb8ab80b7 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbAuthorizationRuleProperties.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbAuthorizationRuleProperties.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -63,29 +63,29 @@ public partial class SbAuthorizationRuleProperties partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new SbAuthorizationRuleProperties(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new SbAuthorizationRuleProperties(content); } @@ -95,10 +95,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -113,13 +113,13 @@ internal SbAuthorizationRuleProperties(global::System.Collections.IDictionary co // actually deserialize if (content.Contains("Rights")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRulePropertiesInternal)this).Rights = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.AccessRights[]) content.GetValueForProperty("Rights",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRulePropertiesInternal)this).Rights, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.AccessRights.CreateFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRulePropertiesInternal)this).Rights = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.AccessRights[]) content.GetValueForProperty("Rights",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRulePropertiesInternal)this).Rights, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.AccessRights.CreateFrom)); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -134,7 +134,7 @@ internal SbAuthorizationRuleProperties(global::System.Management.Automation.PSOb // actually deserialize if (content.Contains("Rights")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRulePropertiesInternal)this).Rights = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.AccessRights[]) content.GetValueForProperty("Rights",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRulePropertiesInternal)this).Rights, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.AccessRights.CreateFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRulePropertiesInternal)this).Rights = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.AccessRights[]) content.GetValueForProperty("Rights",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRulePropertiesInternal)this).Rights, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.AccessRights.CreateFrom)); } AfterDeserializePSObject(content); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbAuthorizationRuleProperties.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbAuthorizationRuleProperties.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbAuthorizationRuleProperties.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbAuthorizationRuleProperties.TypeConverter.cs index b35af3b54a34..b3fb8af58eac 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbAuthorizationRuleProperties.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbAuthorizationRuleProperties.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleProperties ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleProperties ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleProperties).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleProperties).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbAuthorizationRuleProperties.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbAuthorizationRuleProperties.cs similarity index 95% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbAuthorizationRuleProperties.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbAuthorizationRuleProperties.cs index 07d9f368ba1a..18919be8e6f5 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbAuthorizationRuleProperties.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbAuthorizationRuleProperties.cs @@ -3,15 +3,15 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// AuthorizationRule properties. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class SbAuthorizationRuleProperties : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleProperties, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRulePropertiesInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleProperties, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRulePropertiesInternal { /// Backing field for property. diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbAuthorizationRuleProperties.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbAuthorizationRuleProperties.json.cs similarity index 95% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbAuthorizationRuleProperties.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbAuthorizationRuleProperties.json.cs index c06e2989c392..ac5ea2e5983b 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbAuthorizationRuleProperties.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbAuthorizationRuleProperties.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class SbAuthorizationRuleProperties partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleProperties. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleProperties. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleProperties. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleProperties. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new SbAuthorizationRuleProperties(json) : null; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbClientAffineProperties.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbClientAffineProperties.PowerShell.cs similarity index 75% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbClientAffineProperties.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbClientAffineProperties.PowerShell.cs index 67e0f16548e8..984f2f0055b3 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbClientAffineProperties.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbClientAffineProperties.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -63,29 +63,29 @@ public partial class SbClientAffineProperties partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbClientAffineProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbClientAffineProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new SbClientAffineProperties(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbClientAffineProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbClientAffineProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new SbClientAffineProperties(content); } @@ -95,10 +95,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbClientAffineProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbClientAffineProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -113,21 +113,21 @@ internal SbClientAffineProperties(global::System.Collections.IDictionary content // actually deserialize if (content.Contains("ClientId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbClientAffinePropertiesInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbClientAffinePropertiesInternal)this).ClientId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbClientAffinePropertiesInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbClientAffinePropertiesInternal)this).ClientId, global::System.Convert.ToString); } if (content.Contains("IsDurable")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbClientAffinePropertiesInternal)this).IsDurable = (bool?) content.GetValueForProperty("IsDurable",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbClientAffinePropertiesInternal)this).IsDurable, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbClientAffinePropertiesInternal)this).IsDurable = (bool?) content.GetValueForProperty("IsDurable",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbClientAffinePropertiesInternal)this).IsDurable, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } if (content.Contains("IsShared")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbClientAffinePropertiesInternal)this).IsShared = (bool?) content.GetValueForProperty("IsShared",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbClientAffinePropertiesInternal)this).IsShared, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbClientAffinePropertiesInternal)this).IsShared = (bool?) content.GetValueForProperty("IsShared",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbClientAffinePropertiesInternal)this).IsShared, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -142,15 +142,15 @@ internal SbClientAffineProperties(global::System.Management.Automation.PSObject // actually deserialize if (content.Contains("ClientId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbClientAffinePropertiesInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbClientAffinePropertiesInternal)this).ClientId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbClientAffinePropertiesInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbClientAffinePropertiesInternal)this).ClientId, global::System.Convert.ToString); } if (content.Contains("IsDurable")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbClientAffinePropertiesInternal)this).IsDurable = (bool?) content.GetValueForProperty("IsDurable",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbClientAffinePropertiesInternal)this).IsDurable, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbClientAffinePropertiesInternal)this).IsDurable = (bool?) content.GetValueForProperty("IsDurable",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbClientAffinePropertiesInternal)this).IsDurable, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } if (content.Contains("IsShared")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbClientAffinePropertiesInternal)this).IsShared = (bool?) content.GetValueForProperty("IsShared",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbClientAffinePropertiesInternal)this).IsShared, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbClientAffinePropertiesInternal)this).IsShared = (bool?) content.GetValueForProperty("IsShared",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbClientAffinePropertiesInternal)this).IsShared, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } AfterDeserializePSObject(content); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbClientAffineProperties.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbClientAffineProperties.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbClientAffineProperties.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbClientAffineProperties.TypeConverter.cs index 6e32f2dd304f..ee28da1f0b6a 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbClientAffineProperties.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbClientAffineProperties.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbClientAffineProperties ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbClientAffineProperties ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbClientAffineProperties).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbClientAffineProperties).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbClientAffineProperties.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbClientAffineProperties.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbClientAffineProperties.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbClientAffineProperties.cs index 511be0708a2f..e5a3942ae61a 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbClientAffineProperties.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbClientAffineProperties.cs @@ -3,15 +3,15 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// Properties specific to client affine subscriptions. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class SbClientAffineProperties : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbClientAffineProperties, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbClientAffinePropertiesInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbClientAffineProperties, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbClientAffinePropertiesInternal { /// Backing field for property. diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbClientAffineProperties.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbClientAffineProperties.json.cs similarity index 96% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbClientAffineProperties.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbClientAffineProperties.json.cs index 53cc84c6397e..a49912bb4d76 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbClientAffineProperties.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbClientAffineProperties.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class SbClientAffineProperties partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbClientAffineProperties. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbClientAffineProperties. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbClientAffineProperties. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbClientAffineProperties. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbClientAffineProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbClientAffineProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new SbClientAffineProperties(json) : null; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespace.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespace.PowerShell.cs new file mode 100644 index 000000000000..7932f847c198 --- /dev/null +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespace.PowerShell.cs @@ -0,0 +1,468 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; + + /// Description of a namespace resource. + [System.ComponentModel.TypeConverter(typeof(SbNamespaceTypeConverter))] + public partial class SbNamespace + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior + /// + /// /// instance serialized to a string, normally it is a Json + /// /// set returnNow to true if you provide a customized OverrideToString function + + partial void OverrideToString(ref string stringResult, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new SbNamespace(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new SbNamespace(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal SbNamespace(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Sku")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).Sku = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSku) content.GetValueForProperty("Sku",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).Sku, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbSkuTypeConverter.ConvertFrom); + } + if (content.Contains("Identity")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).Identity = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentity) content.GetValueForProperty("Identity",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).Identity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IdentityTypeConverter.ConvertFrom); + } + if (content.Contains("SystemData")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemDataTypeConverter.ConvertFrom); + } + if (content.Contains("Property")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbNamespacePropertiesTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); + } + if (content.Contains("Location")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ITrackedResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ITrackedResourceInternal)this).Location, global::System.Convert.ToString); + } + if (content.Contains("Tag")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ITrackedResourceInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ITrackedResourceTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ITrackedResourceInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.TrackedResourceTagsTypeConverter.ConvertFrom); + } + if (content.Contains("SkuName")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).SkuName = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuName) content.GetValueForProperty("SkuName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).SkuName, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuName.CreateFrom); + } + if (content.Contains("SkuTier")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).SkuTier = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuTier?) content.GetValueForProperty("SkuTier",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).SkuTier, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuTier.CreateFrom); + } + if (content.Contains("PrincipalId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).PrincipalId, global::System.Convert.ToString); + } + if (content.Contains("TenantId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).TenantId, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("Encryption")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).Encryption = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryption) content.GetValueForProperty("Encryption",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).Encryption, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.EncryptionTypeConverter.ConvertFrom); + } + if (content.Contains("SkuCapacity")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).SkuCapacity = (int?) content.GetValueForProperty("SkuCapacity",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).SkuCapacity, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + } + if (content.Contains("IdentityType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).IdentityType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ManagedServiceIdentityType?) content.GetValueForProperty("IdentityType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).IdentityType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ManagedServiceIdentityType.CreateFrom); + } + if (content.Contains("UserAssignedIdentity")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).UserAssignedIdentity = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityUserAssignedIdentities) content.GetValueForProperty("UserAssignedIdentity",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).UserAssignedIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IdentityUserAssignedIdentitiesTypeConverter.ConvertFrom); + } + if (content.Contains("SystemDataCreatedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("MinimumTlsVersion")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).MinimumTlsVersion = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.TlsVersion?) content.GetValueForProperty("MinimumTlsVersion",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).MinimumTlsVersion, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.TlsVersion.CreateFrom); + } + if (content.Contains("ProvisioningState")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).ProvisioningState, global::System.Convert.ToString); + } + if (content.Contains("Status")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).Status = (string) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).Status, global::System.Convert.ToString); + } + if (content.Contains("CreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("UpdatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).UpdatedAt = (global::System.DateTime?) content.GetValueForProperty("UpdatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).UpdatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("ServiceBusEndpoint")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).ServiceBusEndpoint = (string) content.GetValueForProperty("ServiceBusEndpoint",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).ServiceBusEndpoint, global::System.Convert.ToString); + } + if (content.Contains("MetricId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).MetricId = (string) content.GetValueForProperty("MetricId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).MetricId, global::System.Convert.ToString); + } + if (content.Contains("ZoneRedundant")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).ZoneRedundant = (bool?) content.GetValueForProperty("ZoneRedundant",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).ZoneRedundant, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("PrivateEndpointConnection")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).PrivateEndpointConnection = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection[]) content.GetValueForProperty("PrivateEndpointConnection",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).PrivateEndpointConnection, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.PrivateEndpointConnectionTypeConverter.ConvertFrom)); + } + if (content.Contains("DisableLocalAuth")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).DisableLocalAuth = (bool?) content.GetValueForProperty("DisableLocalAuth",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).DisableLocalAuth, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("AlternateName")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).AlternateName = (string) content.GetValueForProperty("AlternateName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).AlternateName, global::System.Convert.ToString); + } + if (content.Contains("PublicNetworkAccess")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).PublicNetworkAccess = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PublicNetworkAccess?) content.GetValueForProperty("PublicNetworkAccess",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).PublicNetworkAccess, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PublicNetworkAccess.CreateFrom); + } + if (content.Contains("PremiumMessagingPartition")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).PremiumMessagingPartition = (int?) content.GetValueForProperty("PremiumMessagingPartition",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).PremiumMessagingPartition, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + } + if (content.Contains("KeySource")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).KeySource = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource?) content.GetValueForProperty("KeySource",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).KeySource, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource.CreateFrom); + } + if (content.Contains("KeyVaultProperty")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).KeyVaultProperty = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties[]) content.GetValueForProperty("KeyVaultProperty",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).KeyVaultProperty, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.KeyVaultPropertiesTypeConverter.ConvertFrom)); + } + if (content.Contains("RequireInfrastructureEncryption")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).RequireInfrastructureEncryption = (bool?) content.GetValueForProperty("RequireInfrastructureEncryption",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).RequireInfrastructureEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal SbNamespace(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Sku")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).Sku = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSku) content.GetValueForProperty("Sku",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).Sku, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbSkuTypeConverter.ConvertFrom); + } + if (content.Contains("Identity")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).Identity = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentity) content.GetValueForProperty("Identity",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).Identity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IdentityTypeConverter.ConvertFrom); + } + if (content.Contains("SystemData")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemDataTypeConverter.ConvertFrom); + } + if (content.Contains("Property")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbNamespacePropertiesTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); + } + if (content.Contains("Location")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ITrackedResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ITrackedResourceInternal)this).Location, global::System.Convert.ToString); + } + if (content.Contains("Tag")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ITrackedResourceInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ITrackedResourceTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ITrackedResourceInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.TrackedResourceTagsTypeConverter.ConvertFrom); + } + if (content.Contains("SkuName")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).SkuName = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuName) content.GetValueForProperty("SkuName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).SkuName, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuName.CreateFrom); + } + if (content.Contains("SkuTier")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).SkuTier = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuTier?) content.GetValueForProperty("SkuTier",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).SkuTier, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuTier.CreateFrom); + } + if (content.Contains("PrincipalId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).PrincipalId, global::System.Convert.ToString); + } + if (content.Contains("TenantId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).TenantId = (string) content.GetValueForProperty("TenantId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).TenantId, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("Encryption")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).Encryption = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryption) content.GetValueForProperty("Encryption",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).Encryption, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.EncryptionTypeConverter.ConvertFrom); + } + if (content.Contains("SkuCapacity")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).SkuCapacity = (int?) content.GetValueForProperty("SkuCapacity",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).SkuCapacity, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + } + if (content.Contains("IdentityType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).IdentityType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ManagedServiceIdentityType?) content.GetValueForProperty("IdentityType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).IdentityType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ManagedServiceIdentityType.CreateFrom); + } + if (content.Contains("UserAssignedIdentity")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).UserAssignedIdentity = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityUserAssignedIdentities) content.GetValueForProperty("UserAssignedIdentity",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).UserAssignedIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IdentityUserAssignedIdentitiesTypeConverter.ConvertFrom); + } + if (content.Contains("SystemDataCreatedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("MinimumTlsVersion")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).MinimumTlsVersion = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.TlsVersion?) content.GetValueForProperty("MinimumTlsVersion",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).MinimumTlsVersion, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.TlsVersion.CreateFrom); + } + if (content.Contains("ProvisioningState")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).ProvisioningState, global::System.Convert.ToString); + } + if (content.Contains("Status")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).Status = (string) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).Status, global::System.Convert.ToString); + } + if (content.Contains("CreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("UpdatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).UpdatedAt = (global::System.DateTime?) content.GetValueForProperty("UpdatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).UpdatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("ServiceBusEndpoint")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).ServiceBusEndpoint = (string) content.GetValueForProperty("ServiceBusEndpoint",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).ServiceBusEndpoint, global::System.Convert.ToString); + } + if (content.Contains("MetricId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).MetricId = (string) content.GetValueForProperty("MetricId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).MetricId, global::System.Convert.ToString); + } + if (content.Contains("ZoneRedundant")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).ZoneRedundant = (bool?) content.GetValueForProperty("ZoneRedundant",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).ZoneRedundant, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("PrivateEndpointConnection")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).PrivateEndpointConnection = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection[]) content.GetValueForProperty("PrivateEndpointConnection",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).PrivateEndpointConnection, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.PrivateEndpointConnectionTypeConverter.ConvertFrom)); + } + if (content.Contains("DisableLocalAuth")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).DisableLocalAuth = (bool?) content.GetValueForProperty("DisableLocalAuth",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).DisableLocalAuth, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("AlternateName")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).AlternateName = (string) content.GetValueForProperty("AlternateName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).AlternateName, global::System.Convert.ToString); + } + if (content.Contains("PublicNetworkAccess")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).PublicNetworkAccess = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PublicNetworkAccess?) content.GetValueForProperty("PublicNetworkAccess",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).PublicNetworkAccess, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PublicNetworkAccess.CreateFrom); + } + if (content.Contains("PremiumMessagingPartition")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).PremiumMessagingPartition = (int?) content.GetValueForProperty("PremiumMessagingPartition",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).PremiumMessagingPartition, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + } + if (content.Contains("KeySource")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).KeySource = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource?) content.GetValueForProperty("KeySource",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).KeySource, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource.CreateFrom); + } + if (content.Contains("KeyVaultProperty")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).KeyVaultProperty = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties[]) content.GetValueForProperty("KeyVaultProperty",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).KeyVaultProperty, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.KeyVaultPropertiesTypeConverter.ConvertFrom)); + } + if (content.Contains("RequireInfrastructureEncryption")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).RequireInfrastructureEncryption = (bool?) content.GetValueForProperty("RequireInfrastructureEncryption",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal)this).RequireInfrastructureEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.SerializationMode.IncludeAll)?.ToString(); + + public override string ToString() + { + var returnNow = false; + var result = global::System.String.Empty; + OverrideToString(ref result, ref returnNow); + if (returnNow) + { + return result; + } + return ToJsonString(); + } + } + /// Description of a namespace resource. + [System.ComponentModel.TypeConverter(typeof(SbNamespaceTypeConverter))] + public partial interface ISbNamespace + + { + + } +} \ No newline at end of file diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespace.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespace.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespace.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespace.TypeConverter.cs index 749ffa8ffcfc..29e757728ecd 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespace.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespace.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespace.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespace.cs similarity index 71% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespace.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespace.cs index 88ea76203b36..94ef08af3209 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespace.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespace.cs @@ -3,15 +3,15 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// Description of a namespace resource. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class SbNamespace : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IValidates { /// @@ -22,38 +22,38 @@ public partial class SbNamespace : /// Alternate name for namespace [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string AlternateName { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)Property).AlternateName; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)Property).AlternateName = value ?? null; } + public string AlternateName { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)Property).AlternateName; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)Property).AlternateName = value ?? null; } /// The time the namespace was created [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public global::System.DateTime? CreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)Property).CreatedAt; } + public global::System.DateTime? CreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)Property).CreatedAt; } /// This property disables SAS authentication for the Service Bus namespace. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public bool? DisableLocalAuth { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)Property).DisableLocalAuth; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)Property).DisableLocalAuth = value ?? default(bool); } + public bool? DisableLocalAuth { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)Property).DisableLocalAuth; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)Property).DisableLocalAuth = value ?? default(bool); } /// Resource Id [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inherited)] public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)__trackedResource).Id; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentity _identity; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentity _identity; /// Properties of BYOK Identity description [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentity Identity { get => (this._identity = this._identity ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.Identity()); set => this._identity = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentity Identity { get => (this._identity = this._identity ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.Identity()); set => this._identity = value; } /// Type of managed service identity. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ManagedServiceIdentityType? IdentityType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityInternal)Identity).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityInternal)Identity).Type = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ManagedServiceIdentityType)""); } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ManagedServiceIdentityType? IdentityType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityInternal)Identity).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityInternal)Identity).Type = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ManagedServiceIdentityType)""); } /// Enumerates the possible value of keySource for Encryption [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource? KeySource { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)Property).EncryptionKeySource; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)Property).EncryptionKeySource = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource)""); } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource? KeySource { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)Property).EncryptionKeySource; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)Property).EncryptionKeySource = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource)""); } /// Properties of KeyVault [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties[] KeyVaultProperty { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)Property).EncryptionKeyVaultProperty; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)Property).EncryptionKeyVaultProperty = value ?? null /* arrayOf */; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties[] KeyVaultProperty { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)Property).EncryptionKeyVaultProperty; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)Property).EncryptionKeyVaultProperty = value ?? null /* arrayOf */; } /// The Geo-location where the resource lives [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inherited)] @@ -61,7 +61,7 @@ public partial class SbNamespace : /// Identifier for Azure Insights metrics [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string MetricId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)Property).MetricId; } + public string MetricId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)Property).MetricId; } /// Internal Acessors for Id string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)__trackedResource).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)__trackedResource).Id = value; } @@ -73,80 +73,87 @@ public partial class SbNamespace : string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)__trackedResource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)__trackedResource).Type = value; } /// Internal Acessors for CreatedAt - global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal.CreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)Property).CreatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)Property).CreatedAt = value; } + global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal.CreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)Property).CreatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)Property).CreatedAt = value; } /// Internal Acessors for Encryption - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryption Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal.Encryption { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)Property).Encryption; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)Property).Encryption = value; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryption Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal.Encryption { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)Property).Encryption; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)Property).Encryption = value; } /// Internal Acessors for Identity - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentity Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal.Identity { get => (this._identity = this._identity ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.Identity()); set { {_identity = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentity Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal.Identity { get => (this._identity = this._identity ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.Identity()); set { {_identity = value;} } } /// Internal Acessors for MetricId - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal.MetricId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)Property).MetricId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)Property).MetricId = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal.MetricId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)Property).MetricId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)Property).MetricId = value; } /// Internal Acessors for PrincipalId - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal.PrincipalId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityInternal)Identity).PrincipalId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityInternal)Identity).PrincipalId = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal.PrincipalId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityInternal)Identity).PrincipalId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityInternal)Identity).PrincipalId = value; } /// Internal Acessors for Property - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceProperties Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbNamespaceProperties()); set { {_property = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceProperties Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbNamespaceProperties()); set { {_property = value;} } } /// Internal Acessors for ProvisioningState - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal.ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)Property).ProvisioningState; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)Property).ProvisioningState = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal.ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)Property).ProvisioningState; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)Property).ProvisioningState = value; } /// Internal Acessors for ServiceBusEndpoint - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal.ServiceBusEndpoint { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)Property).ServiceBusEndpoint; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)Property).ServiceBusEndpoint = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal.ServiceBusEndpoint { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)Property).ServiceBusEndpoint; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)Property).ServiceBusEndpoint = value; } /// Internal Acessors for Sku - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSku Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal.Sku { get => (this._sku = this._sku ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbSku()); set { {_sku = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSku Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal.Sku { get => (this._sku = this._sku ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbSku()); set { {_sku = value;} } } /// Internal Acessors for Status - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal.Status { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)Property).Status; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)Property).Status = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal.Status { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)Property).Status; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)Property).Status = value; } /// Internal Acessors for SystemData - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal.SystemData { get => (this._systemData = this._systemData ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemData()); set { {_systemData = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal.SystemData { get => (this._systemData = this._systemData ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemData()); set { {_systemData = value;} } } /// Internal Acessors for TenantId - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal.TenantId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityInternal)Identity).TenantId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityInternal)Identity).TenantId = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal.TenantId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityInternal)Identity).TenantId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityInternal)Identity).TenantId = value; } /// Internal Acessors for UpdatedAt - global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceInternal.UpdatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)Property).UpdatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)Property).UpdatedAt = value; } + global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceInternal.UpdatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)Property).UpdatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)Property).UpdatedAt = value; } /// The minimum TLS version for the cluster to support, e.g. '1.2' [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.TlsVersion? MinimumTlsVersion { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)Property).MinimumTlsVersion; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)Property).MinimumTlsVersion = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.TlsVersion)""); } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.TlsVersion? MinimumTlsVersion { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)Property).MinimumTlsVersion; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)Property).MinimumTlsVersion = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.TlsVersion)""); } /// Resource name [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inherited)] public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)__trackedResource).Name; } + /// + /// The number of partitions of a Service Bus namespace. This property is only applicable to Premium SKU namespaces. The default + /// value is 1 and possible values are 1, 2 and 4 + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] + public int? PremiumMessagingPartition { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)Property).PremiumMessagingPartition; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)Property).PremiumMessagingPartition = value ?? default(int); } + /// ObjectId from the KeyVault [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string PrincipalId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityInternal)Identity).PrincipalId; } + public string PrincipalId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityInternal)Identity).PrincipalId; } /// List of private endpoint connections. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection[] PrivateEndpointConnection { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)Property).PrivateEndpointConnection; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)Property).PrivateEndpointConnection = value ?? null /* arrayOf */; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection[] PrivateEndpointConnection { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)Property).PrivateEndpointConnection; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)Property).PrivateEndpointConnection = value ?? null /* arrayOf */; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceProperties _property; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceProperties _property; /// Properties of the namespace. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbNamespaceProperties()); set => this._property = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbNamespaceProperties()); set => this._property = value; } /// Provisioning state of the namespace. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)Property).ProvisioningState; } + public string ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)Property).ProvisioningState; } /// /// This determines if traffic is allowed over public network. By default it is enabled. /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PublicNetworkAccess? PublicNetworkAccess { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)Property).PublicNetworkAccess; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)Property).PublicNetworkAccess = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PublicNetworkAccess)""); } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PublicNetworkAccess? PublicNetworkAccess { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)Property).PublicNetworkAccess; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)Property).PublicNetworkAccess = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PublicNetworkAccess)""); } /// Enable Infrastructure Encryption (Double Encryption) [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public bool? RequireInfrastructureEncryption { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)Property).EncryptionRequireInfrastructureEncryption; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)Property).EncryptionRequireInfrastructureEncryption = value ?? default(bool); } + public bool? RequireInfrastructureEncryption { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)Property).EncryptionRequireInfrastructureEncryption; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)Property).EncryptionRequireInfrastructureEncryption = value ?? default(bool); } /// Gets the resource group name [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] @@ -154,32 +161,34 @@ public partial class SbNamespace : /// Endpoint you can use to perform Service Bus operations. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string ServiceBusEndpoint { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)Property).ServiceBusEndpoint; } + public string ServiceBusEndpoint { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)Property).ServiceBusEndpoint; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSku _sku; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSku _sku; /// Properties of SKU [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSku Sku { get => (this._sku = this._sku ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbSku()); set => this._sku = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSku Sku { get => (this._sku = this._sku ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbSku()); set => this._sku = value; } /// - /// The specified messaging units for the tier. For Premium tier, capacity are 1,2 and 4. + /// Messaging units for your service bus premium namespace. Valid capacities are {1, 2, 4, 8, 16} multiples of your properties.premiumMessagingPartitions + /// setting. For example, If properties.premiumMessagingPartitions is 1 then possible capacity values are 1, 2, 4, 8, and + /// 16. If properties.premiumMessagingPartitions is 4 then possible capacity values are 4, 8, 16, 32 and 64 /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public int? SkuCapacity { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSkuInternal)Sku).Capacity; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSkuInternal)Sku).Capacity = value ?? default(int); } + public int? SkuCapacity { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSkuInternal)Sku).Capacity; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSkuInternal)Sku).Capacity = value ?? default(int); } /// Name of this SKU. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuName? SkuName { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSkuInternal)Sku).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSkuInternal)Sku).Name = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuName)""); } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuName? SkuName { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSkuInternal)Sku).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSkuInternal)Sku).Name = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuName)""); } /// The billing tier of this particular SKU. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuTier? SkuTier { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSkuInternal)Sku).Tier; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSkuInternal)Sku).Tier = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuTier)""); } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuTier? SkuTier { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSkuInternal)Sku).Tier; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSkuInternal)Sku).Tier = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuTier)""); } /// Status of the namespace. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string Status { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)Property).Status; } + public string Status { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)Property).Status; } /// Backing field for property. private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData _systemData; @@ -218,7 +227,7 @@ public partial class SbNamespace : /// TenantId from the KeyVault [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string TenantId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityInternal)Identity).TenantId; } + public string TenantId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityInternal)Identity).TenantId; } /// Resource type [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inherited)] @@ -226,17 +235,17 @@ public partial class SbNamespace : /// The time the namespace was updated. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public global::System.DateTime? UpdatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)Property).UpdatedAt; } + public global::System.DateTime? UpdatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)Property).UpdatedAt; } /// Properties for User Assigned Identities [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityUserAssignedIdentities UserAssignedIdentity { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityInternal)Identity).UserAssignedIdentity; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityInternal)Identity).UserAssignedIdentity = value ?? null /* model class */; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityUserAssignedIdentities UserAssignedIdentity { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityInternal)Identity).UserAssignedIdentity; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityInternal)Identity).UserAssignedIdentity = value ?? null /* model class */; } /// /// Enabling this property creates a Premium Service Bus Namespace in regions supported availability zones. /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public bool? ZoneRedundant { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)Property).ZoneRedundant; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal)Property).ZoneRedundant = value ?? default(bool); } + public bool? ZoneRedundant { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)Property).ZoneRedundant; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)Property).ZoneRedundant = value ?? default(bool); } /// Creates an new instance. public SbNamespace() @@ -307,8 +316,8 @@ public partial interface ISbNamespace : ReadOnly = false, Description = @"Properties of KeyVault", SerializedName = @"keyVaultProperties", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties[] KeyVaultProperty { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties[] KeyVaultProperty { get; set; } /// Identifier for Azure Insights metrics [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Info( Required = false, @@ -325,6 +334,17 @@ public partial interface ISbNamespace : SerializedName = @"minimumTlsVersion", PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.TlsVersion) })] Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.TlsVersion? MinimumTlsVersion { get; set; } + /// + /// The number of partitions of a Service Bus namespace. This property is only applicable to Premium SKU namespaces. The default + /// value is 1 and possible values are 1, 2 and 4 + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The number of partitions of a Service Bus namespace. This property is only applicable to Premium SKU namespaces. The default value is 1 and possible values are 1, 2 and 4", + SerializedName = @"premiumMessagingPartitions", + PossibleTypes = new [] { typeof(int) })] + int? PremiumMessagingPartition { get; set; } /// ObjectId from the KeyVault [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Info( Required = false, @@ -339,8 +359,8 @@ public partial interface ISbNamespace : ReadOnly = false, Description = @"List of private endpoint connections.", SerializedName = @"privateEndpointConnections", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection[] PrivateEndpointConnection { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection[] PrivateEndpointConnection { get; set; } /// Provisioning state of the namespace. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Info( Required = false, @@ -376,12 +396,14 @@ public partial interface ISbNamespace : PossibleTypes = new [] { typeof(string) })] string ServiceBusEndpoint { get; } /// - /// The specified messaging units for the tier. For Premium tier, capacity are 1,2 and 4. + /// Messaging units for your service bus premium namespace. Valid capacities are {1, 2, 4, 8, 16} multiples of your properties.premiumMessagingPartitions + /// setting. For example, If properties.premiumMessagingPartitions is 1 then possible capacity values are 1, 2, 4, 8, and + /// 16. If properties.premiumMessagingPartitions is 4 then possible capacity values are 4, 8, 16, 32 and 64 /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Info( Required = false, ReadOnly = false, - Description = @"The specified messaging units for the tier. For Premium tier, capacity are 1,2 and 4.", + Description = @"Messaging units for your service bus premium namespace. Valid capacities are {1, 2, 4, 8, 16} multiples of your properties.premiumMessagingPartitions setting. For example, If properties.premiumMessagingPartitions is 1 then possible capacity values are 1, 2, 4, 8, and 16. If properties.premiumMessagingPartitions is 4 then possible capacity values are 4, 8, 16, 32 and 64", SerializedName = @"capacity", PossibleTypes = new [] { typeof(int) })] int? SkuCapacity { get; set; } @@ -479,8 +501,8 @@ public partial interface ISbNamespace : ReadOnly = false, Description = @"Properties for User Assigned Identities", SerializedName = @"userAssignedIdentities", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityUserAssignedIdentities) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityUserAssignedIdentities UserAssignedIdentity { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityUserAssignedIdentities) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityUserAssignedIdentities UserAssignedIdentity { get; set; } /// /// Enabling this property creates a Premium Service Bus Namespace in regions supported availability zones. /// @@ -504,25 +526,30 @@ internal partial interface ISbNamespaceInternal : /// This property disables SAS authentication for the Service Bus namespace. bool? DisableLocalAuth { get; set; } /// Properties of BYOK Encryption description - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryption Encryption { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryption Encryption { get; set; } /// Properties of BYOK Identity description - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentity Identity { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentity Identity { get; set; } /// Type of managed service identity. Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ManagedServiceIdentityType? IdentityType { get; set; } /// Enumerates the possible value of keySource for Encryption Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource? KeySource { get; set; } /// Properties of KeyVault - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties[] KeyVaultProperty { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties[] KeyVaultProperty { get; set; } /// Identifier for Azure Insights metrics string MetricId { get; set; } /// The minimum TLS version for the cluster to support, e.g. '1.2' Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.TlsVersion? MinimumTlsVersion { get; set; } + /// + /// The number of partitions of a Service Bus namespace. This property is only applicable to Premium SKU namespaces. The default + /// value is 1 and possible values are 1, 2 and 4 + /// + int? PremiumMessagingPartition { get; set; } /// ObjectId from the KeyVault string PrincipalId { get; set; } /// List of private endpoint connections. - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection[] PrivateEndpointConnection { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection[] PrivateEndpointConnection { get; set; } /// Properties of the namespace. - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceProperties Property { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceProperties Property { get; set; } /// Provisioning state of the namespace. string ProvisioningState { get; set; } /// @@ -534,9 +561,11 @@ internal partial interface ISbNamespaceInternal : /// Endpoint you can use to perform Service Bus operations. string ServiceBusEndpoint { get; set; } /// Properties of SKU - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSku Sku { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSku Sku { get; set; } /// - /// The specified messaging units for the tier. For Premium tier, capacity are 1,2 and 4. + /// Messaging units for your service bus premium namespace. Valid capacities are {1, 2, 4, 8, 16} multiples of your properties.premiumMessagingPartitions + /// setting. For example, If properties.premiumMessagingPartitions is 1 then possible capacity values are 1, 2, 4, 8, and + /// 16. If properties.premiumMessagingPartitions is 4 then possible capacity values are 4, 8, 16, 32 and 64 /// int? SkuCapacity { get; set; } /// Name of this SKU. @@ -564,7 +593,7 @@ internal partial interface ISbNamespaceInternal : /// The time the namespace was updated. global::System.DateTime? UpdatedAt { get; set; } /// Properties for User Assigned Identities - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityUserAssignedIdentities UserAssignedIdentity { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityUserAssignedIdentities UserAssignedIdentity { get; set; } /// /// Enabling this property creates a Premium Service Bus Namespace in regions supported availability zones. /// diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespace.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespace.json.cs similarity index 94% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespace.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespace.json.cs index e12ed089252c..2c66f3483d9b 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespace.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespace.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class SbNamespace partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new SbNamespace(json) : null; } @@ -78,10 +78,10 @@ internal SbNamespace(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json. return; } __trackedResource = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.TrackedResource(json); - {_sku = If( json?.PropertyT("sku"), out var __jsonSku) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbSku.FromJson(__jsonSku) : Sku;} - {_identity = If( json?.PropertyT("identity"), out var __jsonIdentity) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.Identity.FromJson(__jsonIdentity) : Identity;} + {_sku = If( json?.PropertyT("sku"), out var __jsonSku) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbSku.FromJson(__jsonSku) : Sku;} + {_identity = If( json?.PropertyT("identity"), out var __jsonIdentity) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.Identity.FromJson(__jsonIdentity) : Identity;} {_systemData = If( json?.PropertyT("systemData"), out var __jsonSystemData) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemData.FromJson(__jsonSystemData) : SystemData;} - {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbNamespaceProperties.FromJson(__jsonProperties) : Property;} + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbNamespaceProperties.FromJson(__jsonProperties) : Property;} AfterFromJson(json); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceListResult.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceListResult.PowerShell.cs similarity index 75% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceListResult.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceListResult.PowerShell.cs index b3466bdaa72d..0a70d0053144 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceListResult.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceListResult.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -63,29 +63,29 @@ public partial class SbNamespaceListResult partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new SbNamespaceListResult(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new SbNamespaceListResult(content); } @@ -95,10 +95,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -113,17 +113,17 @@ internal SbNamespaceListResult(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbNamespaceTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbNamespaceTypeConverter.ConvertFrom)); } if (content.Contains("NextLink")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceListResultInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceListResultInternal)this).NextLink, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -138,11 +138,11 @@ internal SbNamespaceListResult(global::System.Management.Automation.PSObject con // actually deserialize if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbNamespaceTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbNamespaceTypeConverter.ConvertFrom)); } if (content.Contains("NextLink")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceListResultInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceListResultInternal)this).NextLink, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceListResult.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceListResult.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceListResult.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceListResult.TypeConverter.cs index 542a8f58dc28..f7905bceb306 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceListResult.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceListResult.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceListResult ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceListResult ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceListResult).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceListResult).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceListResult.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceListResult.cs similarity index 89% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceListResult.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceListResult.cs index 3c2f71a22af2..deb7c3b50beb 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceListResult.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceListResult.cs @@ -3,15 +3,15 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// The response of the List Namespace operation. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class SbNamespaceListResult : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceListResult, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceListResultInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceListResult, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceListResultInternal { /// Backing field for property. @@ -24,11 +24,11 @@ public partial class SbNamespaceListResult : public string NextLink { get => this._nextLink; set => this._nextLink = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace[] _value; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace[] _value; /// Result of the List Namespace operation. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace[] Value { get => this._value; set => this._value = value; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace[] Value { get => this._value; set => this._value = value; } /// Creates an new instance. public SbNamespaceListResult() @@ -56,8 +56,8 @@ public partial interface ISbNamespaceListResult : ReadOnly = false, Description = @"Result of the List Namespace operation.", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace[] Value { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace[] Value { get; set; } } /// The response of the List Namespace operation. @@ -69,7 +69,7 @@ internal partial interface ISbNamespaceListResultInternal /// string NextLink { get; set; } /// Result of the List Namespace operation. - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace[] Value { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace[] Value { get; set; } } } \ No newline at end of file diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceListResult.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceListResult.json.cs similarity index 91% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceListResult.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceListResult.json.cs index 5f18af44315a..9c922d846951 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceListResult.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceListResult.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class SbNamespaceListResult partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceListResult. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceListResult. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceListResult. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceListResult. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new SbNamespaceListResult(json) : null; } @@ -77,7 +77,7 @@ internal SbNamespaceListResult(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Run { return; } - {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace) (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbNamespace.FromJson(__u) )) ))() : null : Value;} + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace) (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbNamespace.FromJson(__u) )) ))() : null : Value;} {_nextLink = If( json?.PropertyT("nextLink"), out var __jsonNextLink) ? (string)__jsonNextLink : (string)NextLink;} AfterFromJson(json); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceProperties.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceProperties.PowerShell.cs new file mode 100644 index 000000000000..11e06859e2e8 --- /dev/null +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceProperties.PowerShell.cs @@ -0,0 +1,294 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; + + /// Properties of the namespace. + [System.ComponentModel.TypeConverter(typeof(SbNamespacePropertiesTypeConverter))] + public partial class SbNamespaceProperties + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior + /// + /// /// instance serialized to a string, normally it is a Json + /// /// set returnNow to true if you provide a customized OverrideToString function + + partial void OverrideToString(ref string stringResult, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new SbNamespaceProperties(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new SbNamespaceProperties(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal SbNamespaceProperties(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Encryption")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).Encryption = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryption) content.GetValueForProperty("Encryption",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).Encryption, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.EncryptionTypeConverter.ConvertFrom); + } + if (content.Contains("MinimumTlsVersion")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).MinimumTlsVersion = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.TlsVersion?) content.GetValueForProperty("MinimumTlsVersion",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).MinimumTlsVersion, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.TlsVersion.CreateFrom); + } + if (content.Contains("ProvisioningState")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).ProvisioningState, global::System.Convert.ToString); + } + if (content.Contains("Status")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).Status = (string) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).Status, global::System.Convert.ToString); + } + if (content.Contains("CreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("UpdatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).UpdatedAt = (global::System.DateTime?) content.GetValueForProperty("UpdatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).UpdatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("ServiceBusEndpoint")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).ServiceBusEndpoint = (string) content.GetValueForProperty("ServiceBusEndpoint",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).ServiceBusEndpoint, global::System.Convert.ToString); + } + if (content.Contains("MetricId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).MetricId = (string) content.GetValueForProperty("MetricId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).MetricId, global::System.Convert.ToString); + } + if (content.Contains("ZoneRedundant")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).ZoneRedundant = (bool?) content.GetValueForProperty("ZoneRedundant",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).ZoneRedundant, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("PrivateEndpointConnection")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).PrivateEndpointConnection = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection[]) content.GetValueForProperty("PrivateEndpointConnection",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).PrivateEndpointConnection, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.PrivateEndpointConnectionTypeConverter.ConvertFrom)); + } + if (content.Contains("DisableLocalAuth")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).DisableLocalAuth = (bool?) content.GetValueForProperty("DisableLocalAuth",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).DisableLocalAuth, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("AlternateName")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).AlternateName = (string) content.GetValueForProperty("AlternateName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).AlternateName, global::System.Convert.ToString); + } + if (content.Contains("PublicNetworkAccess")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).PublicNetworkAccess = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PublicNetworkAccess?) content.GetValueForProperty("PublicNetworkAccess",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).PublicNetworkAccess, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PublicNetworkAccess.CreateFrom); + } + if (content.Contains("PremiumMessagingPartition")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).PremiumMessagingPartition = (int?) content.GetValueForProperty("PremiumMessagingPartition",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).PremiumMessagingPartition, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + } + if (content.Contains("EncryptionKeySource")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).EncryptionKeySource = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource?) content.GetValueForProperty("EncryptionKeySource",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).EncryptionKeySource, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource.CreateFrom); + } + if (content.Contains("EncryptionKeyVaultProperty")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).EncryptionKeyVaultProperty = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties[]) content.GetValueForProperty("EncryptionKeyVaultProperty",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).EncryptionKeyVaultProperty, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.KeyVaultPropertiesTypeConverter.ConvertFrom)); + } + if (content.Contains("EncryptionRequireInfrastructureEncryption")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).EncryptionRequireInfrastructureEncryption = (bool?) content.GetValueForProperty("EncryptionRequireInfrastructureEncryption",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).EncryptionRequireInfrastructureEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal SbNamespaceProperties(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Encryption")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).Encryption = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryption) content.GetValueForProperty("Encryption",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).Encryption, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.EncryptionTypeConverter.ConvertFrom); + } + if (content.Contains("MinimumTlsVersion")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).MinimumTlsVersion = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.TlsVersion?) content.GetValueForProperty("MinimumTlsVersion",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).MinimumTlsVersion, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.TlsVersion.CreateFrom); + } + if (content.Contains("ProvisioningState")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).ProvisioningState, global::System.Convert.ToString); + } + if (content.Contains("Status")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).Status = (string) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).Status, global::System.Convert.ToString); + } + if (content.Contains("CreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("UpdatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).UpdatedAt = (global::System.DateTime?) content.GetValueForProperty("UpdatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).UpdatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("ServiceBusEndpoint")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).ServiceBusEndpoint = (string) content.GetValueForProperty("ServiceBusEndpoint",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).ServiceBusEndpoint, global::System.Convert.ToString); + } + if (content.Contains("MetricId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).MetricId = (string) content.GetValueForProperty("MetricId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).MetricId, global::System.Convert.ToString); + } + if (content.Contains("ZoneRedundant")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).ZoneRedundant = (bool?) content.GetValueForProperty("ZoneRedundant",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).ZoneRedundant, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("PrivateEndpointConnection")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).PrivateEndpointConnection = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection[]) content.GetValueForProperty("PrivateEndpointConnection",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).PrivateEndpointConnection, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.PrivateEndpointConnectionTypeConverter.ConvertFrom)); + } + if (content.Contains("DisableLocalAuth")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).DisableLocalAuth = (bool?) content.GetValueForProperty("DisableLocalAuth",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).DisableLocalAuth, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("AlternateName")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).AlternateName = (string) content.GetValueForProperty("AlternateName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).AlternateName, global::System.Convert.ToString); + } + if (content.Contains("PublicNetworkAccess")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).PublicNetworkAccess = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PublicNetworkAccess?) content.GetValueForProperty("PublicNetworkAccess",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).PublicNetworkAccess, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.PublicNetworkAccess.CreateFrom); + } + if (content.Contains("PremiumMessagingPartition")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).PremiumMessagingPartition = (int?) content.GetValueForProperty("PremiumMessagingPartition",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).PremiumMessagingPartition, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + } + if (content.Contains("EncryptionKeySource")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).EncryptionKeySource = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource?) content.GetValueForProperty("EncryptionKeySource",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).EncryptionKeySource, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource.CreateFrom); + } + if (content.Contains("EncryptionKeyVaultProperty")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).EncryptionKeyVaultProperty = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties[]) content.GetValueForProperty("EncryptionKeyVaultProperty",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).EncryptionKeyVaultProperty, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.KeyVaultPropertiesTypeConverter.ConvertFrom)); + } + if (content.Contains("EncryptionRequireInfrastructureEncryption")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).EncryptionRequireInfrastructureEncryption = (bool?) content.GetValueForProperty("EncryptionRequireInfrastructureEncryption",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal)this).EncryptionRequireInfrastructureEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.SerializationMode.IncludeAll)?.ToString(); + + public override string ToString() + { + var returnNow = false; + var result = global::System.String.Empty; + OverrideToString(ref result, ref returnNow); + if (returnNow) + { + return result; + } + return ToJsonString(); + } + } + /// Properties of the namespace. + [System.ComponentModel.TypeConverter(typeof(SbNamespacePropertiesTypeConverter))] + public partial interface ISbNamespaceProperties + + { + + } +} \ No newline at end of file diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceProperties.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceProperties.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceProperties.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceProperties.TypeConverter.cs index b56fc4e0daf2..c7cec2aaf002 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceProperties.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceProperties.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceProperties ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceProperties ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceProperties).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceProperties).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceProperties.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceProperties.cs similarity index 78% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceProperties.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceProperties.cs index a9826b59c803..6522a12f6920 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceProperties.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceProperties.cs @@ -3,15 +3,15 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// Properties of the namespace. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class SbNamespaceProperties : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceProperties, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceProperties, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal { /// Backing field for property. @@ -36,23 +36,23 @@ public partial class SbNamespaceProperties : public bool? DisableLocalAuth { get => this._disableLocalAuth; set => this._disableLocalAuth = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryption _encryption; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryption _encryption; /// Properties of BYOK Encryption description [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryption Encryption { get => (this._encryption = this._encryption ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.Encryption()); set => this._encryption = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryption Encryption { get => (this._encryption = this._encryption ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.Encryption()); set => this._encryption = value; } /// Enumerates the possible value of keySource for Encryption [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource? EncryptionKeySource { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryptionInternal)Encryption).KeySource; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryptionInternal)Encryption).KeySource = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource)""); } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource? EncryptionKeySource { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryptionInternal)Encryption).KeySource; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryptionInternal)Encryption).KeySource = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource)""); } /// Properties of KeyVault [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties[] EncryptionKeyVaultProperty { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryptionInternal)Encryption).KeyVaultProperty; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryptionInternal)Encryption).KeyVaultProperty = value ?? null /* arrayOf */; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties[] EncryptionKeyVaultProperty { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryptionInternal)Encryption).KeyVaultProperty; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryptionInternal)Encryption).KeyVaultProperty = value ?? null /* arrayOf */; } /// Enable Infrastructure Encryption (Double Encryption) [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public bool? EncryptionRequireInfrastructureEncryption { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryptionInternal)Encryption).RequireInfrastructureEncryption; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryptionInternal)Encryption).RequireInfrastructureEncryption = value ?? default(bool); } + public bool? EncryptionRequireInfrastructureEncryption { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryptionInternal)Encryption).RequireInfrastructureEncryption; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryptionInternal)Encryption).RequireInfrastructureEncryption = value ?? default(bool); } /// Backing field for property. private string _metricId; @@ -62,25 +62,25 @@ public partial class SbNamespaceProperties : public string MetricId { get => this._metricId; } /// Internal Acessors for CreatedAt - global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal.CreatedAt { get => this._createdAt; set { {_createdAt = value;} } } + global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal.CreatedAt { get => this._createdAt; set { {_createdAt = value;} } } /// Internal Acessors for Encryption - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryption Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal.Encryption { get => (this._encryption = this._encryption ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.Encryption()); set { {_encryption = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryption Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal.Encryption { get => (this._encryption = this._encryption ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.Encryption()); set { {_encryption = value;} } } /// Internal Acessors for MetricId - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal.MetricId { get => this._metricId; set { {_metricId = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal.MetricId { get => this._metricId; set { {_metricId = value;} } } /// Internal Acessors for ProvisioningState - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal.ProvisioningState { get => this._provisioningState; set { {_provisioningState = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal.ProvisioningState { get => this._provisioningState; set { {_provisioningState = value;} } } /// Internal Acessors for ServiceBusEndpoint - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal.ServiceBusEndpoint { get => this._serviceBusEndpoint; set { {_serviceBusEndpoint = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal.ServiceBusEndpoint { get => this._serviceBusEndpoint; set { {_serviceBusEndpoint = value;} } } /// Internal Acessors for Status - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal.Status { get => this._status; set { {_status = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal.Status { get => this._status; set { {_status = value;} } } /// Internal Acessors for UpdatedAt - global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespacePropertiesInternal.UpdatedAt { get => this._updatedAt; set { {_updatedAt = value;} } } + global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespacePropertiesInternal.UpdatedAt { get => this._updatedAt; set { {_updatedAt = value;} } } /// Backing field for property. private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.TlsVersion? _minimumTlsVersion; @@ -89,12 +89,22 @@ public partial class SbNamespaceProperties : [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.TlsVersion? MinimumTlsVersion { get => this._minimumTlsVersion; set => this._minimumTlsVersion = value; } + /// Backing field for property. + private int? _premiumMessagingPartition; + + /// + /// The number of partitions of a Service Bus namespace. This property is only applicable to Premium SKU namespaces. The default + /// value is 1 and possible values are 1, 2 and 4 + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] + public int? PremiumMessagingPartition { get => this._premiumMessagingPartition; set => this._premiumMessagingPartition = value; } + /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection[] _privateEndpointConnection; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection[] _privateEndpointConnection; /// List of private endpoint connections. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection[] PrivateEndpointConnection { get => this._privateEndpointConnection; set => this._privateEndpointConnection = value; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection[] PrivateEndpointConnection { get => this._privateEndpointConnection; set => this._privateEndpointConnection = value; } /// Backing field for property. private string _provisioningState; @@ -190,8 +200,8 @@ public partial interface ISbNamespaceProperties : ReadOnly = false, Description = @"Properties of KeyVault", SerializedName = @"keyVaultProperties", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties[] EncryptionKeyVaultProperty { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties[] EncryptionKeyVaultProperty { get; set; } /// Enable Infrastructure Encryption (Double Encryption) [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Info( Required = false, @@ -216,14 +226,25 @@ public partial interface ISbNamespaceProperties : SerializedName = @"minimumTlsVersion", PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.TlsVersion) })] Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.TlsVersion? MinimumTlsVersion { get; set; } + /// + /// The number of partitions of a Service Bus namespace. This property is only applicable to Premium SKU namespaces. The default + /// value is 1 and possible values are 1, 2 and 4 + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The number of partitions of a Service Bus namespace. This property is only applicable to Premium SKU namespaces. The default value is 1 and possible values are 1, 2 and 4", + SerializedName = @"premiumMessagingPartitions", + PossibleTypes = new [] { typeof(int) })] + int? PremiumMessagingPartition { get; set; } /// List of private endpoint connections. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Info( Required = false, ReadOnly = false, Description = @"List of private endpoint connections.", SerializedName = @"privateEndpointConnections", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection[] PrivateEndpointConnection { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection[] PrivateEndpointConnection { get; set; } /// Provisioning state of the namespace. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Info( Required = false, @@ -289,19 +310,24 @@ internal partial interface ISbNamespacePropertiesInternal /// This property disables SAS authentication for the Service Bus namespace. bool? DisableLocalAuth { get; set; } /// Properties of BYOK Encryption description - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryption Encryption { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryption Encryption { get; set; } /// Enumerates the possible value of keySource for Encryption Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource? EncryptionKeySource { get; set; } /// Properties of KeyVault - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties[] EncryptionKeyVaultProperty { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties[] EncryptionKeyVaultProperty { get; set; } /// Enable Infrastructure Encryption (Double Encryption) bool? EncryptionRequireInfrastructureEncryption { get; set; } /// Identifier for Azure Insights metrics string MetricId { get; set; } /// The minimum TLS version for the cluster to support, e.g. '1.2' Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.TlsVersion? MinimumTlsVersion { get; set; } + /// + /// The number of partitions of a Service Bus namespace. This property is only applicable to Premium SKU namespaces. The default + /// value is 1 and possible values are 1, 2 and 4 + /// + int? PremiumMessagingPartition { get; set; } /// List of private endpoint connections. - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection[] PrivateEndpointConnection { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection[] PrivateEndpointConnection { get; set; } /// Provisioning state of the namespace. string ProvisioningState { get; set; } /// diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceProperties.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceProperties.json.cs similarity index 91% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceProperties.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceProperties.json.cs index 26f1cf126e3f..b0c5a8979201 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceProperties.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceProperties.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class SbNamespaceProperties partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceProperties. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceProperties. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceProperties. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceProperties. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new SbNamespaceProperties(json) : null; } @@ -77,7 +77,7 @@ internal SbNamespaceProperties(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Run { return; } - {_encryption = If( json?.PropertyT("encryption"), out var __jsonEncryption) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.Encryption.FromJson(__jsonEncryption) : Encryption;} + {_encryption = If( json?.PropertyT("encryption"), out var __jsonEncryption) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.Encryption.FromJson(__jsonEncryption) : Encryption;} {_minimumTlsVersion = If( json?.PropertyT("minimumTlsVersion"), out var __jsonMinimumTlsVersion) ? (string)__jsonMinimumTlsVersion : (string)MinimumTlsVersion;} {_provisioningState = If( json?.PropertyT("provisioningState"), out var __jsonProvisioningState) ? (string)__jsonProvisioningState : (string)ProvisioningState;} {_status = If( json?.PropertyT("status"), out var __jsonStatus) ? (string)__jsonStatus : (string)Status;} @@ -86,10 +86,11 @@ internal SbNamespaceProperties(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Run {_serviceBusEndpoint = If( json?.PropertyT("serviceBusEndpoint"), out var __jsonServiceBusEndpoint) ? (string)__jsonServiceBusEndpoint : (string)ServiceBusEndpoint;} {_metricId = If( json?.PropertyT("metricId"), out var __jsonMetricId) ? (string)__jsonMetricId : (string)MetricId;} {_zoneRedundant = If( json?.PropertyT("zoneRedundant"), out var __jsonZoneRedundant) ? (bool?)__jsonZoneRedundant : ZoneRedundant;} - {_privateEndpointConnection = If( json?.PropertyT("privateEndpointConnections"), out var __jsonPrivateEndpointConnections) ? If( __jsonPrivateEndpointConnections as Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection) (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.PrivateEndpointConnection.FromJson(__u) )) ))() : null : PrivateEndpointConnection;} + {_privateEndpointConnection = If( json?.PropertyT("privateEndpointConnections"), out var __jsonPrivateEndpointConnections) ? If( __jsonPrivateEndpointConnections as Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection) (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.PrivateEndpointConnection.FromJson(__u) )) ))() : null : PrivateEndpointConnection;} {_disableLocalAuth = If( json?.PropertyT("disableLocalAuth"), out var __jsonDisableLocalAuth) ? (bool?)__jsonDisableLocalAuth : DisableLocalAuth;} {_alternateName = If( json?.PropertyT("alternateName"), out var __jsonAlternateName) ? (string)__jsonAlternateName : (string)AlternateName;} {_publicNetworkAccess = If( json?.PropertyT("publicNetworkAccess"), out var __jsonPublicNetworkAccess) ? (string)__jsonPublicNetworkAccess : (string)PublicNetworkAccess;} + {_premiumMessagingPartition = If( json?.PropertyT("premiumMessagingPartitions"), out var __jsonPremiumMessagingPartitions) ? (int?)__jsonPremiumMessagingPartitions : PremiumMessagingPartition;} AfterFromJson(json); } @@ -151,6 +152,7 @@ public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode ToJso AddIf( null != this._disableLocalAuth ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode)new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonBoolean((bool)this._disableLocalAuth) : null, "disableLocalAuth" ,container.Add ); AddIf( null != (((object)this._alternateName)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonString(this._alternateName.ToString()) : null, "alternateName" ,container.Add ); AddIf( null != (((object)this._publicNetworkAccess)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonString(this._publicNetworkAccess.ToString()) : null, "publicNetworkAccess" ,container.Add ); + AddIf( null != this._premiumMessagingPartition ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode)new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNumber((int)this._premiumMessagingPartition) : null, "premiumMessagingPartitions" ,container.Add ); AfterToJson(ref container); return container; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceUpdateParameters.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceUpdateParameters.PowerShell.cs new file mode 100644 index 000000000000..29449c739614 --- /dev/null +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceUpdateParameters.PowerShell.cs @@ -0,0 +1,382 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; + + /// Description of a namespace resource. + [System.ComponentModel.TypeConverter(typeof(SbNamespaceUpdateParametersTypeConverter))] + public partial class SbNamespaceUpdateParameters + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior + /// + /// /// instance serialized to a string, normally it is a Json + /// /// set returnNow to true if you provide a customized OverrideToString function + + partial void OverrideToString(ref string stringResult, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParameters DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new SbNamespaceUpdateParameters(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParameters DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new SbNamespaceUpdateParameters(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParameters FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal SbNamespaceUpdateParameters(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Sku")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).Sku = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSku) content.GetValueForProperty("Sku",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).Sku, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbSkuTypeConverter.ConvertFrom); + } + if (content.Contains("Property")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbNamespaceUpdatePropertiesTypeConverter.ConvertFrom); + } + if (content.Contains("Identity")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).Identity = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentity) content.GetValueForProperty("Identity",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).Identity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IdentityTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); + } + if (content.Contains("Location")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatchInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatchInternal)this).Location, global::System.Convert.ToString); + } + if (content.Contains("Tag")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatchInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatchTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatchInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ResourceNamespacePatchTagsTypeConverter.ConvertFrom); + } + if (content.Contains("SkuName")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).SkuName = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuName) content.GetValueForProperty("SkuName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).SkuName, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuName.CreateFrom); + } + if (content.Contains("SkuTier")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).SkuTier = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuTier?) content.GetValueForProperty("SkuTier",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).SkuTier, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuTier.CreateFrom); + } + if (content.Contains("Encryption")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).Encryption = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryption) content.GetValueForProperty("Encryption",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).Encryption, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.EncryptionTypeConverter.ConvertFrom); + } + if (content.Contains("IdentityPrincipalId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).IdentityPrincipalId = (string) content.GetValueForProperty("IdentityPrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).IdentityPrincipalId, global::System.Convert.ToString); + } + if (content.Contains("IdentityTenantId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).IdentityTenantId = (string) content.GetValueForProperty("IdentityTenantId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).IdentityTenantId, global::System.Convert.ToString); + } + if (content.Contains("SkuCapacity")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).SkuCapacity = (int?) content.GetValueForProperty("SkuCapacity",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).SkuCapacity, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + } + if (content.Contains("ProvisioningState")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).ProvisioningState, global::System.Convert.ToString); + } + if (content.Contains("Status")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).Status = (string) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).Status, global::System.Convert.ToString); + } + if (content.Contains("CreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("UpdatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).UpdatedAt = (global::System.DateTime?) content.GetValueForProperty("UpdatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).UpdatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("ServiceBusEndpoint")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).ServiceBusEndpoint = (string) content.GetValueForProperty("ServiceBusEndpoint",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).ServiceBusEndpoint, global::System.Convert.ToString); + } + if (content.Contains("MetricId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).MetricId = (string) content.GetValueForProperty("MetricId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).MetricId, global::System.Convert.ToString); + } + if (content.Contains("PrivateEndpointConnection")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).PrivateEndpointConnection = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection[]) content.GetValueForProperty("PrivateEndpointConnection",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).PrivateEndpointConnection, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.PrivateEndpointConnectionTypeConverter.ConvertFrom)); + } + if (content.Contains("DisableLocalAuth")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).DisableLocalAuth = (bool?) content.GetValueForProperty("DisableLocalAuth",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).DisableLocalAuth, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("AlternateName")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).AlternateName = (string) content.GetValueForProperty("AlternateName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).AlternateName, global::System.Convert.ToString); + } + if (content.Contains("EncryptionKeySource")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).EncryptionKeySource = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource?) content.GetValueForProperty("EncryptionKeySource",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).EncryptionKeySource, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource.CreateFrom); + } + if (content.Contains("IdentityType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).IdentityType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ManagedServiceIdentityType?) content.GetValueForProperty("IdentityType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).IdentityType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ManagedServiceIdentityType.CreateFrom); + } + if (content.Contains("IdentityUserAssignedIdentity")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).IdentityUserAssignedIdentity = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityUserAssignedIdentities) content.GetValueForProperty("IdentityUserAssignedIdentity",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).IdentityUserAssignedIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IdentityUserAssignedIdentitiesTypeConverter.ConvertFrom); + } + if (content.Contains("EncryptionKeyVaultProperty")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).EncryptionKeyVaultProperty = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties[]) content.GetValueForProperty("EncryptionKeyVaultProperty",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).EncryptionKeyVaultProperty, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.KeyVaultPropertiesTypeConverter.ConvertFrom)); + } + if (content.Contains("EncryptionRequireInfrastructureEncryption")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).EncryptionRequireInfrastructureEncryption = (bool?) content.GetValueForProperty("EncryptionRequireInfrastructureEncryption",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).EncryptionRequireInfrastructureEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal SbNamespaceUpdateParameters(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Sku")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).Sku = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSku) content.GetValueForProperty("Sku",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).Sku, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbSkuTypeConverter.ConvertFrom); + } + if (content.Contains("Property")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbNamespaceUpdatePropertiesTypeConverter.ConvertFrom); + } + if (content.Contains("Identity")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).Identity = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentity) content.GetValueForProperty("Identity",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).Identity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IdentityTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)this).Type, global::System.Convert.ToString); + } + if (content.Contains("Location")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatchInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatchInternal)this).Location, global::System.Convert.ToString); + } + if (content.Contains("Tag")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatchInternal)this).Tag = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatchTags) content.GetValueForProperty("Tag",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatchInternal)this).Tag, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ResourceNamespacePatchTagsTypeConverter.ConvertFrom); + } + if (content.Contains("SkuName")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).SkuName = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuName) content.GetValueForProperty("SkuName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).SkuName, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuName.CreateFrom); + } + if (content.Contains("SkuTier")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).SkuTier = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuTier?) content.GetValueForProperty("SkuTier",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).SkuTier, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuTier.CreateFrom); + } + if (content.Contains("Encryption")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).Encryption = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryption) content.GetValueForProperty("Encryption",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).Encryption, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.EncryptionTypeConverter.ConvertFrom); + } + if (content.Contains("IdentityPrincipalId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).IdentityPrincipalId = (string) content.GetValueForProperty("IdentityPrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).IdentityPrincipalId, global::System.Convert.ToString); + } + if (content.Contains("IdentityTenantId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).IdentityTenantId = (string) content.GetValueForProperty("IdentityTenantId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).IdentityTenantId, global::System.Convert.ToString); + } + if (content.Contains("SkuCapacity")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).SkuCapacity = (int?) content.GetValueForProperty("SkuCapacity",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).SkuCapacity, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + } + if (content.Contains("ProvisioningState")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).ProvisioningState, global::System.Convert.ToString); + } + if (content.Contains("Status")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).Status = (string) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).Status, global::System.Convert.ToString); + } + if (content.Contains("CreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("UpdatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).UpdatedAt = (global::System.DateTime?) content.GetValueForProperty("UpdatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).UpdatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("ServiceBusEndpoint")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).ServiceBusEndpoint = (string) content.GetValueForProperty("ServiceBusEndpoint",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).ServiceBusEndpoint, global::System.Convert.ToString); + } + if (content.Contains("MetricId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).MetricId = (string) content.GetValueForProperty("MetricId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).MetricId, global::System.Convert.ToString); + } + if (content.Contains("PrivateEndpointConnection")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).PrivateEndpointConnection = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection[]) content.GetValueForProperty("PrivateEndpointConnection",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).PrivateEndpointConnection, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.PrivateEndpointConnectionTypeConverter.ConvertFrom)); + } + if (content.Contains("DisableLocalAuth")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).DisableLocalAuth = (bool?) content.GetValueForProperty("DisableLocalAuth",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).DisableLocalAuth, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("AlternateName")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).AlternateName = (string) content.GetValueForProperty("AlternateName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).AlternateName, global::System.Convert.ToString); + } + if (content.Contains("EncryptionKeySource")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).EncryptionKeySource = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource?) content.GetValueForProperty("EncryptionKeySource",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).EncryptionKeySource, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource.CreateFrom); + } + if (content.Contains("IdentityType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).IdentityType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ManagedServiceIdentityType?) content.GetValueForProperty("IdentityType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).IdentityType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ManagedServiceIdentityType.CreateFrom); + } + if (content.Contains("IdentityUserAssignedIdentity")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).IdentityUserAssignedIdentity = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityUserAssignedIdentities) content.GetValueForProperty("IdentityUserAssignedIdentity",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).IdentityUserAssignedIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IdentityUserAssignedIdentitiesTypeConverter.ConvertFrom); + } + if (content.Contains("EncryptionKeyVaultProperty")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).EncryptionKeyVaultProperty = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties[]) content.GetValueForProperty("EncryptionKeyVaultProperty",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).EncryptionKeyVaultProperty, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.KeyVaultPropertiesTypeConverter.ConvertFrom)); + } + if (content.Contains("EncryptionRequireInfrastructureEncryption")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).EncryptionRequireInfrastructureEncryption = (bool?) content.GetValueForProperty("EncryptionRequireInfrastructureEncryption",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal)this).EncryptionRequireInfrastructureEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.SerializationMode.IncludeAll)?.ToString(); + + public override string ToString() + { + var returnNow = false; + var result = global::System.String.Empty; + OverrideToString(ref result, ref returnNow); + if (returnNow) + { + return result; + } + return ToJsonString(); + } + } + /// Description of a namespace resource. + [System.ComponentModel.TypeConverter(typeof(SbNamespaceUpdateParametersTypeConverter))] + public partial interface ISbNamespaceUpdateParameters + + { + + } +} \ No newline at end of file diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceUpdateParameters.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceUpdateParameters.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceUpdateParameters.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceUpdateParameters.TypeConverter.cs index 59175429d70b..35b6bd3a5593 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceUpdateParameters.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceUpdateParameters.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParameters ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParameters ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParameters).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParameters).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceUpdateParameters.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceUpdateParameters.cs similarity index 64% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceUpdateParameters.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceUpdateParameters.cs index e9ac888be797..c501b3cc50cd 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceUpdateParameters.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceUpdateParameters.cs @@ -3,81 +3,81 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// Description of a namespace resource. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class SbNamespaceUpdateParameters : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParameters, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParameters, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IValidates { /// - /// Backing field for Inherited model /// - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatch __resourceNamespacePatch = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ResourceNamespacePatch(); + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatch __resourceNamespacePatch = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ResourceNamespacePatch(); /// Alternate name for namespace [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string AlternateName { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)Property).AlternateName; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)Property).AlternateName = value ?? null; } + public string AlternateName { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)Property).AlternateName; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)Property).AlternateName = value ?? null; } /// The time the namespace was created [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public global::System.DateTime? CreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)Property).CreatedAt; } + public global::System.DateTime? CreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)Property).CreatedAt; } /// This property disables SAS authentication for the Service Bus namespace. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public bool? DisableLocalAuth { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)Property).DisableLocalAuth; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)Property).DisableLocalAuth = value ?? default(bool); } + public bool? DisableLocalAuth { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)Property).DisableLocalAuth; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)Property).DisableLocalAuth = value ?? default(bool); } /// Enumerates the possible value of keySource for Encryption [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource? EncryptionKeySource { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)Property).EncryptionKeySource; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)Property).EncryptionKeySource = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource)""); } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource? EncryptionKeySource { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)Property).EncryptionKeySource; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)Property).EncryptionKeySource = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource)""); } /// Properties of KeyVault [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties[] EncryptionKeyVaultProperty { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)Property).EncryptionKeyVaultProperty; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)Property).EncryptionKeyVaultProperty = value ?? null /* arrayOf */; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties[] EncryptionKeyVaultProperty { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)Property).EncryptionKeyVaultProperty; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)Property).EncryptionKeyVaultProperty = value ?? null /* arrayOf */; } /// Enable Infrastructure Encryption (Double Encryption) [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public bool? EncryptionRequireInfrastructureEncryption { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)Property).EncryptionRequireInfrastructureEncryption; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)Property).EncryptionRequireInfrastructureEncryption = value ?? default(bool); } + public bool? EncryptionRequireInfrastructureEncryption { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)Property).EncryptionRequireInfrastructureEncryption; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)Property).EncryptionRequireInfrastructureEncryption = value ?? default(bool); } /// Resource Id [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inherited)] public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)__resourceNamespacePatch).Id; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentity _identity; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentity _identity; /// Properties of BYOK Identity description [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentity Identity { get => (this._identity = this._identity ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.Identity()); set => this._identity = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentity Identity { get => (this._identity = this._identity ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.Identity()); set => this._identity = value; } /// ObjectId from the KeyVault [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string IdentityPrincipalId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityInternal)Identity).PrincipalId; } + public string IdentityPrincipalId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityInternal)Identity).PrincipalId; } /// TenantId from the KeyVault [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string IdentityTenantId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityInternal)Identity).TenantId; } + public string IdentityTenantId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityInternal)Identity).TenantId; } /// Type of managed service identity. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ManagedServiceIdentityType? IdentityType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityInternal)Identity).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityInternal)Identity).Type = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ManagedServiceIdentityType)""); } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ManagedServiceIdentityType? IdentityType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityInternal)Identity).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityInternal)Identity).Type = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ManagedServiceIdentityType)""); } /// Properties for User Assigned Identities [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityUserAssignedIdentities IdentityUserAssignedIdentity { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityInternal)Identity).UserAssignedIdentity; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityInternal)Identity).UserAssignedIdentity = value ?? null /* model class */; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityUserAssignedIdentities IdentityUserAssignedIdentity { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityInternal)Identity).UserAssignedIdentity; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityInternal)Identity).UserAssignedIdentity = value ?? null /* model class */; } /// Resource location [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inherited)] - public string Location { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatchInternal)__resourceNamespacePatch).Location; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatchInternal)__resourceNamespacePatch).Location = value ?? null; } + public string Location { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatchInternal)__resourceNamespacePatch).Location; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatchInternal)__resourceNamespacePatch).Location = value ?? null; } /// Identifier for Azure Insights metrics [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string MetricId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)Property).MetricId; } + public string MetricId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)Property).MetricId; } /// Internal Acessors for Id string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)__resourceNamespacePatch).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)__resourceNamespacePatch).Id = value; } @@ -89,40 +89,40 @@ public partial class SbNamespaceUpdateParameters : string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)__resourceNamespacePatch).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IResourceInternal)__resourceNamespacePatch).Type = value; } /// Internal Acessors for CreatedAt - global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal.CreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)Property).CreatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)Property).CreatedAt = value; } + global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal.CreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)Property).CreatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)Property).CreatedAt = value; } /// Internal Acessors for Encryption - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryption Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal.Encryption { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)Property).Encryption; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)Property).Encryption = value; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryption Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal.Encryption { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)Property).Encryption; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)Property).Encryption = value; } /// Internal Acessors for Identity - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentity Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal.Identity { get => (this._identity = this._identity ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.Identity()); set { {_identity = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentity Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal.Identity { get => (this._identity = this._identity ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.Identity()); set { {_identity = value;} } } /// Internal Acessors for IdentityPrincipalId - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal.IdentityPrincipalId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityInternal)Identity).PrincipalId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityInternal)Identity).PrincipalId = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal.IdentityPrincipalId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityInternal)Identity).PrincipalId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityInternal)Identity).PrincipalId = value; } /// Internal Acessors for IdentityTenantId - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal.IdentityTenantId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityInternal)Identity).TenantId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityInternal)Identity).TenantId = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal.IdentityTenantId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityInternal)Identity).TenantId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityInternal)Identity).TenantId = value; } /// Internal Acessors for MetricId - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal.MetricId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)Property).MetricId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)Property).MetricId = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal.MetricId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)Property).MetricId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)Property).MetricId = value; } /// Internal Acessors for Property - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateProperties Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbNamespaceUpdateProperties()); set { {_property = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateProperties Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbNamespaceUpdateProperties()); set { {_property = value;} } } /// Internal Acessors for ProvisioningState - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal.ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)Property).ProvisioningState; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)Property).ProvisioningState = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal.ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)Property).ProvisioningState; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)Property).ProvisioningState = value; } /// Internal Acessors for ServiceBusEndpoint - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal.ServiceBusEndpoint { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)Property).ServiceBusEndpoint; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)Property).ServiceBusEndpoint = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal.ServiceBusEndpoint { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)Property).ServiceBusEndpoint; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)Property).ServiceBusEndpoint = value; } /// Internal Acessors for Sku - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSku Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal.Sku { get => (this._sku = this._sku ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbSku()); set { {_sku = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSku Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal.Sku { get => (this._sku = this._sku ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbSku()); set { {_sku = value;} } } /// Internal Acessors for Status - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal.Status { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)Property).Status; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)Property).Status = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal.Status { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)Property).Status; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)Property).Status = value; } /// Internal Acessors for UpdatedAt - global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParametersInternal.UpdatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)Property).UpdatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)Property).UpdatedAt = value; } + global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParametersInternal.UpdatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)Property).UpdatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)Property).UpdatedAt = value; } /// Resource name [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inherited)] @@ -130,51 +130,53 @@ public partial class SbNamespaceUpdateParameters : /// List of private endpoint connections. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection[] PrivateEndpointConnection { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)Property).PrivateEndpointConnection; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)Property).PrivateEndpointConnection = value ?? null /* arrayOf */; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection[] PrivateEndpointConnection { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)Property).PrivateEndpointConnection; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)Property).PrivateEndpointConnection = value ?? null /* arrayOf */; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateProperties _property; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateProperties _property; /// Properties of the namespace. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbNamespaceUpdateProperties()); set => this._property = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbNamespaceUpdateProperties()); set => this._property = value; } /// Provisioning state of the namespace. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)Property).ProvisioningState; } + public string ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)Property).ProvisioningState; } /// Endpoint you can use to perform Service Bus operations. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string ServiceBusEndpoint { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)Property).ServiceBusEndpoint; } + public string ServiceBusEndpoint { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)Property).ServiceBusEndpoint; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSku _sku; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSku _sku; /// Properties of SKU [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSku Sku { get => (this._sku = this._sku ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbSku()); set => this._sku = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSku Sku { get => (this._sku = this._sku ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbSku()); set => this._sku = value; } /// - /// The specified messaging units for the tier. For Premium tier, capacity are 1,2 and 4. + /// Messaging units for your service bus premium namespace. Valid capacities are {1, 2, 4, 8, 16} multiples of your properties.premiumMessagingPartitions + /// setting. For example, If properties.premiumMessagingPartitions is 1 then possible capacity values are 1, 2, 4, 8, and + /// 16. If properties.premiumMessagingPartitions is 4 then possible capacity values are 4, 8, 16, 32 and 64 /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public int? SkuCapacity { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSkuInternal)Sku).Capacity; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSkuInternal)Sku).Capacity = value ?? default(int); } + public int? SkuCapacity { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSkuInternal)Sku).Capacity; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSkuInternal)Sku).Capacity = value ?? default(int); } /// Name of this SKU. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuName? SkuName { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSkuInternal)Sku).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSkuInternal)Sku).Name = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuName)""); } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuName? SkuName { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSkuInternal)Sku).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSkuInternal)Sku).Name = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuName)""); } /// The billing tier of this particular SKU. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuTier? SkuTier { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSkuInternal)Sku).Tier; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSkuInternal)Sku).Tier = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuTier)""); } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuTier? SkuTier { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSkuInternal)Sku).Tier; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSkuInternal)Sku).Tier = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuTier)""); } /// Status of the namespace. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string Status { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)Property).Status; } + public string Status { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)Property).Status; } /// Resource tags [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inherited)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatchTags Tag { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatchInternal)__resourceNamespacePatch).Tag; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatchInternal)__resourceNamespacePatch).Tag = value ?? null /* model class */; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatchTags Tag { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatchInternal)__resourceNamespacePatch).Tag; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatchInternal)__resourceNamespacePatch).Tag = value ?? null /* model class */; } /// Resource type [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inherited)] @@ -182,7 +184,7 @@ public partial class SbNamespaceUpdateParameters : /// The time the namespace was updated. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public global::System.DateTime? UpdatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal)Property).UpdatedAt; } + public global::System.DateTime? UpdatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)Property).UpdatedAt; } /// Creates an new instance. public SbNamespaceUpdateParameters() @@ -205,7 +207,7 @@ public SbNamespaceUpdateParameters() /// Description of a namespace resource. public partial interface ISbNamespaceUpdateParameters : Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IJsonSerializable, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatch + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatch { /// Alternate name for namespace [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Info( @@ -245,8 +247,8 @@ public partial interface ISbNamespaceUpdateParameters : ReadOnly = false, Description = @"Properties of KeyVault", SerializedName = @"keyVaultProperties", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties[] EncryptionKeyVaultProperty { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties[] EncryptionKeyVaultProperty { get; set; } /// Enable Infrastructure Encryption (Double Encryption) [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Info( Required = false, @@ -285,8 +287,8 @@ public partial interface ISbNamespaceUpdateParameters : ReadOnly = false, Description = @"Properties for User Assigned Identities", SerializedName = @"userAssignedIdentities", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityUserAssignedIdentities) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityUserAssignedIdentities IdentityUserAssignedIdentity { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityUserAssignedIdentities) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityUserAssignedIdentities IdentityUserAssignedIdentity { get; set; } /// Identifier for Azure Insights metrics [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Info( Required = false, @@ -301,8 +303,8 @@ public partial interface ISbNamespaceUpdateParameters : ReadOnly = false, Description = @"List of private endpoint connections.", SerializedName = @"privateEndpointConnections", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection[] PrivateEndpointConnection { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection[] PrivateEndpointConnection { get; set; } /// Provisioning state of the namespace. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Info( Required = false, @@ -320,12 +322,14 @@ public partial interface ISbNamespaceUpdateParameters : PossibleTypes = new [] { typeof(string) })] string ServiceBusEndpoint { get; } /// - /// The specified messaging units for the tier. For Premium tier, capacity are 1,2 and 4. + /// Messaging units for your service bus premium namespace. Valid capacities are {1, 2, 4, 8, 16} multiples of your properties.premiumMessagingPartitions + /// setting. For example, If properties.premiumMessagingPartitions is 1 then possible capacity values are 1, 2, 4, 8, and + /// 16. If properties.premiumMessagingPartitions is 4 then possible capacity values are 4, 8, 16, 32 and 64 /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Info( Required = false, ReadOnly = false, - Description = @"The specified messaging units for the tier. For Premium tier, capacity are 1,2 and 4.", + Description = @"Messaging units for your service bus premium namespace. Valid capacities are {1, 2, 4, 8, 16} multiples of your properties.premiumMessagingPartitions setting. For example, If properties.premiumMessagingPartitions is 1 then possible capacity values are 1, 2, 4, 8, and 16. If properties.premiumMessagingPartitions is 4 then possible capacity values are 4, 8, 16, 32 and 64", SerializedName = @"capacity", PossibleTypes = new [] { typeof(int) })] int? SkuCapacity { get; set; } @@ -365,7 +369,7 @@ public partial interface ISbNamespaceUpdateParameters : } /// Description of a namespace resource. internal partial interface ISbNamespaceUpdateParametersInternal : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IResourceNamespacePatchInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IResourceNamespacePatchInternal { /// Alternate name for namespace string AlternateName { get; set; } @@ -374,15 +378,15 @@ internal partial interface ISbNamespaceUpdateParametersInternal : /// This property disables SAS authentication for the Service Bus namespace. bool? DisableLocalAuth { get; set; } /// Properties of BYOK Encryption description - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryption Encryption { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryption Encryption { get; set; } /// Enumerates the possible value of keySource for Encryption Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource? EncryptionKeySource { get; set; } /// Properties of KeyVault - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties[] EncryptionKeyVaultProperty { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties[] EncryptionKeyVaultProperty { get; set; } /// Enable Infrastructure Encryption (Double Encryption) bool? EncryptionRequireInfrastructureEncryption { get; set; } /// Properties of BYOK Identity description - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentity Identity { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentity Identity { get; set; } /// ObjectId from the KeyVault string IdentityPrincipalId { get; set; } /// TenantId from the KeyVault @@ -390,21 +394,23 @@ internal partial interface ISbNamespaceUpdateParametersInternal : /// Type of managed service identity. Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.ManagedServiceIdentityType? IdentityType { get; set; } /// Properties for User Assigned Identities - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityUserAssignedIdentities IdentityUserAssignedIdentity { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityUserAssignedIdentities IdentityUserAssignedIdentity { get; set; } /// Identifier for Azure Insights metrics string MetricId { get; set; } /// List of private endpoint connections. - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection[] PrivateEndpointConnection { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection[] PrivateEndpointConnection { get; set; } /// Properties of the namespace. - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateProperties Property { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateProperties Property { get; set; } /// Provisioning state of the namespace. string ProvisioningState { get; set; } /// Endpoint you can use to perform Service Bus operations. string ServiceBusEndpoint { get; set; } /// Properties of SKU - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSku Sku { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSku Sku { get; set; } /// - /// The specified messaging units for the tier. For Premium tier, capacity are 1,2 and 4. + /// Messaging units for your service bus premium namespace. Valid capacities are {1, 2, 4, 8, 16} multiples of your properties.premiumMessagingPartitions + /// setting. For example, If properties.premiumMessagingPartitions is 1 then possible capacity values are 1, 2, 4, 8, and + /// 16. If properties.premiumMessagingPartitions is 4 then possible capacity values are 4, 8, 16, 32 and 64 /// int? SkuCapacity { get; set; } /// Name of this SKU. diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceUpdateParameters.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceUpdateParameters.json.cs similarity index 92% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceUpdateParameters.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceUpdateParameters.json.cs index 327ca078dc8e..5b5d1a52e80c 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceUpdateParameters.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceUpdateParameters.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class SbNamespaceUpdateParameters partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParameters. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParameters. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParameters. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParameters. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParameters FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParameters FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new SbNamespaceUpdateParameters(json) : null; } @@ -77,10 +77,10 @@ internal SbNamespaceUpdateParameters(Microsoft.Azure.PowerShell.Cmdlets.ServiceB { return; } - __resourceNamespacePatch = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ResourceNamespacePatch(json); - {_sku = If( json?.PropertyT("sku"), out var __jsonSku) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbSku.FromJson(__jsonSku) : Sku;} - {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbNamespaceUpdateProperties.FromJson(__jsonProperties) : Property;} - {_identity = If( json?.PropertyT("identity"), out var __jsonIdentity) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.Identity.FromJson(__jsonIdentity) : Identity;} + __resourceNamespacePatch = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ResourceNamespacePatch(json); + {_sku = If( json?.PropertyT("sku"), out var __jsonSku) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbSku.FromJson(__jsonSku) : Sku;} + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbNamespaceUpdateProperties.FromJson(__jsonProperties) : Property;} + {_identity = If( json?.PropertyT("identity"), out var __jsonIdentity) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.Identity.FromJson(__jsonIdentity) : Identity;} AfterFromJson(json); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceUpdateProperties.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceUpdateProperties.PowerShell.cs new file mode 100644 index 000000000000..4ea15543f6d4 --- /dev/null +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceUpdateProperties.PowerShell.cs @@ -0,0 +1,262 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; + + /// Properties of the namespace. + [System.ComponentModel.TypeConverter(typeof(SbNamespaceUpdatePropertiesTypeConverter))] + public partial class SbNamespaceUpdateProperties + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior + /// + /// /// instance serialized to a string, normally it is a Json + /// /// set returnNow to true if you provide a customized OverrideToString function + + partial void OverrideToString(ref string stringResult, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new SbNamespaceUpdateProperties(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new SbNamespaceUpdateProperties(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal SbNamespaceUpdateProperties(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Encryption")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).Encryption = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryption) content.GetValueForProperty("Encryption",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).Encryption, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.EncryptionTypeConverter.ConvertFrom); + } + if (content.Contains("ProvisioningState")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).ProvisioningState, global::System.Convert.ToString); + } + if (content.Contains("Status")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).Status = (string) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).Status, global::System.Convert.ToString); + } + if (content.Contains("CreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("UpdatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).UpdatedAt = (global::System.DateTime?) content.GetValueForProperty("UpdatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).UpdatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("ServiceBusEndpoint")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).ServiceBusEndpoint = (string) content.GetValueForProperty("ServiceBusEndpoint",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).ServiceBusEndpoint, global::System.Convert.ToString); + } + if (content.Contains("MetricId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).MetricId = (string) content.GetValueForProperty("MetricId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).MetricId, global::System.Convert.ToString); + } + if (content.Contains("PrivateEndpointConnection")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).PrivateEndpointConnection = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection[]) content.GetValueForProperty("PrivateEndpointConnection",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).PrivateEndpointConnection, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.PrivateEndpointConnectionTypeConverter.ConvertFrom)); + } + if (content.Contains("DisableLocalAuth")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).DisableLocalAuth = (bool?) content.GetValueForProperty("DisableLocalAuth",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).DisableLocalAuth, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("AlternateName")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).AlternateName = (string) content.GetValueForProperty("AlternateName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).AlternateName, global::System.Convert.ToString); + } + if (content.Contains("EncryptionKeySource")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).EncryptionKeySource = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource?) content.GetValueForProperty("EncryptionKeySource",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).EncryptionKeySource, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource.CreateFrom); + } + if (content.Contains("EncryptionKeyVaultProperty")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).EncryptionKeyVaultProperty = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties[]) content.GetValueForProperty("EncryptionKeyVaultProperty",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).EncryptionKeyVaultProperty, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.KeyVaultPropertiesTypeConverter.ConvertFrom)); + } + if (content.Contains("EncryptionRequireInfrastructureEncryption")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).EncryptionRequireInfrastructureEncryption = (bool?) content.GetValueForProperty("EncryptionRequireInfrastructureEncryption",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).EncryptionRequireInfrastructureEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal SbNamespaceUpdateProperties(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Encryption")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).Encryption = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryption) content.GetValueForProperty("Encryption",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).Encryption, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.EncryptionTypeConverter.ConvertFrom); + } + if (content.Contains("ProvisioningState")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).ProvisioningState, global::System.Convert.ToString); + } + if (content.Contains("Status")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).Status = (string) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).Status, global::System.Convert.ToString); + } + if (content.Contains("CreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("UpdatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).UpdatedAt = (global::System.DateTime?) content.GetValueForProperty("UpdatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).UpdatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("ServiceBusEndpoint")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).ServiceBusEndpoint = (string) content.GetValueForProperty("ServiceBusEndpoint",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).ServiceBusEndpoint, global::System.Convert.ToString); + } + if (content.Contains("MetricId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).MetricId = (string) content.GetValueForProperty("MetricId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).MetricId, global::System.Convert.ToString); + } + if (content.Contains("PrivateEndpointConnection")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).PrivateEndpointConnection = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection[]) content.GetValueForProperty("PrivateEndpointConnection",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).PrivateEndpointConnection, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.PrivateEndpointConnectionTypeConverter.ConvertFrom)); + } + if (content.Contains("DisableLocalAuth")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).DisableLocalAuth = (bool?) content.GetValueForProperty("DisableLocalAuth",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).DisableLocalAuth, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("AlternateName")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).AlternateName = (string) content.GetValueForProperty("AlternateName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).AlternateName, global::System.Convert.ToString); + } + if (content.Contains("EncryptionKeySource")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).EncryptionKeySource = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource?) content.GetValueForProperty("EncryptionKeySource",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).EncryptionKeySource, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource.CreateFrom); + } + if (content.Contains("EncryptionKeyVaultProperty")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).EncryptionKeyVaultProperty = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties[]) content.GetValueForProperty("EncryptionKeyVaultProperty",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).EncryptionKeyVaultProperty, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.KeyVaultPropertiesTypeConverter.ConvertFrom)); + } + if (content.Contains("EncryptionRequireInfrastructureEncryption")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).EncryptionRequireInfrastructureEncryption = (bool?) content.GetValueForProperty("EncryptionRequireInfrastructureEncryption",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal)this).EncryptionRequireInfrastructureEncryption, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.SerializationMode.IncludeAll)?.ToString(); + + public override string ToString() + { + var returnNow = false; + var result = global::System.String.Empty; + OverrideToString(ref result, ref returnNow); + if (returnNow) + { + return result; + } + return ToJsonString(); + } + } + /// Properties of the namespace. + [System.ComponentModel.TypeConverter(typeof(SbNamespaceUpdatePropertiesTypeConverter))] + public partial interface ISbNamespaceUpdateProperties + + { + + } +} \ No newline at end of file diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceUpdateProperties.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceUpdateProperties.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceUpdateProperties.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceUpdateProperties.TypeConverter.cs index b194694dec0a..ce2271bd2d09 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceUpdateProperties.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceUpdateProperties.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateProperties ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateProperties ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateProperties).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateProperties).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceUpdateProperties.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceUpdateProperties.cs similarity index 81% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceUpdateProperties.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceUpdateProperties.cs index c1626d5d8952..03f850730c5f 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceUpdateProperties.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceUpdateProperties.cs @@ -3,15 +3,15 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// Properties of the namespace. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class SbNamespaceUpdateProperties : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateProperties, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateProperties, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal { /// Backing field for property. @@ -36,23 +36,23 @@ public partial class SbNamespaceUpdateProperties : public bool? DisableLocalAuth { get => this._disableLocalAuth; set => this._disableLocalAuth = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryption _encryption; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryption _encryption; /// Properties of BYOK Encryption description [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryption Encryption { get => (this._encryption = this._encryption ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.Encryption()); set => this._encryption = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryption Encryption { get => (this._encryption = this._encryption ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.Encryption()); set => this._encryption = value; } /// Enumerates the possible value of keySource for Encryption [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource? EncryptionKeySource { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryptionInternal)Encryption).KeySource; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryptionInternal)Encryption).KeySource = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource)""); } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource? EncryptionKeySource { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryptionInternal)Encryption).KeySource; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryptionInternal)Encryption).KeySource = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource)""); } /// Properties of KeyVault [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties[] EncryptionKeyVaultProperty { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryptionInternal)Encryption).KeyVaultProperty; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryptionInternal)Encryption).KeyVaultProperty = value ?? null /* arrayOf */; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties[] EncryptionKeyVaultProperty { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryptionInternal)Encryption).KeyVaultProperty; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryptionInternal)Encryption).KeyVaultProperty = value ?? null /* arrayOf */; } /// Enable Infrastructure Encryption (Double Encryption) [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public bool? EncryptionRequireInfrastructureEncryption { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryptionInternal)Encryption).RequireInfrastructureEncryption; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryptionInternal)Encryption).RequireInfrastructureEncryption = value ?? default(bool); } + public bool? EncryptionRequireInfrastructureEncryption { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryptionInternal)Encryption).RequireInfrastructureEncryption; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryptionInternal)Encryption).RequireInfrastructureEncryption = value ?? default(bool); } /// Backing field for property. private string _metricId; @@ -62,32 +62,32 @@ public partial class SbNamespaceUpdateProperties : public string MetricId { get => this._metricId; } /// Internal Acessors for CreatedAt - global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal.CreatedAt { get => this._createdAt; set { {_createdAt = value;} } } + global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal.CreatedAt { get => this._createdAt; set { {_createdAt = value;} } } /// Internal Acessors for Encryption - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryption Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal.Encryption { get => (this._encryption = this._encryption ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.Encryption()); set { {_encryption = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryption Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal.Encryption { get => (this._encryption = this._encryption ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.Encryption()); set { {_encryption = value;} } } /// Internal Acessors for MetricId - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal.MetricId { get => this._metricId; set { {_metricId = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal.MetricId { get => this._metricId; set { {_metricId = value;} } } /// Internal Acessors for ProvisioningState - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal.ProvisioningState { get => this._provisioningState; set { {_provisioningState = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal.ProvisioningState { get => this._provisioningState; set { {_provisioningState = value;} } } /// Internal Acessors for ServiceBusEndpoint - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal.ServiceBusEndpoint { get => this._serviceBusEndpoint; set { {_serviceBusEndpoint = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal.ServiceBusEndpoint { get => this._serviceBusEndpoint; set { {_serviceBusEndpoint = value;} } } /// Internal Acessors for Status - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal.Status { get => this._status; set { {_status = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal.Status { get => this._status; set { {_status = value;} } } /// Internal Acessors for UpdatedAt - global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdatePropertiesInternal.UpdatedAt { get => this._updatedAt; set { {_updatedAt = value;} } } + global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdatePropertiesInternal.UpdatedAt { get => this._updatedAt; set { {_updatedAt = value;} } } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection[] _privateEndpointConnection; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection[] _privateEndpointConnection; /// List of private endpoint connections. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection[] PrivateEndpointConnection { get => this._privateEndpointConnection; set => this._privateEndpointConnection = value; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection[] PrivateEndpointConnection { get => this._privateEndpointConnection; set => this._privateEndpointConnection = value; } /// Backing field for property. private string _provisioningState; @@ -165,8 +165,8 @@ public partial interface ISbNamespaceUpdateProperties : ReadOnly = false, Description = @"Properties of KeyVault", SerializedName = @"keyVaultProperties", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties[] EncryptionKeyVaultProperty { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties[] EncryptionKeyVaultProperty { get; set; } /// Enable Infrastructure Encryption (Double Encryption) [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Info( Required = false, @@ -189,8 +189,8 @@ public partial interface ISbNamespaceUpdateProperties : ReadOnly = false, Description = @"List of private endpoint connections.", SerializedName = @"privateEndpointConnections", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection[] PrivateEndpointConnection { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection[] PrivateEndpointConnection { get; set; } /// Provisioning state of the namespace. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Info( Required = false, @@ -236,17 +236,17 @@ internal partial interface ISbNamespaceUpdatePropertiesInternal /// This property disables SAS authentication for the Service Bus namespace. bool? DisableLocalAuth { get; set; } /// Properties of BYOK Encryption description - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IEncryption Encryption { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IEncryption Encryption { get; set; } /// Enumerates the possible value of keySource for Encryption Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.KeySource? EncryptionKeySource { get; set; } /// Properties of KeyVault - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties[] EncryptionKeyVaultProperty { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties[] EncryptionKeyVaultProperty { get; set; } /// Enable Infrastructure Encryption (Double Encryption) bool? EncryptionRequireInfrastructureEncryption { get; set; } /// Identifier for Azure Insights metrics string MetricId { get; set; } /// List of private endpoint connections. - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection[] PrivateEndpointConnection { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection[] PrivateEndpointConnection { get; set; } /// Provisioning state of the namespace. string ProvisioningState { get; set; } /// Endpoint you can use to perform Service Bus operations. diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceUpdateProperties.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceUpdateProperties.json.cs similarity index 93% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceUpdateProperties.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceUpdateProperties.json.cs index 82a31a71793d..39eb38c5db86 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbNamespaceUpdateProperties.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbNamespaceUpdateProperties.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class SbNamespaceUpdateProperties partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateProperties. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateProperties. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateProperties. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateProperties. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new SbNamespaceUpdateProperties(json) : null; } @@ -77,14 +77,14 @@ internal SbNamespaceUpdateProperties(Microsoft.Azure.PowerShell.Cmdlets.ServiceB { return; } - {_encryption = If( json?.PropertyT("encryption"), out var __jsonEncryption) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.Encryption.FromJson(__jsonEncryption) : Encryption;} + {_encryption = If( json?.PropertyT("encryption"), out var __jsonEncryption) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.Encryption.FromJson(__jsonEncryption) : Encryption;} {_provisioningState = If( json?.PropertyT("provisioningState"), out var __jsonProvisioningState) ? (string)__jsonProvisioningState : (string)ProvisioningState;} {_status = If( json?.PropertyT("status"), out var __jsonStatus) ? (string)__jsonStatus : (string)Status;} {_createdAt = If( json?.PropertyT("createdAt"), out var __jsonCreatedAt) ? global::System.DateTime.TryParse((string)__jsonCreatedAt, global::System.Globalization.CultureInfo.InvariantCulture, global::System.Globalization.DateTimeStyles.AdjustToUniversal, out var __jsonCreatedAtValue) ? __jsonCreatedAtValue : CreatedAt : CreatedAt;} {_updatedAt = If( json?.PropertyT("updatedAt"), out var __jsonUpdatedAt) ? global::System.DateTime.TryParse((string)__jsonUpdatedAt, global::System.Globalization.CultureInfo.InvariantCulture, global::System.Globalization.DateTimeStyles.AdjustToUniversal, out var __jsonUpdatedAtValue) ? __jsonUpdatedAtValue : UpdatedAt : UpdatedAt;} {_serviceBusEndpoint = If( json?.PropertyT("serviceBusEndpoint"), out var __jsonServiceBusEndpoint) ? (string)__jsonServiceBusEndpoint : (string)ServiceBusEndpoint;} {_metricId = If( json?.PropertyT("metricId"), out var __jsonMetricId) ? (string)__jsonMetricId : (string)MetricId;} - {_privateEndpointConnection = If( json?.PropertyT("privateEndpointConnections"), out var __jsonPrivateEndpointConnections) ? If( __jsonPrivateEndpointConnections as Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection) (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.PrivateEndpointConnection.FromJson(__u) )) ))() : null : PrivateEndpointConnection;} + {_privateEndpointConnection = If( json?.PropertyT("privateEndpointConnections"), out var __jsonPrivateEndpointConnections) ? If( __jsonPrivateEndpointConnections as Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection) (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.PrivateEndpointConnection.FromJson(__u) )) ))() : null : PrivateEndpointConnection;} {_disableLocalAuth = If( json?.PropertyT("disableLocalAuth"), out var __jsonDisableLocalAuth) ? (bool?)__jsonDisableLocalAuth : DisableLocalAuth;} {_alternateName = If( json?.PropertyT("alternateName"), out var __jsonAlternateName) ? (string)__jsonAlternateName : (string)AlternateName;} AfterFromJson(json); diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbQueue.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbQueue.PowerShell.cs new file mode 100644 index 000000000000..b845947138df --- /dev/null +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbQueue.PowerShell.cs @@ -0,0 +1,468 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; + + /// Description of queue Resource. + [System.ComponentModel.TypeConverter(typeof(SbQueueTypeConverter))] + public partial class SbQueue + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior + /// + /// /// instance serialized to a string, normally it is a Json + /// /// set returnNow to true if you provide a customized OverrideToString function + + partial void OverrideToString(ref string stringResult, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new SbQueue(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new SbQueue(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal SbQueue(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Property")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbQueuePropertiesTypeConverter.ConvertFrom); + } + if (content.Contains("SystemData")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemDataTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Type, global::System.Convert.ToString); + } + if (content.Contains("Location")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Location, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("CountDetail")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).CountDetail = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetails) content.GetValueForProperty("CountDetail",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).CountDetail, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.MessageCountDetailsTypeConverter.ConvertFrom); + } + if (content.Contains("CreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("UpdatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).UpdatedAt = (global::System.DateTime?) content.GetValueForProperty("UpdatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).UpdatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("AccessedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).AccessedAt = (global::System.DateTime?) content.GetValueForProperty("AccessedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).AccessedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SizeInByte")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).SizeInByte = (long?) content.GetValueForProperty("SizeInByte",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).SizeInByte, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("MessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).MessageCount = (long?) content.GetValueForProperty("MessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).MessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("LockDuration")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).LockDuration = (global::System.TimeSpan?) content.GetValueForProperty("LockDuration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).LockDuration, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + } + if (content.Contains("MaxSizeInMegabytes")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).MaxSizeInMegabytes = (int?) content.GetValueForProperty("MaxSizeInMegabytes",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).MaxSizeInMegabytes, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + } + if (content.Contains("MaxMessageSizeInKilobytes")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).MaxMessageSizeInKilobytes = (long?) content.GetValueForProperty("MaxMessageSizeInKilobytes",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).MaxMessageSizeInKilobytes, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("RequiresDuplicateDetection")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).RequiresDuplicateDetection = (bool?) content.GetValueForProperty("RequiresDuplicateDetection",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).RequiresDuplicateDetection, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("RequiresSession")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).RequiresSession = (bool?) content.GetValueForProperty("RequiresSession",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).RequiresSession, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("DefaultMessageTimeToLive")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).DefaultMessageTimeToLive = (global::System.TimeSpan?) content.GetValueForProperty("DefaultMessageTimeToLive",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).DefaultMessageTimeToLive, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + } + if (content.Contains("DeadLetteringOnMessageExpiration")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).DeadLetteringOnMessageExpiration = (bool?) content.GetValueForProperty("DeadLetteringOnMessageExpiration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).DeadLetteringOnMessageExpiration, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("DuplicateDetectionHistoryTimeWindow")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).DuplicateDetectionHistoryTimeWindow = (global::System.TimeSpan?) content.GetValueForProperty("DuplicateDetectionHistoryTimeWindow",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).DuplicateDetectionHistoryTimeWindow, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + } + if (content.Contains("MaxDeliveryCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).MaxDeliveryCount = (int?) content.GetValueForProperty("MaxDeliveryCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).MaxDeliveryCount, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + } + if (content.Contains("Status")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).Status = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus?) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).Status, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus.CreateFrom); + } + if (content.Contains("EnableBatchedOperations")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).EnableBatchedOperations = (bool?) content.GetValueForProperty("EnableBatchedOperations",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).EnableBatchedOperations, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("AutoDeleteOnIdle")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).AutoDeleteOnIdle = (global::System.TimeSpan?) content.GetValueForProperty("AutoDeleteOnIdle",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).AutoDeleteOnIdle, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + } + if (content.Contains("EnablePartitioning")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).EnablePartitioning = (bool?) content.GetValueForProperty("EnablePartitioning",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).EnablePartitioning, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("EnableExpress")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).EnableExpress = (bool?) content.GetValueForProperty("EnableExpress",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).EnableExpress, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("ForwardTo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).ForwardTo = (string) content.GetValueForProperty("ForwardTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).ForwardTo, global::System.Convert.ToString); + } + if (content.Contains("ForwardDeadLetteredMessagesTo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).ForwardDeadLetteredMessagesTo = (string) content.GetValueForProperty("ForwardDeadLetteredMessagesTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).ForwardDeadLetteredMessagesTo, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("CountDetailActiveMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).CountDetailActiveMessageCount = (long?) content.GetValueForProperty("CountDetailActiveMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).CountDetailActiveMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailDeadLetterMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).CountDetailDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).CountDetailDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailScheduledMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).CountDetailScheduledMessageCount = (long?) content.GetValueForProperty("CountDetailScheduledMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).CountDetailScheduledMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailTransferMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).CountDetailTransferMessageCount = (long?) content.GetValueForProperty("CountDetailTransferMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).CountDetailTransferMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailTransferDeadLetterMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).CountDetailTransferDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailTransferDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).CountDetailTransferDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal SbQueue(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Property")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbQueuePropertiesTypeConverter.ConvertFrom); + } + if (content.Contains("SystemData")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemDataTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Type, global::System.Convert.ToString); + } + if (content.Contains("Location")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Location, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("CountDetail")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).CountDetail = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetails) content.GetValueForProperty("CountDetail",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).CountDetail, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.MessageCountDetailsTypeConverter.ConvertFrom); + } + if (content.Contains("CreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("UpdatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).UpdatedAt = (global::System.DateTime?) content.GetValueForProperty("UpdatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).UpdatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("AccessedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).AccessedAt = (global::System.DateTime?) content.GetValueForProperty("AccessedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).AccessedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SizeInByte")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).SizeInByte = (long?) content.GetValueForProperty("SizeInByte",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).SizeInByte, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("MessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).MessageCount = (long?) content.GetValueForProperty("MessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).MessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("LockDuration")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).LockDuration = (global::System.TimeSpan?) content.GetValueForProperty("LockDuration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).LockDuration, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + } + if (content.Contains("MaxSizeInMegabytes")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).MaxSizeInMegabytes = (int?) content.GetValueForProperty("MaxSizeInMegabytes",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).MaxSizeInMegabytes, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + } + if (content.Contains("MaxMessageSizeInKilobytes")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).MaxMessageSizeInKilobytes = (long?) content.GetValueForProperty("MaxMessageSizeInKilobytes",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).MaxMessageSizeInKilobytes, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("RequiresDuplicateDetection")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).RequiresDuplicateDetection = (bool?) content.GetValueForProperty("RequiresDuplicateDetection",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).RequiresDuplicateDetection, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("RequiresSession")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).RequiresSession = (bool?) content.GetValueForProperty("RequiresSession",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).RequiresSession, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("DefaultMessageTimeToLive")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).DefaultMessageTimeToLive = (global::System.TimeSpan?) content.GetValueForProperty("DefaultMessageTimeToLive",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).DefaultMessageTimeToLive, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + } + if (content.Contains("DeadLetteringOnMessageExpiration")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).DeadLetteringOnMessageExpiration = (bool?) content.GetValueForProperty("DeadLetteringOnMessageExpiration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).DeadLetteringOnMessageExpiration, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("DuplicateDetectionHistoryTimeWindow")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).DuplicateDetectionHistoryTimeWindow = (global::System.TimeSpan?) content.GetValueForProperty("DuplicateDetectionHistoryTimeWindow",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).DuplicateDetectionHistoryTimeWindow, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + } + if (content.Contains("MaxDeliveryCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).MaxDeliveryCount = (int?) content.GetValueForProperty("MaxDeliveryCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).MaxDeliveryCount, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + } + if (content.Contains("Status")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).Status = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus?) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).Status, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus.CreateFrom); + } + if (content.Contains("EnableBatchedOperations")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).EnableBatchedOperations = (bool?) content.GetValueForProperty("EnableBatchedOperations",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).EnableBatchedOperations, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("AutoDeleteOnIdle")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).AutoDeleteOnIdle = (global::System.TimeSpan?) content.GetValueForProperty("AutoDeleteOnIdle",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).AutoDeleteOnIdle, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + } + if (content.Contains("EnablePartitioning")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).EnablePartitioning = (bool?) content.GetValueForProperty("EnablePartitioning",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).EnablePartitioning, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("EnableExpress")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).EnableExpress = (bool?) content.GetValueForProperty("EnableExpress",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).EnableExpress, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("ForwardTo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).ForwardTo = (string) content.GetValueForProperty("ForwardTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).ForwardTo, global::System.Convert.ToString); + } + if (content.Contains("ForwardDeadLetteredMessagesTo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).ForwardDeadLetteredMessagesTo = (string) content.GetValueForProperty("ForwardDeadLetteredMessagesTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).ForwardDeadLetteredMessagesTo, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("CountDetailActiveMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).CountDetailActiveMessageCount = (long?) content.GetValueForProperty("CountDetailActiveMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).CountDetailActiveMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailDeadLetterMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).CountDetailDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).CountDetailDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailScheduledMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).CountDetailScheduledMessageCount = (long?) content.GetValueForProperty("CountDetailScheduledMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).CountDetailScheduledMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailTransferMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).CountDetailTransferMessageCount = (long?) content.GetValueForProperty("CountDetailTransferMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).CountDetailTransferMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailTransferDeadLetterMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).CountDetailTransferDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailTransferDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal)this).CountDetailTransferDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.SerializationMode.IncludeAll)?.ToString(); + + public override string ToString() + { + var returnNow = false; + var result = global::System.String.Empty; + OverrideToString(ref result, ref returnNow); + if (returnNow) + { + return result; + } + return ToJsonString(); + } + } + /// Description of queue Resource. + [System.ComponentModel.TypeConverter(typeof(SbQueueTypeConverter))] + public partial interface ISbQueue + + { + + } +} \ No newline at end of file diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbQueue.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbQueue.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbQueue.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbQueue.TypeConverter.cs index 4c307827aebc..929c5e8480e7 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbQueue.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbQueue.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -105,14 +105,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbQueue.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbQueue.cs similarity index 81% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbQueue.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbQueue.cs index bb93fa812ef8..38e8c6e338d7 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbQueue.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbQueue.cs @@ -3,15 +3,15 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// Description of queue Resource. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class SbQueue : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IValidates { /// @@ -24,81 +24,81 @@ public partial class SbQueue : /// Last time a message was sent, or the last time there was a receive request to this queue. /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public global::System.DateTime? AccessedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).AccessedAt; } + public global::System.DateTime? AccessedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).AccessedAt; } /// /// ISO 8061 timeSpan idle interval after which the queue is automatically deleted. The minimum duration is 5 minutes. /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public global::System.TimeSpan? AutoDeleteOnIdle { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).AutoDeleteOnIdle; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).AutoDeleteOnIdle = value ?? default(global::System.TimeSpan); } + public global::System.TimeSpan? AutoDeleteOnIdle { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).AutoDeleteOnIdle; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).AutoDeleteOnIdle = value ?? default(global::System.TimeSpan); } /// Number of active messages in the queue, topic, or subscription. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public long? CountDetailActiveMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).CountDetailActiveMessageCount; } + public long? CountDetailActiveMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).CountDetailActiveMessageCount; } /// Number of messages that are dead lettered. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public long? CountDetailDeadLetterMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).CountDetailDeadLetterMessageCount; } + public long? CountDetailDeadLetterMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).CountDetailDeadLetterMessageCount; } /// Number of scheduled messages. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public long? CountDetailScheduledMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).CountDetailScheduledMessageCount; } + public long? CountDetailScheduledMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).CountDetailScheduledMessageCount; } /// Number of messages transferred into dead letters. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public long? CountDetailTransferDeadLetterMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).CountDetailTransferDeadLetterMessageCount; } + public long? CountDetailTransferDeadLetterMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).CountDetailTransferDeadLetterMessageCount; } /// Number of messages transferred to another queue, topic, or subscription. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public long? CountDetailTransferMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).CountDetailTransferMessageCount; } + public long? CountDetailTransferMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).CountDetailTransferMessageCount; } /// The exact time the message was created. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public global::System.DateTime? CreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).CreatedAt; } + public global::System.DateTime? CreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).CreatedAt; } /// /// A value that indicates whether this queue has dead letter support when a message expires. /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public bool? DeadLetteringOnMessageExpiration { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).DeadLetteringOnMessageExpiration; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).DeadLetteringOnMessageExpiration = value ?? default(bool); } + public bool? DeadLetteringOnMessageExpiration { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).DeadLetteringOnMessageExpiration; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).DeadLetteringOnMessageExpiration = value ?? default(bool); } /// /// ISO 8601 default message timespan to live value. This is the duration after which the message expires, starting from when /// the message is sent to Service Bus. This is the default value used when TimeToLive is not set on a message itself. /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public global::System.TimeSpan? DefaultMessageTimeToLive { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).DefaultMessageTimeToLive; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).DefaultMessageTimeToLive = value ?? default(global::System.TimeSpan); } + public global::System.TimeSpan? DefaultMessageTimeToLive { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).DefaultMessageTimeToLive; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).DefaultMessageTimeToLive = value ?? default(global::System.TimeSpan); } /// /// ISO 8601 timeSpan structure that defines the duration of the duplicate detection history. The default value is 10 minutes. /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public global::System.TimeSpan? DuplicateDetectionHistoryTimeWindow { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).DuplicateDetectionHistoryTimeWindow; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).DuplicateDetectionHistoryTimeWindow = value ?? default(global::System.TimeSpan); } + public global::System.TimeSpan? DuplicateDetectionHistoryTimeWindow { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).DuplicateDetectionHistoryTimeWindow; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).DuplicateDetectionHistoryTimeWindow = value ?? default(global::System.TimeSpan); } /// Value that indicates whether server-side batched operations are enabled. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public bool? EnableBatchedOperations { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).EnableBatchedOperations; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).EnableBatchedOperations = value ?? default(bool); } + public bool? EnableBatchedOperations { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).EnableBatchedOperations; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).EnableBatchedOperations = value ?? default(bool); } /// /// A value that indicates whether Express Entities are enabled. An express queue holds a message in memory temporarily before /// writing it to persistent storage. /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public bool? EnableExpress { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).EnableExpress; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).EnableExpress = value ?? default(bool); } + public bool? EnableExpress { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).EnableExpress; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).EnableExpress = value ?? default(bool); } /// /// A value that indicates whether the queue is to be partitioned across multiple message brokers. /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public bool? EnablePartitioning { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).EnablePartitioning; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).EnablePartitioning = value ?? default(bool); } + public bool? EnablePartitioning { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).EnablePartitioning; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).EnablePartitioning = value ?? default(bool); } /// Queue/Topic name to forward the Dead Letter message [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string ForwardDeadLetteredMessagesTo { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).ForwardDeadLetteredMessagesTo; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).ForwardDeadLetteredMessagesTo = value ?? null; } + public string ForwardDeadLetteredMessagesTo { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).ForwardDeadLetteredMessagesTo; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).ForwardDeadLetteredMessagesTo = value ?? null; } /// Queue/Topic name to forward the messages [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string ForwardTo { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).ForwardTo; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).ForwardTo = value ?? null; } + public string ForwardTo { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).ForwardTo; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).ForwardTo = value ?? null; } /// /// Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} @@ -115,31 +115,31 @@ public partial class SbQueue : /// The maximum value for LockDuration is 5 minutes; the default value is 1 minute. /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public global::System.TimeSpan? LockDuration { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).LockDuration; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).LockDuration = value ?? default(global::System.TimeSpan); } + public global::System.TimeSpan? LockDuration { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).LockDuration; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).LockDuration = value ?? default(global::System.TimeSpan); } /// /// The maximum delivery count. A message is automatically deadlettered after this number of deliveries. default value is /// 10. /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public int? MaxDeliveryCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).MaxDeliveryCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).MaxDeliveryCount = value ?? default(int); } + public int? MaxDeliveryCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).MaxDeliveryCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).MaxDeliveryCount = value ?? default(int); } /// /// Maximum size (in KB) of the message payload that can be accepted by the queue. This property is only used in Premium today /// and default is 1024. /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public long? MaxMessageSizeInKilobytes { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).MaxMessageSizeInKilobytes; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).MaxMessageSizeInKilobytes = value ?? default(long); } + public long? MaxMessageSizeInKilobytes { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).MaxMessageSizeInKilobytes; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).MaxMessageSizeInKilobytes = value ?? default(long); } /// /// The maximum size of the queue in megabytes, which is the size of memory allocated for the queue. Default is 1024. /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public int? MaxSizeInMegabytes { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).MaxSizeInMegabytes; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).MaxSizeInMegabytes = value ?? default(int); } + public int? MaxSizeInMegabytes { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).MaxSizeInMegabytes; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).MaxSizeInMegabytes = value ?? default(int); } /// The number of messages in the queue. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public long? MessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).MessageCount; } + public long? MessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).MessageCount; } /// Internal Acessors for Id string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)__proxyResource).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)__proxyResource).Id = value; } @@ -154,62 +154,62 @@ public partial class SbQueue : string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)__proxyResource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)__proxyResource).Type = value; } /// Internal Acessors for AccessedAt - global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal.AccessedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).AccessedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).AccessedAt = value; } + global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal.AccessedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).AccessedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).AccessedAt = value; } /// Internal Acessors for CountDetail - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetails Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal.CountDetail { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).CountDetail; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).CountDetail = value; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetails Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal.CountDetail { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).CountDetail; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).CountDetail = value; } /// Internal Acessors for CountDetailActiveMessageCount - long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal.CountDetailActiveMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).CountDetailActiveMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).CountDetailActiveMessageCount = value; } + long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal.CountDetailActiveMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).CountDetailActiveMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).CountDetailActiveMessageCount = value; } /// Internal Acessors for CountDetailDeadLetterMessageCount - long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal.CountDetailDeadLetterMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).CountDetailDeadLetterMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).CountDetailDeadLetterMessageCount = value; } + long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal.CountDetailDeadLetterMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).CountDetailDeadLetterMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).CountDetailDeadLetterMessageCount = value; } /// Internal Acessors for CountDetailScheduledMessageCount - long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal.CountDetailScheduledMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).CountDetailScheduledMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).CountDetailScheduledMessageCount = value; } + long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal.CountDetailScheduledMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).CountDetailScheduledMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).CountDetailScheduledMessageCount = value; } /// Internal Acessors for CountDetailTransferDeadLetterMessageCount - long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal.CountDetailTransferDeadLetterMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).CountDetailTransferDeadLetterMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).CountDetailTransferDeadLetterMessageCount = value; } + long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal.CountDetailTransferDeadLetterMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).CountDetailTransferDeadLetterMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).CountDetailTransferDeadLetterMessageCount = value; } /// Internal Acessors for CountDetailTransferMessageCount - long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal.CountDetailTransferMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).CountDetailTransferMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).CountDetailTransferMessageCount = value; } + long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal.CountDetailTransferMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).CountDetailTransferMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).CountDetailTransferMessageCount = value; } /// Internal Acessors for CreatedAt - global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal.CreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).CreatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).CreatedAt = value; } + global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal.CreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).CreatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).CreatedAt = value; } /// Internal Acessors for MessageCount - long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal.MessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).MessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).MessageCount = value; } + long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal.MessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).MessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).MessageCount = value; } /// Internal Acessors for Property - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueProperties Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbQueueProperties()); set { {_property = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueProperties Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbQueueProperties()); set { {_property = value;} } } /// Internal Acessors for SizeInByte - long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal.SizeInByte { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).SizeInByte; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).SizeInByte = value; } + long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal.SizeInByte { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).SizeInByte; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).SizeInByte = value; } /// Internal Acessors for SystemData - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal.SystemData { get => (this._systemData = this._systemData ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemData()); set { {_systemData = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal.SystemData { get => (this._systemData = this._systemData ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemData()); set { {_systemData = value;} } } /// Internal Acessors for UpdatedAt - global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueInternal.UpdatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).UpdatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).UpdatedAt = value; } + global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueInternal.UpdatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).UpdatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).UpdatedAt = value; } /// The name of the resource [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inherited)] public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)__proxyResource).Name; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueProperties _property; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueProperties _property; /// Queue Properties [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbQueueProperties()); set => this._property = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbQueueProperties()); set => this._property = value; } /// A value indicating if this queue requires duplicate detection. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public bool? RequiresDuplicateDetection { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).RequiresDuplicateDetection; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).RequiresDuplicateDetection = value ?? default(bool); } + public bool? RequiresDuplicateDetection { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).RequiresDuplicateDetection; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).RequiresDuplicateDetection = value ?? default(bool); } /// A value that indicates whether the queue supports the concept of sessions. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public bool? RequiresSession { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).RequiresSession; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).RequiresSession = value ?? default(bool); } + public bool? RequiresSession { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).RequiresSession; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).RequiresSession = value ?? default(bool); } /// Gets the resource group name [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] @@ -217,11 +217,11 @@ public partial class SbQueue : /// The size of the queue, in bytes. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public long? SizeInByte { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).SizeInByte; } + public long? SizeInByte { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).SizeInByte; } /// Enumerates the possible values for the status of a messaging entity. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus? Status { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).Status; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).Status = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus)""); } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus? Status { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).Status; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).Status = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus)""); } /// Backing field for property. private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData _systemData; @@ -262,7 +262,7 @@ public partial class SbQueue : /// The exact time the message was updated. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public global::System.DateTime? UpdatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal)Property).UpdatedAt; } + public global::System.DateTime? UpdatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)Property).UpdatedAt; } /// Creates an new instance. public SbQueue() @@ -648,7 +648,7 @@ internal partial interface ISbQueueInternal : /// The number of messages in the queue. long? MessageCount { get; set; } /// Queue Properties - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueProperties Property { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueProperties Property { get; set; } /// A value indicating if this queue requires duplicate detection. bool? RequiresDuplicateDetection { get; set; } /// A value that indicates whether the queue supports the concept of sessions. diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbQueue.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbQueue.json.cs similarity index 95% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbQueue.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbQueue.json.cs index fd47d528a57f..bffadedf389f 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbQueue.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbQueue.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class SbQueue partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new SbQueue(json) : null; } @@ -78,7 +78,7 @@ internal SbQueue(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.Json return; } __proxyResource = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ProxyResource(json); - {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbQueueProperties.FromJson(__jsonProperties) : Property;} + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbQueueProperties.FromJson(__jsonProperties) : Property;} {_systemData = If( json?.PropertyT("systemData"), out var __jsonSystemData) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemData.FromJson(__jsonSystemData) : SystemData;} AfterFromJson(json); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbQueueListResult.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbQueueListResult.PowerShell.cs similarity index 76% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbQueueListResult.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbQueueListResult.PowerShell.cs index 88a575e5043d..e42f33b6a903 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbQueueListResult.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbQueueListResult.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -63,27 +63,29 @@ public partial class SbQueueListResult partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new SbQueueListResult(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new SbQueueListResult(content); } @@ -93,10 +95,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -111,17 +113,17 @@ internal SbQueueListResult(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbQueueTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbQueueTypeConverter.ConvertFrom)); } if (content.Contains("NextLink")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueListResultInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueListResultInternal)this).NextLink, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -136,11 +138,11 @@ internal SbQueueListResult(global::System.Management.Automation.PSObject content // actually deserialize if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbQueueTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbQueueTypeConverter.ConvertFrom)); } if (content.Contains("NextLink")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueListResultInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueListResultInternal)this).NextLink, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbQueueListResult.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbQueueListResult.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbQueueListResult.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbQueueListResult.TypeConverter.cs index 6e96dadb338b..2f08ecef0fc0 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbQueueListResult.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbQueueListResult.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueListResult ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueListResult ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueListResult).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueListResult).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbQueueListResult.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbQueueListResult.cs similarity index 89% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbQueueListResult.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbQueueListResult.cs index f6daf97768c6..f7f0d99e2349 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbQueueListResult.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbQueueListResult.cs @@ -3,15 +3,15 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// The response to the List Queues operation. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class SbQueueListResult : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueListResult, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueListResultInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueListResult, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueListResultInternal { /// Backing field for property. @@ -24,11 +24,11 @@ public partial class SbQueueListResult : public string NextLink { get => this._nextLink; set => this._nextLink = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue[] _value; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue[] _value; /// Result of the List Queues operation. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue[] Value { get => this._value; set => this._value = value; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue[] Value { get => this._value; set => this._value = value; } /// Creates an new instance. public SbQueueListResult() @@ -56,8 +56,8 @@ public partial interface ISbQueueListResult : ReadOnly = false, Description = @"Result of the List Queues operation.", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue[] Value { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue[] Value { get; set; } } /// The response to the List Queues operation. @@ -69,7 +69,7 @@ internal partial interface ISbQueueListResultInternal /// string NextLink { get; set; } /// Result of the List Queues operation. - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue[] Value { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue[] Value { get; set; } } } \ No newline at end of file diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbQueueListResult.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbQueueListResult.json.cs similarity index 92% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbQueueListResult.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbQueueListResult.json.cs index d00b3c5e1ead..767f96aac38b 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbQueueListResult.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbQueueListResult.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class SbQueueListResult partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueListResult. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueListResult. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueListResult. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueListResult. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new SbQueueListResult(json) : null; } @@ -77,7 +77,7 @@ internal SbQueueListResult(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime { return; } - {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue) (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbQueue.FromJson(__u) )) ))() : null : Value;} + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue) (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbQueue.FromJson(__u) )) ))() : null : Value;} {_nextLink = If( json?.PropertyT("nextLink"), out var __jsonNextLink) ? (string)__jsonNextLink : (string)NextLink;} AfterFromJson(json); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbQueueProperties.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbQueueProperties.PowerShell.cs new file mode 100644 index 000000000000..d1dac4a8e2fc --- /dev/null +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbQueueProperties.PowerShell.cs @@ -0,0 +1,374 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; + + /// The Queue Properties definition. + [System.ComponentModel.TypeConverter(typeof(SbQueuePropertiesTypeConverter))] + public partial class SbQueueProperties + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior + /// + /// /// instance serialized to a string, normally it is a Json + /// /// set returnNow to true if you provide a customized OverrideToString function + + partial void OverrideToString(ref string stringResult, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new SbQueueProperties(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new SbQueueProperties(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal SbQueueProperties(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("CountDetail")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).CountDetail = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetails) content.GetValueForProperty("CountDetail",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).CountDetail, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.MessageCountDetailsTypeConverter.ConvertFrom); + } + if (content.Contains("CreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("UpdatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).UpdatedAt = (global::System.DateTime?) content.GetValueForProperty("UpdatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).UpdatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("AccessedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).AccessedAt = (global::System.DateTime?) content.GetValueForProperty("AccessedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).AccessedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SizeInByte")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).SizeInByte = (long?) content.GetValueForProperty("SizeInByte",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).SizeInByte, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("MessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).MessageCount = (long?) content.GetValueForProperty("MessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).MessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("LockDuration")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).LockDuration = (global::System.TimeSpan?) content.GetValueForProperty("LockDuration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).LockDuration, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + } + if (content.Contains("MaxSizeInMegabytes")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).MaxSizeInMegabytes = (int?) content.GetValueForProperty("MaxSizeInMegabytes",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).MaxSizeInMegabytes, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + } + if (content.Contains("MaxMessageSizeInKilobytes")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).MaxMessageSizeInKilobytes = (long?) content.GetValueForProperty("MaxMessageSizeInKilobytes",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).MaxMessageSizeInKilobytes, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("RequiresDuplicateDetection")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).RequiresDuplicateDetection = (bool?) content.GetValueForProperty("RequiresDuplicateDetection",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).RequiresDuplicateDetection, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("RequiresSession")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).RequiresSession = (bool?) content.GetValueForProperty("RequiresSession",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).RequiresSession, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("DefaultMessageTimeToLive")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).DefaultMessageTimeToLive = (global::System.TimeSpan?) content.GetValueForProperty("DefaultMessageTimeToLive",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).DefaultMessageTimeToLive, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + } + if (content.Contains("DeadLetteringOnMessageExpiration")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).DeadLetteringOnMessageExpiration = (bool?) content.GetValueForProperty("DeadLetteringOnMessageExpiration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).DeadLetteringOnMessageExpiration, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("DuplicateDetectionHistoryTimeWindow")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).DuplicateDetectionHistoryTimeWindow = (global::System.TimeSpan?) content.GetValueForProperty("DuplicateDetectionHistoryTimeWindow",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).DuplicateDetectionHistoryTimeWindow, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + } + if (content.Contains("MaxDeliveryCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).MaxDeliveryCount = (int?) content.GetValueForProperty("MaxDeliveryCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).MaxDeliveryCount, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + } + if (content.Contains("Status")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).Status = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus?) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).Status, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus.CreateFrom); + } + if (content.Contains("EnableBatchedOperations")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).EnableBatchedOperations = (bool?) content.GetValueForProperty("EnableBatchedOperations",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).EnableBatchedOperations, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("AutoDeleteOnIdle")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).AutoDeleteOnIdle = (global::System.TimeSpan?) content.GetValueForProperty("AutoDeleteOnIdle",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).AutoDeleteOnIdle, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + } + if (content.Contains("EnablePartitioning")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).EnablePartitioning = (bool?) content.GetValueForProperty("EnablePartitioning",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).EnablePartitioning, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("EnableExpress")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).EnableExpress = (bool?) content.GetValueForProperty("EnableExpress",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).EnableExpress, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("ForwardTo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).ForwardTo = (string) content.GetValueForProperty("ForwardTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).ForwardTo, global::System.Convert.ToString); + } + if (content.Contains("ForwardDeadLetteredMessagesTo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).ForwardDeadLetteredMessagesTo = (string) content.GetValueForProperty("ForwardDeadLetteredMessagesTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).ForwardDeadLetteredMessagesTo, global::System.Convert.ToString); + } + if (content.Contains("CountDetailActiveMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).CountDetailActiveMessageCount = (long?) content.GetValueForProperty("CountDetailActiveMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).CountDetailActiveMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailDeadLetterMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).CountDetailDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).CountDetailDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailScheduledMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).CountDetailScheduledMessageCount = (long?) content.GetValueForProperty("CountDetailScheduledMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).CountDetailScheduledMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailTransferMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).CountDetailTransferMessageCount = (long?) content.GetValueForProperty("CountDetailTransferMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).CountDetailTransferMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailTransferDeadLetterMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).CountDetailTransferDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailTransferDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).CountDetailTransferDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal SbQueueProperties(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("CountDetail")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).CountDetail = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetails) content.GetValueForProperty("CountDetail",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).CountDetail, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.MessageCountDetailsTypeConverter.ConvertFrom); + } + if (content.Contains("CreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("UpdatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).UpdatedAt = (global::System.DateTime?) content.GetValueForProperty("UpdatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).UpdatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("AccessedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).AccessedAt = (global::System.DateTime?) content.GetValueForProperty("AccessedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).AccessedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SizeInByte")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).SizeInByte = (long?) content.GetValueForProperty("SizeInByte",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).SizeInByte, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("MessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).MessageCount = (long?) content.GetValueForProperty("MessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).MessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("LockDuration")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).LockDuration = (global::System.TimeSpan?) content.GetValueForProperty("LockDuration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).LockDuration, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + } + if (content.Contains("MaxSizeInMegabytes")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).MaxSizeInMegabytes = (int?) content.GetValueForProperty("MaxSizeInMegabytes",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).MaxSizeInMegabytes, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + } + if (content.Contains("MaxMessageSizeInKilobytes")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).MaxMessageSizeInKilobytes = (long?) content.GetValueForProperty("MaxMessageSizeInKilobytes",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).MaxMessageSizeInKilobytes, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("RequiresDuplicateDetection")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).RequiresDuplicateDetection = (bool?) content.GetValueForProperty("RequiresDuplicateDetection",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).RequiresDuplicateDetection, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("RequiresSession")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).RequiresSession = (bool?) content.GetValueForProperty("RequiresSession",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).RequiresSession, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("DefaultMessageTimeToLive")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).DefaultMessageTimeToLive = (global::System.TimeSpan?) content.GetValueForProperty("DefaultMessageTimeToLive",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).DefaultMessageTimeToLive, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + } + if (content.Contains("DeadLetteringOnMessageExpiration")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).DeadLetteringOnMessageExpiration = (bool?) content.GetValueForProperty("DeadLetteringOnMessageExpiration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).DeadLetteringOnMessageExpiration, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("DuplicateDetectionHistoryTimeWindow")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).DuplicateDetectionHistoryTimeWindow = (global::System.TimeSpan?) content.GetValueForProperty("DuplicateDetectionHistoryTimeWindow",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).DuplicateDetectionHistoryTimeWindow, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + } + if (content.Contains("MaxDeliveryCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).MaxDeliveryCount = (int?) content.GetValueForProperty("MaxDeliveryCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).MaxDeliveryCount, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + } + if (content.Contains("Status")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).Status = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus?) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).Status, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus.CreateFrom); + } + if (content.Contains("EnableBatchedOperations")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).EnableBatchedOperations = (bool?) content.GetValueForProperty("EnableBatchedOperations",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).EnableBatchedOperations, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("AutoDeleteOnIdle")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).AutoDeleteOnIdle = (global::System.TimeSpan?) content.GetValueForProperty("AutoDeleteOnIdle",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).AutoDeleteOnIdle, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + } + if (content.Contains("EnablePartitioning")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).EnablePartitioning = (bool?) content.GetValueForProperty("EnablePartitioning",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).EnablePartitioning, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("EnableExpress")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).EnableExpress = (bool?) content.GetValueForProperty("EnableExpress",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).EnableExpress, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("ForwardTo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).ForwardTo = (string) content.GetValueForProperty("ForwardTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).ForwardTo, global::System.Convert.ToString); + } + if (content.Contains("ForwardDeadLetteredMessagesTo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).ForwardDeadLetteredMessagesTo = (string) content.GetValueForProperty("ForwardDeadLetteredMessagesTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).ForwardDeadLetteredMessagesTo, global::System.Convert.ToString); + } + if (content.Contains("CountDetailActiveMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).CountDetailActiveMessageCount = (long?) content.GetValueForProperty("CountDetailActiveMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).CountDetailActiveMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailDeadLetterMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).CountDetailDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).CountDetailDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailScheduledMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).CountDetailScheduledMessageCount = (long?) content.GetValueForProperty("CountDetailScheduledMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).CountDetailScheduledMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailTransferMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).CountDetailTransferMessageCount = (long?) content.GetValueForProperty("CountDetailTransferMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).CountDetailTransferMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailTransferDeadLetterMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).CountDetailTransferDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailTransferDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal)this).CountDetailTransferDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.SerializationMode.IncludeAll)?.ToString(); + + public override string ToString() + { + var returnNow = false; + var result = global::System.String.Empty; + OverrideToString(ref result, ref returnNow); + if (returnNow) + { + return result; + } + return ToJsonString(); + } + } + /// The Queue Properties definition. + [System.ComponentModel.TypeConverter(typeof(SbQueuePropertiesTypeConverter))] + public partial interface ISbQueueProperties + + { + + } +} \ No newline at end of file diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbQueueProperties.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbQueueProperties.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbQueueProperties.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbQueueProperties.TypeConverter.cs index abe24d2b7bc3..da624c6ccd52 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbQueueProperties.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbQueueProperties.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueProperties ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueProperties ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueProperties).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueProperties).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbQueueProperties.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbQueueProperties.cs similarity index 93% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbQueueProperties.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbQueueProperties.cs index bf2ad702d550..9f3217f23516 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbQueueProperties.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbQueueProperties.cs @@ -3,15 +3,15 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// The Queue Properties definition. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class SbQueueProperties : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueProperties, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueProperties, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal { /// Backing field for property. @@ -181,37 +181,37 @@ public partial class SbQueueProperties : public long? MessageCount { get => this._messageCount; } /// Internal Acessors for AccessedAt - global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal.AccessedAt { get => this._accessedAt; set { {_accessedAt = value;} } } + global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal.AccessedAt { get => this._accessedAt; set { {_accessedAt = value;} } } /// Internal Acessors for CountDetail - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetails Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal.CountDetail { get => (this._countDetail = this._countDetail ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.MessageCountDetails()); set { {_countDetail = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetails Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal.CountDetail { get => (this._countDetail = this._countDetail ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.MessageCountDetails()); set { {_countDetail = value;} } } /// Internal Acessors for CountDetailActiveMessageCount - long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal.CountDetailActiveMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).ActiveMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).ActiveMessageCount = value; } + long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal.CountDetailActiveMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).ActiveMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).ActiveMessageCount = value; } /// Internal Acessors for CountDetailDeadLetterMessageCount - long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal.CountDetailDeadLetterMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).DeadLetterMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).DeadLetterMessageCount = value; } + long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal.CountDetailDeadLetterMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).DeadLetterMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).DeadLetterMessageCount = value; } /// Internal Acessors for CountDetailScheduledMessageCount - long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal.CountDetailScheduledMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).ScheduledMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).ScheduledMessageCount = value; } + long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal.CountDetailScheduledMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).ScheduledMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).ScheduledMessageCount = value; } /// Internal Acessors for CountDetailTransferDeadLetterMessageCount - long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal.CountDetailTransferDeadLetterMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).TransferDeadLetterMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).TransferDeadLetterMessageCount = value; } + long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal.CountDetailTransferDeadLetterMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).TransferDeadLetterMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).TransferDeadLetterMessageCount = value; } /// Internal Acessors for CountDetailTransferMessageCount - long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal.CountDetailTransferMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).TransferMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).TransferMessageCount = value; } + long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal.CountDetailTransferMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).TransferMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).TransferMessageCount = value; } /// Internal Acessors for CreatedAt - global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal.CreatedAt { get => this._createdAt; set { {_createdAt = value;} } } + global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal.CreatedAt { get => this._createdAt; set { {_createdAt = value;} } } /// Internal Acessors for MessageCount - long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal.MessageCount { get => this._messageCount; set { {_messageCount = value;} } } + long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal.MessageCount { get => this._messageCount; set { {_messageCount = value;} } } /// Internal Acessors for SizeInByte - long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal.SizeInByte { get => this._sizeInByte; set { {_sizeInByte = value;} } } + long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal.SizeInByte { get => this._sizeInByte; set { {_sizeInByte = value;} } } /// Internal Acessors for UpdatedAt - global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueuePropertiesInternal.UpdatedAt { get => this._updatedAt; set { {_updatedAt = value;} } } + global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueuePropertiesInternal.UpdatedAt { get => this._updatedAt; set { {_updatedAt = value;} } } /// Backing field for property. private bool? _requiresDuplicateDetection; diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbQueueProperties.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbQueueProperties.json.cs similarity index 98% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbQueueProperties.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbQueueProperties.json.cs index 1556f4be6170..e642c6d45a1b 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbQueueProperties.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbQueueProperties.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class SbQueueProperties partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueProperties. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueProperties. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueProperties. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueProperties. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new SbQueueProperties(json) : null; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSku.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSku.PowerShell.cs similarity index 75% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSku.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSku.PowerShell.cs index 47890c6ad35e..9de44c0483b9 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSku.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSku.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -63,27 +63,27 @@ public partial class SbSku partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSku DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSku DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new SbSku(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSku DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSku DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new SbSku(content); } @@ -93,10 +93,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSku FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSku FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -111,21 +111,21 @@ internal SbSku(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSkuInternal)this).Name = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuName) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSkuInternal)this).Name, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuName.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSkuInternal)this).Name = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuName) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSkuInternal)this).Name, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuName.CreateFrom); } if (content.Contains("Tier")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSkuInternal)this).Tier = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuTier?) content.GetValueForProperty("Tier",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSkuInternal)this).Tier, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuTier.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSkuInternal)this).Tier = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuTier?) content.GetValueForProperty("Tier",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSkuInternal)this).Tier, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuTier.CreateFrom); } if (content.Contains("Capacity")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSkuInternal)this).Capacity = (int?) content.GetValueForProperty("Capacity",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSkuInternal)this).Capacity, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSkuInternal)this).Capacity = (int?) content.GetValueForProperty("Capacity",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSkuInternal)this).Capacity, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -140,15 +140,15 @@ internal SbSku(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSkuInternal)this).Name = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuName) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSkuInternal)this).Name, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuName.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSkuInternal)this).Name = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuName) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSkuInternal)this).Name, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuName.CreateFrom); } if (content.Contains("Tier")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSkuInternal)this).Tier = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuTier?) content.GetValueForProperty("Tier",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSkuInternal)this).Tier, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuTier.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSkuInternal)this).Tier = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuTier?) content.GetValueForProperty("Tier",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSkuInternal)this).Tier, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.SkuTier.CreateFrom); } if (content.Contains("Capacity")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSkuInternal)this).Capacity = (int?) content.GetValueForProperty("Capacity",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSkuInternal)this).Capacity, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSkuInternal)this).Capacity = (int?) content.GetValueForProperty("Capacity",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSkuInternal)this).Capacity, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); } AfterDeserializePSObject(content); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSku.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSku.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSku.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSku.TypeConverter.cs index ccf81767da33..7e0f7be0e596 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSku.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSku.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -105,14 +105,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSku ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSku ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSku).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSku).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSku.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSku.cs similarity index 70% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSku.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSku.cs index 91286ed5ea7c..f74ca2c9c049 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSku.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSku.cs @@ -3,22 +3,24 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// SKU of the namespace. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class SbSku : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSku, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSkuInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSku, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSkuInternal { /// Backing field for property. private int? _capacity; /// - /// The specified messaging units for the tier. For Premium tier, capacity are 1,2 and 4. + /// Messaging units for your service bus premium namespace. Valid capacities are {1, 2, 4, 8, 16} multiples of your properties.premiumMessagingPartitions + /// setting. For example, If properties.premiumMessagingPartitions is 1 then possible capacity values are 1, 2, 4, 8, and + /// 16. If properties.premiumMessagingPartitions is 4 then possible capacity values are 4, 8, 16, 32 and 64 /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] public int? Capacity { get => this._capacity; set => this._capacity = value; } @@ -48,12 +50,14 @@ public partial interface ISbSku : Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IJsonSerializable { /// - /// The specified messaging units for the tier. For Premium tier, capacity are 1,2 and 4. + /// Messaging units for your service bus premium namespace. Valid capacities are {1, 2, 4, 8, 16} multiples of your properties.premiumMessagingPartitions + /// setting. For example, If properties.premiumMessagingPartitions is 1 then possible capacity values are 1, 2, 4, 8, and + /// 16. If properties.premiumMessagingPartitions is 4 then possible capacity values are 4, 8, 16, 32 and 64 /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Info( Required = false, ReadOnly = false, - Description = @"The specified messaging units for the tier. For Premium tier, capacity are 1,2 and 4.", + Description = @"Messaging units for your service bus premium namespace. Valid capacities are {1, 2, 4, 8, 16} multiples of your properties.premiumMessagingPartitions setting. For example, If properties.premiumMessagingPartitions is 1 then possible capacity values are 1, 2, 4, 8, and 16. If properties.premiumMessagingPartitions is 4 then possible capacity values are 4, 8, 16, 32 and 64", SerializedName = @"capacity", PossibleTypes = new [] { typeof(int) })] int? Capacity { get; set; } @@ -80,7 +84,9 @@ internal partial interface ISbSkuInternal { /// - /// The specified messaging units for the tier. For Premium tier, capacity are 1,2 and 4. + /// Messaging units for your service bus premium namespace. Valid capacities are {1, 2, 4, 8, 16} multiples of your properties.premiumMessagingPartitions + /// setting. For example, If properties.premiumMessagingPartitions is 1 then possible capacity values are 1, 2, 4, 8, and + /// 16. If properties.premiumMessagingPartitions is 4 then possible capacity values are 4, 8, 16, 32 and 64 /// int? Capacity { get; set; } /// Name of this SKU. diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSku.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSku.json.cs similarity index 96% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSku.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSku.json.cs index 9f6a3d561d7a..92a72b8e4f98 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSku.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSku.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class SbSku partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSku. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSku. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSku. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSku. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSku FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSku FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new SbSku(json) : null; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSubscription.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSubscription.PowerShell.cs new file mode 100644 index 000000000000..bb7d6cf95e0b --- /dev/null +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSubscription.PowerShell.cs @@ -0,0 +1,468 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; + + /// Description of subscription resource. + [System.ComponentModel.TypeConverter(typeof(SbSubscriptionTypeConverter))] + public partial class SbSubscription + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior + /// + /// /// instance serialized to a string, normally it is a Json + /// /// set returnNow to true if you provide a customized OverrideToString function + + partial void OverrideToString(ref string stringResult, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new SbSubscription(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new SbSubscription(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal SbSubscription(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Property")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbSubscriptionPropertiesTypeConverter.ConvertFrom); + } + if (content.Contains("SystemData")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemDataTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Type, global::System.Convert.ToString); + } + if (content.Contains("Location")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Location, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("CountDetail")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).CountDetail = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetails) content.GetValueForProperty("CountDetail",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).CountDetail, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.MessageCountDetailsTypeConverter.ConvertFrom); + } + if (content.Contains("ClientAffineProperty")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).ClientAffineProperty = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbClientAffineProperties) content.GetValueForProperty("ClientAffineProperty",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).ClientAffineProperty, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbClientAffinePropertiesTypeConverter.ConvertFrom); + } + if (content.Contains("MessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).MessageCount = (long?) content.GetValueForProperty("MessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).MessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("AccessedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).AccessedAt = (global::System.DateTime?) content.GetValueForProperty("AccessedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).AccessedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("UpdatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).UpdatedAt = (global::System.DateTime?) content.GetValueForProperty("UpdatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).UpdatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("LockDuration")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).LockDuration = (global::System.TimeSpan?) content.GetValueForProperty("LockDuration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).LockDuration, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + } + if (content.Contains("RequiresSession")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).RequiresSession = (bool?) content.GetValueForProperty("RequiresSession",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).RequiresSession, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("DefaultMessageTimeToLive")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).DefaultMessageTimeToLive = (global::System.TimeSpan?) content.GetValueForProperty("DefaultMessageTimeToLive",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).DefaultMessageTimeToLive, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + } + if (content.Contains("DeadLetteringOnFilterEvaluationException")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).DeadLetteringOnFilterEvaluationException = (bool?) content.GetValueForProperty("DeadLetteringOnFilterEvaluationException",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).DeadLetteringOnFilterEvaluationException, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("DeadLetteringOnMessageExpiration")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).DeadLetteringOnMessageExpiration = (bool?) content.GetValueForProperty("DeadLetteringOnMessageExpiration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).DeadLetteringOnMessageExpiration, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("DuplicateDetectionHistoryTimeWindow")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).DuplicateDetectionHistoryTimeWindow = (global::System.TimeSpan?) content.GetValueForProperty("DuplicateDetectionHistoryTimeWindow",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).DuplicateDetectionHistoryTimeWindow, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + } + if (content.Contains("MaxDeliveryCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).MaxDeliveryCount = (int?) content.GetValueForProperty("MaxDeliveryCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).MaxDeliveryCount, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + } + if (content.Contains("Status")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).Status = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus?) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).Status, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus.CreateFrom); + } + if (content.Contains("EnableBatchedOperations")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).EnableBatchedOperations = (bool?) content.GetValueForProperty("EnableBatchedOperations",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).EnableBatchedOperations, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("AutoDeleteOnIdle")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).AutoDeleteOnIdle = (global::System.TimeSpan?) content.GetValueForProperty("AutoDeleteOnIdle",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).AutoDeleteOnIdle, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + } + if (content.Contains("ForwardTo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).ForwardTo = (string) content.GetValueForProperty("ForwardTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).ForwardTo, global::System.Convert.ToString); + } + if (content.Contains("ForwardDeadLetteredMessagesTo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).ForwardDeadLetteredMessagesTo = (string) content.GetValueForProperty("ForwardDeadLetteredMessagesTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).ForwardDeadLetteredMessagesTo, global::System.Convert.ToString); + } + if (content.Contains("IsClientAffine")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).IsClientAffine = (bool?) content.GetValueForProperty("IsClientAffine",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).IsClientAffine, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("SystemDataCreatedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("CountDetailActiveMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).CountDetailActiveMessageCount = (long?) content.GetValueForProperty("CountDetailActiveMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).CountDetailActiveMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailDeadLetterMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).CountDetailDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).CountDetailDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailScheduledMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).CountDetailScheduledMessageCount = (long?) content.GetValueForProperty("CountDetailScheduledMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).CountDetailScheduledMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailTransferMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).CountDetailTransferMessageCount = (long?) content.GetValueForProperty("CountDetailTransferMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).CountDetailTransferMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailTransferDeadLetterMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).CountDetailTransferDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailTransferDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).CountDetailTransferDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("ClientId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).ClientId, global::System.Convert.ToString); + } + if (content.Contains("IsDurable")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).IsDurable = (bool?) content.GetValueForProperty("IsDurable",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).IsDurable, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("IsShared")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).IsShared = (bool?) content.GetValueForProperty("IsShared",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).IsShared, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal SbSubscription(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Property")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbSubscriptionPropertiesTypeConverter.ConvertFrom); + } + if (content.Contains("SystemData")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemDataTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Type, global::System.Convert.ToString); + } + if (content.Contains("Location")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Location, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("CountDetail")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).CountDetail = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetails) content.GetValueForProperty("CountDetail",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).CountDetail, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.MessageCountDetailsTypeConverter.ConvertFrom); + } + if (content.Contains("ClientAffineProperty")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).ClientAffineProperty = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbClientAffineProperties) content.GetValueForProperty("ClientAffineProperty",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).ClientAffineProperty, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbClientAffinePropertiesTypeConverter.ConvertFrom); + } + if (content.Contains("MessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).MessageCount = (long?) content.GetValueForProperty("MessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).MessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("AccessedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).AccessedAt = (global::System.DateTime?) content.GetValueForProperty("AccessedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).AccessedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("UpdatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).UpdatedAt = (global::System.DateTime?) content.GetValueForProperty("UpdatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).UpdatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("LockDuration")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).LockDuration = (global::System.TimeSpan?) content.GetValueForProperty("LockDuration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).LockDuration, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + } + if (content.Contains("RequiresSession")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).RequiresSession = (bool?) content.GetValueForProperty("RequiresSession",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).RequiresSession, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("DefaultMessageTimeToLive")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).DefaultMessageTimeToLive = (global::System.TimeSpan?) content.GetValueForProperty("DefaultMessageTimeToLive",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).DefaultMessageTimeToLive, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + } + if (content.Contains("DeadLetteringOnFilterEvaluationException")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).DeadLetteringOnFilterEvaluationException = (bool?) content.GetValueForProperty("DeadLetteringOnFilterEvaluationException",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).DeadLetteringOnFilterEvaluationException, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("DeadLetteringOnMessageExpiration")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).DeadLetteringOnMessageExpiration = (bool?) content.GetValueForProperty("DeadLetteringOnMessageExpiration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).DeadLetteringOnMessageExpiration, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("DuplicateDetectionHistoryTimeWindow")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).DuplicateDetectionHistoryTimeWindow = (global::System.TimeSpan?) content.GetValueForProperty("DuplicateDetectionHistoryTimeWindow",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).DuplicateDetectionHistoryTimeWindow, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + } + if (content.Contains("MaxDeliveryCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).MaxDeliveryCount = (int?) content.GetValueForProperty("MaxDeliveryCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).MaxDeliveryCount, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + } + if (content.Contains("Status")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).Status = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus?) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).Status, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus.CreateFrom); + } + if (content.Contains("EnableBatchedOperations")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).EnableBatchedOperations = (bool?) content.GetValueForProperty("EnableBatchedOperations",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).EnableBatchedOperations, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("AutoDeleteOnIdle")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).AutoDeleteOnIdle = (global::System.TimeSpan?) content.GetValueForProperty("AutoDeleteOnIdle",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).AutoDeleteOnIdle, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + } + if (content.Contains("ForwardTo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).ForwardTo = (string) content.GetValueForProperty("ForwardTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).ForwardTo, global::System.Convert.ToString); + } + if (content.Contains("ForwardDeadLetteredMessagesTo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).ForwardDeadLetteredMessagesTo = (string) content.GetValueForProperty("ForwardDeadLetteredMessagesTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).ForwardDeadLetteredMessagesTo, global::System.Convert.ToString); + } + if (content.Contains("IsClientAffine")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).IsClientAffine = (bool?) content.GetValueForProperty("IsClientAffine",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).IsClientAffine, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("SystemDataCreatedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("CountDetailActiveMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).CountDetailActiveMessageCount = (long?) content.GetValueForProperty("CountDetailActiveMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).CountDetailActiveMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailDeadLetterMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).CountDetailDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).CountDetailDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailScheduledMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).CountDetailScheduledMessageCount = (long?) content.GetValueForProperty("CountDetailScheduledMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).CountDetailScheduledMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailTransferMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).CountDetailTransferMessageCount = (long?) content.GetValueForProperty("CountDetailTransferMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).CountDetailTransferMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailTransferDeadLetterMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).CountDetailTransferDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailTransferDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).CountDetailTransferDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("ClientId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).ClientId, global::System.Convert.ToString); + } + if (content.Contains("IsDurable")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).IsDurable = (bool?) content.GetValueForProperty("IsDurable",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).IsDurable, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("IsShared")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).IsShared = (bool?) content.GetValueForProperty("IsShared",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal)this).IsShared, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.SerializationMode.IncludeAll)?.ToString(); + + public override string ToString() + { + var returnNow = false; + var result = global::System.String.Empty; + OverrideToString(ref result, ref returnNow); + if (returnNow) + { + return result; + } + return ToJsonString(); + } + } + /// Description of subscription resource. + [System.ComponentModel.TypeConverter(typeof(SbSubscriptionTypeConverter))] + public partial interface ISbSubscription + + { + + } +} \ No newline at end of file diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSubscription.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSubscription.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSubscription.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSubscription.TypeConverter.cs index c93da5faf2bb..ca6d8f28d5bf 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSubscription.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSubscription.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSubscription.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSubscription.cs similarity index 79% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSubscription.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSubscription.cs index 895148020342..82dfe7ab5796 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSubscription.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSubscription.cs @@ -3,15 +3,15 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// Description of subscription resource. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class SbSubscription : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IValidates { /// @@ -22,80 +22,80 @@ public partial class SbSubscription : /// Last time there was a receive request to this subscription. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public global::System.DateTime? AccessedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).AccessedAt; } + public global::System.DateTime? AccessedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).AccessedAt; } /// /// ISO 8061 timeSpan idle interval after which the topic is automatically deleted. The minimum duration is 5 minutes. /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public global::System.TimeSpan? AutoDeleteOnIdle { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).AutoDeleteOnIdle; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).AutoDeleteOnIdle = value ?? default(global::System.TimeSpan); } + public global::System.TimeSpan? AutoDeleteOnIdle { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).AutoDeleteOnIdle; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).AutoDeleteOnIdle = value ?? default(global::System.TimeSpan); } /// /// Indicates the Client ID of the application that created the client-affine subscription. /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string ClientId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).ClientAffinePropertyClientId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).ClientAffinePropertyClientId = value ?? null; } + public string ClientId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).ClientAffinePropertyClientId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).ClientAffinePropertyClientId = value ?? null; } /// Number of active messages in the queue, topic, or subscription. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public long? CountDetailActiveMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).CountDetailActiveMessageCount; } + public long? CountDetailActiveMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).CountDetailActiveMessageCount; } /// Number of messages that are dead lettered. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public long? CountDetailDeadLetterMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).CountDetailDeadLetterMessageCount; } + public long? CountDetailDeadLetterMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).CountDetailDeadLetterMessageCount; } /// Number of scheduled messages. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public long? CountDetailScheduledMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).CountDetailScheduledMessageCount; } + public long? CountDetailScheduledMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).CountDetailScheduledMessageCount; } /// Number of messages transferred into dead letters. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public long? CountDetailTransferDeadLetterMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).CountDetailTransferDeadLetterMessageCount; } + public long? CountDetailTransferDeadLetterMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).CountDetailTransferDeadLetterMessageCount; } /// Number of messages transferred to another queue, topic, or subscription. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public long? CountDetailTransferMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).CountDetailTransferMessageCount; } + public long? CountDetailTransferMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).CountDetailTransferMessageCount; } /// Exact time the message was created. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public global::System.DateTime? CreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).CreatedAt; } + public global::System.DateTime? CreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).CreatedAt; } /// /// Value that indicates whether a subscription has dead letter support on filter evaluation exceptions. /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public bool? DeadLetteringOnFilterEvaluationException { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).DeadLetteringOnFilterEvaluationException; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).DeadLetteringOnFilterEvaluationException = value ?? default(bool); } + public bool? DeadLetteringOnFilterEvaluationException { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).DeadLetteringOnFilterEvaluationException; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).DeadLetteringOnFilterEvaluationException = value ?? default(bool); } /// /// Value that indicates whether a subscription has dead letter support when a message expires. /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public bool? DeadLetteringOnMessageExpiration { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).DeadLetteringOnMessageExpiration; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).DeadLetteringOnMessageExpiration = value ?? default(bool); } + public bool? DeadLetteringOnMessageExpiration { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).DeadLetteringOnMessageExpiration; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).DeadLetteringOnMessageExpiration = value ?? default(bool); } /// /// ISO 8061 Default message timespan to live value. This is the duration after which the message expires, starting from when /// the message is sent to Service Bus. This is the default value used when TimeToLive is not set on a message itself. /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public global::System.TimeSpan? DefaultMessageTimeToLive { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).DefaultMessageTimeToLive; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).DefaultMessageTimeToLive = value ?? default(global::System.TimeSpan); } + public global::System.TimeSpan? DefaultMessageTimeToLive { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).DefaultMessageTimeToLive; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).DefaultMessageTimeToLive = value ?? default(global::System.TimeSpan); } /// /// ISO 8601 timeSpan structure that defines the duration of the duplicate detection history. The default value is 10 minutes. /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public global::System.TimeSpan? DuplicateDetectionHistoryTimeWindow { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).DuplicateDetectionHistoryTimeWindow; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).DuplicateDetectionHistoryTimeWindow = value ?? default(global::System.TimeSpan); } + public global::System.TimeSpan? DuplicateDetectionHistoryTimeWindow { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).DuplicateDetectionHistoryTimeWindow; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).DuplicateDetectionHistoryTimeWindow = value ?? default(global::System.TimeSpan); } /// Value that indicates whether server-side batched operations are enabled. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public bool? EnableBatchedOperations { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).EnableBatchedOperations; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).EnableBatchedOperations = value ?? default(bool); } + public bool? EnableBatchedOperations { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).EnableBatchedOperations; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).EnableBatchedOperations = value ?? default(bool); } /// Queue/Topic name to forward the Dead Letter message [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string ForwardDeadLetteredMessagesTo { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).ForwardDeadLetteredMessagesTo; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).ForwardDeadLetteredMessagesTo = value ?? null; } + public string ForwardDeadLetteredMessagesTo { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).ForwardDeadLetteredMessagesTo; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).ForwardDeadLetteredMessagesTo = value ?? null; } /// Queue/Topic name to forward the messages [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string ForwardTo { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).ForwardTo; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).ForwardTo = value ?? null; } + public string ForwardTo { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).ForwardTo; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).ForwardTo = value ?? null; } /// /// Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} @@ -105,19 +105,19 @@ public partial class SbSubscription : /// Value that indicates whether the subscription has an affinity to the client id. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public bool? IsClientAffine { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).IsClientAffine; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).IsClientAffine = value ?? default(bool); } + public bool? IsClientAffine { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).IsClientAffine; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).IsClientAffine = value ?? default(bool); } /// /// For client-affine subscriptions, this value indicates whether the subscription is durable or not. /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public bool? IsDurable { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).ClientAffinePropertyIsDurable; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).ClientAffinePropertyIsDurable = value ?? default(bool); } + public bool? IsDurable { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).ClientAffinePropertyIsDurable; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).ClientAffinePropertyIsDurable = value ?? default(bool); } /// /// For client-affine subscriptions, this value indicates whether the subscription is shared or not. /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public bool? IsShared { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).ClientAffinePropertyIsShared; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).ClientAffinePropertyIsShared = value ?? default(bool); } + public bool? IsShared { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).ClientAffinePropertyIsShared; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).ClientAffinePropertyIsShared = value ?? default(bool); } /// The geo-location where the resource lives [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inherited)] @@ -127,15 +127,15 @@ public partial class SbSubscription : /// ISO 8061 lock duration timespan for the subscription. The default value is 1 minute. /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public global::System.TimeSpan? LockDuration { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).LockDuration; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).LockDuration = value ?? default(global::System.TimeSpan); } + public global::System.TimeSpan? LockDuration { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).LockDuration; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).LockDuration = value ?? default(global::System.TimeSpan); } /// Number of maximum deliveries. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public int? MaxDeliveryCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).MaxDeliveryCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).MaxDeliveryCount = value ?? default(int); } + public int? MaxDeliveryCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).MaxDeliveryCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).MaxDeliveryCount = value ?? default(int); } /// Number of messages. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public long? MessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).MessageCount; } + public long? MessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).MessageCount; } /// Internal Acessors for Id string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)__proxyResource).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)__proxyResource).Id = value; } @@ -150,58 +150,58 @@ public partial class SbSubscription : string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)__proxyResource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)__proxyResource).Type = value; } /// Internal Acessors for AccessedAt - global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal.AccessedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).AccessedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).AccessedAt = value; } + global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal.AccessedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).AccessedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).AccessedAt = value; } /// Internal Acessors for ClientAffineProperty - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbClientAffineProperties Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal.ClientAffineProperty { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).ClientAffineProperty; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).ClientAffineProperty = value; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbClientAffineProperties Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal.ClientAffineProperty { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).ClientAffineProperty; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).ClientAffineProperty = value; } /// Internal Acessors for CountDetail - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetails Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal.CountDetail { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).CountDetail; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).CountDetail = value; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetails Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal.CountDetail { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).CountDetail; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).CountDetail = value; } /// Internal Acessors for CountDetailActiveMessageCount - long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal.CountDetailActiveMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).CountDetailActiveMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).CountDetailActiveMessageCount = value; } + long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal.CountDetailActiveMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).CountDetailActiveMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).CountDetailActiveMessageCount = value; } /// Internal Acessors for CountDetailDeadLetterMessageCount - long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal.CountDetailDeadLetterMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).CountDetailDeadLetterMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).CountDetailDeadLetterMessageCount = value; } + long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal.CountDetailDeadLetterMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).CountDetailDeadLetterMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).CountDetailDeadLetterMessageCount = value; } /// Internal Acessors for CountDetailScheduledMessageCount - long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal.CountDetailScheduledMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).CountDetailScheduledMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).CountDetailScheduledMessageCount = value; } + long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal.CountDetailScheduledMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).CountDetailScheduledMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).CountDetailScheduledMessageCount = value; } /// Internal Acessors for CountDetailTransferDeadLetterMessageCount - long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal.CountDetailTransferDeadLetterMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).CountDetailTransferDeadLetterMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).CountDetailTransferDeadLetterMessageCount = value; } + long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal.CountDetailTransferDeadLetterMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).CountDetailTransferDeadLetterMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).CountDetailTransferDeadLetterMessageCount = value; } /// Internal Acessors for CountDetailTransferMessageCount - long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal.CountDetailTransferMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).CountDetailTransferMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).CountDetailTransferMessageCount = value; } + long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal.CountDetailTransferMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).CountDetailTransferMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).CountDetailTransferMessageCount = value; } /// Internal Acessors for CreatedAt - global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal.CreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).CreatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).CreatedAt = value; } + global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal.CreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).CreatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).CreatedAt = value; } /// Internal Acessors for MessageCount - long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal.MessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).MessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).MessageCount = value; } + long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal.MessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).MessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).MessageCount = value; } /// Internal Acessors for Property - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionProperties Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbSubscriptionProperties()); set { {_property = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionProperties Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbSubscriptionProperties()); set { {_property = value;} } } /// Internal Acessors for SystemData - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal.SystemData { get => (this._systemData = this._systemData ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemData()); set { {_systemData = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal.SystemData { get => (this._systemData = this._systemData ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemData()); set { {_systemData = value;} } } /// Internal Acessors for UpdatedAt - global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionInternal.UpdatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).UpdatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).UpdatedAt = value; } + global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionInternal.UpdatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).UpdatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).UpdatedAt = value; } /// The name of the resource [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inherited)] public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)__proxyResource).Name; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionProperties _property; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionProperties _property; /// Properties of subscriptions resource. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbSubscriptionProperties()); set => this._property = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbSubscriptionProperties()); set => this._property = value; } /// Value indicating if a subscription supports the concept of sessions. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public bool? RequiresSession { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).RequiresSession; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).RequiresSession = value ?? default(bool); } + public bool? RequiresSession { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).RequiresSession; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).RequiresSession = value ?? default(bool); } /// Gets the resource group name [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] @@ -209,7 +209,7 @@ public partial class SbSubscription : /// Enumerates the possible values for the status of a messaging entity. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus? Status { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).Status; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).Status = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus)""); } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus? Status { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).Status; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).Status = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus)""); } /// Backing field for property. private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData _systemData; @@ -250,7 +250,7 @@ public partial class SbSubscription : /// The exact time the message was updated. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public global::System.DateTime? UpdatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal)Property).UpdatedAt; } + public global::System.DateTime? UpdatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)Property).UpdatedAt; } /// Creates an new instance. public SbSubscription() @@ -555,7 +555,7 @@ internal partial interface ISbSubscriptionInternal : /// global::System.TimeSpan? AutoDeleteOnIdle { get; set; } /// Properties specific to client affine subscriptions. - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbClientAffineProperties ClientAffineProperty { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbClientAffineProperties ClientAffineProperty { get; set; } /// /// Indicates the Client ID of the application that created the client-affine subscription. /// @@ -616,7 +616,7 @@ internal partial interface ISbSubscriptionInternal : /// Number of messages. long? MessageCount { get; set; } /// Properties of subscriptions resource. - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionProperties Property { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionProperties Property { get; set; } /// Value indicating if a subscription supports the concept of sessions. bool? RequiresSession { get; set; } /// Enumerates the possible values for the status of a messaging entity. diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSubscription.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSubscription.json.cs similarity index 94% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSubscription.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSubscription.json.cs index 17063e145a59..2b501c864052 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSubscription.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSubscription.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class SbSubscription partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new SbSubscription(json) : null; } @@ -78,7 +78,7 @@ internal SbSubscription(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Js return; } __proxyResource = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ProxyResource(json); - {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbSubscriptionProperties.FromJson(__jsonProperties) : Property;} + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbSubscriptionProperties.FromJson(__jsonProperties) : Property;} {_systemData = If( json?.PropertyT("systemData"), out var __jsonSystemData) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemData.FromJson(__jsonSystemData) : SystemData;} AfterFromJson(json); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSubscriptionListResult.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSubscriptionListResult.PowerShell.cs similarity index 75% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSubscriptionListResult.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSubscriptionListResult.PowerShell.cs index 3496bd0d0b2e..f77cd1c60a17 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSubscriptionListResult.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSubscriptionListResult.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -63,29 +63,29 @@ public partial class SbSubscriptionListResult partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new SbSubscriptionListResult(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new SbSubscriptionListResult(content); } @@ -95,10 +95,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -113,17 +113,17 @@ internal SbSubscriptionListResult(global::System.Collections.IDictionary content // actually deserialize if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbSubscriptionTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbSubscriptionTypeConverter.ConvertFrom)); } if (content.Contains("NextLink")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionListResultInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionListResultInternal)this).NextLink, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -138,11 +138,11 @@ internal SbSubscriptionListResult(global::System.Management.Automation.PSObject // actually deserialize if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbSubscriptionTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbSubscriptionTypeConverter.ConvertFrom)); } if (content.Contains("NextLink")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionListResultInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionListResultInternal)this).NextLink, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSubscriptionListResult.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSubscriptionListResult.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSubscriptionListResult.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSubscriptionListResult.TypeConverter.cs index e104225172b9..419d190e4402 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSubscriptionListResult.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSubscriptionListResult.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionListResult ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionListResult ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionListResult).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionListResult).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSubscriptionListResult.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSubscriptionListResult.cs similarity index 88% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSubscriptionListResult.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSubscriptionListResult.cs index 7fb0bef8480f..553d5443b6aa 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSubscriptionListResult.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSubscriptionListResult.cs @@ -3,15 +3,15 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// The response to the List Subscriptions operation. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class SbSubscriptionListResult : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionListResult, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionListResultInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionListResult, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionListResultInternal { /// Backing field for property. @@ -24,11 +24,11 @@ public partial class SbSubscriptionListResult : public string NextLink { get => this._nextLink; set => this._nextLink = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription[] _value; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription[] _value; /// Result of the List Subscriptions operation. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription[] Value { get => this._value; set => this._value = value; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription[] Value { get => this._value; set => this._value = value; } /// Creates an new instance. public SbSubscriptionListResult() @@ -56,8 +56,8 @@ public partial interface ISbSubscriptionListResult : ReadOnly = false, Description = @"Result of the List Subscriptions operation.", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription[] Value { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription[] Value { get; set; } } /// The response to the List Subscriptions operation. @@ -69,7 +69,7 @@ internal partial interface ISbSubscriptionListResultInternal /// string NextLink { get; set; } /// Result of the List Subscriptions operation. - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription[] Value { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription[] Value { get; set; } } } \ No newline at end of file diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSubscriptionListResult.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSubscriptionListResult.json.cs similarity index 91% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSubscriptionListResult.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSubscriptionListResult.json.cs index 84464f57d7f8..167da99f4b0d 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSubscriptionListResult.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSubscriptionListResult.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class SbSubscriptionListResult partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionListResult. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionListResult. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionListResult. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionListResult. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new SbSubscriptionListResult(json) : null; } @@ -77,7 +77,7 @@ internal SbSubscriptionListResult(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus. { return; } - {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription) (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbSubscription.FromJson(__u) )) ))() : null : Value;} + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription) (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbSubscription.FromJson(__u) )) ))() : null : Value;} {_nextLink = If( json?.PropertyT("nextLink"), out var __jsonNextLink) ? (string)__jsonNextLink : (string)NextLink;} AfterFromJson(json); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSubscriptionProperties.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSubscriptionProperties.PowerShell.cs new file mode 100644 index 000000000000..eca6a3d4b76a --- /dev/null +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSubscriptionProperties.PowerShell.cs @@ -0,0 +1,374 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; + + /// Description of Subscription Resource. + [System.ComponentModel.TypeConverter(typeof(SbSubscriptionPropertiesTypeConverter))] + public partial class SbSubscriptionProperties + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior + /// + /// /// instance serialized to a string, normally it is a Json + /// /// set returnNow to true if you provide a customized OverrideToString function + + partial void OverrideToString(ref string stringResult, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new SbSubscriptionProperties(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new SbSubscriptionProperties(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal SbSubscriptionProperties(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("CountDetail")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).CountDetail = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetails) content.GetValueForProperty("CountDetail",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).CountDetail, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.MessageCountDetailsTypeConverter.ConvertFrom); + } + if (content.Contains("ClientAffineProperty")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).ClientAffineProperty = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbClientAffineProperties) content.GetValueForProperty("ClientAffineProperty",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).ClientAffineProperty, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbClientAffinePropertiesTypeConverter.ConvertFrom); + } + if (content.Contains("MessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).MessageCount = (long?) content.GetValueForProperty("MessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).MessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("AccessedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).AccessedAt = (global::System.DateTime?) content.GetValueForProperty("AccessedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).AccessedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("UpdatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).UpdatedAt = (global::System.DateTime?) content.GetValueForProperty("UpdatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).UpdatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("LockDuration")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).LockDuration = (global::System.TimeSpan?) content.GetValueForProperty("LockDuration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).LockDuration, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + } + if (content.Contains("RequiresSession")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).RequiresSession = (bool?) content.GetValueForProperty("RequiresSession",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).RequiresSession, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("DefaultMessageTimeToLive")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).DefaultMessageTimeToLive = (global::System.TimeSpan?) content.GetValueForProperty("DefaultMessageTimeToLive",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).DefaultMessageTimeToLive, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + } + if (content.Contains("DeadLetteringOnFilterEvaluationException")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).DeadLetteringOnFilterEvaluationException = (bool?) content.GetValueForProperty("DeadLetteringOnFilterEvaluationException",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).DeadLetteringOnFilterEvaluationException, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("DeadLetteringOnMessageExpiration")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).DeadLetteringOnMessageExpiration = (bool?) content.GetValueForProperty("DeadLetteringOnMessageExpiration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).DeadLetteringOnMessageExpiration, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("DuplicateDetectionHistoryTimeWindow")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).DuplicateDetectionHistoryTimeWindow = (global::System.TimeSpan?) content.GetValueForProperty("DuplicateDetectionHistoryTimeWindow",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).DuplicateDetectionHistoryTimeWindow, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + } + if (content.Contains("MaxDeliveryCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).MaxDeliveryCount = (int?) content.GetValueForProperty("MaxDeliveryCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).MaxDeliveryCount, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + } + if (content.Contains("Status")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).Status = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus?) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).Status, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus.CreateFrom); + } + if (content.Contains("EnableBatchedOperations")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).EnableBatchedOperations = (bool?) content.GetValueForProperty("EnableBatchedOperations",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).EnableBatchedOperations, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("AutoDeleteOnIdle")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).AutoDeleteOnIdle = (global::System.TimeSpan?) content.GetValueForProperty("AutoDeleteOnIdle",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).AutoDeleteOnIdle, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + } + if (content.Contains("ForwardTo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).ForwardTo = (string) content.GetValueForProperty("ForwardTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).ForwardTo, global::System.Convert.ToString); + } + if (content.Contains("ForwardDeadLetteredMessagesTo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).ForwardDeadLetteredMessagesTo = (string) content.GetValueForProperty("ForwardDeadLetteredMessagesTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).ForwardDeadLetteredMessagesTo, global::System.Convert.ToString); + } + if (content.Contains("IsClientAffine")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).IsClientAffine = (bool?) content.GetValueForProperty("IsClientAffine",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).IsClientAffine, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("CountDetailActiveMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).CountDetailActiveMessageCount = (long?) content.GetValueForProperty("CountDetailActiveMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).CountDetailActiveMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailDeadLetterMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).CountDetailDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).CountDetailDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailScheduledMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).CountDetailScheduledMessageCount = (long?) content.GetValueForProperty("CountDetailScheduledMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).CountDetailScheduledMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailTransferMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).CountDetailTransferMessageCount = (long?) content.GetValueForProperty("CountDetailTransferMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).CountDetailTransferMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailTransferDeadLetterMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).CountDetailTransferDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailTransferDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).CountDetailTransferDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("ClientAffinePropertyClientId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).ClientAffinePropertyClientId = (string) content.GetValueForProperty("ClientAffinePropertyClientId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).ClientAffinePropertyClientId, global::System.Convert.ToString); + } + if (content.Contains("ClientAffinePropertyIsDurable")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).ClientAffinePropertyIsDurable = (bool?) content.GetValueForProperty("ClientAffinePropertyIsDurable",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).ClientAffinePropertyIsDurable, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("ClientAffinePropertyIsShared")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).ClientAffinePropertyIsShared = (bool?) content.GetValueForProperty("ClientAffinePropertyIsShared",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).ClientAffinePropertyIsShared, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal SbSubscriptionProperties(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("CountDetail")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).CountDetail = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetails) content.GetValueForProperty("CountDetail",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).CountDetail, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.MessageCountDetailsTypeConverter.ConvertFrom); + } + if (content.Contains("ClientAffineProperty")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).ClientAffineProperty = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbClientAffineProperties) content.GetValueForProperty("ClientAffineProperty",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).ClientAffineProperty, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbClientAffinePropertiesTypeConverter.ConvertFrom); + } + if (content.Contains("MessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).MessageCount = (long?) content.GetValueForProperty("MessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).MessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("AccessedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).AccessedAt = (global::System.DateTime?) content.GetValueForProperty("AccessedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).AccessedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("UpdatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).UpdatedAt = (global::System.DateTime?) content.GetValueForProperty("UpdatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).UpdatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("LockDuration")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).LockDuration = (global::System.TimeSpan?) content.GetValueForProperty("LockDuration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).LockDuration, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + } + if (content.Contains("RequiresSession")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).RequiresSession = (bool?) content.GetValueForProperty("RequiresSession",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).RequiresSession, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("DefaultMessageTimeToLive")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).DefaultMessageTimeToLive = (global::System.TimeSpan?) content.GetValueForProperty("DefaultMessageTimeToLive",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).DefaultMessageTimeToLive, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + } + if (content.Contains("DeadLetteringOnFilterEvaluationException")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).DeadLetteringOnFilterEvaluationException = (bool?) content.GetValueForProperty("DeadLetteringOnFilterEvaluationException",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).DeadLetteringOnFilterEvaluationException, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("DeadLetteringOnMessageExpiration")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).DeadLetteringOnMessageExpiration = (bool?) content.GetValueForProperty("DeadLetteringOnMessageExpiration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).DeadLetteringOnMessageExpiration, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("DuplicateDetectionHistoryTimeWindow")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).DuplicateDetectionHistoryTimeWindow = (global::System.TimeSpan?) content.GetValueForProperty("DuplicateDetectionHistoryTimeWindow",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).DuplicateDetectionHistoryTimeWindow, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + } + if (content.Contains("MaxDeliveryCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).MaxDeliveryCount = (int?) content.GetValueForProperty("MaxDeliveryCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).MaxDeliveryCount, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + } + if (content.Contains("Status")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).Status = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus?) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).Status, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus.CreateFrom); + } + if (content.Contains("EnableBatchedOperations")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).EnableBatchedOperations = (bool?) content.GetValueForProperty("EnableBatchedOperations",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).EnableBatchedOperations, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("AutoDeleteOnIdle")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).AutoDeleteOnIdle = (global::System.TimeSpan?) content.GetValueForProperty("AutoDeleteOnIdle",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).AutoDeleteOnIdle, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + } + if (content.Contains("ForwardTo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).ForwardTo = (string) content.GetValueForProperty("ForwardTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).ForwardTo, global::System.Convert.ToString); + } + if (content.Contains("ForwardDeadLetteredMessagesTo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).ForwardDeadLetteredMessagesTo = (string) content.GetValueForProperty("ForwardDeadLetteredMessagesTo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).ForwardDeadLetteredMessagesTo, global::System.Convert.ToString); + } + if (content.Contains("IsClientAffine")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).IsClientAffine = (bool?) content.GetValueForProperty("IsClientAffine",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).IsClientAffine, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("CountDetailActiveMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).CountDetailActiveMessageCount = (long?) content.GetValueForProperty("CountDetailActiveMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).CountDetailActiveMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailDeadLetterMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).CountDetailDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).CountDetailDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailScheduledMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).CountDetailScheduledMessageCount = (long?) content.GetValueForProperty("CountDetailScheduledMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).CountDetailScheduledMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailTransferMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).CountDetailTransferMessageCount = (long?) content.GetValueForProperty("CountDetailTransferMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).CountDetailTransferMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailTransferDeadLetterMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).CountDetailTransferDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailTransferDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).CountDetailTransferDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("ClientAffinePropertyClientId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).ClientAffinePropertyClientId = (string) content.GetValueForProperty("ClientAffinePropertyClientId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).ClientAffinePropertyClientId, global::System.Convert.ToString); + } + if (content.Contains("ClientAffinePropertyIsDurable")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).ClientAffinePropertyIsDurable = (bool?) content.GetValueForProperty("ClientAffinePropertyIsDurable",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).ClientAffinePropertyIsDurable, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("ClientAffinePropertyIsShared")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).ClientAffinePropertyIsShared = (bool?) content.GetValueForProperty("ClientAffinePropertyIsShared",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal)this).ClientAffinePropertyIsShared, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.SerializationMode.IncludeAll)?.ToString(); + + public override string ToString() + { + var returnNow = false; + var result = global::System.String.Empty; + OverrideToString(ref result, ref returnNow); + if (returnNow) + { + return result; + } + return ToJsonString(); + } + } + /// Description of Subscription Resource. + [System.ComponentModel.TypeConverter(typeof(SbSubscriptionPropertiesTypeConverter))] + public partial interface ISbSubscriptionProperties + + { + + } +} \ No newline at end of file diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSubscriptionProperties.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSubscriptionProperties.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSubscriptionProperties.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSubscriptionProperties.TypeConverter.cs index 601357dbcb7f..db6135cbab89 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSubscriptionProperties.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSubscriptionProperties.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionProperties ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionProperties ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionProperties).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionProperties).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSubscriptionProperties.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSubscriptionProperties.cs similarity index 88% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSubscriptionProperties.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSubscriptionProperties.cs index 4f815f8ab255..374001d78598 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSubscriptionProperties.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSubscriptionProperties.cs @@ -3,15 +3,15 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// Description of Subscription Resource. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class SbSubscriptionProperties : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionProperties, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionProperties, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal { /// Backing field for property. @@ -31,29 +31,29 @@ public partial class SbSubscriptionProperties : public global::System.TimeSpan? AutoDeleteOnIdle { get => this._autoDeleteOnIdle; set => this._autoDeleteOnIdle = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbClientAffineProperties _clientAffineProperty; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbClientAffineProperties _clientAffineProperty; /// Properties specific to client affine subscriptions. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbClientAffineProperties ClientAffineProperty { get => (this._clientAffineProperty = this._clientAffineProperty ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbClientAffineProperties()); set => this._clientAffineProperty = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbClientAffineProperties ClientAffineProperty { get => (this._clientAffineProperty = this._clientAffineProperty ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbClientAffineProperties()); set => this._clientAffineProperty = value; } /// /// Indicates the Client ID of the application that created the client-affine subscription. /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public string ClientAffinePropertyClientId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbClientAffinePropertiesInternal)ClientAffineProperty).ClientId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbClientAffinePropertiesInternal)ClientAffineProperty).ClientId = value ?? null; } + public string ClientAffinePropertyClientId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbClientAffinePropertiesInternal)ClientAffineProperty).ClientId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbClientAffinePropertiesInternal)ClientAffineProperty).ClientId = value ?? null; } /// /// For client-affine subscriptions, this value indicates whether the subscription is durable or not. /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public bool? ClientAffinePropertyIsDurable { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbClientAffinePropertiesInternal)ClientAffineProperty).IsDurable; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbClientAffinePropertiesInternal)ClientAffineProperty).IsDurable = value ?? default(bool); } + public bool? ClientAffinePropertyIsDurable { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbClientAffinePropertiesInternal)ClientAffineProperty).IsDurable; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbClientAffinePropertiesInternal)ClientAffineProperty).IsDurable = value ?? default(bool); } /// /// For client-affine subscriptions, this value indicates whether the subscription is shared or not. /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public bool? ClientAffinePropertyIsShared { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbClientAffinePropertiesInternal)ClientAffineProperty).IsShared; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbClientAffinePropertiesInternal)ClientAffineProperty).IsShared = value ?? default(bool); } + public bool? ClientAffinePropertyIsShared { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbClientAffinePropertiesInternal)ClientAffineProperty).IsShared; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbClientAffinePropertiesInternal)ClientAffineProperty).IsShared = value ?? default(bool); } /// Backing field for property. private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetails _countDetail; @@ -180,37 +180,37 @@ public partial class SbSubscriptionProperties : public long? MessageCount { get => this._messageCount; } /// Internal Acessors for AccessedAt - global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal.AccessedAt { get => this._accessedAt; set { {_accessedAt = value;} } } + global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal.AccessedAt { get => this._accessedAt; set { {_accessedAt = value;} } } /// Internal Acessors for ClientAffineProperty - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbClientAffineProperties Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal.ClientAffineProperty { get => (this._clientAffineProperty = this._clientAffineProperty ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbClientAffineProperties()); set { {_clientAffineProperty = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbClientAffineProperties Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal.ClientAffineProperty { get => (this._clientAffineProperty = this._clientAffineProperty ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbClientAffineProperties()); set { {_clientAffineProperty = value;} } } /// Internal Acessors for CountDetail - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetails Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal.CountDetail { get => (this._countDetail = this._countDetail ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.MessageCountDetails()); set { {_countDetail = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetails Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal.CountDetail { get => (this._countDetail = this._countDetail ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.MessageCountDetails()); set { {_countDetail = value;} } } /// Internal Acessors for CountDetailActiveMessageCount - long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal.CountDetailActiveMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).ActiveMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).ActiveMessageCount = value; } + long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal.CountDetailActiveMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).ActiveMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).ActiveMessageCount = value; } /// Internal Acessors for CountDetailDeadLetterMessageCount - long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal.CountDetailDeadLetterMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).DeadLetterMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).DeadLetterMessageCount = value; } + long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal.CountDetailDeadLetterMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).DeadLetterMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).DeadLetterMessageCount = value; } /// Internal Acessors for CountDetailScheduledMessageCount - long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal.CountDetailScheduledMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).ScheduledMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).ScheduledMessageCount = value; } + long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal.CountDetailScheduledMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).ScheduledMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).ScheduledMessageCount = value; } /// Internal Acessors for CountDetailTransferDeadLetterMessageCount - long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal.CountDetailTransferDeadLetterMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).TransferDeadLetterMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).TransferDeadLetterMessageCount = value; } + long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal.CountDetailTransferDeadLetterMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).TransferDeadLetterMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).TransferDeadLetterMessageCount = value; } /// Internal Acessors for CountDetailTransferMessageCount - long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal.CountDetailTransferMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).TransferMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).TransferMessageCount = value; } + long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal.CountDetailTransferMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).TransferMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).TransferMessageCount = value; } /// Internal Acessors for CreatedAt - global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal.CreatedAt { get => this._createdAt; set { {_createdAt = value;} } } + global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal.CreatedAt { get => this._createdAt; set { {_createdAt = value;} } } /// Internal Acessors for MessageCount - long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal.MessageCount { get => this._messageCount; set { {_messageCount = value;} } } + long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal.MessageCount { get => this._messageCount; set { {_messageCount = value;} } } /// Internal Acessors for UpdatedAt - global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionPropertiesInternal.UpdatedAt { get => this._updatedAt; set { {_updatedAt = value;} } } + global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionPropertiesInternal.UpdatedAt { get => this._updatedAt; set { {_updatedAt = value;} } } /// Backing field for property. private bool? _requiresSession; @@ -475,7 +475,7 @@ internal partial interface ISbSubscriptionPropertiesInternal /// global::System.TimeSpan? AutoDeleteOnIdle { get; set; } /// Properties specific to client affine subscriptions. - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbClientAffineProperties ClientAffineProperty { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbClientAffineProperties ClientAffineProperty { get; set; } /// /// Indicates the Client ID of the application that created the client-affine subscription. /// diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSubscriptionProperties.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSubscriptionProperties.json.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSubscriptionProperties.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSubscriptionProperties.json.cs index 7b2f0d77302d..a3567b85da27 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbSubscriptionProperties.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbSubscriptionProperties.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class SbSubscriptionProperties partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionProperties. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionProperties. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionProperties. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionProperties. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new SbSubscriptionProperties(json) : null; } @@ -78,7 +78,7 @@ internal SbSubscriptionProperties(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus. return; } {_countDetail = If( json?.PropertyT("countDetails"), out var __jsonCountDetails) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.MessageCountDetails.FromJson(__jsonCountDetails) : CountDetail;} - {_clientAffineProperty = If( json?.PropertyT("clientAffineProperties"), out var __jsonClientAffineProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbClientAffineProperties.FromJson(__jsonClientAffineProperties) : ClientAffineProperty;} + {_clientAffineProperty = If( json?.PropertyT("clientAffineProperties"), out var __jsonClientAffineProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbClientAffineProperties.FromJson(__jsonClientAffineProperties) : ClientAffineProperty;} {_messageCount = If( json?.PropertyT("messageCount"), out var __jsonMessageCount) ? (long?)__jsonMessageCount : MessageCount;} {_createdAt = If( json?.PropertyT("createdAt"), out var __jsonCreatedAt) ? global::System.DateTime.TryParse((string)__jsonCreatedAt, global::System.Globalization.CultureInfo.InvariantCulture, global::System.Globalization.DateTimeStyles.AdjustToUniversal, out var __jsonCreatedAtValue) ? __jsonCreatedAtValue : CreatedAt : CreatedAt;} {_accessedAt = If( json?.PropertyT("accessedAt"), out var __jsonAccessedAt) ? global::System.DateTime.TryParse((string)__jsonAccessedAt, global::System.Globalization.CultureInfo.InvariantCulture, global::System.Globalization.DateTimeStyles.AdjustToUniversal, out var __jsonAccessedAtValue) ? __jsonAccessedAtValue : AccessedAt : AccessedAt;} diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbTopic.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbTopic.PowerShell.cs new file mode 100644 index 000000000000..f5a8ec2fc91f --- /dev/null +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbTopic.PowerShell.cs @@ -0,0 +1,428 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; + + /// Description of topic resource. + [System.ComponentModel.TypeConverter(typeof(SbTopicTypeConverter))] + public partial class SbTopic + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior + /// + /// /// instance serialized to a string, normally it is a Json + /// /// set returnNow to true if you provide a customized OverrideToString function + + partial void OverrideToString(ref string stringResult, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new SbTopic(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new SbTopic(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal SbTopic(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Property")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbTopicPropertiesTypeConverter.ConvertFrom); + } + if (content.Contains("SystemData")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemDataTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Type, global::System.Convert.ToString); + } + if (content.Contains("Location")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Location, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("CountDetail")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).CountDetail = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetails) content.GetValueForProperty("CountDetail",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).CountDetail, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.MessageCountDetailsTypeConverter.ConvertFrom); + } + if (content.Contains("SizeInByte")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).SizeInByte = (long?) content.GetValueForProperty("SizeInByte",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).SizeInByte, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("UpdatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).UpdatedAt = (global::System.DateTime?) content.GetValueForProperty("UpdatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).UpdatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("AccessedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).AccessedAt = (global::System.DateTime?) content.GetValueForProperty("AccessedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).AccessedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SubscriptionCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).SubscriptionCount = (int?) content.GetValueForProperty("SubscriptionCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).SubscriptionCount, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + } + if (content.Contains("DefaultMessageTimeToLive")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).DefaultMessageTimeToLive = (global::System.TimeSpan?) content.GetValueForProperty("DefaultMessageTimeToLive",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).DefaultMessageTimeToLive, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + } + if (content.Contains("MaxSizeInMegabytes")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).MaxSizeInMegabytes = (int?) content.GetValueForProperty("MaxSizeInMegabytes",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).MaxSizeInMegabytes, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + } + if (content.Contains("MaxMessageSizeInKilobytes")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).MaxMessageSizeInKilobytes = (long?) content.GetValueForProperty("MaxMessageSizeInKilobytes",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).MaxMessageSizeInKilobytes, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("RequiresDuplicateDetection")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).RequiresDuplicateDetection = (bool?) content.GetValueForProperty("RequiresDuplicateDetection",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).RequiresDuplicateDetection, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("DuplicateDetectionHistoryTimeWindow")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).DuplicateDetectionHistoryTimeWindow = (global::System.TimeSpan?) content.GetValueForProperty("DuplicateDetectionHistoryTimeWindow",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).DuplicateDetectionHistoryTimeWindow, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + } + if (content.Contains("EnableBatchedOperations")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).EnableBatchedOperations = (bool?) content.GetValueForProperty("EnableBatchedOperations",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).EnableBatchedOperations, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("Status")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).Status = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus?) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).Status, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus.CreateFrom); + } + if (content.Contains("SupportOrdering")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).SupportOrdering = (bool?) content.GetValueForProperty("SupportOrdering",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).SupportOrdering, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("AutoDeleteOnIdle")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).AutoDeleteOnIdle = (global::System.TimeSpan?) content.GetValueForProperty("AutoDeleteOnIdle",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).AutoDeleteOnIdle, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + } + if (content.Contains("EnablePartitioning")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).EnablePartitioning = (bool?) content.GetValueForProperty("EnablePartitioning",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).EnablePartitioning, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("EnableExpress")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).EnableExpress = (bool?) content.GetValueForProperty("EnableExpress",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).EnableExpress, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("SystemDataCreatedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("CountDetailActiveMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).CountDetailActiveMessageCount = (long?) content.GetValueForProperty("CountDetailActiveMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).CountDetailActiveMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailDeadLetterMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).CountDetailDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).CountDetailDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailScheduledMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).CountDetailScheduledMessageCount = (long?) content.GetValueForProperty("CountDetailScheduledMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).CountDetailScheduledMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailTransferMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).CountDetailTransferMessageCount = (long?) content.GetValueForProperty("CountDetailTransferMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).CountDetailTransferMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailTransferDeadLetterMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).CountDetailTransferDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailTransferDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).CountDetailTransferDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal SbTopic(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Property")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbTopicPropertiesTypeConverter.ConvertFrom); + } + if (content.Contains("SystemData")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemDataTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Type, global::System.Convert.ToString); + } + if (content.Contains("Location")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)this).Location, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("CountDetail")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).CountDetail = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetails) content.GetValueForProperty("CountDetail",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).CountDetail, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.MessageCountDetailsTypeConverter.ConvertFrom); + } + if (content.Contains("SizeInByte")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).SizeInByte = (long?) content.GetValueForProperty("SizeInByte",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).SizeInByte, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("UpdatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).UpdatedAt = (global::System.DateTime?) content.GetValueForProperty("UpdatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).UpdatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("AccessedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).AccessedAt = (global::System.DateTime?) content.GetValueForProperty("AccessedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).AccessedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SubscriptionCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).SubscriptionCount = (int?) content.GetValueForProperty("SubscriptionCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).SubscriptionCount, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + } + if (content.Contains("DefaultMessageTimeToLive")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).DefaultMessageTimeToLive = (global::System.TimeSpan?) content.GetValueForProperty("DefaultMessageTimeToLive",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).DefaultMessageTimeToLive, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + } + if (content.Contains("MaxSizeInMegabytes")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).MaxSizeInMegabytes = (int?) content.GetValueForProperty("MaxSizeInMegabytes",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).MaxSizeInMegabytes, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + } + if (content.Contains("MaxMessageSizeInKilobytes")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).MaxMessageSizeInKilobytes = (long?) content.GetValueForProperty("MaxMessageSizeInKilobytes",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).MaxMessageSizeInKilobytes, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("RequiresDuplicateDetection")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).RequiresDuplicateDetection = (bool?) content.GetValueForProperty("RequiresDuplicateDetection",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).RequiresDuplicateDetection, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("DuplicateDetectionHistoryTimeWindow")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).DuplicateDetectionHistoryTimeWindow = (global::System.TimeSpan?) content.GetValueForProperty("DuplicateDetectionHistoryTimeWindow",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).DuplicateDetectionHistoryTimeWindow, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + } + if (content.Contains("EnableBatchedOperations")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).EnableBatchedOperations = (bool?) content.GetValueForProperty("EnableBatchedOperations",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).EnableBatchedOperations, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("Status")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).Status = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus?) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).Status, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus.CreateFrom); + } + if (content.Contains("SupportOrdering")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).SupportOrdering = (bool?) content.GetValueForProperty("SupportOrdering",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).SupportOrdering, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("AutoDeleteOnIdle")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).AutoDeleteOnIdle = (global::System.TimeSpan?) content.GetValueForProperty("AutoDeleteOnIdle",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).AutoDeleteOnIdle, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + } + if (content.Contains("EnablePartitioning")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).EnablePartitioning = (bool?) content.GetValueForProperty("EnablePartitioning",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).EnablePartitioning, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("EnableExpress")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).EnableExpress = (bool?) content.GetValueForProperty("EnableExpress",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).EnableExpress, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("SystemDataCreatedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("CountDetailActiveMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).CountDetailActiveMessageCount = (long?) content.GetValueForProperty("CountDetailActiveMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).CountDetailActiveMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailDeadLetterMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).CountDetailDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).CountDetailDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailScheduledMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).CountDetailScheduledMessageCount = (long?) content.GetValueForProperty("CountDetailScheduledMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).CountDetailScheduledMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailTransferMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).CountDetailTransferMessageCount = (long?) content.GetValueForProperty("CountDetailTransferMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).CountDetailTransferMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailTransferDeadLetterMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).CountDetailTransferDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailTransferDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal)this).CountDetailTransferDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.SerializationMode.IncludeAll)?.ToString(); + + public override string ToString() + { + var returnNow = false; + var result = global::System.String.Empty; + OverrideToString(ref result, ref returnNow); + if (returnNow) + { + return result; + } + return ToJsonString(); + } + } + /// Description of topic resource. + [System.ComponentModel.TypeConverter(typeof(SbTopicTypeConverter))] + public partial interface ISbTopic + + { + + } +} \ No newline at end of file diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbTopic.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbTopic.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbTopic.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbTopic.TypeConverter.cs index d8eadc8068d7..8b3e27af8682 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbTopic.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbTopic.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -105,14 +105,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbTopic.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbTopic.cs similarity index 81% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbTopic.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbTopic.cs index da86704c5e01..56131a113963 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbTopic.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbTopic.cs @@ -3,15 +3,15 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// Description of topic resource. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class SbTopic : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IValidates { /// @@ -22,67 +22,67 @@ public partial class SbTopic : /// Last time the message was sent, or a request was received, for this topic. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public global::System.DateTime? AccessedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).AccessedAt; } + public global::System.DateTime? AccessedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).AccessedAt; } /// /// ISO 8601 timespan idle interval after which the topic is automatically deleted. The minimum duration is 5 minutes. /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public global::System.TimeSpan? AutoDeleteOnIdle { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).AutoDeleteOnIdle; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).AutoDeleteOnIdle = value ?? default(global::System.TimeSpan); } + public global::System.TimeSpan? AutoDeleteOnIdle { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).AutoDeleteOnIdle; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).AutoDeleteOnIdle = value ?? default(global::System.TimeSpan); } /// Number of active messages in the queue, topic, or subscription. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public long? CountDetailActiveMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).CountDetailActiveMessageCount; } + public long? CountDetailActiveMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).CountDetailActiveMessageCount; } /// Number of messages that are dead lettered. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public long? CountDetailDeadLetterMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).CountDetailDeadLetterMessageCount; } + public long? CountDetailDeadLetterMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).CountDetailDeadLetterMessageCount; } /// Number of scheduled messages. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public long? CountDetailScheduledMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).CountDetailScheduledMessageCount; } + public long? CountDetailScheduledMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).CountDetailScheduledMessageCount; } /// Number of messages transferred into dead letters. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public long? CountDetailTransferDeadLetterMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).CountDetailTransferDeadLetterMessageCount; } + public long? CountDetailTransferDeadLetterMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).CountDetailTransferDeadLetterMessageCount; } /// Number of messages transferred to another queue, topic, or subscription. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public long? CountDetailTransferMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).CountDetailTransferMessageCount; } + public long? CountDetailTransferMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).CountDetailTransferMessageCount; } /// Exact time the message was created. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public global::System.DateTime? CreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).CreatedAt; } + public global::System.DateTime? CreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).CreatedAt; } /// /// ISO 8601 Default message timespan to live value. This is the duration after which the message expires, starting from when /// the message is sent to Service Bus. This is the default value used when TimeToLive is not set on a message itself. /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public global::System.TimeSpan? DefaultMessageTimeToLive { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).DefaultMessageTimeToLive; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).DefaultMessageTimeToLive = value ?? default(global::System.TimeSpan); } + public global::System.TimeSpan? DefaultMessageTimeToLive { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).DefaultMessageTimeToLive; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).DefaultMessageTimeToLive = value ?? default(global::System.TimeSpan); } /// /// ISO8601 timespan structure that defines the duration of the duplicate detection history. The default value is 10 minutes. /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public global::System.TimeSpan? DuplicateDetectionHistoryTimeWindow { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).DuplicateDetectionHistoryTimeWindow; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).DuplicateDetectionHistoryTimeWindow = value ?? default(global::System.TimeSpan); } + public global::System.TimeSpan? DuplicateDetectionHistoryTimeWindow { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).DuplicateDetectionHistoryTimeWindow; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).DuplicateDetectionHistoryTimeWindow = value ?? default(global::System.TimeSpan); } /// Value that indicates whether server-side batched operations are enabled. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public bool? EnableBatchedOperations { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).EnableBatchedOperations; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).EnableBatchedOperations = value ?? default(bool); } + public bool? EnableBatchedOperations { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).EnableBatchedOperations; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).EnableBatchedOperations = value ?? default(bool); } /// /// Value that indicates whether Express Entities are enabled. An express topic holds a message in memory temporarily before /// writing it to persistent storage. /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public bool? EnableExpress { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).EnableExpress; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).EnableExpress = value ?? default(bool); } + public bool? EnableExpress { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).EnableExpress; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).EnableExpress = value ?? default(bool); } /// /// Value that indicates whether the topic to be partitioned across multiple message brokers is enabled. /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public bool? EnablePartitioning { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).EnablePartitioning; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).EnablePartitioning = value ?? default(bool); } + public bool? EnablePartitioning { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).EnablePartitioning; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).EnablePartitioning = value ?? default(bool); } /// /// Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} @@ -99,13 +99,13 @@ public partial class SbTopic : /// and default is 1024. /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public long? MaxMessageSizeInKilobytes { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).MaxMessageSizeInKilobytes; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).MaxMessageSizeInKilobytes = value ?? default(long); } + public long? MaxMessageSizeInKilobytes { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).MaxMessageSizeInKilobytes; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).MaxMessageSizeInKilobytes = value ?? default(long); } /// /// Maximum size of the topic in megabytes, which is the size of the memory allocated for the topic. Default is 1024. /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public int? MaxSizeInMegabytes { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).MaxSizeInMegabytes; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).MaxSizeInMegabytes = value ?? default(int); } + public int? MaxSizeInMegabytes { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).MaxSizeInMegabytes; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).MaxSizeInMegabytes = value ?? default(int); } /// Internal Acessors for Id string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)__proxyResource).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)__proxyResource).Id = value; } @@ -120,58 +120,58 @@ public partial class SbTopic : string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)__proxyResource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)__proxyResource).Type = value; } /// Internal Acessors for AccessedAt - global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal.AccessedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).AccessedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).AccessedAt = value; } + global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal.AccessedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).AccessedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).AccessedAt = value; } /// Internal Acessors for CountDetail - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetails Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal.CountDetail { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).CountDetail; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).CountDetail = value; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetails Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal.CountDetail { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).CountDetail; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).CountDetail = value; } /// Internal Acessors for CountDetailActiveMessageCount - long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal.CountDetailActiveMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).CountDetailActiveMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).CountDetailActiveMessageCount = value; } + long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal.CountDetailActiveMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).CountDetailActiveMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).CountDetailActiveMessageCount = value; } /// Internal Acessors for CountDetailDeadLetterMessageCount - long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal.CountDetailDeadLetterMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).CountDetailDeadLetterMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).CountDetailDeadLetterMessageCount = value; } + long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal.CountDetailDeadLetterMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).CountDetailDeadLetterMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).CountDetailDeadLetterMessageCount = value; } /// Internal Acessors for CountDetailScheduledMessageCount - long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal.CountDetailScheduledMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).CountDetailScheduledMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).CountDetailScheduledMessageCount = value; } + long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal.CountDetailScheduledMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).CountDetailScheduledMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).CountDetailScheduledMessageCount = value; } /// Internal Acessors for CountDetailTransferDeadLetterMessageCount - long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal.CountDetailTransferDeadLetterMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).CountDetailTransferDeadLetterMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).CountDetailTransferDeadLetterMessageCount = value; } + long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal.CountDetailTransferDeadLetterMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).CountDetailTransferDeadLetterMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).CountDetailTransferDeadLetterMessageCount = value; } /// Internal Acessors for CountDetailTransferMessageCount - long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal.CountDetailTransferMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).CountDetailTransferMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).CountDetailTransferMessageCount = value; } + long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal.CountDetailTransferMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).CountDetailTransferMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).CountDetailTransferMessageCount = value; } /// Internal Acessors for CreatedAt - global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal.CreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).CreatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).CreatedAt = value; } + global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal.CreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).CreatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).CreatedAt = value; } /// Internal Acessors for Property - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicProperties Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbTopicProperties()); set { {_property = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicProperties Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbTopicProperties()); set { {_property = value;} } } /// Internal Acessors for SizeInByte - long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal.SizeInByte { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).SizeInByte; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).SizeInByte = value; } + long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal.SizeInByte { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).SizeInByte; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).SizeInByte = value; } /// Internal Acessors for SubscriptionCount - int? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal.SubscriptionCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).SubscriptionCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).SubscriptionCount = value; } + int? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal.SubscriptionCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).SubscriptionCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).SubscriptionCount = value; } /// Internal Acessors for SystemData - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal.SystemData { get => (this._systemData = this._systemData ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemData()); set { {_systemData = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal.SystemData { get => (this._systemData = this._systemData ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemData()); set { {_systemData = value;} } } /// Internal Acessors for UpdatedAt - global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicInternal.UpdatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).UpdatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).UpdatedAt = value; } + global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicInternal.UpdatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).UpdatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).UpdatedAt = value; } /// The name of the resource [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inherited)] public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IProxyResourceInternal)__proxyResource).Name; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicProperties _property; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicProperties _property; /// Properties of topic resource. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbTopicProperties()); set => this._property = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbTopicProperties()); set => this._property = value; } /// Value indicating if this topic requires duplicate detection. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public bool? RequiresDuplicateDetection { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).RequiresDuplicateDetection; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).RequiresDuplicateDetection = value ?? default(bool); } + public bool? RequiresDuplicateDetection { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).RequiresDuplicateDetection; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).RequiresDuplicateDetection = value ?? default(bool); } /// Gets the resource group name [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] @@ -179,19 +179,19 @@ public partial class SbTopic : /// Size of the topic, in bytes. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public long? SizeInByte { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).SizeInByte; } + public long? SizeInByte { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).SizeInByte; } /// Enumerates the possible values for the status of a messaging entity. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus? Status { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).Status; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).Status = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus)""); } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus? Status { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).Status; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).Status = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus)""); } /// Number of subscriptions. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public int? SubscriptionCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).SubscriptionCount; } + public int? SubscriptionCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).SubscriptionCount; } /// Value that indicates whether the topic supports ordering. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public bool? SupportOrdering { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).SupportOrdering; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).SupportOrdering = value ?? default(bool); } + public bool? SupportOrdering { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).SupportOrdering; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).SupportOrdering = value ?? default(bool); } /// Backing field for property. private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ISystemData _systemData; @@ -232,7 +232,7 @@ public partial class SbTopic : /// The exact time the message was updated. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inlined)] - public global::System.DateTime? UpdatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal)Property).UpdatedAt; } + public global::System.DateTime? UpdatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)Property).UpdatedAt; } /// Creates an new instance. public SbTopic() @@ -546,7 +546,7 @@ internal partial interface ISbTopicInternal : /// int? MaxSizeInMegabytes { get; set; } /// Properties of topic resource. - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicProperties Property { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicProperties Property { get; set; } /// Value indicating if this topic requires duplicate detection. bool? RequiresDuplicateDetection { get; set; } /// Size of the topic, in bytes. diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbTopic.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbTopic.json.cs similarity index 95% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbTopic.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbTopic.json.cs index 117b6733f065..7c7df221f0be 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbTopic.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbTopic.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class SbTopic partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new SbTopic(json) : null; } @@ -78,7 +78,7 @@ internal SbTopic(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.Json return; } __proxyResource = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.ProxyResource(json); - {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbTopicProperties.FromJson(__jsonProperties) : Property;} + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbTopicProperties.FromJson(__jsonProperties) : Property;} {_systemData = If( json?.PropertyT("systemData"), out var __jsonSystemData) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.SystemData.FromJson(__jsonSystemData) : SystemData;} AfterFromJson(json); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbTopicListResult.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbTopicListResult.PowerShell.cs similarity index 76% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbTopicListResult.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbTopicListResult.PowerShell.cs index bdd41c698bc8..ee5b4997f885 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbTopicListResult.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbTopicListResult.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -63,27 +63,29 @@ public partial class SbTopicListResult partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new SbTopicListResult(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new SbTopicListResult(content); } @@ -93,10 +95,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -111,17 +113,17 @@ internal SbTopicListResult(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbTopicTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbTopicTypeConverter.ConvertFrom)); } if (content.Contains("NextLink")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicListResultInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicListResultInternal)this).NextLink, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -136,11 +138,11 @@ internal SbTopicListResult(global::System.Management.Automation.PSObject content // actually deserialize if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbTopicTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbTopicTypeConverter.ConvertFrom)); } if (content.Contains("NextLink")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicListResultInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicListResultInternal)this).NextLink, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbTopicListResult.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbTopicListResult.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbTopicListResult.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbTopicListResult.TypeConverter.cs index 8323daf8908c..99c16051ad3f 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbTopicListResult.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbTopicListResult.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicListResult ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicListResult ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicListResult).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicListResult).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbTopicListResult.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbTopicListResult.cs similarity index 89% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbTopicListResult.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbTopicListResult.cs index f19cf2d32b84..9e43759019b7 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbTopicListResult.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbTopicListResult.cs @@ -3,15 +3,15 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// The response to the List Topics operation. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class SbTopicListResult : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicListResult, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicListResultInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicListResult, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicListResultInternal { /// Backing field for property. @@ -24,11 +24,11 @@ public partial class SbTopicListResult : public string NextLink { get => this._nextLink; set => this._nextLink = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic[] _value; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic[] _value; /// Result of the List Topics operation. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic[] Value { get => this._value; set => this._value = value; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic[] Value { get => this._value; set => this._value = value; } /// Creates an new instance. public SbTopicListResult() @@ -56,8 +56,8 @@ public partial interface ISbTopicListResult : ReadOnly = false, Description = @"Result of the List Topics operation.", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic[] Value { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic[] Value { get; set; } } /// The response to the List Topics operation. @@ -69,7 +69,7 @@ internal partial interface ISbTopicListResultInternal /// string NextLink { get; set; } /// Result of the List Topics operation. - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic[] Value { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic[] Value { get; set; } } } \ No newline at end of file diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbTopicListResult.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbTopicListResult.json.cs similarity index 92% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbTopicListResult.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbTopicListResult.json.cs index ff43efd457dd..50d10fbd17fa 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbTopicListResult.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbTopicListResult.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class SbTopicListResult partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicListResult. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicListResult. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicListResult. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicListResult. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new SbTopicListResult(json) : null; } @@ -77,7 +77,7 @@ internal SbTopicListResult(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime { return; } - {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic) (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbTopic.FromJson(__u) )) ))() : null : Value;} + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic) (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbTopic.FromJson(__u) )) ))() : null : Value;} {_nextLink = If( json?.PropertyT("nextLink"), out var __jsonNextLink) ? (string)__jsonNextLink : (string)NextLink;} AfterFromJson(json); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbTopicProperties.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbTopicProperties.PowerShell.cs new file mode 100644 index 000000000000..2e4391fb9332 --- /dev/null +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbTopicProperties.PowerShell.cs @@ -0,0 +1,334 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; + + /// The Topic Properties definition. + [System.ComponentModel.TypeConverter(typeof(SbTopicPropertiesTypeConverter))] + public partial class SbTopicProperties + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// OverrideToString will be called if it is implemented. Implement this method in a partial class to enable this behavior + /// + /// /// instance serialized to a string, normally it is a Json + /// /// set returnNow to true if you provide a customized OverrideToString function + + partial void OverrideToString(ref string stringResult, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new SbTopicProperties(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new SbTopicProperties(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal SbTopicProperties(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("CountDetail")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).CountDetail = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetails) content.GetValueForProperty("CountDetail",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).CountDetail, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.MessageCountDetailsTypeConverter.ConvertFrom); + } + if (content.Contains("SizeInByte")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).SizeInByte = (long?) content.GetValueForProperty("SizeInByte",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).SizeInByte, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("UpdatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).UpdatedAt = (global::System.DateTime?) content.GetValueForProperty("UpdatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).UpdatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("AccessedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).AccessedAt = (global::System.DateTime?) content.GetValueForProperty("AccessedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).AccessedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SubscriptionCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).SubscriptionCount = (int?) content.GetValueForProperty("SubscriptionCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).SubscriptionCount, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + } + if (content.Contains("DefaultMessageTimeToLive")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).DefaultMessageTimeToLive = (global::System.TimeSpan?) content.GetValueForProperty("DefaultMessageTimeToLive",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).DefaultMessageTimeToLive, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + } + if (content.Contains("MaxSizeInMegabytes")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).MaxSizeInMegabytes = (int?) content.GetValueForProperty("MaxSizeInMegabytes",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).MaxSizeInMegabytes, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + } + if (content.Contains("MaxMessageSizeInKilobytes")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).MaxMessageSizeInKilobytes = (long?) content.GetValueForProperty("MaxMessageSizeInKilobytes",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).MaxMessageSizeInKilobytes, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("RequiresDuplicateDetection")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).RequiresDuplicateDetection = (bool?) content.GetValueForProperty("RequiresDuplicateDetection",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).RequiresDuplicateDetection, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("DuplicateDetectionHistoryTimeWindow")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).DuplicateDetectionHistoryTimeWindow = (global::System.TimeSpan?) content.GetValueForProperty("DuplicateDetectionHistoryTimeWindow",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).DuplicateDetectionHistoryTimeWindow, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + } + if (content.Contains("EnableBatchedOperations")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).EnableBatchedOperations = (bool?) content.GetValueForProperty("EnableBatchedOperations",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).EnableBatchedOperations, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("Status")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).Status = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus?) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).Status, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus.CreateFrom); + } + if (content.Contains("SupportOrdering")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).SupportOrdering = (bool?) content.GetValueForProperty("SupportOrdering",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).SupportOrdering, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("AutoDeleteOnIdle")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).AutoDeleteOnIdle = (global::System.TimeSpan?) content.GetValueForProperty("AutoDeleteOnIdle",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).AutoDeleteOnIdle, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + } + if (content.Contains("EnablePartitioning")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).EnablePartitioning = (bool?) content.GetValueForProperty("EnablePartitioning",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).EnablePartitioning, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("EnableExpress")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).EnableExpress = (bool?) content.GetValueForProperty("EnableExpress",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).EnableExpress, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("CountDetailActiveMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).CountDetailActiveMessageCount = (long?) content.GetValueForProperty("CountDetailActiveMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).CountDetailActiveMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailDeadLetterMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).CountDetailDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).CountDetailDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailScheduledMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).CountDetailScheduledMessageCount = (long?) content.GetValueForProperty("CountDetailScheduledMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).CountDetailScheduledMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailTransferMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).CountDetailTransferMessageCount = (long?) content.GetValueForProperty("CountDetailTransferMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).CountDetailTransferMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailTransferDeadLetterMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).CountDetailTransferDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailTransferDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).CountDetailTransferDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal SbTopicProperties(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("CountDetail")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).CountDetail = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetails) content.GetValueForProperty("CountDetail",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).CountDetail, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.MessageCountDetailsTypeConverter.ConvertFrom); + } + if (content.Contains("SizeInByte")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).SizeInByte = (long?) content.GetValueForProperty("SizeInByte",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).SizeInByte, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("UpdatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).UpdatedAt = (global::System.DateTime?) content.GetValueForProperty("UpdatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).UpdatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("AccessedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).AccessedAt = (global::System.DateTime?) content.GetValueForProperty("AccessedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).AccessedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SubscriptionCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).SubscriptionCount = (int?) content.GetValueForProperty("SubscriptionCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).SubscriptionCount, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + } + if (content.Contains("DefaultMessageTimeToLive")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).DefaultMessageTimeToLive = (global::System.TimeSpan?) content.GetValueForProperty("DefaultMessageTimeToLive",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).DefaultMessageTimeToLive, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + } + if (content.Contains("MaxSizeInMegabytes")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).MaxSizeInMegabytes = (int?) content.GetValueForProperty("MaxSizeInMegabytes",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).MaxSizeInMegabytes, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + } + if (content.Contains("MaxMessageSizeInKilobytes")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).MaxMessageSizeInKilobytes = (long?) content.GetValueForProperty("MaxMessageSizeInKilobytes",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).MaxMessageSizeInKilobytes, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("RequiresDuplicateDetection")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).RequiresDuplicateDetection = (bool?) content.GetValueForProperty("RequiresDuplicateDetection",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).RequiresDuplicateDetection, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("DuplicateDetectionHistoryTimeWindow")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).DuplicateDetectionHistoryTimeWindow = (global::System.TimeSpan?) content.GetValueForProperty("DuplicateDetectionHistoryTimeWindow",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).DuplicateDetectionHistoryTimeWindow, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + } + if (content.Contains("EnableBatchedOperations")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).EnableBatchedOperations = (bool?) content.GetValueForProperty("EnableBatchedOperations",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).EnableBatchedOperations, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("Status")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).Status = (Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus?) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).Status, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Support.EntityStatus.CreateFrom); + } + if (content.Contains("SupportOrdering")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).SupportOrdering = (bool?) content.GetValueForProperty("SupportOrdering",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).SupportOrdering, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("AutoDeleteOnIdle")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).AutoDeleteOnIdle = (global::System.TimeSpan?) content.GetValueForProperty("AutoDeleteOnIdle",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).AutoDeleteOnIdle, (v) => v is global::System.TimeSpan _v ? _v : global::System.Xml.XmlConvert.ToTimeSpan( v.ToString() )); + } + if (content.Contains("EnablePartitioning")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).EnablePartitioning = (bool?) content.GetValueForProperty("EnablePartitioning",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).EnablePartitioning, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("EnableExpress")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).EnableExpress = (bool?) content.GetValueForProperty("EnableExpress",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).EnableExpress, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + } + if (content.Contains("CountDetailActiveMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).CountDetailActiveMessageCount = (long?) content.GetValueForProperty("CountDetailActiveMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).CountDetailActiveMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailDeadLetterMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).CountDetailDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).CountDetailDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailScheduledMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).CountDetailScheduledMessageCount = (long?) content.GetValueForProperty("CountDetailScheduledMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).CountDetailScheduledMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailTransferMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).CountDetailTransferMessageCount = (long?) content.GetValueForProperty("CountDetailTransferMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).CountDetailTransferMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + if (content.Contains("CountDetailTransferDeadLetterMessageCount")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).CountDetailTransferDeadLetterMessageCount = (long?) content.GetValueForProperty("CountDetailTransferDeadLetterMessageCount",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal)this).CountDetailTransferDeadLetterMessageCount, (__y)=> (long) global::System.Convert.ChangeType(__y, typeof(long))); + } + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.SerializationMode.IncludeAll)?.ToString(); + + public override string ToString() + { + var returnNow = false; + var result = global::System.String.Empty; + OverrideToString(ref result, ref returnNow); + if (returnNow) + { + return result; + } + return ToJsonString(); + } + } + /// The Topic Properties definition. + [System.ComponentModel.TypeConverter(typeof(SbTopicPropertiesTypeConverter))] + public partial interface ISbTopicProperties + + { + + } +} \ No newline at end of file diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbTopicProperties.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbTopicProperties.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbTopicProperties.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbTopicProperties.TypeConverter.cs index 3af465a7ac01..d6dbc6d058d6 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbTopicProperties.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbTopicProperties.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicProperties ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicProperties ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicProperties).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicProperties).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbTopicProperties.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbTopicProperties.cs similarity index 92% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbTopicProperties.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbTopicProperties.cs index 24f0d34346d0..8c74d05465bb 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbTopicProperties.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbTopicProperties.cs @@ -3,15 +3,15 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// The Topic Properties definition. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class SbTopicProperties : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicProperties, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicProperties, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal { /// Backing field for property. @@ -129,37 +129,37 @@ public partial class SbTopicProperties : public int? MaxSizeInMegabytes { get => this._maxSizeInMegabytes; set => this._maxSizeInMegabytes = value; } /// Internal Acessors for AccessedAt - global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal.AccessedAt { get => this._accessedAt; set { {_accessedAt = value;} } } + global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal.AccessedAt { get => this._accessedAt; set { {_accessedAt = value;} } } /// Internal Acessors for CountDetail - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetails Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal.CountDetail { get => (this._countDetail = this._countDetail ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.MessageCountDetails()); set { {_countDetail = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetails Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal.CountDetail { get => (this._countDetail = this._countDetail ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.MessageCountDetails()); set { {_countDetail = value;} } } /// Internal Acessors for CountDetailActiveMessageCount - long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal.CountDetailActiveMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).ActiveMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).ActiveMessageCount = value; } + long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal.CountDetailActiveMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).ActiveMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).ActiveMessageCount = value; } /// Internal Acessors for CountDetailDeadLetterMessageCount - long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal.CountDetailDeadLetterMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).DeadLetterMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).DeadLetterMessageCount = value; } + long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal.CountDetailDeadLetterMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).DeadLetterMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).DeadLetterMessageCount = value; } /// Internal Acessors for CountDetailScheduledMessageCount - long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal.CountDetailScheduledMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).ScheduledMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).ScheduledMessageCount = value; } + long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal.CountDetailScheduledMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).ScheduledMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).ScheduledMessageCount = value; } /// Internal Acessors for CountDetailTransferDeadLetterMessageCount - long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal.CountDetailTransferDeadLetterMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).TransferDeadLetterMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).TransferDeadLetterMessageCount = value; } + long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal.CountDetailTransferDeadLetterMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).TransferDeadLetterMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).TransferDeadLetterMessageCount = value; } /// Internal Acessors for CountDetailTransferMessageCount - long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal.CountDetailTransferMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).TransferMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).TransferMessageCount = value; } + long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal.CountDetailTransferMessageCount { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).TransferMessageCount; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api10.IMessageCountDetailsInternal)CountDetail).TransferMessageCount = value; } /// Internal Acessors for CreatedAt - global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal.CreatedAt { get => this._createdAt; set { {_createdAt = value;} } } + global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal.CreatedAt { get => this._createdAt; set { {_createdAt = value;} } } /// Internal Acessors for SizeInByte - long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal.SizeInByte { get => this._sizeInByte; set { {_sizeInByte = value;} } } + long? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal.SizeInByte { get => this._sizeInByte; set { {_sizeInByte = value;} } } /// Internal Acessors for SubscriptionCount - int? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal.SubscriptionCount { get => this._subscriptionCount; set { {_subscriptionCount = value;} } } + int? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal.SubscriptionCount { get => this._subscriptionCount; set { {_subscriptionCount = value;} } } /// Internal Acessors for UpdatedAt - global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicPropertiesInternal.UpdatedAt { get => this._updatedAt; set { {_updatedAt = value;} } } + global::System.DateTime? Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicPropertiesInternal.UpdatedAt { get => this._updatedAt; set { {_updatedAt = value;} } } /// Backing field for property. private bool? _requiresDuplicateDetection; diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbTopicProperties.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbTopicProperties.json.cs similarity index 98% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbTopicProperties.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbTopicProperties.json.cs index 027625805eca..6161812cd2d3 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SbTopicProperties.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SbTopicProperties.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class SbTopicProperties partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicProperties. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicProperties. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicProperties. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicProperties. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new SbTopicProperties(json) : null; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SqlFilter.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SqlFilter.PowerShell.cs similarity index 76% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SqlFilter.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SqlFilter.PowerShell.cs index 601cf6778930..798100976076 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SqlFilter.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SqlFilter.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -65,27 +65,27 @@ public partial class SqlFilter partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlFilter DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlFilter DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new SqlFilter(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlFilter DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlFilter DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new SqlFilter(content); } @@ -95,10 +95,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlFilter FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlFilter FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -113,21 +113,21 @@ internal SqlFilter(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("SqlExpression")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlFilterInternal)this).SqlExpression = (string) content.GetValueForProperty("SqlExpression",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlFilterInternal)this).SqlExpression, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlFilterInternal)this).SqlExpression = (string) content.GetValueForProperty("SqlExpression",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlFilterInternal)this).SqlExpression, global::System.Convert.ToString); } if (content.Contains("CompatibilityLevel")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlFilterInternal)this).CompatibilityLevel = (int?) content.GetValueForProperty("CompatibilityLevel",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlFilterInternal)this).CompatibilityLevel, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlFilterInternal)this).CompatibilityLevel = (int?) content.GetValueForProperty("CompatibilityLevel",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlFilterInternal)this).CompatibilityLevel, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); } if (content.Contains("RequiresPreprocessing")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlFilterInternal)this).RequiresPreprocessing = (bool?) content.GetValueForProperty("RequiresPreprocessing",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlFilterInternal)this).RequiresPreprocessing, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlFilterInternal)this).RequiresPreprocessing = (bool?) content.GetValueForProperty("RequiresPreprocessing",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlFilterInternal)this).RequiresPreprocessing, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -142,15 +142,15 @@ internal SqlFilter(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("SqlExpression")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlFilterInternal)this).SqlExpression = (string) content.GetValueForProperty("SqlExpression",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlFilterInternal)this).SqlExpression, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlFilterInternal)this).SqlExpression = (string) content.GetValueForProperty("SqlExpression",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlFilterInternal)this).SqlExpression, global::System.Convert.ToString); } if (content.Contains("CompatibilityLevel")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlFilterInternal)this).CompatibilityLevel = (int?) content.GetValueForProperty("CompatibilityLevel",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlFilterInternal)this).CompatibilityLevel, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlFilterInternal)this).CompatibilityLevel = (int?) content.GetValueForProperty("CompatibilityLevel",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlFilterInternal)this).CompatibilityLevel, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); } if (content.Contains("RequiresPreprocessing")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlFilterInternal)this).RequiresPreprocessing = (bool?) content.GetValueForProperty("RequiresPreprocessing",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlFilterInternal)this).RequiresPreprocessing, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlFilterInternal)this).RequiresPreprocessing = (bool?) content.GetValueForProperty("RequiresPreprocessing",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlFilterInternal)this).RequiresPreprocessing, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } AfterDeserializePSObject(content); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SqlFilter.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SqlFilter.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SqlFilter.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SqlFilter.TypeConverter.cs index 962932e3cd67..de4437da6d97 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SqlFilter.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SqlFilter.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -105,14 +105,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlFilter ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlFilter ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlFilter).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlFilter).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SqlFilter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SqlFilter.cs similarity index 98% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SqlFilter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SqlFilter.cs index 335192148fc7..22b267f20d55 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SqlFilter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SqlFilter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -12,8 +12,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class SqlFilter : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlFilter, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlFilterInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlFilter, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlFilterInternal { /// Backing field for property. diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SqlFilter.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SqlFilter.json.cs similarity index 96% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SqlFilter.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SqlFilter.json.cs index 97302d9ab02c..560255a50930 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SqlFilter.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SqlFilter.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -56,13 +56,13 @@ public partial class SqlFilter partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlFilter. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlFilter. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlFilter. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlFilter. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlFilter FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlFilter FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new SqlFilter(json) : null; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SqlRuleAction.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SqlRuleAction.PowerShell.cs similarity index 76% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SqlRuleAction.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SqlRuleAction.PowerShell.cs index 664a0430a5e3..471ded5f7501 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SqlRuleAction.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SqlRuleAction.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -65,27 +65,27 @@ public partial class SqlRuleAction partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlRuleAction DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlRuleAction DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new SqlRuleAction(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlRuleAction DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlRuleAction DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new SqlRuleAction(content); } @@ -95,10 +95,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlRuleAction FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlRuleAction FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -113,21 +113,21 @@ internal SqlRuleAction(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("SqlExpression")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IActionInternal)this).SqlExpression = (string) content.GetValueForProperty("SqlExpression",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IActionInternal)this).SqlExpression, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IActionInternal)this).SqlExpression = (string) content.GetValueForProperty("SqlExpression",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IActionInternal)this).SqlExpression, global::System.Convert.ToString); } if (content.Contains("CompatibilityLevel")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IActionInternal)this).CompatibilityLevel = (int?) content.GetValueForProperty("CompatibilityLevel",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IActionInternal)this).CompatibilityLevel, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IActionInternal)this).CompatibilityLevel = (int?) content.GetValueForProperty("CompatibilityLevel",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IActionInternal)this).CompatibilityLevel, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); } if (content.Contains("RequiresPreprocessing")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IActionInternal)this).RequiresPreprocessing = (bool?) content.GetValueForProperty("RequiresPreprocessing",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IActionInternal)this).RequiresPreprocessing, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IActionInternal)this).RequiresPreprocessing = (bool?) content.GetValueForProperty("RequiresPreprocessing",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IActionInternal)this).RequiresPreprocessing, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -142,15 +142,15 @@ internal SqlRuleAction(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("SqlExpression")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IActionInternal)this).SqlExpression = (string) content.GetValueForProperty("SqlExpression",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IActionInternal)this).SqlExpression, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IActionInternal)this).SqlExpression = (string) content.GetValueForProperty("SqlExpression",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IActionInternal)this).SqlExpression, global::System.Convert.ToString); } if (content.Contains("CompatibilityLevel")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IActionInternal)this).CompatibilityLevel = (int?) content.GetValueForProperty("CompatibilityLevel",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IActionInternal)this).CompatibilityLevel, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IActionInternal)this).CompatibilityLevel = (int?) content.GetValueForProperty("CompatibilityLevel",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IActionInternal)this).CompatibilityLevel, (__y)=> (int) global::System.Convert.ChangeType(__y, typeof(int))); } if (content.Contains("RequiresPreprocessing")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IActionInternal)this).RequiresPreprocessing = (bool?) content.GetValueForProperty("RequiresPreprocessing",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IActionInternal)this).RequiresPreprocessing, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IActionInternal)this).RequiresPreprocessing = (bool?) content.GetValueForProperty("RequiresPreprocessing",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IActionInternal)this).RequiresPreprocessing, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } AfterDeserializePSObject(content); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SqlRuleAction.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SqlRuleAction.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SqlRuleAction.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SqlRuleAction.TypeConverter.cs index d71a2845a956..765073cc8abe 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SqlRuleAction.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SqlRuleAction.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlRuleAction ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlRuleAction ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlRuleAction).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlRuleAction).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SqlRuleAction.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SqlRuleAction.cs similarity index 76% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SqlRuleAction.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SqlRuleAction.cs index fa7c1228eb53..72827e7e0295 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SqlRuleAction.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SqlRuleAction.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -12,29 +12,29 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class SqlRuleAction : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlRuleAction, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlRuleActionInternal, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlRuleAction, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlRuleActionInternal, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IValidates { /// - /// Backing field for Inherited model /// - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAction __action = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.Action(); + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAction __action = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.Action(); /// /// This property is reserved for future use. An integer value showing the compatibility level, currently hard-coded to 20. /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inherited)] - public int? CompatibilityLevel { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IActionInternal)__action).CompatibilityLevel; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IActionInternal)__action).CompatibilityLevel = value ?? default(int); } + public int? CompatibilityLevel { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IActionInternal)__action).CompatibilityLevel; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IActionInternal)__action).CompatibilityLevel = value ?? default(int); } /// Value that indicates whether the rule action requires preprocessing. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inherited)] - public bool? RequiresPreprocessing { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IActionInternal)__action).RequiresPreprocessing; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IActionInternal)__action).RequiresPreprocessing = value ?? default(bool); } + public bool? RequiresPreprocessing { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IActionInternal)__action).RequiresPreprocessing; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IActionInternal)__action).RequiresPreprocessing = value ?? default(bool); } /// SQL expression. e.g. MyProperty='ABC' [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.PropertyOrigin.Inherited)] - public string SqlExpression { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IActionInternal)__action).SqlExpression; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IActionInternal)__action).SqlExpression = value ?? null; } + public string SqlExpression { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IActionInternal)__action).SqlExpression; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IActionInternal)__action).SqlExpression = value ?? null; } /// Creates an new instance. public SqlRuleAction() @@ -57,13 +57,13 @@ public SqlRuleAction() /// Represents set of actions written in SQL language-based syntax that is performed against a ServiceBus.Messaging.BrokeredMessage public partial interface ISqlRuleAction : Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IJsonSerializable, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAction + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAction { } /// Represents set of actions written in SQL language-based syntax that is performed against a ServiceBus.Messaging.BrokeredMessage internal partial interface ISqlRuleActionInternal : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IActionInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IActionInternal { } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SqlRuleAction.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SqlRuleAction.json.cs similarity index 95% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SqlRuleAction.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SqlRuleAction.json.cs index 093d151e061d..446bbe75d2a1 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/SqlRuleAction.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/SqlRuleAction.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -56,13 +56,13 @@ public partial class SqlRuleAction partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlRuleAction. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlRuleAction. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlRuleAction. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlRuleAction. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISqlRuleAction FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISqlRuleAction FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new SqlRuleAction(json) : null; } @@ -79,7 +79,7 @@ internal SqlRuleAction(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Jso { return; } - __action = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.Action(json); + __action = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.Action(json); AfterFromJson(json); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Subnet.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Subnet.PowerShell.cs similarity index 85% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Subnet.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Subnet.PowerShell.cs index baa150156058..f5cc2b4e0ed2 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Subnet.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Subnet.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -63,27 +63,27 @@ public partial class Subnet partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISubnet DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISubnet DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new Subnet(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISubnet DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISubnet DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new Subnet(content); } @@ -93,10 +93,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISubnet FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISubnet FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -111,13 +111,13 @@ internal Subnet(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Id")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISubnetInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISubnetInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISubnetInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISubnetInternal)this).Id, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -132,7 +132,7 @@ internal Subnet(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("Id")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISubnetInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISubnetInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISubnetInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISubnetInternal)this).Id, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Subnet.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Subnet.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Subnet.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Subnet.TypeConverter.cs index bda27bba0a57..aaf323f3d156 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Subnet.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Subnet.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -105,14 +105,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISubnet ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISubnet ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISubnet).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISubnet).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Subnet.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Subnet.cs similarity index 96% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Subnet.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Subnet.cs index 8377408b9a4a..a3707b6473fb 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Subnet.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Subnet.cs @@ -3,15 +3,15 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// Properties supplied for Subnet [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class Subnet : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISubnet, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISubnetInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISubnet, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISubnetInternal { /// Backing field for property. diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Subnet.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Subnet.json.cs similarity index 96% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Subnet.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Subnet.json.cs index 6259e6b3a8f0..bcfd2331c9cd 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/Subnet.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/Subnet.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class Subnet partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISubnet. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISubnet. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISubnet. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISubnet. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISubnet FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISubnet FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new Subnet(json) : null; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/UserAssignedIdentity.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/UserAssignedIdentity.PowerShell.cs similarity index 80% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/UserAssignedIdentity.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/UserAssignedIdentity.PowerShell.cs index 337f3fa61b73..76377eb032a7 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/UserAssignedIdentity.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/UserAssignedIdentity.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -63,29 +63,29 @@ public partial class UserAssignedIdentity partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IUserAssignedIdentity DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IUserAssignedIdentity DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new UserAssignedIdentity(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IUserAssignedIdentity DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IUserAssignedIdentity DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new UserAssignedIdentity(content); } @@ -95,7 +95,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IUserAssignedIdentity FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IUserAssignedIdentity FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. @@ -115,7 +115,7 @@ public override string ToString() } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -130,17 +130,17 @@ internal UserAssignedIdentity(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("PrincipalId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IUserAssignedIdentityInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IUserAssignedIdentityInternal)this).PrincipalId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IUserAssignedIdentityInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IUserAssignedIdentityInternal)this).PrincipalId, global::System.Convert.ToString); } if (content.Contains("ClientId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IUserAssignedIdentityInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IUserAssignedIdentityInternal)this).ClientId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IUserAssignedIdentityInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IUserAssignedIdentityInternal)this).ClientId, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -155,11 +155,11 @@ internal UserAssignedIdentity(global::System.Management.Automation.PSObject cont // actually deserialize if (content.Contains("PrincipalId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IUserAssignedIdentityInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IUserAssignedIdentityInternal)this).PrincipalId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IUserAssignedIdentityInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IUserAssignedIdentityInternal)this).PrincipalId, global::System.Convert.ToString); } if (content.Contains("ClientId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IUserAssignedIdentityInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IUserAssignedIdentityInternal)this).ClientId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IUserAssignedIdentityInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IUserAssignedIdentityInternal)this).ClientId, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/UserAssignedIdentity.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/UserAssignedIdentity.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/UserAssignedIdentity.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/UserAssignedIdentity.TypeConverter.cs index cd57daf0bf21..aff3264e1a5c 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/UserAssignedIdentity.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/UserAssignedIdentity.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -106,14 +106,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IUserAssignedIdentity ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IUserAssignedIdentity ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IUserAssignedIdentity).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IUserAssignedIdentity).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/UserAssignedIdentity.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/UserAssignedIdentity.cs similarity index 90% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/UserAssignedIdentity.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/UserAssignedIdentity.cs index c92c30a33700..e8e2393070a0 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/UserAssignedIdentity.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/UserAssignedIdentity.cs @@ -3,15 +3,15 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; /// Recognized Dictionary value. [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class UserAssignedIdentity : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IUserAssignedIdentity, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IUserAssignedIdentityInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IUserAssignedIdentity, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IUserAssignedIdentityInternal { /// Backing field for property. @@ -22,10 +22,10 @@ public partial class UserAssignedIdentity : public string ClientId { get => this._clientId; } /// Internal Acessors for ClientId - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IUserAssignedIdentityInternal.ClientId { get => this._clientId; set { {_clientId = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IUserAssignedIdentityInternal.ClientId { get => this._clientId; set { {_clientId = value;} } } /// Internal Acessors for PrincipalId - string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IUserAssignedIdentityInternal.PrincipalId { get => this._principalId; set { {_principalId = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IUserAssignedIdentityInternal.PrincipalId { get => this._principalId; set { {_principalId = value;} } } /// Backing field for property. private string _principalId; diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/UserAssignedIdentity.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/UserAssignedIdentity.json.cs similarity index 96% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/UserAssignedIdentity.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/UserAssignedIdentity.json.cs index fe5aa9c9d121..aa69e15d2b52 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/UserAssignedIdentity.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/UserAssignedIdentity.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class UserAssignedIdentity partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IUserAssignedIdentity. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IUserAssignedIdentity. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IUserAssignedIdentity. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IUserAssignedIdentity. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IUserAssignedIdentity FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IUserAssignedIdentity FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new UserAssignedIdentity(json) : null; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/UserAssignedIdentityProperties.PowerShell.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/UserAssignedIdentityProperties.PowerShell.cs similarity index 82% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/UserAssignedIdentityProperties.PowerShell.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/UserAssignedIdentityProperties.PowerShell.cs index 5a6ad134cee0..c2b9a1370fd6 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/UserAssignedIdentityProperties.PowerShell.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/UserAssignedIdentityProperties.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -62,29 +62,29 @@ public partial class UserAssignedIdentityProperties partial void OverrideToString(ref string stringResult, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IUserAssignedIdentityProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IUserAssignedIdentityProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new UserAssignedIdentityProperties(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IUserAssignedIdentityProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IUserAssignedIdentityProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new UserAssignedIdentityProperties(content); } @@ -94,7 +94,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Prev /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IUserAssignedIdentityProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IUserAssignedIdentityProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. @@ -114,7 +114,7 @@ public override string ToString() } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -129,13 +129,13 @@ internal UserAssignedIdentityProperties(global::System.Collections.IDictionary c // actually deserialize if (content.Contains("UserAssignedIdentity")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IUserAssignedIdentityPropertiesInternal)this).UserAssignedIdentity = (string) content.GetValueForProperty("UserAssignedIdentity",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IUserAssignedIdentityPropertiesInternal)this).UserAssignedIdentity, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IUserAssignedIdentityPropertiesInternal)this).UserAssignedIdentity = (string) content.GetValueForProperty("UserAssignedIdentity",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IUserAssignedIdentityPropertiesInternal)this).UserAssignedIdentity, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -150,7 +150,7 @@ internal UserAssignedIdentityProperties(global::System.Management.Automation.PSO // actually deserialize if (content.Contains("UserAssignedIdentity")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IUserAssignedIdentityPropertiesInternal)this).UserAssignedIdentity = (string) content.GetValueForProperty("UserAssignedIdentity",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IUserAssignedIdentityPropertiesInternal)this).UserAssignedIdentity, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IUserAssignedIdentityPropertiesInternal)this).UserAssignedIdentity = (string) content.GetValueForProperty("UserAssignedIdentity",((Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IUserAssignedIdentityPropertiesInternal)this).UserAssignedIdentity, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/UserAssignedIdentityProperties.TypeConverter.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/UserAssignedIdentityProperties.TypeConverter.cs similarity index 97% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/UserAssignedIdentityProperties.TypeConverter.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/UserAssignedIdentityProperties.TypeConverter.cs index 4e9a14aae030..e6d012dfae98 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/UserAssignedIdentityProperties.TypeConverter.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/UserAssignedIdentityProperties.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.PowerShell; @@ -107,14 +107,14 @@ public static bool CanConvertFrom(dynamic sourceValue) /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IUserAssignedIdentityProperties ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IUserAssignedIdentityProperties ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IUserAssignedIdentityProperties).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IUserAssignedIdentityProperties).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/UserAssignedIdentityProperties.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/UserAssignedIdentityProperties.cs similarity index 94% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/UserAssignedIdentityProperties.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/UserAssignedIdentityProperties.cs index 9c7251334a2e..572cbdd4973f 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/UserAssignedIdentityProperties.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/UserAssignedIdentityProperties.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.DoNotFormat] public partial class UserAssignedIdentityProperties : - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IUserAssignedIdentityProperties, - Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IUserAssignedIdentityPropertiesInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IUserAssignedIdentityProperties, + Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IUserAssignedIdentityPropertiesInternal { /// Backing field for property. diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/UserAssignedIdentityProperties.json.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/UserAssignedIdentityProperties.json.cs similarity index 95% rename from src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/UserAssignedIdentityProperties.json.cs rename to src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/UserAssignedIdentityProperties.json.cs index 7061d20b8912..3f63dc53e0eb 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api202201Preview/UserAssignedIdentityProperties.json.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/Models/Api20221001Preview/UserAssignedIdentityProperties.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Extensions; @@ -53,13 +53,13 @@ public partial class UserAssignedIdentityProperties partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IUserAssignedIdentityProperties. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IUserAssignedIdentityProperties. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IUserAssignedIdentityProperties. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IUserAssignedIdentityProperties. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IUserAssignedIdentityProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IUserAssignedIdentityProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonObject json ? new UserAssignedIdentityProperties(json) : null; } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/api/ServiceBus.cs b/src/ServiceBus/ServiceBus.Autorest/generated/api/ServiceBus.cs index 141c50547d64..54b64d2d791e 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/api/ServiceBus.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/api/ServiceBus.cs @@ -32,7 +32,7 @@ public partial class ServiceBus /// public async global::System.Threading.Tasks.Task DisasterRecoveryConfigsBreakPairing(string resourceGroupName, string namespaceName, string alias, string subscriptionId, global::System.Func onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -78,7 +78,7 @@ public partial class ServiceBus /// public async global::System.Threading.Tasks.Task DisasterRecoveryConfigsBreakPairingViaIdentity(global::System.String viaIdentity, global::System.Func onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -216,9 +216,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DisasterRecoveryConfigsCheckNameAvailability(string resourceGroupName, string namespaceName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailability body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DisasterRecoveryConfigsCheckNameAvailability(string resourceGroupName, string namespaceName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailability body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -263,9 +263,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DisasterRecoveryConfigsCheckNameAvailabilityViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailability body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DisasterRecoveryConfigsCheckNameAvailabilityViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailability body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -323,7 +323,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DisasterRecoveryConfigsCheckNameAvailability_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task DisasterRecoveryConfigsCheckNameAvailability_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -341,7 +341,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.CheckNameAvailabilityResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.CheckNameAvailabilityResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -375,7 +375,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DisasterRecoveryConfigsCheckNameAvailability_Validate(string resourceGroupName, string namespaceName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailability body, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task DisasterRecoveryConfigsCheckNameAvailability_Validate(string resourceGroupName, string namespaceName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailability body, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { @@ -407,9 +407,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DisasterRecoveryConfigsCreateOrUpdate(string resourceGroupName, string namespaceName, string alias, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DisasterRecoveryConfigsCreateOrUpdate(string resourceGroupName, string namespaceName, string alias, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -456,9 +456,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DisasterRecoveryConfigsCreateOrUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DisasterRecoveryConfigsCreateOrUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -519,7 +519,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DisasterRecoveryConfigsCreateOrUpdate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task DisasterRecoveryConfigsCreateOrUpdate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -537,7 +537,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ArmDisasterRecovery.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ArmDisasterRecovery.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } case global::System.Net.HttpStatusCode.Created: @@ -578,7 +578,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DisasterRecoveryConfigsCreateOrUpdate_Validate(string resourceGroupName, string namespaceName, string alias, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery body, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task DisasterRecoveryConfigsCreateOrUpdate_Validate(string resourceGroupName, string namespaceName, string alias, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery body, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { @@ -614,7 +614,7 @@ public partial class ServiceBus /// public async global::System.Threading.Tasks.Task DisasterRecoveryConfigsDelete(string resourceGroupName, string namespaceName, string alias, string subscriptionId, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -658,7 +658,7 @@ public partial class ServiceBus /// public async global::System.Threading.Tasks.Task DisasterRecoveryConfigsDeleteViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -805,9 +805,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DisasterRecoveryConfigsFailOver(string resourceGroupName, string namespaceName, string alias, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverProperties body, global::System.Func onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DisasterRecoveryConfigsFailOver(string resourceGroupName, string namespaceName, string alias, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverProperties body, global::System.Func onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -856,9 +856,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DisasterRecoveryConfigsFailOverViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverProperties body, global::System.Func onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DisasterRecoveryConfigsFailOverViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverProperties body, global::System.Func onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -970,7 +970,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DisasterRecoveryConfigsFailOver_Validate(string resourceGroupName, string namespaceName, string alias, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverProperties body, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task DisasterRecoveryConfigsFailOver_Validate(string resourceGroupName, string namespaceName, string alias, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverProperties body, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { @@ -1005,9 +1005,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DisasterRecoveryConfigsGet(string resourceGroupName, string namespaceName, string alias, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DisasterRecoveryConfigsGet(string resourceGroupName, string namespaceName, string alias, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -1053,9 +1053,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DisasterRecoveryConfigsGetAuthorizationRule(string resourceGroupName, string namespaceName, string alias, string authorizationRuleName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DisasterRecoveryConfigsGetAuthorizationRule(string resourceGroupName, string namespaceName, string alias, string authorizationRuleName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -1098,9 +1098,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DisasterRecoveryConfigsGetAuthorizationRuleViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DisasterRecoveryConfigsGetAuthorizationRuleViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -1159,7 +1159,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DisasterRecoveryConfigsGetAuthorizationRule_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task DisasterRecoveryConfigsGetAuthorizationRule_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -1177,7 +1177,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbAuthorizationRule.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbAuthorizationRule.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -1244,9 +1244,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DisasterRecoveryConfigsGetViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DisasterRecoveryConfigsGetViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -1300,7 +1300,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DisasterRecoveryConfigsGet_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task DisasterRecoveryConfigsGet_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -1318,7 +1318,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ArmDisasterRecovery.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ArmDisasterRecovery.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -1382,9 +1382,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DisasterRecoveryConfigsList(string resourceGroupName, string namespaceName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DisasterRecoveryConfigsList(string resourceGroupName, string namespaceName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -1428,9 +1428,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DisasterRecoveryConfigsListAuthorizationRules(string resourceGroupName, string namespaceName, string alias, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DisasterRecoveryConfigsListAuthorizationRules(string resourceGroupName, string namespaceName, string alias, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -1472,9 +1472,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DisasterRecoveryConfigsListAuthorizationRulesViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DisasterRecoveryConfigsListAuthorizationRulesViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -1531,7 +1531,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DisasterRecoveryConfigsListAuthorizationRules_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task DisasterRecoveryConfigsListAuthorizationRules_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -1549,7 +1549,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbAuthorizationRuleListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbAuthorizationRuleListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -1615,9 +1615,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DisasterRecoveryConfigsListKeys(string resourceGroupName, string namespaceName, string alias, string authorizationRuleName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DisasterRecoveryConfigsListKeys(string resourceGroupName, string namespaceName, string alias, string authorizationRuleName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -1661,9 +1661,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DisasterRecoveryConfigsListKeysViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DisasterRecoveryConfigsListKeysViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -1721,7 +1721,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DisasterRecoveryConfigsListKeys_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task DisasterRecoveryConfigsListKeys_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -1739,7 +1739,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.AccessKeys.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.AccessKeys.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -1804,9 +1804,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task DisasterRecoveryConfigsListViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task DisasterRecoveryConfigsListViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -1858,7 +1858,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task DisasterRecoveryConfigsList_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task DisasterRecoveryConfigsList_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -1876,7 +1876,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ArmDisasterRecoveryListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ArmDisasterRecoveryListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -1943,7 +1943,7 @@ public partial class ServiceBus public async global::System.Threading.Tasks.Task MigrationConfigsCompleteMigration(string resourceGroupName, string namespaceName, string subscriptionId, global::System.Func onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { var configName = @"$default"; - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -1991,7 +1991,7 @@ public partial class ServiceBus /// public async global::System.Threading.Tasks.Task MigrationConfigsCompleteMigrationViaIdentity(global::System.String viaIdentity, global::System.Func onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -2127,10 +2127,10 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task MigrationConfigsCreateAndStartMigration(string resourceGroupName, string namespaceName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task MigrationConfigsCreateAndStartMigration(string resourceGroupName, string namespaceName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { var configName = @"$default"; - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -2178,9 +2178,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task MigrationConfigsCreateAndStartMigrationViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task MigrationConfigsCreateAndStartMigrationViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -2240,7 +2240,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task MigrationConfigsCreateAndStartMigration_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task MigrationConfigsCreateAndStartMigration_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -2357,7 +2357,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.MigrationConfigProperties.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.MigrationConfigProperties.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -2391,7 +2391,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task MigrationConfigsCreateAndStartMigration_Validate(string resourceGroupName, string namespaceName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties body, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task MigrationConfigsCreateAndStartMigration_Validate(string resourceGroupName, string namespaceName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties body, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { @@ -2424,7 +2424,7 @@ public partial class ServiceBus public async global::System.Threading.Tasks.Task MigrationConfigsDelete(string resourceGroupName, string namespaceName, string subscriptionId, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { var configName = @"$default"; - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -2468,7 +2468,7 @@ public partial class ServiceBus /// public async global::System.Threading.Tasks.Task MigrationConfigsDeleteViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -2607,10 +2607,10 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task MigrationConfigsGet(string resourceGroupName, string namespaceName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task MigrationConfigsGet(string resourceGroupName, string namespaceName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { var configName = @"$default"; - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -2651,9 +2651,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task MigrationConfigsGetViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task MigrationConfigsGetViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -2707,7 +2707,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task MigrationConfigsGet_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task MigrationConfigsGet_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -2725,7 +2725,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.MigrationConfigProperties.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.MigrationConfigProperties.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -2785,9 +2785,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task MigrationConfigsList(string resourceGroupName, string namespaceName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task MigrationConfigsList(string resourceGroupName, string namespaceName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -2827,9 +2827,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task MigrationConfigsListViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task MigrationConfigsListViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -2881,7 +2881,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task MigrationConfigsList_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task MigrationConfigsList_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -2899,7 +2899,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.MigrationConfigListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.MigrationConfigListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -2962,7 +2962,7 @@ public partial class ServiceBus public async global::System.Threading.Tasks.Task MigrationConfigsRevert(string resourceGroupName, string namespaceName, string subscriptionId, global::System.Func onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { var configName = @"$default"; - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -3006,7 +3006,7 @@ public partial class ServiceBus /// public async global::System.Threading.Tasks.Task MigrationConfigsRevertViaIdentity(global::System.String viaIdentity, global::System.Func onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -3138,9 +3138,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task NamespacesCheckNameAvailability(string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailability body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task NamespacesCheckNameAvailability(string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailability body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -3181,9 +3181,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task NamespacesCheckNameAvailabilityViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailability body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task NamespacesCheckNameAvailabilityViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailability body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -3233,7 +3233,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task NamespacesCheckNameAvailability_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task NamespacesCheckNameAvailability_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -3251,7 +3251,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.CheckNameAvailabilityResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.CheckNameAvailabilityResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -3283,7 +3283,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task NamespacesCheckNameAvailability_Validate(string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailability body, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task NamespacesCheckNameAvailability_Validate(string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailability body, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { @@ -3310,9 +3310,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task NamespacesCreateOrUpdate(string resourceGroupName, string namespaceName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task NamespacesCreateOrUpdate(string resourceGroupName, string namespaceName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -3360,9 +3360,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task NamespacesCreateOrUpdateAuthorizationRule(string resourceGroupName, string namespaceName, string authorizationRuleName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task NamespacesCreateOrUpdateAuthorizationRule(string resourceGroupName, string namespaceName, string authorizationRuleName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -3408,9 +3408,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task NamespacesCreateOrUpdateAuthorizationRuleViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task NamespacesCreateOrUpdateAuthorizationRuleViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -3470,7 +3470,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task NamespacesCreateOrUpdateAuthorizationRule_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task NamespacesCreateOrUpdateAuthorizationRule_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -3488,7 +3488,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbAuthorizationRule.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbAuthorizationRule.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -3523,7 +3523,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task NamespacesCreateOrUpdateAuthorizationRule_Validate(string resourceGroupName, string namespaceName, string authorizationRuleName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule body, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task NamespacesCreateOrUpdateAuthorizationRule_Validate(string resourceGroupName, string namespaceName, string authorizationRuleName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule body, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { @@ -3556,9 +3556,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task NamespacesCreateOrUpdateNetworkRuleSet(string resourceGroupName, string namespaceName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task NamespacesCreateOrUpdateNetworkRuleSet(string resourceGroupName, string namespaceName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -3603,9 +3603,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task NamespacesCreateOrUpdateNetworkRuleSetViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task NamespacesCreateOrUpdateNetworkRuleSetViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -3663,7 +3663,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task NamespacesCreateOrUpdateNetworkRuleSet_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task NamespacesCreateOrUpdateNetworkRuleSet_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -3681,7 +3681,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.NetworkRuleSet.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.NetworkRuleSet.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -3715,7 +3715,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task NamespacesCreateOrUpdateNetworkRuleSet_Validate(string resourceGroupName, string namespaceName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet body, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task NamespacesCreateOrUpdateNetworkRuleSet_Validate(string resourceGroupName, string namespaceName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet body, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { @@ -3745,9 +3745,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task NamespacesCreateOrUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task NamespacesCreateOrUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -3802,7 +3802,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task NamespacesCreateOrUpdate_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task NamespacesCreateOrUpdate_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -3919,7 +3919,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbNamespace.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbNamespace.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -3953,7 +3953,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task NamespacesCreateOrUpdate_Validate(string resourceGroupName, string namespaceName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace body, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task NamespacesCreateOrUpdate_Validate(string resourceGroupName, string namespaceName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace body, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { @@ -3985,7 +3985,7 @@ public partial class ServiceBus /// public async global::System.Threading.Tasks.Task NamespacesDelete(string resourceGroupName, string namespaceName, string subscriptionId, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -4031,7 +4031,7 @@ public partial class ServiceBus /// public async global::System.Threading.Tasks.Task NamespacesDeleteAuthorizationRule(string resourceGroupName, string namespaceName, string authorizationRuleName, string subscriptionId, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -4075,7 +4075,7 @@ public partial class ServiceBus /// public async global::System.Threading.Tasks.Task NamespacesDeleteAuthorizationRuleViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -4220,7 +4220,7 @@ public partial class ServiceBus /// public async global::System.Threading.Tasks.Task NamespacesDeleteViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -4456,9 +4456,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task NamespacesGet(string resourceGroupName, string namespaceName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task NamespacesGet(string resourceGroupName, string namespaceName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -4501,9 +4501,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task NamespacesGetAuthorizationRule(string resourceGroupName, string namespaceName, string authorizationRuleName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task NamespacesGetAuthorizationRule(string resourceGroupName, string namespaceName, string authorizationRuleName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -4544,9 +4544,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task NamespacesGetAuthorizationRuleViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task NamespacesGetAuthorizationRuleViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -4600,7 +4600,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task NamespacesGetAuthorizationRule_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task NamespacesGetAuthorizationRule_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -4618,7 +4618,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbAuthorizationRule.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbAuthorizationRule.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -4682,9 +4682,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task NamespacesGetNetworkRuleSet(string resourceGroupName, string namespaceName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task NamespacesGetNetworkRuleSet(string resourceGroupName, string namespaceName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -4724,9 +4724,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task NamespacesGetNetworkRuleSetViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task NamespacesGetNetworkRuleSetViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -4778,7 +4778,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task NamespacesGetNetworkRuleSet_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task NamespacesGetNetworkRuleSet_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -4796,7 +4796,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.NetworkRuleSet.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.NetworkRuleSet.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -4853,9 +4853,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task NamespacesGetViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task NamespacesGetViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -4906,7 +4906,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task NamespacesGet_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task NamespacesGet_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -4924,7 +4924,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbNamespace.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbNamespace.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -4984,9 +4984,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task NamespacesList(string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task NamespacesList(string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -5025,9 +5025,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task NamespacesListAuthorizationRules(string resourceGroupName, string namespaceName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task NamespacesListAuthorizationRules(string resourceGroupName, string namespaceName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -5067,9 +5067,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task NamespacesListAuthorizationRulesViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task NamespacesListAuthorizationRulesViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -5121,7 +5121,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task NamespacesListAuthorizationRules_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task NamespacesListAuthorizationRules_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -5139,7 +5139,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbAuthorizationRuleListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbAuthorizationRuleListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -5198,9 +5198,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task NamespacesListByResourceGroup(string resourceGroupName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task NamespacesListByResourceGroup(string resourceGroupName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -5238,9 +5238,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task NamespacesListByResourceGroupViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task NamespacesListByResourceGroupViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -5289,7 +5289,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task NamespacesListByResourceGroup_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task NamespacesListByResourceGroup_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -5307,7 +5307,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbNamespaceListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbNamespaceListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -5364,9 +5364,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task NamespacesListKeys(string resourceGroupName, string namespaceName, string authorizationRuleName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task NamespacesListKeys(string resourceGroupName, string namespaceName, string authorizationRuleName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -5408,9 +5408,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task NamespacesListKeysViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task NamespacesListKeysViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -5465,7 +5465,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task NamespacesListKeys_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task NamespacesListKeys_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -5483,7 +5483,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.AccessKeys.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.AccessKeys.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -5547,9 +5547,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task NamespacesListNetworkRuleSets(string resourceGroupName, string namespaceName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task NamespacesListNetworkRuleSets(string resourceGroupName, string namespaceName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -5589,9 +5589,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task NamespacesListNetworkRuleSetsViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task NamespacesListNetworkRuleSetsViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -5643,7 +5643,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task NamespacesListNetworkRuleSets_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task NamespacesListNetworkRuleSets_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -5661,7 +5661,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.NetworkRuleSetListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.NetworkRuleSetListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -5720,9 +5720,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task NamespacesListViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task NamespacesListViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -5768,7 +5768,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task NamespacesList_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task NamespacesList_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -5786,7 +5786,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbNamespaceListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbNamespaceListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -5840,9 +5840,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task NamespacesRegenerateKeys(string resourceGroupName, string namespaceName, string authorizationRuleName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParameters body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task NamespacesRegenerateKeys(string resourceGroupName, string namespaceName, string authorizationRuleName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParameters body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -5889,9 +5889,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task NamespacesRegenerateKeysViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParameters body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task NamespacesRegenerateKeysViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParameters body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -5950,7 +5950,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task NamespacesRegenerateKeys_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task NamespacesRegenerateKeys_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -5968,7 +5968,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.AccessKeys.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.AccessKeys.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -6003,7 +6003,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task NamespacesRegenerateKeys_Validate(string resourceGroupName, string namespaceName, string authorizationRuleName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParameters body, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task NamespacesRegenerateKeys_Validate(string resourceGroupName, string namespaceName, string authorizationRuleName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParameters body, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { @@ -6040,9 +6040,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task NamespacesUpdate(string resourceGroupName, string namespaceName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParameters body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onCreated, global::System.Func onAccepted, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task NamespacesUpdate(string resourceGroupName, string namespaceName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParameters body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onCreated, global::System.Func onAccepted, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -6090,9 +6090,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task NamespacesUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParameters body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onCreated, global::System.Func onAccepted, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task NamespacesUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParameters body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onCreated, global::System.Func onAccepted, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -6149,7 +6149,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task NamespacesUpdate_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 onAccepted, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task NamespacesUpdate_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 onAccepted, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -6167,13 +6167,13 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbNamespace.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbNamespace.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } case global::System.Net.HttpStatusCode.Created: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onCreated(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbNamespace.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onCreated(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbNamespace.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } case global::System.Net.HttpStatusCode.Accepted: @@ -6213,7 +6213,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task NamespacesUpdate_Validate(string resourceGroupName, string namespaceName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceUpdateParameters body, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task NamespacesUpdate_Validate(string resourceGroupName, string namespaceName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceUpdateParameters body, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { @@ -6238,9 +6238,9 @@ public partial class ServiceBus /// /// 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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + 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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -6274,9 +6274,9 @@ public partial class ServiceBus /// /// 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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + 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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -6319,7 +6319,7 @@ public partial class ServiceBus /// /// 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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + 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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -6337,7 +6337,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.OperationListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.OperationListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -6391,9 +6391,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task PrivateEndpointConnectionsCreateOrUpdate(string subscriptionId, string resourceGroupName, string namespaceName, string privateEndpointConnectionName, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection 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> onAccepted, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task PrivateEndpointConnectionsCreateOrUpdate(string subscriptionId, string resourceGroupName, string namespaceName, string privateEndpointConnectionName, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection 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> onAccepted, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -6441,9 +6441,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task PrivateEndpointConnectionsCreateOrUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection 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> onAccepted, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task PrivateEndpointConnectionsCreateOrUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection 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> onAccepted, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -6505,7 +6505,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task PrivateEndpointConnectionsCreateOrUpdate_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> onAccepted, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task PrivateEndpointConnectionsCreateOrUpdate_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> onAccepted, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -6523,19 +6523,19 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.PrivateEndpointConnection.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.PrivateEndpointConnection.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } case global::System.Net.HttpStatusCode.Created: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onCreated(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.PrivateEndpointConnection.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onCreated(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.PrivateEndpointConnection.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } case global::System.Net.HttpStatusCode.Accepted: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onAccepted(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.PrivateEndpointConnection.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onAccepted(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.PrivateEndpointConnection.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -6570,7 +6570,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task PrivateEndpointConnectionsCreateOrUpdate_Validate(string subscriptionId, string resourceGroupName, string namespaceName, string privateEndpointConnectionName, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection body, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task PrivateEndpointConnectionsCreateOrUpdate_Validate(string subscriptionId, string resourceGroupName, string namespaceName, string privateEndpointConnectionName, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection body, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { @@ -6604,7 +6604,7 @@ public partial class ServiceBus /// public async global::System.Threading.Tasks.Task PrivateEndpointConnectionsDelete(string resourceGroupName, string namespaceName, string subscriptionId, string privateEndpointConnectionName, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -6648,7 +6648,7 @@ public partial class ServiceBus /// public async global::System.Threading.Tasks.Task PrivateEndpointConnectionsDeleteViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -6890,9 +6890,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task PrivateEndpointConnectionsGet(string resourceGroupName, string namespaceName, string privateEndpointConnectionName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task PrivateEndpointConnectionsGet(string resourceGroupName, string namespaceName, string privateEndpointConnectionName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -6933,9 +6933,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task PrivateEndpointConnectionsGetViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task PrivateEndpointConnectionsGetViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -6989,7 +6989,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task PrivateEndpointConnectionsGet_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task PrivateEndpointConnectionsGet_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -7007,7 +7007,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.PrivateEndpointConnection.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.PrivateEndpointConnection.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -7069,9 +7069,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task PrivateEndpointConnectionsList(string resourceGroupName, string namespaceName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task PrivateEndpointConnectionsList(string resourceGroupName, string namespaceName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -7111,9 +7111,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task PrivateEndpointConnectionsListViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task PrivateEndpointConnectionsListViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -7165,7 +7165,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task PrivateEndpointConnectionsList_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task PrivateEndpointConnectionsList_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -7183,7 +7183,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.PrivateEndpointConnectionListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.PrivateEndpointConnectionListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -7243,9 +7243,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task PrivateLinkResourcesGet(string resourceGroupName, string namespaceName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task PrivateLinkResourcesGet(string resourceGroupName, string namespaceName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -7285,9 +7285,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task PrivateLinkResourcesGetViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task PrivateLinkResourcesGetViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -7339,7 +7339,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task PrivateLinkResourcesGet_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task PrivateLinkResourcesGet_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -7357,7 +7357,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.PrivateLinkResourcesListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.PrivateLinkResourcesListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -7419,9 +7419,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task QueuesCreateOrUpdate(string resourceGroupName, string namespaceName, string queueName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task QueuesCreateOrUpdate(string resourceGroupName, string namespaceName, string queueName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -7472,9 +7472,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task QueuesCreateOrUpdateAuthorizationRule(string resourceGroupName, string namespaceName, string queueName, string authorizationRuleName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task QueuesCreateOrUpdateAuthorizationRule(string resourceGroupName, string namespaceName, string queueName, string authorizationRuleName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -7522,9 +7522,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task QueuesCreateOrUpdateAuthorizationRuleViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task QueuesCreateOrUpdateAuthorizationRuleViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -7587,7 +7587,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task QueuesCreateOrUpdateAuthorizationRule_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task QueuesCreateOrUpdateAuthorizationRule_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -7605,7 +7605,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbAuthorizationRule.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbAuthorizationRule.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -7641,7 +7641,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task QueuesCreateOrUpdateAuthorizationRule_Validate(string resourceGroupName, string namespaceName, string queueName, string authorizationRuleName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule body, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task QueuesCreateOrUpdateAuthorizationRule_Validate(string resourceGroupName, string namespaceName, string queueName, string authorizationRuleName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule body, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { @@ -7673,9 +7673,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task QueuesCreateOrUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task QueuesCreateOrUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -7733,7 +7733,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task QueuesCreateOrUpdate_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task QueuesCreateOrUpdate_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -7751,7 +7751,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbQueue.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbQueue.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -7786,7 +7786,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task QueuesCreateOrUpdate_Validate(string resourceGroupName, string namespaceName, string queueName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue body, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task QueuesCreateOrUpdate_Validate(string resourceGroupName, string namespaceName, string queueName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue body, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { @@ -7821,7 +7821,7 @@ public partial class ServiceBus /// public async global::System.Threading.Tasks.Task QueuesDelete(string resourceGroupName, string namespaceName, string queueName, string subscriptionId, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -7870,7 +7870,7 @@ public partial class ServiceBus /// public async global::System.Threading.Tasks.Task QueuesDeleteAuthorizationRule(string resourceGroupName, string namespaceName, string queueName, string authorizationRuleName, string subscriptionId, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -7916,7 +7916,7 @@ public partial class ServiceBus /// public async global::System.Threading.Tasks.Task QueuesDeleteAuthorizationRuleViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -8065,7 +8065,7 @@ public partial class ServiceBus /// public async global::System.Threading.Tasks.Task QueuesDeleteViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -8208,9 +8208,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task QueuesGet(string resourceGroupName, string namespaceName, string queueName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task QueuesGet(string resourceGroupName, string namespaceName, string queueName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -8256,9 +8256,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task QueuesGetAuthorizationRule(string resourceGroupName, string namespaceName, string queueName, string authorizationRuleName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task QueuesGetAuthorizationRule(string resourceGroupName, string namespaceName, string queueName, string authorizationRuleName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -8301,9 +8301,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task QueuesGetAuthorizationRuleViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task QueuesGetAuthorizationRuleViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -8360,7 +8360,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task QueuesGetAuthorizationRule_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task QueuesGetAuthorizationRule_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -8378,7 +8378,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbAuthorizationRule.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbAuthorizationRule.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -8442,9 +8442,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task QueuesGetViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task QueuesGetViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -8498,7 +8498,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task QueuesGet_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task QueuesGet_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -8516,7 +8516,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbQueue.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbQueue.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -8580,9 +8580,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task QueuesListAuthorizationRules(string resourceGroupName, string namespaceName, string queueName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task QueuesListAuthorizationRules(string resourceGroupName, string namespaceName, string queueName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -8624,9 +8624,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task QueuesListAuthorizationRulesViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task QueuesListAuthorizationRulesViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -8681,7 +8681,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task QueuesListAuthorizationRules_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task QueuesListAuthorizationRules_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -8699,7 +8699,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbAuthorizationRuleListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbAuthorizationRuleListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -8766,9 +8766,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task QueuesListByNamespace(string resourceGroupName, string namespaceName, string subscriptionId, int? Skip, int? Top, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task QueuesListByNamespace(string resourceGroupName, string namespaceName, string subscriptionId, int? Skip, int? Top, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -8816,9 +8816,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task QueuesListByNamespaceViaIdentity(global::System.String viaIdentity, int? Skip, int? Top, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task QueuesListByNamespaceViaIdentity(global::System.String viaIdentity, int? Skip, int? Top, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -8874,7 +8874,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task QueuesListByNamespace_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task QueuesListByNamespace_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -8892,7 +8892,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbQueueListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbQueueListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -8961,9 +8961,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task QueuesListKeys(string resourceGroupName, string namespaceName, string queueName, string authorizationRuleName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task QueuesListKeys(string resourceGroupName, string namespaceName, string queueName, string authorizationRuleName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -9007,9 +9007,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task QueuesListKeysViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task QueuesListKeysViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -9067,7 +9067,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task QueuesListKeys_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task QueuesListKeys_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -9085,7 +9085,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.AccessKeys.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.AccessKeys.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -9155,9 +9155,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task QueuesRegenerateKeys(string resourceGroupName, string namespaceName, string queueName, string authorizationRuleName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParameters body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task QueuesRegenerateKeys(string resourceGroupName, string namespaceName, string queueName, string authorizationRuleName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParameters body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -9206,9 +9206,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task QueuesRegenerateKeysViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParameters body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task QueuesRegenerateKeysViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParameters body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -9270,7 +9270,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task QueuesRegenerateKeys_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task QueuesRegenerateKeys_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -9288,7 +9288,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.AccessKeys.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.AccessKeys.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -9324,7 +9324,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task QueuesRegenerateKeys_Validate(string resourceGroupName, string namespaceName, string queueName, string authorizationRuleName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParameters body, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task QueuesRegenerateKeys_Validate(string resourceGroupName, string namespaceName, string queueName, string authorizationRuleName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParameters body, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { @@ -9362,9 +9362,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task RulesCreateOrUpdate(string resourceGroupName, string namespaceName, string topicName, string subscriptionName, string ruleName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task RulesCreateOrUpdate(string resourceGroupName, string namespaceName, string topicName, string subscriptionName, string ruleName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -9414,9 +9414,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task RulesCreateOrUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task RulesCreateOrUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -9480,7 +9480,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task RulesCreateOrUpdate_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task RulesCreateOrUpdate_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -9498,7 +9498,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.Rule.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.Rule.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -9535,7 +9535,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task RulesCreateOrUpdate_Validate(string resourceGroupName, string namespaceName, string topicName, string subscriptionName, string ruleName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule body, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task RulesCreateOrUpdate_Validate(string resourceGroupName, string namespaceName, string topicName, string subscriptionName, string ruleName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule body, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { @@ -9578,7 +9578,7 @@ public partial class ServiceBus /// public async global::System.Threading.Tasks.Task RulesDelete(string resourceGroupName, string namespaceName, string topicName, string subscriptionName, string ruleName, string subscriptionId, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -9626,7 +9626,7 @@ public partial class ServiceBus /// public async global::System.Threading.Tasks.Task RulesDeleteViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -9785,9 +9785,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task RulesGet(string resourceGroupName, string namespaceName, string topicName, string subscriptionName, string ruleName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task RulesGet(string resourceGroupName, string namespaceName, string topicName, string subscriptionName, string ruleName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -9832,9 +9832,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task RulesGetViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task RulesGetViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -9894,7 +9894,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task RulesGet_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task RulesGet_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -9912,7 +9912,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.Rule.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.Rule.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -9989,9 +9989,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task RulesListBySubscriptions(string resourceGroupName, string namespaceName, string topicName, string subscriptionName, string subscriptionId, int? Skip, int? Top, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task RulesListBySubscriptions(string resourceGroupName, string namespaceName, string topicName, string subscriptionName, string subscriptionId, int? Skip, int? Top, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -10043,9 +10043,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task RulesListBySubscriptionsViaIdentity(global::System.String viaIdentity, int? Skip, int? Top, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task RulesListBySubscriptionsViaIdentity(global::System.String viaIdentity, int? Skip, int? Top, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -10107,7 +10107,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task RulesListBySubscriptions_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task RulesListBySubscriptions_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -10125,7 +10125,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.RuleListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.RuleListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -10202,9 +10202,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task SubscriptionsCreateOrUpdate(string resourceGroupName, string namespaceName, string topicName, string subscriptionName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task SubscriptionsCreateOrUpdate(string resourceGroupName, string namespaceName, string topicName, string subscriptionName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -10252,9 +10252,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task SubscriptionsCreateOrUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task SubscriptionsCreateOrUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -10315,7 +10315,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task SubscriptionsCreateOrUpdate_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task SubscriptionsCreateOrUpdate_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -10333,7 +10333,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbSubscription.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbSubscription.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -10369,7 +10369,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task SubscriptionsCreateOrUpdate_Validate(string resourceGroupName, string namespaceName, string topicName, string subscriptionName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription body, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task SubscriptionsCreateOrUpdate_Validate(string resourceGroupName, string namespaceName, string topicName, string subscriptionName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription body, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { @@ -10408,7 +10408,7 @@ public partial class ServiceBus /// public async global::System.Threading.Tasks.Task SubscriptionsDelete(string resourceGroupName, string namespaceName, string topicName, string subscriptionName, string subscriptionId, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -10454,7 +10454,7 @@ public partial class ServiceBus /// public async global::System.Threading.Tasks.Task SubscriptionsDeleteViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -10605,9 +10605,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task SubscriptionsGet(string resourceGroupName, string namespaceName, string topicName, string subscriptionName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task SubscriptionsGet(string resourceGroupName, string namespaceName, string topicName, string subscriptionName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -10650,9 +10650,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task SubscriptionsGetViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task SubscriptionsGetViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -10709,7 +10709,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task SubscriptionsGet_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task SubscriptionsGet_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -10727,7 +10727,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbSubscription.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbSubscription.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -10799,9 +10799,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task SubscriptionsListByTopic(string resourceGroupName, string namespaceName, string topicName, string subscriptionId, int? Skip, int? Top, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task SubscriptionsListByTopic(string resourceGroupName, string namespaceName, string topicName, string subscriptionId, int? Skip, int? Top, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -10851,9 +10851,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task SubscriptionsListByTopicViaIdentity(global::System.String viaIdentity, int? Skip, int? Top, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task SubscriptionsListByTopicViaIdentity(global::System.String viaIdentity, int? Skip, int? Top, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -10912,7 +10912,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task SubscriptionsListByTopic_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task SubscriptionsListByTopic_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -10930,7 +10930,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbSubscriptionListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbSubscriptionListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -11002,9 +11002,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task TopicsCreateOrUpdate(string resourceGroupName, string namespaceName, string topicName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task TopicsCreateOrUpdate(string resourceGroupName, string namespaceName, string topicName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -11055,9 +11055,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task TopicsCreateOrUpdateAuthorizationRule(string resourceGroupName, string namespaceName, string topicName, string authorizationRuleName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task TopicsCreateOrUpdateAuthorizationRule(string resourceGroupName, string namespaceName, string topicName, string authorizationRuleName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -11105,9 +11105,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task TopicsCreateOrUpdateAuthorizationRuleViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task TopicsCreateOrUpdateAuthorizationRuleViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -11170,7 +11170,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task TopicsCreateOrUpdateAuthorizationRule_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task TopicsCreateOrUpdateAuthorizationRule_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -11188,7 +11188,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbAuthorizationRule.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbAuthorizationRule.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -11224,7 +11224,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task TopicsCreateOrUpdateAuthorizationRule_Validate(string resourceGroupName, string namespaceName, string topicName, string authorizationRuleName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule body, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task TopicsCreateOrUpdateAuthorizationRule_Validate(string resourceGroupName, string namespaceName, string topicName, string authorizationRuleName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule body, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { @@ -11256,9 +11256,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task TopicsCreateOrUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task TopicsCreateOrUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -11316,7 +11316,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task TopicsCreateOrUpdate_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task TopicsCreateOrUpdate_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -11334,7 +11334,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbTopic.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbTopic.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -11369,7 +11369,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task TopicsCreateOrUpdate_Validate(string resourceGroupName, string namespaceName, string topicName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic body, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task TopicsCreateOrUpdate_Validate(string resourceGroupName, string namespaceName, string topicName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic body, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { @@ -11404,7 +11404,7 @@ public partial class ServiceBus /// public async global::System.Threading.Tasks.Task TopicsDelete(string resourceGroupName, string namespaceName, string topicName, string subscriptionId, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -11453,7 +11453,7 @@ public partial class ServiceBus /// public async global::System.Threading.Tasks.Task TopicsDeleteAuthorizationRule(string resourceGroupName, string namespaceName, string topicName, string authorizationRuleName, string subscriptionId, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -11499,7 +11499,7 @@ public partial class ServiceBus /// public async global::System.Threading.Tasks.Task TopicsDeleteAuthorizationRuleViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -11648,7 +11648,7 @@ public partial class ServiceBus /// public async global::System.Threading.Tasks.Task TopicsDeleteViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -11791,9 +11791,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task TopicsGet(string resourceGroupName, string namespaceName, string topicName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task TopicsGet(string resourceGroupName, string namespaceName, string topicName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -11839,9 +11839,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task TopicsGetAuthorizationRule(string resourceGroupName, string namespaceName, string topicName, string authorizationRuleName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task TopicsGetAuthorizationRule(string resourceGroupName, string namespaceName, string topicName, string authorizationRuleName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -11884,9 +11884,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task TopicsGetAuthorizationRuleViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task TopicsGetAuthorizationRuleViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -11943,7 +11943,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task TopicsGetAuthorizationRule_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task TopicsGetAuthorizationRule_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -11961,7 +11961,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbAuthorizationRule.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbAuthorizationRule.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -12025,9 +12025,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task TopicsGetViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task TopicsGetViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -12081,7 +12081,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task TopicsGet_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task TopicsGet_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -12099,7 +12099,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbTopic.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbTopic.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -12163,9 +12163,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task TopicsListAuthorizationRules(string resourceGroupName, string namespaceName, string topicName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task TopicsListAuthorizationRules(string resourceGroupName, string namespaceName, string topicName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -12207,9 +12207,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task TopicsListAuthorizationRulesViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task TopicsListAuthorizationRulesViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -12264,7 +12264,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task TopicsListAuthorizationRules_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task TopicsListAuthorizationRules_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -12282,7 +12282,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbAuthorizationRuleListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbAuthorizationRuleListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -12349,9 +12349,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task TopicsListByNamespace(string resourceGroupName, string namespaceName, string subscriptionId, int? Skip, int? Top, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task TopicsListByNamespace(string resourceGroupName, string namespaceName, string subscriptionId, int? Skip, int? Top, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -12399,9 +12399,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task TopicsListByNamespaceViaIdentity(global::System.String viaIdentity, int? Skip, int? Top, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task TopicsListByNamespaceViaIdentity(global::System.String viaIdentity, int? Skip, int? Top, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -12457,7 +12457,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task TopicsListByNamespace_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task TopicsListByNamespace_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -12475,7 +12475,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbTopicListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbTopicListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -12544,9 +12544,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task TopicsListKeys(string resourceGroupName, string namespaceName, string topicName, string authorizationRuleName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task TopicsListKeys(string resourceGroupName, string namespaceName, string topicName, string authorizationRuleName, string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -12590,9 +12590,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task TopicsListKeysViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task TopicsListKeysViaIdentity(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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -12650,7 +12650,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task TopicsListKeys_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task TopicsListKeys_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -12668,7 +12668,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.AccessKeys.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.AccessKeys.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -12738,9 +12738,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task TopicsRegenerateKeys(string resourceGroupName, string namespaceName, string topicName, string authorizationRuleName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParameters body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task TopicsRegenerateKeys(string resourceGroupName, string namespaceName, string topicName, string authorizationRuleName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParameters body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -12789,9 +12789,9 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task TopicsRegenerateKeysViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParameters body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task TopicsRegenerateKeysViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParameters body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { - var apiVersion = @"2022-01-01-preview"; + var apiVersion = @"2022-10-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -12853,7 +12853,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task TopicsRegenerateKeys_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task TopicsRegenerateKeys_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.ServiceBus.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -12871,7 +12871,7 @@ public partial class ServiceBus case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.AccessKeys.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.AccessKeys.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: @@ -12907,7 +12907,7 @@ public partial class ServiceBus /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task TopicsRegenerateKeys_Validate(string resourceGroupName, string namespaceName, string topicName, string authorizationRuleName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParameters body, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task TopicsRegenerateKeys_Validate(string resourceGroupName, string namespaceName, string topicName, string authorizationRuleName, string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParameters body, Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusDisasterRecoveryConfigAuthorizationRule_Get.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusDisasterRecoveryConfigAuthorizationRule_Get.cs index 2b5f79443a57..1f6465ccf457 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusDisasterRecoveryConfigAuthorizationRule_Get.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusDisasterRecoveryConfigAuthorizationRule_Get.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusDisasterRecoveryConfigAuthorizationRule_Get")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Gets an authorization rule for a namespace by rule name.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusDisasterRecoveryConfigAuthorizationRule_Get : global::System.Management.Automation.PSCmdlet, @@ -189,12 +189,12 @@ public partial class GetAzServiceBusDisasterRecoveryConfigAuthorizationRule_Get /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -410,12 +410,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -427,7 +427,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusDisasterRecoveryConfigAuthorizationRule_GetViaIdentity.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusDisasterRecoveryConfigAuthorizationRule_GetViaIdentity.cs index 2f51986e1fe6..f4bde91a868a 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusDisasterRecoveryConfigAuthorizationRule_GetViaIdentity.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusDisasterRecoveryConfigAuthorizationRule_GetViaIdentity.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusDisasterRecoveryConfigAuthorizationRule_GetViaIdentity")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Gets an authorization rule for a namespace by rule name.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusDisasterRecoveryConfigAuthorizationRule_GetViaIdentity : global::System.Management.Automation.PSCmdlet, @@ -120,12 +120,12 @@ public partial class GetAzServiceBusDisasterRecoveryConfigAuthorizationRule_GetV /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -367,12 +367,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -384,7 +384,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusDisasterRecoveryConfigAuthorizationRule_List.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusDisasterRecoveryConfigAuthorizationRule_List.cs index c5cb44c4fa82..f0576b3cebf6 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusDisasterRecoveryConfigAuthorizationRule_List.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusDisasterRecoveryConfigAuthorizationRule_List.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusDisasterRecoveryConfigAuthorizationRule_List")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Gets the authorization rules for a namespace.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusDisasterRecoveryConfigAuthorizationRule_List : global::System.Management.Automation.PSCmdlet, @@ -181,12 +181,12 @@ public partial class GetAzServiceBusDisasterRecoveryConfigAuthorizationRule_List /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleListResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleListResult /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -402,12 +402,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleListResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleListResult /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusDisasterRecoveryConfigKey_List.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusDisasterRecoveryConfigKey_List.cs index e9460650860f..6e6773afe1ab 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusDisasterRecoveryConfigKey_List.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusDisasterRecoveryConfigKey_List.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusDisasterRecoveryConfigKey_List", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Gets the primary and secondary connection strings for the namespace.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusDisasterRecoveryConfigKey_List : global::System.Management.Automation.PSCmdlet, @@ -189,12 +189,12 @@ public partial class GetAzServiceBusDisasterRecoveryConfigKey_List : global::Sys /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -413,12 +413,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -430,7 +430,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusGeoDRConfiguration_Get.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusGeoDRConfiguration_Get.cs index 44c13613ab84..37317d6d46f5 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusGeoDRConfiguration_Get.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusGeoDRConfiguration_Get.cs @@ -15,7 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}/disasterRecoveryConfigs/{alias}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusGeoDRConfiguration_Get")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Retrieves Alias(Disaster Recovery configuration) for primary or secondary namespace")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusGeoDRConfiguration_Get : global::System.Management.Automation.PSCmdlet, @@ -176,12 +176,12 @@ public partial class GetAzServiceBusGeoDRConfiguration_Get : global::System.Mana /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -397,12 +397,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -414,7 +414,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusGeoDRConfiguration_GetViaIdentity.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusGeoDRConfiguration_GetViaIdentity.cs index aaef14da55e1..2feaa267c199 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusGeoDRConfiguration_GetViaIdentity.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusGeoDRConfiguration_GetViaIdentity.cs @@ -15,7 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}/disasterRecoveryConfigs/{alias}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusGeoDRConfiguration_GetViaIdentity")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Retrieves Alias(Disaster Recovery configuration) for primary or secondary namespace")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusGeoDRConfiguration_GetViaIdentity : global::System.Management.Automation.PSCmdlet, @@ -121,12 +121,12 @@ public partial class GetAzServiceBusGeoDRConfiguration_GetViaIdentity : global:: /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -363,12 +363,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -380,7 +380,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusGeoDRConfiguration_List.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusGeoDRConfiguration_List.cs index 123139b286dd..5547e42add48 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusGeoDRConfiguration_List.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusGeoDRConfiguration_List.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [OpenAPI] List=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}/disasterRecoveryConfigs" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusGeoDRConfiguration_List")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Gets all Alias(Disaster Recovery configurations)")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusGeoDRConfiguration_List : global::System.Management.Automation.PSCmdlet, @@ -166,12 +166,12 @@ public partial class GetAzServiceBusGeoDRConfiguration_List : global::System.Man /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryListResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryListResult /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -387,12 +387,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecoveryListResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecoveryListResult /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusMigration_Get.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusMigration_Get.cs index 412f1d195b09..bcbb7190f02b 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusMigration_Get.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusMigration_Get.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}/migrationConfigurations/{configName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusMigration_Get")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Retrieves Migration Config")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusMigration_Get : global::System.Management.Automation.PSCmdlet, @@ -160,12 +160,12 @@ public partial class GetAzServiceBusMigration_Get : global::System.Management.Au /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -381,12 +381,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -398,7 +398,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusMigration_GetViaIdentity.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusMigration_GetViaIdentity.cs index 677c40a577bc..33e3206605bf 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusMigration_GetViaIdentity.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusMigration_GetViaIdentity.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}/migrationConfigurations/{configName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusMigration_GetViaIdentity")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Retrieves Migration Config")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusMigration_GetViaIdentity : global::System.Management.Automation.PSCmdlet, @@ -119,12 +119,12 @@ public partial class GetAzServiceBusMigration_GetViaIdentity : global::System.Ma /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -357,12 +357,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -374,7 +374,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusMigration_List.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusMigration_List.cs index b1808af91ad6..8ee26f0dc981 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusMigration_List.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusMigration_List.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [OpenAPI] List=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}/migrationConfigurations" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusMigration_List")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Gets all migrationConfigurations")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusMigration_List : global::System.Management.Automation.PSCmdlet, @@ -166,12 +166,12 @@ public partial class GetAzServiceBusMigration_List : global::System.Management.A /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigListResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigListResult /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -387,12 +387,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigListResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigListResult /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusNamespaceAuthorizationRule_Get.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusNamespaceAuthorizationRule_Get.cs index c6d4274f7586..215fd6fe38b4 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusNamespaceAuthorizationRule_Get.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusNamespaceAuthorizationRule_Get.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusNamespaceAuthorizationRule_Get")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Gets an authorization rule for a namespace by rule name.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusNamespaceAuthorizationRule_Get : global::System.Management.Automation.PSCmdlet, @@ -175,12 +175,12 @@ public partial class GetAzServiceBusNamespaceAuthorizationRule_Get : global::Sys /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -396,12 +396,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -413,7 +413,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusNamespaceAuthorizationRule_GetViaIdentity.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusNamespaceAuthorizationRule_GetViaIdentity.cs index 1a4c4fa31fcc..85a32b4e1984 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusNamespaceAuthorizationRule_GetViaIdentity.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusNamespaceAuthorizationRule_GetViaIdentity.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusNamespaceAuthorizationRule_GetViaIdentity")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Gets an authorization rule for a namespace by rule name.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusNamespaceAuthorizationRule_GetViaIdentity : global::System.Management.Automation.PSCmdlet, @@ -120,12 +120,12 @@ public partial class GetAzServiceBusNamespaceAuthorizationRule_GetViaIdentity : /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -362,12 +362,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -379,7 +379,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusNamespaceAuthorizationRule_List.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusNamespaceAuthorizationRule_List.cs index 9a68a042f038..ab2fc57c4f4b 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusNamespaceAuthorizationRule_List.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusNamespaceAuthorizationRule_List.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusNamespaceAuthorizationRule_List")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Gets the authorization rules for a namespace.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusNamespaceAuthorizationRule_List : global::System.Management.Automation.PSCmdlet, @@ -167,12 +167,12 @@ public partial class GetAzServiceBusNamespaceAuthorizationRule_List : global::Sy /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleListResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleListResult /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -388,12 +388,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleListResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleListResult /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusNamespaceKey_List.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusNamespaceKey_List.cs index 2facefd8d14b..1040af50a1c8 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusNamespaceKey_List.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusNamespaceKey_List.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusNamespaceKey_List", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Gets the primary and secondary connection strings for the namespace.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusNamespaceKey_List : global::System.Management.Automation.PSCmdlet, @@ -175,12 +175,12 @@ public partial class GetAzServiceBusNamespaceKey_List : global::System.Managemen /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -399,12 +399,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -416,7 +416,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusNamespaceV2_Get.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusNamespaceV2_Get.cs index 4b81556c2710..f77abb802f4a 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusNamespaceV2_Get.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusNamespaceV2_Get.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusNamespaceV2_Get")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Gets a description for the specified namespace.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusNamespaceV2_Get : global::System.Management.Automation.PSCmdlet, @@ -161,12 +161,12 @@ public partial class GetAzServiceBusNamespaceV2_Get : global::System.Management. /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -382,12 +382,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -399,7 +399,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusNamespaceV2_GetViaIdentity.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusNamespaceV2_GetViaIdentity.cs index ea82b7409aca..b3f6bf6ce352 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusNamespaceV2_GetViaIdentity.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusNamespaceV2_GetViaIdentity.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusNamespaceV2_GetViaIdentity")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Gets a description for the specified namespace.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusNamespaceV2_GetViaIdentity : global::System.Management.Automation.PSCmdlet, @@ -119,12 +119,12 @@ public partial class GetAzServiceBusNamespaceV2_GetViaIdentity : global::System. /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -357,12 +357,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -374,7 +374,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusNamespaceV2_List.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusNamespaceV2_List.cs index 2fb579cb413d..665c9657d55b 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusNamespaceV2_List.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusNamespaceV2_List.cs @@ -15,7 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [OpenAPI] List=>GET:"/subscriptions/{subscriptionId}/providers/Microsoft.ServiceBus/namespaces" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusNamespaceV2_List")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Gets all the available namespaces within the subscription, irrespective of the resource groups.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusNamespaceV2_List : global::System.Management.Automation.PSCmdlet, @@ -140,12 +140,12 @@ public partial class GetAzServiceBusNamespaceV2_List : global::System.Management /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceListResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceListResult /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -361,12 +361,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceListResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceListResult /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusNamespaceV2_List1.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusNamespaceV2_List1.cs index 50acc37b226c..989ac467c536 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusNamespaceV2_List1.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusNamespaceV2_List1.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [OpenAPI] ListByResourceGroup=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusNamespaceV2_List1")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Gets the available namespaces within a resource group.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusNamespaceV2_List1 : global::System.Management.Automation.PSCmdlet, @@ -152,12 +152,12 @@ public partial class GetAzServiceBusNamespaceV2_List1 : global::System.Managemen /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceListResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceListResult /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -373,12 +373,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespaceListResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespaceListResult /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusNetworkRuleSet_Get.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusNetworkRuleSet_Get.cs index 9825fd03ec07..ed2ed1ff26ea 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusNetworkRuleSet_Get.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusNetworkRuleSet_Get.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [OpenAPI] GetNetworkRuleSet=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}/networkRuleSets/default" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusNetworkRuleSet_Get")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Gets NetworkRuleSet for a Namespace.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusNetworkRuleSet_Get : global::System.Management.Automation.PSCmdlet, @@ -160,12 +160,12 @@ public partial class GetAzServiceBusNetworkRuleSet_Get : global::System.Manageme /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -381,12 +381,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -398,7 +398,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusNetworkRuleSet_GetViaIdentity.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusNetworkRuleSet_GetViaIdentity.cs index 0cfc382361fd..66952beadc85 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusNetworkRuleSet_GetViaIdentity.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusNetworkRuleSet_GetViaIdentity.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [OpenAPI] GetNetworkRuleSet=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}/networkRuleSets/default" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusNetworkRuleSet_GetViaIdentity")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Gets NetworkRuleSet for a Namespace.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusNetworkRuleSet_GetViaIdentity : global::System.Management.Automation.PSCmdlet, @@ -119,12 +119,12 @@ public partial class GetAzServiceBusNetworkRuleSet_GetViaIdentity : global::Syst /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -357,12 +357,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -374,7 +374,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusNetworkRuleSet_List.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusNetworkRuleSet_List.cs index 27f03e0f2445..9aad2879d69e 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusNetworkRuleSet_List.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusNetworkRuleSet_List.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [OpenAPI] ListNetworkRuleSets=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}/networkRuleSets" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusNetworkRuleSet_List")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Gets list of NetworkRuleSet for a Namespace.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusNetworkRuleSet_List : global::System.Management.Automation.PSCmdlet, @@ -166,12 +166,12 @@ public partial class GetAzServiceBusNetworkRuleSet_List : global::System.Managem /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetListResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetListResult /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -387,12 +387,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSetListResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSetListResult /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusOperation_List.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusOperation_List.cs index ad4f2a478cb0..9b225e7db500 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusOperation_List.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusOperation_List.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusOperation_List")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperation))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperation))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Lists all of the available ServiceBus REST API operations.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusOperation_List : global::System.Management.Automation.PSCmdlet, @@ -118,12 +118,12 @@ public partial class GetAzServiceBusOperation_List : global::System.Management.A /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationListResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationListResult /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -336,12 +336,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperationListResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperationListResult /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusPrivateEndpointConnection_Get.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusPrivateEndpointConnection_Get.cs index 1d1228871efe..c0ded55aea6a 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusPrivateEndpointConnection_Get.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusPrivateEndpointConnection_Get.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}/privateEndpointConnections/{privateEndpointConnectionName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusPrivateEndpointConnection_Get")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Gets a description for the specified Private Endpoint Connection.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusPrivateEndpointConnection_Get : global::System.Management.Automation.PSCmdlet, @@ -175,12 +175,12 @@ public partial class GetAzServiceBusPrivateEndpointConnection_Get : global::Syst /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -396,12 +396,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -413,7 +413,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusPrivateEndpointConnection_GetViaIdentity.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusPrivateEndpointConnection_GetViaIdentity.cs index 8278c1a41117..adffc140e489 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusPrivateEndpointConnection_GetViaIdentity.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusPrivateEndpointConnection_GetViaIdentity.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}/privateEndpointConnections/{privateEndpointConnectionName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusPrivateEndpointConnection_GetViaIdentity")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Gets a description for the specified Private Endpoint Connection.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusPrivateEndpointConnection_GetViaIdentity : global::System.Management.Automation.PSCmdlet, @@ -119,12 +119,12 @@ public partial class GetAzServiceBusPrivateEndpointConnection_GetViaIdentity : g /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -361,12 +361,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -378,7 +378,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusPrivateEndpointConnection_List.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusPrivateEndpointConnection_List.cs index 80ec795647e9..acc4ee01f757 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusPrivateEndpointConnection_List.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusPrivateEndpointConnection_List.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [OpenAPI] List=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}/privateEndpointConnections" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusPrivateEndpointConnection_List")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Gets the available PrivateEndpointConnections within a namespace.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusPrivateEndpointConnection_List : global::System.Management.Automation.PSCmdlet, @@ -166,12 +166,12 @@ public partial class GetAzServiceBusPrivateEndpointConnection_List : global::Sys /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionListResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionListResult /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -387,12 +387,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnectionListResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnectionListResult /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusPrivateLink_Get.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusPrivateLink_Get.cs index 997ed7993a20..8ec8e26efcf0 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusPrivateLink_Get.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusPrivateLink_Get.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}/privateLinkResources" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusPrivateLink_Get")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcesListResult))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcesListResult))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Gets lists of resources that supports Privatelinks.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusPrivateLink_Get : global::System.Management.Automation.PSCmdlet, @@ -166,12 +166,12 @@ public partial class GetAzServiceBusPrivateLink_Get : global::System.Management. /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcesListResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcesListResult /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -387,12 +387,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcesListResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcesListResult /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusQueueAuthorizationRule_Get.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusQueueAuthorizationRule_Get.cs index b4380e43f97b..c078da808ad5 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusQueueAuthorizationRule_Get.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusQueueAuthorizationRule_Get.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusQueueAuthorizationRule_Get")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Gets an authorization rule for a queue by rule name.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusQueueAuthorizationRule_Get : global::System.Management.Automation.PSCmdlet, @@ -189,12 +189,12 @@ public partial class GetAzServiceBusQueueAuthorizationRule_Get : global::System. /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -410,12 +410,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -427,7 +427,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusQueueAuthorizationRule_GetViaIdentity.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusQueueAuthorizationRule_GetViaIdentity.cs index 406accdaf77b..91c9e9531f4a 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusQueueAuthorizationRule_GetViaIdentity.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusQueueAuthorizationRule_GetViaIdentity.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusQueueAuthorizationRule_GetViaIdentity")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Gets an authorization rule for a queue by rule name.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusQueueAuthorizationRule_GetViaIdentity : global::System.Management.Automation.PSCmdlet, @@ -120,12 +120,12 @@ public partial class GetAzServiceBusQueueAuthorizationRule_GetViaIdentity : glob /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -366,12 +366,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -383,7 +383,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusQueueAuthorizationRule_List.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusQueueAuthorizationRule_List.cs index 380116a16615..6e0c5f181178 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusQueueAuthorizationRule_List.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusQueueAuthorizationRule_List.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusQueueAuthorizationRule_List")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Gets all authorization rules for a queue.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusQueueAuthorizationRule_List : global::System.Management.Automation.PSCmdlet, @@ -181,12 +181,12 @@ public partial class GetAzServiceBusQueueAuthorizationRule_List : global::System /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleListResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleListResult /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -402,12 +402,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleListResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleListResult /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusQueueKey_List.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusQueueKey_List.cs index e7cd2fd4ae86..06f30a2d5a65 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusQueueKey_List.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusQueueKey_List.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusQueueKey_List", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Primary and secondary connection strings to the queue.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusQueueKey_List : global::System.Management.Automation.PSCmdlet, @@ -189,12 +189,12 @@ public partial class GetAzServiceBusQueueKey_List : global::System.Management.Au /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -413,12 +413,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -430,7 +430,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusQueue_Get.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusQueue_Get.cs index 4f8a0529e6c9..5d2577e2bb18 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusQueue_Get.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusQueue_Get.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}/queues/{queueName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusQueue_Get")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Returns a description for the specified queue.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusQueue_Get : global::System.Management.Automation.PSCmdlet, @@ -175,12 +175,12 @@ public partial class GetAzServiceBusQueue_Get : global::System.Management.Automa /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -396,12 +396,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -413,7 +413,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusQueue_GetViaIdentity.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusQueue_GetViaIdentity.cs index 58eca4cf339a..d0e31524c206 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusQueue_GetViaIdentity.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusQueue_GetViaIdentity.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}/queues/{queueName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusQueue_GetViaIdentity")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Returns a description for the specified queue.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusQueue_GetViaIdentity : global::System.Management.Automation.PSCmdlet, @@ -119,12 +119,12 @@ public partial class GetAzServiceBusQueue_GetViaIdentity : global::System.Manage /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -361,12 +361,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -378,7 +378,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusQueue_List.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusQueue_List.cs index 32aabee97f4c..bf09f4e5cadc 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusQueue_List.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusQueue_List.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [OpenAPI] ListByNamespace=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}/queues" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusQueue_List")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Gets the queues within a namespace.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusQueue_List : global::System.Management.Automation.PSCmdlet, @@ -198,12 +198,12 @@ public partial class GetAzServiceBusQueue_List : global::System.Management.Autom /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueListResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueListResult /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -419,12 +419,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueueListResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueueListResult /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusRule_Get.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusRule_Get.cs index f30b6c0430aa..bd96480cce22 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusRule_Get.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusRule_Get.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}/topics/{topicName}/subscriptions/{subscriptionName}/rules/{ruleName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusRule_Get")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Retrieves the description for the specified rule.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusRule_Get : global::System.Management.Automation.PSCmdlet, @@ -203,12 +203,12 @@ public partial class GetAzServiceBusRule_Get : global::System.Management.Automat /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -424,12 +424,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -441,7 +441,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusRule_GetViaIdentity.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusRule_GetViaIdentity.cs index 7cac88ac42e8..0a74832fe8b3 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusRule_GetViaIdentity.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusRule_GetViaIdentity.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}/topics/{topicName}/subscriptions/{subscriptionName}/rules/{ruleName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusRule_GetViaIdentity")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Retrieves the description for the specified rule.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusRule_GetViaIdentity : global::System.Management.Automation.PSCmdlet, @@ -119,12 +119,12 @@ public partial class GetAzServiceBusRule_GetViaIdentity : global::System.Managem /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -369,12 +369,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -386,7 +386,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusRule_List.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusRule_List.cs index 6b7bf2289eb0..7409c905fa61 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusRule_List.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusRule_List.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [OpenAPI] ListBySubscriptions=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}/topics/{topicName}/subscriptions/{subscriptionName}/rules" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusRule_List")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"List all the rules within given topic-subscription")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusRule_List : global::System.Management.Automation.PSCmdlet, @@ -226,12 +226,12 @@ public partial class GetAzServiceBusRule_List : global::System.Management.Automa /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleListResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleListResult /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -447,12 +447,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRuleListResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRuleListResult /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusSubscription_Get.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusSubscription_Get.cs index 133b07d9adb8..1aabc4c1ef07 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusSubscription_Get.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusSubscription_Get.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}/topics/{topicName}/subscriptions/{subscriptionName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusSubscription_Get")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Returns a subscription description for the specified topic.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusSubscription_Get : global::System.Management.Automation.PSCmdlet, @@ -189,12 +189,12 @@ public partial class GetAzServiceBusSubscription_Get : global::System.Management /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -410,12 +410,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -427,7 +427,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusSubscription_GetViaIdentity.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusSubscription_GetViaIdentity.cs index d9e9f1325e46..1d90f2bd9ed7 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusSubscription_GetViaIdentity.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusSubscription_GetViaIdentity.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}/topics/{topicName}/subscriptions/{subscriptionName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusSubscription_GetViaIdentity")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Returns a subscription description for the specified topic.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusSubscription_GetViaIdentity : global::System.Management.Automation.PSCmdlet, @@ -119,12 +119,12 @@ public partial class GetAzServiceBusSubscription_GetViaIdentity : global::System /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -365,12 +365,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -382,7 +382,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusSubscription_List.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusSubscription_List.cs index 9436fe6c578d..6694526367d7 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusSubscription_List.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusSubscription_List.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [OpenAPI] ListByTopic=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}/topics/{topicName}/subscriptions" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusSubscription_List")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"List all the subscriptions under a specified topic.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusSubscription_List : global::System.Management.Automation.PSCmdlet, @@ -212,12 +212,12 @@ public partial class GetAzServiceBusSubscription_List : global::System.Managemen /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionListResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionListResult /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -433,12 +433,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscriptionListResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscriptionListResult /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusTopicAuthorizationRule_Get.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusTopicAuthorizationRule_Get.cs index 1e9ad46c028d..884079197ded 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusTopicAuthorizationRule_Get.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusTopicAuthorizationRule_Get.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusTopicAuthorizationRule_Get")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Returns the specified authorization rule.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusTopicAuthorizationRule_Get : global::System.Management.Automation.PSCmdlet, @@ -189,12 +189,12 @@ public partial class GetAzServiceBusTopicAuthorizationRule_Get : global::System. /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -410,12 +410,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -427,7 +427,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusTopicAuthorizationRule_GetViaIdentity.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusTopicAuthorizationRule_GetViaIdentity.cs index 311a0f933503..172f12caa07b 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusTopicAuthorizationRule_GetViaIdentity.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusTopicAuthorizationRule_GetViaIdentity.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusTopicAuthorizationRule_GetViaIdentity")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Returns the specified authorization rule.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusTopicAuthorizationRule_GetViaIdentity : global::System.Management.Automation.PSCmdlet, @@ -120,12 +120,12 @@ public partial class GetAzServiceBusTopicAuthorizationRule_GetViaIdentity : glob /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -366,12 +366,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -383,7 +383,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusTopicAuthorizationRule_List.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusTopicAuthorizationRule_List.cs index c64644d0e7e7..565f880bc5da 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusTopicAuthorizationRule_List.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusTopicAuthorizationRule_List.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusTopicAuthorizationRule_List")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Gets authorization rules for a topic.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusTopicAuthorizationRule_List : global::System.Management.Automation.PSCmdlet, @@ -181,12 +181,12 @@ public partial class GetAzServiceBusTopicAuthorizationRule_List : global::System /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleListResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleListResult /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -402,12 +402,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRuleListResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRuleListResult /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusTopicKey_List.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusTopicKey_List.cs index 4e4a9ba3042e..16cdda4ea7d7 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusTopicKey_List.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusTopicKey_List.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusTopicKey_List", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Gets the primary and secondary connection strings for the topic.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusTopicKey_List : global::System.Management.Automation.PSCmdlet, @@ -189,12 +189,12 @@ public partial class GetAzServiceBusTopicKey_List : global::System.Management.Au /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -413,12 +413,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -430,7 +430,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusTopic_Get.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusTopic_Get.cs index a48327478961..985cabaa93b2 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusTopic_Get.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusTopic_Get.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}/topics/{topicName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusTopic_Get")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Returns a description for the specified topic.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusTopic_Get : global::System.Management.Automation.PSCmdlet, @@ -175,12 +175,12 @@ public partial class GetAzServiceBusTopic_Get : global::System.Management.Automa /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -396,12 +396,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -413,7 +413,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusTopic_GetViaIdentity.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusTopic_GetViaIdentity.cs index 4c65e890d365..cb50f1fe5817 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusTopic_GetViaIdentity.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusTopic_GetViaIdentity.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [OpenAPI] Get=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}/topics/{topicName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusTopic_GetViaIdentity")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Returns a description for the specified topic.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusTopic_GetViaIdentity : global::System.Management.Automation.PSCmdlet, @@ -119,12 +119,12 @@ public partial class GetAzServiceBusTopic_GetViaIdentity : global::System.Manage /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -361,12 +361,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -378,7 +378,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusTopic_List.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusTopic_List.cs index d87d83ceff19..85ff50c044f9 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusTopic_List.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/GetAzServiceBusTopic_List.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [OpenAPI] ListByNamespace=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}/topics" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceBusTopic_List")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Gets all the topics in a namespace.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class GetAzServiceBusTopic_List : global::System.Management.Automation.PSCmdlet, @@ -198,12 +198,12 @@ public partial class GetAzServiceBusTopic_List : global::System.Management.Autom /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicListResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicListResult /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -419,12 +419,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopicListResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopicListResult /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/InvokeAzServiceBusFailDisasterRecoveryConfigOver_Fail.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/InvokeAzServiceBusFailDisasterRecoveryConfigOver_Fail.cs index 1689a47b73b4..d8aa68a36660 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/InvokeAzServiceBusFailDisasterRecoveryConfigOver_Fail.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/InvokeAzServiceBusFailDisasterRecoveryConfigOver_Fail.cs @@ -105,7 +105,7 @@ public partial class InvokeAzServiceBusFailDisasterRecoveryConfigOver_Fail : glo public string NamespaceName { get => this._namespaceName; set => this._namespaceName = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverProperties _parameter; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverProperties _parameter; /// /// Safe failover is to indicate the service should wait for pending replication to finish before switching to the secondary. @@ -116,8 +116,8 @@ public partial class InvokeAzServiceBusFailDisasterRecoveryConfigOver_Fail : glo ReadOnly = false, Description = @"Safe failover is to indicate the service should wait for pending replication to finish before switching to the secondary.", SerializedName = @"parameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverProperties) })] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverProperties Parameter { get => this._parameter; set => this._parameter = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverProperties) })] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverProperties Parameter { get => this._parameter; set => this._parameter = value; } /// /// When specified, forces the cmdlet return a 'bool' given that there isn't a return type by default. diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/InvokeAzServiceBusFailDisasterRecoveryConfigOver_FailExpanded.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/InvokeAzServiceBusFailDisasterRecoveryConfigOver_FailExpanded.cs index 11eafa59ebf4..c366c1976a27 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/InvokeAzServiceBusFailDisasterRecoveryConfigOver_FailExpanded.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/InvokeAzServiceBusFailDisasterRecoveryConfigOver_FailExpanded.cs @@ -39,7 +39,7 @@ public partial class InvokeAzServiceBusFailDisasterRecoveryConfigOver_FailExpand /// /// Safe failover is to indicate the service should wait for pending replication to finish before switching to the secondary. /// - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverProperties _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.FailoverProperties(); + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverProperties _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.FailoverProperties(); /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/InvokeAzServiceBusFailDisasterRecoveryConfigOver_FailViaIdentity.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/InvokeAzServiceBusFailDisasterRecoveryConfigOver_FailViaIdentity.cs index b5d5cf856a0c..6e58c2dfb55d 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/InvokeAzServiceBusFailDisasterRecoveryConfigOver_FailViaIdentity.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/InvokeAzServiceBusFailDisasterRecoveryConfigOver_FailViaIdentity.cs @@ -85,7 +85,7 @@ public partial class InvokeAzServiceBusFailDisasterRecoveryConfigOver_FailViaIde global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener.Token => _cancellationTokenSource.Token; /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverProperties _parameter; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverProperties _parameter; /// /// Safe failover is to indicate the service should wait for pending replication to finish before switching to the secondary. @@ -96,8 +96,8 @@ public partial class InvokeAzServiceBusFailDisasterRecoveryConfigOver_FailViaIde ReadOnly = false, Description = @"Safe failover is to indicate the service should wait for pending replication to finish before switching to the secondary.", SerializedName = @"parameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverProperties) })] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverProperties Parameter { get => this._parameter; set => this._parameter = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverProperties) })] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverProperties Parameter { get => this._parameter; set => this._parameter = value; } /// /// When specified, forces the cmdlet return a 'bool' given that there isn't a return type by default. diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/InvokeAzServiceBusFailDisasterRecoveryConfigOver_FailViaIdentityExpanded.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/InvokeAzServiceBusFailDisasterRecoveryConfigOver_FailViaIdentityExpanded.cs index ba94224c9a3d..d60080949a76 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/InvokeAzServiceBusFailDisasterRecoveryConfigOver_FailViaIdentityExpanded.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/InvokeAzServiceBusFailDisasterRecoveryConfigOver_FailViaIdentityExpanded.cs @@ -39,7 +39,7 @@ public partial class InvokeAzServiceBusFailDisasterRecoveryConfigOver_FailViaIde /// /// Safe failover is to indicate the service should wait for pending replication to finish before switching to the secondary. /// - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverProperties _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.FailoverProperties(); + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverProperties _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.FailoverProperties(); /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusGeoDRConfiguration_CreateExpanded.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusGeoDRConfiguration_CreateExpanded.cs index b57650f4c7a5..992c2ee5030f 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusGeoDRConfiguration_CreateExpanded.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusGeoDRConfiguration_CreateExpanded.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}/disasterRecoveryConfigs/{alias}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzServiceBusGeoDRConfiguration_CreateExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Creates or updates a new Alias(Disaster Recovery configuration)")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class NewAzServiceBusGeoDRConfiguration_CreateExpanded : global::System.Management.Automation.PSCmdlet, @@ -34,7 +34,7 @@ public partial class NewAzServiceBusGeoDRConfiguration_CreateExpanded : global:: private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); /// Single item in List or Get Alias(Disaster Recovery configuration) operation - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ArmDisasterRecovery(); + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ArmDisasterRecovery(); /// Primary/Secondary eventhub namespace name, which is part of GEO DR pairing [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Primary/Secondary eventhub namespace name, which is part of GEO DR pairing")] @@ -218,12 +218,12 @@ public partial class NewAzServiceBusGeoDRConfiguration_CreateExpanded : global:: /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -463,12 +463,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -480,7 +480,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusGeoDRConfiguration_CreateViaIdentity.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusGeoDRConfiguration_CreateViaIdentity.cs index 54025930caab..e0038920dd93 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusGeoDRConfiguration_CreateViaIdentity.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusGeoDRConfiguration_CreateViaIdentity.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzServiceBusGeoDRConfiguration_CreateViaIdentity", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Creates or updates a new Alias(Disaster Recovery configuration)")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class NewAzServiceBusGeoDRConfiguration_CreateViaIdentity : global::System.Management.Automation.PSCmdlet, @@ -83,7 +83,7 @@ public partial class NewAzServiceBusGeoDRConfiguration_CreateViaIdentity : globa global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener.Token => _cancellationTokenSource.Token; /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery _parameter; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery _parameter; /// Single item in List or Get Alias(Disaster Recovery configuration) operation [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Single item in List or Get Alias(Disaster Recovery configuration) operation", ValueFromPipeline = true)] @@ -92,8 +92,8 @@ public partial class NewAzServiceBusGeoDRConfiguration_CreateViaIdentity : globa ReadOnly = false, Description = @"Single item in List or Get Alias(Disaster Recovery configuration) operation", SerializedName = @"parameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery) })] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery Parameter { get => this._parameter; set => this._parameter = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery) })] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery Parameter { get => this._parameter; set => this._parameter = value; } /// /// When specified, forces the cmdlet return a 'bool' given that there isn't a return type by default. @@ -150,12 +150,12 @@ public partial class NewAzServiceBusGeoDRConfiguration_CreateViaIdentity : globa /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -419,12 +419,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -436,7 +436,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusNamespaceAuthorizationRule_CreateExpanded.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusNamespaceAuthorizationRule_CreateExpanded.cs index a96667cf9182..848f6424dd85 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusNamespaceAuthorizationRule_CreateExpanded.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusNamespaceAuthorizationRule_CreateExpanded.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzServiceBusNamespaceAuthorizationRule_CreateExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Creates or updates an authorization rule for a namespace.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class NewAzServiceBusNamespaceAuthorizationRule_CreateExpanded : global::System.Management.Automation.PSCmdlet, @@ -35,7 +35,7 @@ public partial class NewAzServiceBusNamespaceAuthorizationRule_CreateExpanded : private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); /// Description of a namespace authorization rule. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbAuthorizationRule(); + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbAuthorizationRule(); /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] @@ -191,12 +191,12 @@ public partial class NewAzServiceBusNamespaceAuthorizationRule_CreateExpanded : /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -412,12 +412,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -429,7 +429,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusNamespaceAuthorizationRule_CreateViaIdentity.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusNamespaceAuthorizationRule_CreateViaIdentity.cs index 023518b7ba35..ba1e3c16a722 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusNamespaceAuthorizationRule_CreateViaIdentity.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusNamespaceAuthorizationRule_CreateViaIdentity.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzServiceBusNamespaceAuthorizationRule_CreateViaIdentity", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Creates or updates an authorization rule for a namespace.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class NewAzServiceBusNamespaceAuthorizationRule_CreateViaIdentity : global::System.Management.Automation.PSCmdlet, @@ -83,7 +83,7 @@ public partial class NewAzServiceBusNamespaceAuthorizationRule_CreateViaIdentity global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener.Token => _cancellationTokenSource.Token; /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule _parameter; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule _parameter; /// Description of a namespace authorization rule. [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Description of a namespace authorization rule.", ValueFromPipeline = true)] @@ -92,8 +92,8 @@ public partial class NewAzServiceBusNamespaceAuthorizationRule_CreateViaIdentity ReadOnly = false, Description = @"Description of a namespace authorization rule.", SerializedName = @"parameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule) })] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule Parameter { get => this._parameter; set => this._parameter = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule) })] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule Parameter { get => this._parameter; set => this._parameter = value; } /// /// The instance of the that the remote call will use. @@ -133,12 +133,12 @@ public partial class NewAzServiceBusNamespaceAuthorizationRule_CreateViaIdentity /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -378,12 +378,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -395,7 +395,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusNamespaceKey_Regenerate.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusNamespaceKey_Regenerate.cs index 90e307bb6da1..623c7b0ca140 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusNamespaceKey_Regenerate.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusNamespaceKey_Regenerate.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzServiceBusNamespaceKey_Regenerate", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Regenerates the primary or secondary connection strings for the namespace.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class NewAzServiceBusNamespaceKey_Regenerate : global::System.Management.Automation.PSCmdlet, @@ -103,7 +103,7 @@ public partial class NewAzServiceBusNamespaceKey_Regenerate : global::System.Man public string NamespaceName { get => this._namespaceName; set => this._namespaceName = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParameters _parameter; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParameters _parameter; /// /// Parameters supplied to the Regenerate Authorization Rule operation, specifies which key needs to be reset. @@ -114,8 +114,8 @@ public partial class NewAzServiceBusNamespaceKey_Regenerate : global::System.Man ReadOnly = false, Description = @"Parameters supplied to the Regenerate Authorization Rule operation, specifies which key needs to be reset.", SerializedName = @"parameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParameters) })] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParameters Parameter { get => this._parameter; set => this._parameter = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParameters) })] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParameters Parameter { get => this._parameter; set => this._parameter = value; } /// /// The instance of the that the remote call will use. @@ -190,12 +190,12 @@ public partial class NewAzServiceBusNamespaceKey_Regenerate : global::System.Man /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -411,12 +411,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -428,7 +428,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusNamespaceV2_CreateExpanded.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusNamespaceV2_CreateExpanded.cs index 30c0982dff7e..4cac98b73087 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusNamespaceV2_CreateExpanded.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusNamespaceV2_CreateExpanded.cs @@ -17,7 +17,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzServiceBusNamespaceV2_CreateExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Creates or updates a service namespace. Once created, this namespace's resource manifest is immutable. This operation is idempotent.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class NewAzServiceBusNamespaceV2_CreateExpanded : global::System.Management.Automation.PSCmdlet, @@ -38,7 +38,7 @@ public partial class NewAzServiceBusNamespaceV2_CreateExpanded : global::System. private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); /// Description of a namespace resource. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbNamespace(); + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbNamespace(); /// Alternate name for namespace [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Alternate name for namespace")] @@ -132,8 +132,8 @@ public partial class NewAzServiceBusNamespaceV2_CreateExpanded : global::System. ReadOnly = false, Description = @"Properties of KeyVault", SerializedName = @"keyVaultProperties", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties) })] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties[] KeyVaultProperty { get => _parametersBody.KeyVaultProperty ?? null /* arrayOf */; set => _parametersBody.KeyVaultProperty = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties) })] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties[] KeyVaultProperty { get => _parametersBody.KeyVaultProperty ?? null /* arrayOf */; set => _parametersBody.KeyVaultProperty = value; } /// The Geo-location where the resource lives [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The Geo-location where the resource lives")] @@ -194,6 +194,20 @@ public partial class NewAzServiceBusNamespaceV2_CreateExpanded : global::System. /// private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.HttpPipeline Pipeline { get; set; } + /// + /// The number of partitions of a Service Bus namespace. This property is only applicable to Premium SKU namespaces. The default + /// value is 1 and possible values are 1, 2 and 4 + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The number of partitions of a Service Bus namespace. This property is only applicable to Premium SKU namespaces. The default value is 1 and possible values are 1, 2 and 4")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The number of partitions of a Service Bus namespace. This property is only applicable to Premium SKU namespaces. The default value is 1 and possible values are 1, 2 and 4", + SerializedName = @"premiumMessagingPartitions", + PossibleTypes = new [] { typeof(int) })] + public int PremiumMessagingPartition { get => _parametersBody.PremiumMessagingPartition ?? default(int); set => _parametersBody.PremiumMessagingPartition = value; } + /// List of private endpoint connections. [global::System.Management.Automation.AllowEmptyCollection] [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "List of private endpoint connections.")] @@ -203,8 +217,8 @@ public partial class NewAzServiceBusNamespaceV2_CreateExpanded : global::System. ReadOnly = false, Description = @"List of private endpoint connections.", SerializedName = @"privateEndpointConnections", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection) })] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection[] PrivateEndpointConnection { get => _parametersBody.PrivateEndpointConnection ?? null /* arrayOf */; set => _parametersBody.PrivateEndpointConnection = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection) })] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection[] PrivateEndpointConnection { get => _parametersBody.PrivateEndpointConnection ?? null /* arrayOf */; set => _parametersBody.PrivateEndpointConnection = value; } /// The URI for the proxy server to use [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] @@ -262,14 +276,16 @@ public partial class NewAzServiceBusNamespaceV2_CreateExpanded : global::System. public string ResourceGroupName { get => this._resourceGroupName; set => this._resourceGroupName = value; } /// - /// The specified messaging units for the tier. For Premium tier, capacity are 1,2 and 4. + /// Messaging units for your service bus premium namespace. Valid capacities are {1, 2, 4, 8, 16} multiples of your properties.premiumMessagingPartitions + /// setting. For example, If properties.premiumMessagingPartitions is 1 then possible capacity values are 1, 2, 4, 8, and + /// 16. If properties.premiumMessagingPartitions is 4 then possible capacity values are 4, 8, 16, 32 and 64 /// - [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The specified messaging units for the tier. For Premium tier, capacity are 1,2 and 4.")] + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Messaging units for your service bus premium namespace. Valid capacities are {1, 2, 4, 8, 16} multiples of your properties.premiumMessagingPartitions setting. For example, If properties.premiumMessagingPartitions is 1 then possible capacity values are 1, 2, 4, 8, and 16. If properties.premiumMessagingPartitions is 4 then possible capacity values are 4, 8, 16, 32 and 64")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.ParameterCategory.Body)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Info( Required = false, ReadOnly = false, - Description = @"The specified messaging units for the tier. For Premium tier, capacity are 1,2 and 4.", + Description = @"Messaging units for your service bus premium namespace. Valid capacities are {1, 2, 4, 8, 16} multiples of your properties.premiumMessagingPartitions setting. For example, If properties.premiumMessagingPartitions is 1 then possible capacity values are 1, 2, 4, 8, and 16. If properties.premiumMessagingPartitions is 4 then possible capacity values are 4, 8, 16, 32 and 64", SerializedName = @"capacity", PossibleTypes = new [] { typeof(int) })] public int SkuCapacity { get => _parametersBody.SkuCapacity ?? default(int); set => _parametersBody.SkuCapacity = value; } @@ -340,8 +356,8 @@ public partial class NewAzServiceBusNamespaceV2_CreateExpanded : global::System. ReadOnly = false, Description = @"Properties for User Assigned Identities", SerializedName = @"userAssignedIdentities", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityUserAssignedIdentities) })] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityUserAssignedIdentities UserAssignedIdentity { get => _parametersBody.UserAssignedIdentity ?? null /* object */; set => _parametersBody.UserAssignedIdentity = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityUserAssignedIdentities) })] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityUserAssignedIdentities UserAssignedIdentity { get => _parametersBody.UserAssignedIdentity ?? null /* object */; set => _parametersBody.UserAssignedIdentity = value; } /// /// Enabling this property creates a Premium Service Bus Namespace in regions supported availability zones. @@ -373,12 +389,12 @@ public partial class NewAzServiceBusNamespaceV2_CreateExpanded : global::System. /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -648,12 +664,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -665,7 +681,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusNamespaceV2_CreateViaIdentity.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusNamespaceV2_CreateViaIdentity.cs index 49af8837a4a4..38da599716eb 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusNamespaceV2_CreateViaIdentity.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusNamespaceV2_CreateViaIdentity.cs @@ -17,7 +17,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzServiceBusNamespaceV2_CreateViaIdentity", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Creates or updates a service namespace. Once created, this namespace's resource manifest is immutable. This operation is idempotent.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class NewAzServiceBusNamespaceV2_CreateViaIdentity : global::System.Management.Automation.PSCmdlet, @@ -99,7 +99,7 @@ public partial class NewAzServiceBusNamespaceV2_CreateViaIdentity : global::Syst public global::System.Management.Automation.SwitchParameter NoWait { get; set; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace _parameter; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace _parameter; /// Description of a namespace resource. [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Description of a namespace resource.", ValueFromPipeline = true)] @@ -108,8 +108,8 @@ public partial class NewAzServiceBusNamespaceV2_CreateViaIdentity : global::Syst ReadOnly = false, Description = @"Description of a namespace resource.", SerializedName = @"parameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace) })] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace Parameter { get => this._parameter; set => this._parameter = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace) })] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace Parameter { get => this._parameter; set => this._parameter = value; } /// /// The instance of the that the remote call will use. @@ -149,12 +149,12 @@ public partial class NewAzServiceBusNamespaceV2_CreateViaIdentity : global::Syst /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -441,12 +441,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -458,7 +458,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusNetworkRuleSet_CreateExpanded.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusNetworkRuleSet_CreateExpanded.cs index e2d511da2810..2fce1d89340f 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusNetworkRuleSet_CreateExpanded.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusNetworkRuleSet_CreateExpanded.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzServiceBusNetworkRuleSet_CreateExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Create or update NetworkRuleSet for a Namespace.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class NewAzServiceBusNetworkRuleSet_CreateExpanded : global::System.Management.Automation.PSCmdlet, @@ -35,7 +35,7 @@ public partial class NewAzServiceBusNetworkRuleSet_CreateExpanded : global::Syst private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); /// Description of NetworkRuleSet resource. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.NetworkRuleSet(); + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.NetworkRuleSet(); /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] @@ -87,8 +87,8 @@ public partial class NewAzServiceBusNetworkRuleSet_CreateExpanded : global::Syst ReadOnly = false, Description = @"List of IpRules", SerializedName = @"ipRules", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRules) })] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRules[] IPRule { get => _parametersBody.IPRule ?? null /* arrayOf */; set => _parametersBody.IPRule = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRules) })] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRules[] IPRule { get => _parametersBody.IPRule ?? null /* arrayOf */; set => _parametersBody.IPRule = value; } /// Accessor for our copy of the InvocationInfo. public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } @@ -205,8 +205,8 @@ public partial class NewAzServiceBusNetworkRuleSet_CreateExpanded : global::Syst ReadOnly = false, Description = @"List VirtualNetwork Rules", SerializedName = @"virtualNetworkRules", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRules) })] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRules[] VirtualNetworkRule { get => _parametersBody.VirtualNetworkRule ?? null /* arrayOf */; set => _parametersBody.VirtualNetworkRule = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRules) })] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRules[] VirtualNetworkRule { get => _parametersBody.VirtualNetworkRule ?? null /* arrayOf */; set => _parametersBody.VirtualNetworkRule = value; } /// /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what @@ -225,12 +225,12 @@ public partial class NewAzServiceBusNetworkRuleSet_CreateExpanded : global::Syst /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -446,12 +446,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -463,7 +463,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusNetworkRuleSet_CreateViaIdentity.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusNetworkRuleSet_CreateViaIdentity.cs index 43878d60fb86..7b60130d94f6 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusNetworkRuleSet_CreateViaIdentity.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusNetworkRuleSet_CreateViaIdentity.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzServiceBusNetworkRuleSet_CreateViaIdentity", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Create or update NetworkRuleSet for a Namespace.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class NewAzServiceBusNetworkRuleSet_CreateViaIdentity : global::System.Management.Automation.PSCmdlet, @@ -83,7 +83,7 @@ public partial class NewAzServiceBusNetworkRuleSet_CreateViaIdentity : global::S global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener.Token => _cancellationTokenSource.Token; /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet _parameter; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet _parameter; /// Description of NetworkRuleSet resource. [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Description of NetworkRuleSet resource.", ValueFromPipeline = true)] @@ -92,8 +92,8 @@ public partial class NewAzServiceBusNetworkRuleSet_CreateViaIdentity : global::S ReadOnly = false, Description = @"Description of NetworkRuleSet resource.", SerializedName = @"parameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet) })] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet Parameter { get => this._parameter; set => this._parameter = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet) })] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet Parameter { get => this._parameter; set => this._parameter = value; } /// /// The instance of the that the remote call will use. @@ -133,12 +133,12 @@ public partial class NewAzServiceBusNetworkRuleSet_CreateViaIdentity : global::S /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -374,12 +374,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -391,7 +391,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusPrivateEndpointConnection_CreateExpanded.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusPrivateEndpointConnection_CreateExpanded.cs index 1ba557dd1653..6dd0ea012cdb 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusPrivateEndpointConnection_CreateExpanded.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusPrivateEndpointConnection_CreateExpanded.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzServiceBusPrivateEndpointConnection_CreateExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Creates or updates PrivateEndpointConnections of service namespace.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class NewAzServiceBusPrivateEndpointConnection_CreateExpanded : global::System.Management.Automation.PSCmdlet, @@ -35,7 +35,7 @@ public partial class NewAzServiceBusPrivateEndpointConnection_CreateExpanded : g private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); /// Properties of the PrivateEndpointConnection. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.PrivateEndpointConnection(); + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.PrivateEndpointConnection(); /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] @@ -213,24 +213,24 @@ public partial class NewAzServiceBusPrivateEndpointConnection_CreateExpanded : g /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection /// from the remote call /// /// Determines if the rest of the onAccepted method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnAccepted(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnAccepted(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnCreated will be called before the regular onCreated has been processed, allowing customization of what /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection /// from the remote call /// /// Determines if the rest of the onCreated method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnCreated(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnCreated(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what @@ -249,12 +249,12 @@ public partial class NewAzServiceBusPrivateEndpointConnection_CreateExpanded : g /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -428,12 +428,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 202 (Accepted). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onAccepted(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onAccepted(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -445,19 +445,19 @@ protected override void StopProcessing() return ; } // onAccepted - response for 202 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection WriteObject((await response)); } } /// a delegate that is called when the remote service returns 201 (Created). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onCreated(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onCreated(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -469,7 +469,7 @@ protected override void StopProcessing() return ; } // onCreated - response for 201 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection WriteObject((await response)); } } @@ -518,12 +518,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -535,7 +535,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusPrivateEndpointConnection_CreateViaIdentity.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusPrivateEndpointConnection_CreateViaIdentity.cs index df66cbcb6848..6f6c7e99d751 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusPrivateEndpointConnection_CreateViaIdentity.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusPrivateEndpointConnection_CreateViaIdentity.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzServiceBusPrivateEndpointConnection_CreateViaIdentity", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Creates or updates PrivateEndpointConnections of service namespace.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class NewAzServiceBusPrivateEndpointConnection_CreateViaIdentity : global::System.Management.Automation.PSCmdlet, @@ -83,7 +83,7 @@ public partial class NewAzServiceBusPrivateEndpointConnection_CreateViaIdentity global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener.Token => _cancellationTokenSource.Token; /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection _parameter; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection _parameter; /// Properties of the PrivateEndpointConnection. [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Properties of the PrivateEndpointConnection.", ValueFromPipeline = true)] @@ -92,8 +92,8 @@ public partial class NewAzServiceBusPrivateEndpointConnection_CreateViaIdentity ReadOnly = false, Description = @"Properties of the PrivateEndpointConnection.", SerializedName = @"parameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection) })] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection Parameter { get => this._parameter; set => this._parameter = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection) })] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection Parameter { get => this._parameter; set => this._parameter = value; } /// /// The instance of the that the remote call will use. @@ -121,24 +121,24 @@ public partial class NewAzServiceBusPrivateEndpointConnection_CreateViaIdentity /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection /// from the remote call /// /// Determines if the rest of the onAccepted method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnAccepted(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnAccepted(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnCreated will be called before the regular onCreated has been processed, allowing customization of what /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection /// from the remote call /// /// Determines if the rest of the onCreated method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnCreated(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnCreated(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what @@ -157,12 +157,12 @@ public partial class NewAzServiceBusPrivateEndpointConnection_CreateViaIdentity /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -360,12 +360,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 202 (Accepted). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onAccepted(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onAccepted(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -377,19 +377,19 @@ protected override void StopProcessing() return ; } // onAccepted - response for 202 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection WriteObject((await response)); } } /// a delegate that is called when the remote service returns 201 (Created). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onCreated(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onCreated(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -401,7 +401,7 @@ protected override void StopProcessing() return ; } // onCreated - response for 201 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection WriteObject((await response)); } } @@ -450,12 +450,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -467,7 +467,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusQueueAuthorizationRule_CreateExpanded.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusQueueAuthorizationRule_CreateExpanded.cs index 46412c8c663b..367c9c7a6fc9 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusQueueAuthorizationRule_CreateExpanded.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusQueueAuthorizationRule_CreateExpanded.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzServiceBusQueueAuthorizationRule_CreateExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Creates an authorization rule for a queue.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class NewAzServiceBusQueueAuthorizationRule_CreateExpanded : global::System.Management.Automation.PSCmdlet, @@ -35,7 +35,7 @@ public partial class NewAzServiceBusQueueAuthorizationRule_CreateExpanded : glob private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); /// Description of a namespace authorization rule. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbAuthorizationRule(); + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbAuthorizationRule(); /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] @@ -205,12 +205,12 @@ public partial class NewAzServiceBusQueueAuthorizationRule_CreateExpanded : glob /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -426,12 +426,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -443,7 +443,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusQueueAuthorizationRule_CreateViaIdentity.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusQueueAuthorizationRule_CreateViaIdentity.cs index 96a46af1a8c3..5e1b8a6403b6 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusQueueAuthorizationRule_CreateViaIdentity.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusQueueAuthorizationRule_CreateViaIdentity.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzServiceBusQueueAuthorizationRule_CreateViaIdentity", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Creates an authorization rule for a queue.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class NewAzServiceBusQueueAuthorizationRule_CreateViaIdentity : global::System.Management.Automation.PSCmdlet, @@ -83,7 +83,7 @@ public partial class NewAzServiceBusQueueAuthorizationRule_CreateViaIdentity : g global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener.Token => _cancellationTokenSource.Token; /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule _parameter; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule _parameter; /// Description of a namespace authorization rule. [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Description of a namespace authorization rule.", ValueFromPipeline = true)] @@ -92,8 +92,8 @@ public partial class NewAzServiceBusQueueAuthorizationRule_CreateViaIdentity : g ReadOnly = false, Description = @"Description of a namespace authorization rule.", SerializedName = @"parameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule) })] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule Parameter { get => this._parameter; set => this._parameter = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule) })] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule Parameter { get => this._parameter; set => this._parameter = value; } /// /// The instance of the that the remote call will use. @@ -133,12 +133,12 @@ public partial class NewAzServiceBusQueueAuthorizationRule_CreateViaIdentity : g /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -382,12 +382,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -399,7 +399,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusQueueKey_Regenerate.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusQueueKey_Regenerate.cs index f2683f60282a..033184478dd8 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusQueueKey_Regenerate.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusQueueKey_Regenerate.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzServiceBusQueueKey_Regenerate", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Regenerates the primary or secondary connection strings to the queue.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class NewAzServiceBusQueueKey_Regenerate : global::System.Management.Automation.PSCmdlet, @@ -103,7 +103,7 @@ public partial class NewAzServiceBusQueueKey_Regenerate : global::System.Managem public string NamespaceName { get => this._namespaceName; set => this._namespaceName = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParameters _parameter; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParameters _parameter; /// /// Parameters supplied to the Regenerate Authorization Rule operation, specifies which key needs to be reset. @@ -114,8 +114,8 @@ public partial class NewAzServiceBusQueueKey_Regenerate : global::System.Managem ReadOnly = false, Description = @"Parameters supplied to the Regenerate Authorization Rule operation, specifies which key needs to be reset.", SerializedName = @"parameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParameters) })] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParameters Parameter { get => this._parameter; set => this._parameter = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParameters) })] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParameters Parameter { get => this._parameter; set => this._parameter = value; } /// /// The instance of the that the remote call will use. @@ -204,12 +204,12 @@ public partial class NewAzServiceBusQueueKey_Regenerate : global::System.Managem /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -425,12 +425,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -442,7 +442,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusQueue_CreateExpanded.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusQueue_CreateExpanded.cs index 969c1da08fd2..5fa94f4e22d3 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusQueue_CreateExpanded.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusQueue_CreateExpanded.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}/queues/{queueName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzServiceBusQueue_CreateExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Creates or updates a Service Bus queue. This operation is idempotent.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class NewAzServiceBusQueue_CreateExpanded : global::System.Management.Automation.PSCmdlet, @@ -34,7 +34,7 @@ public partial class NewAzServiceBusQueue_CreateExpanded : global::System.Manage private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); /// Description of queue Resource. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbQueue(); + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbQueue(); /// /// Idle interval after which the queue is automatically deleted. The minimum duration is 5 minutes. @@ -380,12 +380,12 @@ public partial class NewAzServiceBusQueue_CreateExpanded : global::System.Manage /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -601,12 +601,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -618,7 +618,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusQueue_CreateViaIdentity.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusQueue_CreateViaIdentity.cs index 7d2b831d40e0..3f50b05e1ae4 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusQueue_CreateViaIdentity.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusQueue_CreateViaIdentity.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzServiceBusQueue_CreateViaIdentity", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Creates or updates a Service Bus queue. This operation is idempotent.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class NewAzServiceBusQueue_CreateViaIdentity : global::System.Management.Automation.PSCmdlet, @@ -83,7 +83,7 @@ public partial class NewAzServiceBusQueue_CreateViaIdentity : global::System.Man global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener.Token => _cancellationTokenSource.Token; /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue _parameter; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue _parameter; /// Description of queue Resource. [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Description of queue Resource.", ValueFromPipeline = true)] @@ -92,8 +92,8 @@ public partial class NewAzServiceBusQueue_CreateViaIdentity : global::System.Man ReadOnly = false, Description = @"Description of queue Resource.", SerializedName = @"parameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue) })] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue Parameter { get => this._parameter; set => this._parameter = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue) })] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue Parameter { get => this._parameter; set => this._parameter = value; } /// /// The instance of the that the remote call will use. @@ -133,12 +133,12 @@ public partial class NewAzServiceBusQueue_CreateViaIdentity : global::System.Man /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -378,12 +378,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -395,7 +395,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusRule_CreateExpanded.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusRule_CreateExpanded.cs index fd0e1feae7ae..1015cb0bfd69 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusRule_CreateExpanded.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusRule_CreateExpanded.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}/topics/{topicName}/subscriptions/{subscriptionName}/rules/{ruleName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzServiceBusRule_CreateExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Creates a new rule and updates an existing rule")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class NewAzServiceBusRule_CreateExpanded : global::System.Management.Automation.PSCmdlet, @@ -34,7 +34,7 @@ public partial class NewAzServiceBusRule_CreateExpanded : global::System.Managem private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); /// Description of Rule Resource. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.Rule(); + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.Rule(); /// /// This property is reserved for future use. An integer value showing the compatibility level, currently hard-coded to 20. @@ -100,8 +100,8 @@ public partial class NewAzServiceBusRule_CreateExpanded : global::System.Managem ReadOnly = false, Description = @"dictionary object for custom filters", SerializedName = @"properties", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterProperties) })] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICorrelationFilterProperties CorrelationFilterProperty { get => _parametersBody.CorrelationFilterProperty ?? null /* object */; set => _parametersBody.CorrelationFilterProperty = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterProperties) })] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICorrelationFilterProperties CorrelationFilterProperty { get => _parametersBody.CorrelationFilterProperty ?? null /* object */; set => _parametersBody.CorrelationFilterProperty = value; } /// Value that indicates whether the rule action requires preprocessing. [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Value that indicates whether the rule action requires preprocessing.")] @@ -401,12 +401,12 @@ public partial class NewAzServiceBusRule_CreateExpanded : global::System.Managem /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -622,12 +622,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -639,7 +639,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusRule_CreateViaIdentity.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusRule_CreateViaIdentity.cs index ce311bde5b7a..1234fd0d9371 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusRule_CreateViaIdentity.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusRule_CreateViaIdentity.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzServiceBusRule_CreateViaIdentity", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Creates a new rule and updates an existing rule")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class NewAzServiceBusRule_CreateViaIdentity : global::System.Management.Automation.PSCmdlet, @@ -83,7 +83,7 @@ public partial class NewAzServiceBusRule_CreateViaIdentity : global::System.Mana global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener.Token => _cancellationTokenSource.Token; /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule _parameter; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule _parameter; /// Description of Rule Resource. [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Description of Rule Resource.", ValueFromPipeline = true)] @@ -92,8 +92,8 @@ public partial class NewAzServiceBusRule_CreateViaIdentity : global::System.Mana ReadOnly = false, Description = @"Description of Rule Resource.", SerializedName = @"parameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule) })] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule Parameter { get => this._parameter; set => this._parameter = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule) })] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule Parameter { get => this._parameter; set => this._parameter = value; } /// /// The instance of the that the remote call will use. @@ -133,12 +133,12 @@ public partial class NewAzServiceBusRule_CreateViaIdentity : global::System.Mana /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -386,12 +386,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -403,7 +403,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusSubscription_CreateExpanded.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusSubscription_CreateExpanded.cs index 617598e346fe..d91027f4e9e9 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusSubscription_CreateExpanded.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusSubscription_CreateExpanded.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}/topics/{topicName}/subscriptions/{subscriptionName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzServiceBusSubscription_CreateExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Creates a topic subscription.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class NewAzServiceBusSubscription_CreateExpanded : global::System.Management.Automation.PSCmdlet, @@ -34,7 +34,7 @@ public partial class NewAzServiceBusSubscription_CreateExpanded : global::System private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); /// Description of subscription resource. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbSubscription(); + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbSubscription(); /// /// Idle interval after which the queue is automatically deleted. The minimum duration is 5 minutes. @@ -389,12 +389,12 @@ public partial class NewAzServiceBusSubscription_CreateExpanded : global::System /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -610,12 +610,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -627,7 +627,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusSubscription_CreateViaIdentity.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusSubscription_CreateViaIdentity.cs index d7bfdc032448..43b19cf1ec60 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusSubscription_CreateViaIdentity.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusSubscription_CreateViaIdentity.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzServiceBusSubscription_CreateViaIdentity", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Creates a topic subscription.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class NewAzServiceBusSubscription_CreateViaIdentity : global::System.Management.Automation.PSCmdlet, @@ -83,7 +83,7 @@ public partial class NewAzServiceBusSubscription_CreateViaIdentity : global::Sys global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener.Token => _cancellationTokenSource.Token; /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription _parameter; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription _parameter; /// Description of subscription resource. [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Description of subscription resource.", ValueFromPipeline = true)] @@ -92,8 +92,8 @@ public partial class NewAzServiceBusSubscription_CreateViaIdentity : global::Sys ReadOnly = false, Description = @"Description of subscription resource.", SerializedName = @"parameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription) })] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription Parameter { get => this._parameter; set => this._parameter = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription) })] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription Parameter { get => this._parameter; set => this._parameter = value; } /// /// The instance of the that the remote call will use. @@ -133,12 +133,12 @@ public partial class NewAzServiceBusSubscription_CreateViaIdentity : global::Sys /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -382,12 +382,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -399,7 +399,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusTopicAuthorizationRule_CreateExpanded.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusTopicAuthorizationRule_CreateExpanded.cs index a1a3987a1e9e..e415a9b27ce3 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusTopicAuthorizationRule_CreateExpanded.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusTopicAuthorizationRule_CreateExpanded.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzServiceBusTopicAuthorizationRule_CreateExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Creates an authorization rule for the specified topic.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class NewAzServiceBusTopicAuthorizationRule_CreateExpanded : global::System.Management.Automation.PSCmdlet, @@ -35,7 +35,7 @@ public partial class NewAzServiceBusTopicAuthorizationRule_CreateExpanded : glob private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); /// Description of a namespace authorization rule. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbAuthorizationRule(); + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbAuthorizationRule(); /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] @@ -205,12 +205,12 @@ public partial class NewAzServiceBusTopicAuthorizationRule_CreateExpanded : glob /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -426,12 +426,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -443,7 +443,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusTopicAuthorizationRule_CreateViaIdentity.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusTopicAuthorizationRule_CreateViaIdentity.cs index 1a5f629d49bb..5d41c9328b9d 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusTopicAuthorizationRule_CreateViaIdentity.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusTopicAuthorizationRule_CreateViaIdentity.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzServiceBusTopicAuthorizationRule_CreateViaIdentity", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Creates an authorization rule for the specified topic.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class NewAzServiceBusTopicAuthorizationRule_CreateViaIdentity : global::System.Management.Automation.PSCmdlet, @@ -83,7 +83,7 @@ public partial class NewAzServiceBusTopicAuthorizationRule_CreateViaIdentity : g global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener.Token => _cancellationTokenSource.Token; /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule _parameter; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule _parameter; /// Description of a namespace authorization rule. [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Description of a namespace authorization rule.", ValueFromPipeline = true)] @@ -92,8 +92,8 @@ public partial class NewAzServiceBusTopicAuthorizationRule_CreateViaIdentity : g ReadOnly = false, Description = @"Description of a namespace authorization rule.", SerializedName = @"parameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule) })] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule Parameter { get => this._parameter; set => this._parameter = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule) })] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule Parameter { get => this._parameter; set => this._parameter = value; } /// /// The instance of the that the remote call will use. @@ -133,12 +133,12 @@ public partial class NewAzServiceBusTopicAuthorizationRule_CreateViaIdentity : g /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -382,12 +382,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -399,7 +399,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusTopicKey_Regenerate.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusTopicKey_Regenerate.cs index 2a73dc63c1e6..be4c14a7c1ab 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusTopicKey_Regenerate.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusTopicKey_Regenerate.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzServiceBusTopicKey_Regenerate", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Regenerates primary or secondary connection strings for the topic.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class NewAzServiceBusTopicKey_Regenerate : global::System.Management.Automation.PSCmdlet, @@ -103,7 +103,7 @@ public partial class NewAzServiceBusTopicKey_Regenerate : global::System.Managem public string NamespaceName { get => this._namespaceName; set => this._namespaceName = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParameters _parameter; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParameters _parameter; /// /// Parameters supplied to the Regenerate Authorization Rule operation, specifies which key needs to be reset. @@ -114,8 +114,8 @@ public partial class NewAzServiceBusTopicKey_Regenerate : global::System.Managem ReadOnly = false, Description = @"Parameters supplied to the Regenerate Authorization Rule operation, specifies which key needs to be reset.", SerializedName = @"parameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParameters) })] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParameters Parameter { get => this._parameter; set => this._parameter = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParameters) })] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParameters Parameter { get => this._parameter; set => this._parameter = value; } /// /// The instance of the that the remote call will use. @@ -204,12 +204,12 @@ public partial class NewAzServiceBusTopicKey_Regenerate : global::System.Managem /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -425,12 +425,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -442,7 +442,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusTopic_CreateExpanded.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusTopic_CreateExpanded.cs index 17eda0e03877..a06f05ebc99a 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusTopic_CreateExpanded.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusTopic_CreateExpanded.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [OpenAPI] CreateOrUpdate=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}/topics/{topicName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzServiceBusTopic_CreateExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Creates a topic in the specified namespace.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class NewAzServiceBusTopic_CreateExpanded : global::System.Management.Automation.PSCmdlet, @@ -34,7 +34,7 @@ public partial class NewAzServiceBusTopic_CreateExpanded : global::System.Manage private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); /// Description of topic resource. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.SbTopic(); + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.SbTopic(); /// /// Idle interval after which the queue is automatically deleted. The minimum duration is 5 minutes. @@ -317,12 +317,12 @@ public partial class NewAzServiceBusTopic_CreateExpanded : global::System.Manage /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -538,12 +538,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -555,7 +555,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusTopic_CreateViaIdentity.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusTopic_CreateViaIdentity.cs index de7970847636..3aef8045df45 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusTopic_CreateViaIdentity.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/NewAzServiceBusTopic_CreateViaIdentity.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzServiceBusTopic_CreateViaIdentity", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Creates a topic in the specified namespace.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class NewAzServiceBusTopic_CreateViaIdentity : global::System.Management.Automation.PSCmdlet, @@ -83,7 +83,7 @@ public partial class NewAzServiceBusTopic_CreateViaIdentity : global::System.Man global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener.Token => _cancellationTokenSource.Token; /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic _parameter; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic _parameter; /// Description of topic resource. [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Description of topic resource.", ValueFromPipeline = true)] @@ -92,8 +92,8 @@ public partial class NewAzServiceBusTopic_CreateViaIdentity : global::System.Man ReadOnly = false, Description = @"Description of topic resource.", SerializedName = @"parameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic) })] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic Parameter { get => this._parameter; set => this._parameter = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic) })] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic Parameter { get => this._parameter; set => this._parameter = value; } /// /// The instance of the that the remote call will use. @@ -133,12 +133,12 @@ public partial class NewAzServiceBusTopic_CreateViaIdentity : global::System.Man /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -378,12 +378,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -395,7 +395,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/StartAzServiceBusMigration_CreateExpanded.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/StartAzServiceBusMigration_CreateExpanded.cs index 03b852e26114..e7d26cfd2b8a 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/StartAzServiceBusMigration_CreateExpanded.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/StartAzServiceBusMigration_CreateExpanded.cs @@ -15,7 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [OpenAPI] CreateAndStartMigration=>PUT:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}/migrationConfigurations/{configName}" /// [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsLifecycle.Start, @"AzServiceBusMigration_CreateExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Creates Migration configuration and starts migration of entities from Standard to Premium namespace")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class StartAzServiceBusMigration_CreateExpanded : global::System.Management.Automation.PSCmdlet, @@ -36,7 +36,7 @@ public partial class StartAzServiceBusMigration_CreateExpanded : global::System. private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); /// Single item in List or Get Migration Config operation - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.MigrationConfigProperties(); + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.MigrationConfigProperties(); /// when specified, runs this cmdlet as a PowerShell job [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] @@ -202,12 +202,12 @@ public partial class StartAzServiceBusMigration_CreateExpanded : global::System. /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -477,12 +477,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -494,7 +494,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/StartAzServiceBusMigration_CreateViaIdentity.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/StartAzServiceBusMigration_CreateViaIdentity.cs index 7e7819746aff..b245a75a365b 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/StartAzServiceBusMigration_CreateViaIdentity.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/StartAzServiceBusMigration_CreateViaIdentity.cs @@ -16,7 +16,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsLifecycle.Start, @"AzServiceBusMigration_CreateViaIdentity", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Creates Migration configuration and starts migration of entities from Standard to Premium namespace")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class StartAzServiceBusMigration_CreateViaIdentity : global::System.Management.Automation.PSCmdlet, @@ -98,7 +98,7 @@ public partial class StartAzServiceBusMigration_CreateViaIdentity : global::Syst public global::System.Management.Automation.SwitchParameter NoWait { get; set; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties _parameter; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties _parameter; /// Single item in List or Get Migration Config operation [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Single item in List or Get Migration Config operation", ValueFromPipeline = true)] @@ -107,8 +107,8 @@ public partial class StartAzServiceBusMigration_CreateViaIdentity : global::Syst ReadOnly = false, Description = @"Single item in List or Get Migration Config operation", SerializedName = @"parameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties) })] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties Parameter { get => this._parameter; set => this._parameter = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties) })] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties Parameter { get => this._parameter; set => this._parameter = value; } /// /// The instance of the that the remote call will use. @@ -148,12 +148,12 @@ public partial class StartAzServiceBusMigration_CreateViaIdentity : global::Syst /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -440,12 +440,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -457,7 +457,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/TestAzServiceBusDisasterRecoveryConfigNameAvailability_Check.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/TestAzServiceBusDisasterRecoveryConfigNameAvailability_Check.cs index 922605865ea6..d5a00d9e6cd0 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/TestAzServiceBusDisasterRecoveryConfigNameAvailability_Check.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/TestAzServiceBusDisasterRecoveryConfigNameAvailability_Check.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsDiagnostic.Test, @"AzServiceBusDisasterRecoveryConfigNameAvailability_Check", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Check the give namespace name availability.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class TestAzServiceBusDisasterRecoveryConfigNameAvailability_Check : global::System.Management.Automation.PSCmdlet, @@ -89,7 +89,7 @@ public partial class TestAzServiceBusDisasterRecoveryConfigNameAvailability_Chec public string NamespaceName { get => this._namespaceName; set => this._namespaceName = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailability _parameter; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailability _parameter; /// Description of a Check Name availability request properties. [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Description of a Check Name availability request properties.", ValueFromPipeline = true)] @@ -98,8 +98,8 @@ public partial class TestAzServiceBusDisasterRecoveryConfigNameAvailability_Chec ReadOnly = false, Description = @"Description of a Check Name availability request properties.", SerializedName = @"parameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailability) })] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailability Parameter { get => this._parameter; set => this._parameter = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailability) })] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailability Parameter { get => this._parameter; set => this._parameter = value; } /// /// The instance of the that the remote call will use. @@ -174,12 +174,12 @@ public partial class TestAzServiceBusDisasterRecoveryConfigNameAvailability_Chec /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -395,12 +395,12 @@ public TestAzServiceBusDisasterRecoveryConfigNameAvailability_Check() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -412,7 +412,7 @@ public TestAzServiceBusDisasterRecoveryConfigNameAvailability_Check() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/TestAzServiceBusDisasterRecoveryConfigNameAvailability_CheckExpanded.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/TestAzServiceBusDisasterRecoveryConfigNameAvailability_CheckExpanded.cs index 68921cdfbab8..76c11d538024 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/TestAzServiceBusDisasterRecoveryConfigNameAvailability_CheckExpanded.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/TestAzServiceBusDisasterRecoveryConfigNameAvailability_CheckExpanded.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsDiagnostic.Test, @"AzServiceBusDisasterRecoveryConfigNameAvailability_CheckExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Check the give namespace name availability.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class TestAzServiceBusDisasterRecoveryConfigNameAvailability_CheckExpanded : global::System.Management.Automation.PSCmdlet, @@ -35,7 +35,7 @@ public partial class TestAzServiceBusDisasterRecoveryConfigNameAvailability_Chec private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); /// Description of a Check Name availability request properties. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailability _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.CheckNameAvailability(); + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailability _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.CheckNameAvailability(); /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] @@ -178,12 +178,12 @@ public partial class TestAzServiceBusDisasterRecoveryConfigNameAvailability_Chec /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -400,12 +400,12 @@ public TestAzServiceBusDisasterRecoveryConfigNameAvailability_CheckExpanded() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -417,7 +417,7 @@ public TestAzServiceBusDisasterRecoveryConfigNameAvailability_CheckExpanded() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/TestAzServiceBusDisasterRecoveryConfigNameAvailability_CheckViaIdentity.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/TestAzServiceBusDisasterRecoveryConfigNameAvailability_CheckViaIdentity.cs index 9b1e6d0f652d..45a17d15638c 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/TestAzServiceBusDisasterRecoveryConfigNameAvailability_CheckViaIdentity.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/TestAzServiceBusDisasterRecoveryConfigNameAvailability_CheckViaIdentity.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsDiagnostic.Test, @"AzServiceBusDisasterRecoveryConfigNameAvailability_CheckViaIdentity", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Check the give namespace name availability.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class TestAzServiceBusDisasterRecoveryConfigNameAvailability_CheckViaIdentity : global::System.Management.Automation.PSCmdlet, @@ -83,7 +83,7 @@ public partial class TestAzServiceBusDisasterRecoveryConfigNameAvailability_Chec global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener.Token => _cancellationTokenSource.Token; /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailability _parameter; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailability _parameter; /// Description of a Check Name availability request properties. [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Description of a Check Name availability request properties.", ValueFromPipeline = true)] @@ -92,8 +92,8 @@ public partial class TestAzServiceBusDisasterRecoveryConfigNameAvailability_Chec ReadOnly = false, Description = @"Description of a Check Name availability request properties.", SerializedName = @"parameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailability) })] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailability Parameter { get => this._parameter; set => this._parameter = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailability) })] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailability Parameter { get => this._parameter; set => this._parameter = value; } /// /// The instance of the that the remote call will use. @@ -133,12 +133,12 @@ public partial class TestAzServiceBusDisasterRecoveryConfigNameAvailability_Chec /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -375,12 +375,12 @@ public TestAzServiceBusDisasterRecoveryConfigNameAvailability_CheckViaIdentity() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -392,7 +392,7 @@ public TestAzServiceBusDisasterRecoveryConfigNameAvailability_CheckViaIdentity() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/TestAzServiceBusDisasterRecoveryConfigNameAvailability_CheckViaIdentityExpanded.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/TestAzServiceBusDisasterRecoveryConfigNameAvailability_CheckViaIdentityExpanded.cs index 7a889359cd72..e6d146e25a3b 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/TestAzServiceBusDisasterRecoveryConfigNameAvailability_CheckViaIdentityExpanded.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/TestAzServiceBusDisasterRecoveryConfigNameAvailability_CheckViaIdentityExpanded.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsDiagnostic.Test, @"AzServiceBusDisasterRecoveryConfigNameAvailability_CheckViaIdentityExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Check the give namespace name availability.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class TestAzServiceBusDisasterRecoveryConfigNameAvailability_CheckViaIdentityExpanded : global::System.Management.Automation.PSCmdlet, @@ -35,7 +35,7 @@ public partial class TestAzServiceBusDisasterRecoveryConfigNameAvailability_Chec private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); /// Description of a Check Name availability request properties. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailability _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.CheckNameAvailability(); + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailability _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.CheckNameAvailability(); /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] @@ -137,12 +137,12 @@ public partial class TestAzServiceBusDisasterRecoveryConfigNameAvailability_Chec /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -379,12 +379,12 @@ public TestAzServiceBusDisasterRecoveryConfigNameAvailability_CheckViaIdentityEx /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -396,7 +396,7 @@ public TestAzServiceBusDisasterRecoveryConfigNameAvailability_CheckViaIdentityEx return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/TestAzServiceBusNamespaceNameAvailability_Check.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/TestAzServiceBusNamespaceNameAvailability_Check.cs index b0617e5ac9b6..29c08b6a4f65 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/TestAzServiceBusNamespaceNameAvailability_Check.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/TestAzServiceBusNamespaceNameAvailability_Check.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsDiagnostic.Test, @"AzServiceBusNamespaceNameAvailability_Check", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Check the give namespace name availability.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class TestAzServiceBusNamespaceNameAvailability_Check : global::System.Management.Automation.PSCmdlet, @@ -75,7 +75,7 @@ public partial class TestAzServiceBusNamespaceNameAvailability_Check : global::S global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener.Token => _cancellationTokenSource.Token; /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailability _parameter; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailability _parameter; /// Description of a Check Name availability request properties. [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Description of a Check Name availability request properties.", ValueFromPipeline = true)] @@ -84,8 +84,8 @@ public partial class TestAzServiceBusNamespaceNameAvailability_Check : global::S ReadOnly = false, Description = @"Description of a Check Name availability request properties.", SerializedName = @"parameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailability) })] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailability Parameter { get => this._parameter; set => this._parameter = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailability) })] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailability Parameter { get => this._parameter; set => this._parameter = value; } /// /// The instance of the that the remote call will use. @@ -146,12 +146,12 @@ public partial class TestAzServiceBusNamespaceNameAvailability_Check : global::S /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -367,12 +367,12 @@ public TestAzServiceBusNamespaceNameAvailability_Check() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -384,7 +384,7 @@ public TestAzServiceBusNamespaceNameAvailability_Check() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/TestAzServiceBusNamespaceNameAvailability_CheckExpanded.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/TestAzServiceBusNamespaceNameAvailability_CheckExpanded.cs index 09ddc8b29acb..48ab9a125317 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/TestAzServiceBusNamespaceNameAvailability_CheckExpanded.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/TestAzServiceBusNamespaceNameAvailability_CheckExpanded.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsDiagnostic.Test, @"AzServiceBusNamespaceNameAvailability_CheckExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Check the give namespace name availability.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class TestAzServiceBusNamespaceNameAvailability_CheckExpanded : global::System.Management.Automation.PSCmdlet, @@ -35,7 +35,7 @@ public partial class TestAzServiceBusNamespaceNameAvailability_CheckExpanded : g private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); /// Description of a Check Name availability request properties. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailability _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.CheckNameAvailability(); + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailability _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.CheckNameAvailability(); /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] @@ -150,12 +150,12 @@ public partial class TestAzServiceBusNamespaceNameAvailability_CheckExpanded : g /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -371,12 +371,12 @@ public TestAzServiceBusNamespaceNameAvailability_CheckExpanded() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -388,7 +388,7 @@ public TestAzServiceBusNamespaceNameAvailability_CheckExpanded() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/TestAzServiceBusNamespaceNameAvailability_CheckViaIdentity.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/TestAzServiceBusNamespaceNameAvailability_CheckViaIdentity.cs index 043db15d27ca..1942827d67f7 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/TestAzServiceBusNamespaceNameAvailability_CheckViaIdentity.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/TestAzServiceBusNamespaceNameAvailability_CheckViaIdentity.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsDiagnostic.Test, @"AzServiceBusNamespaceNameAvailability_CheckViaIdentity", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Check the give namespace name availability.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class TestAzServiceBusNamespaceNameAvailability_CheckViaIdentity : global::System.Management.Automation.PSCmdlet, @@ -83,7 +83,7 @@ public partial class TestAzServiceBusNamespaceNameAvailability_CheckViaIdentity global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.IEventListener.Token => _cancellationTokenSource.Token; /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailability _parameter; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailability _parameter; /// Description of a Check Name availability request properties. [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Description of a Check Name availability request properties.", ValueFromPipeline = true)] @@ -92,8 +92,8 @@ public partial class TestAzServiceBusNamespaceNameAvailability_CheckViaIdentity ReadOnly = false, Description = @"Description of a Check Name availability request properties.", SerializedName = @"parameters", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailability) })] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailability Parameter { get => this._parameter; set => this._parameter = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailability) })] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailability Parameter { get => this._parameter; set => this._parameter = value; } /// /// The instance of the that the remote call will use. @@ -133,12 +133,12 @@ public partial class TestAzServiceBusNamespaceNameAvailability_CheckViaIdentity /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -366,12 +366,12 @@ public TestAzServiceBusNamespaceNameAvailability_CheckViaIdentity() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -383,7 +383,7 @@ public TestAzServiceBusNamespaceNameAvailability_CheckViaIdentity() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/TestAzServiceBusNamespaceNameAvailability_CheckViaIdentityExpanded.cs b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/TestAzServiceBusNamespaceNameAvailability_CheckViaIdentityExpanded.cs index ca1af0c210d9..1bc3be9697be 100644 --- a/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/TestAzServiceBusNamespaceNameAvailability_CheckViaIdentityExpanded.cs +++ b/src/ServiceBus/ServiceBus.Autorest/generated/cmdlets/TestAzServiceBusNamespaceNameAvailability_CheckViaIdentityExpanded.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsDiagnostic.Test, @"AzServiceBusNamespaceNameAvailability_CheckViaIdentityExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Description(@"Check the give namespace name availability.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Generated] public partial class TestAzServiceBusNamespaceNameAvailability_CheckViaIdentityExpanded : global::System.Management.Automation.PSCmdlet, @@ -35,7 +35,7 @@ public partial class TestAzServiceBusNamespaceNameAvailability_CheckViaIdentityE private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); /// Description of a Check Name availability request properties. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailability _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.CheckNameAvailability(); + private Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailability _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.CheckNameAvailability(); /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] @@ -137,12 +137,12 @@ public partial class TestAzServiceBusNamespaceNameAvailability_CheckViaIdentityE /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -371,12 +371,12 @@ public TestAzServiceBusNamespaceNameAvailability_CheckViaIdentityExpanded() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -388,7 +388,7 @@ public TestAzServiceBusNamespaceNameAvailability_CheckViaIdentityExpanded() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult WriteObject((await response)); } } diff --git a/src/ServiceBus/ServiceBus.Autorest/how-to.md b/src/ServiceBus/ServiceBus.Autorest/how-to.md index a926aaf7047b..6cb0e1edfd31 100644 --- a/src/ServiceBus/ServiceBus.Autorest/how-to.md +++ b/src/ServiceBus/ServiceBus.Autorest/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.ServiceBus` -To pack `Az.ServiceBus` 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.ServiceBus` 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.ServiceBus`. diff --git a/src/ServiceBus/ServiceBus.Autorest/internal/Get-AzServiceBusDisasterRecoveryConfigAuthorizationRule.ps1 b/src/ServiceBus/ServiceBus.Autorest/internal/Get-AzServiceBusDisasterRecoveryConfigAuthorizationRule.ps1 index fdeeb81a76f1..65dbe6d7f702 100644 --- a/src/ServiceBus/ServiceBus.Autorest/internal/Get-AzServiceBusDisasterRecoveryConfigAuthorizationRule.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/internal/Get-AzServiceBusDisasterRecoveryConfigAuthorizationRule.ps1 @@ -27,7 +27,7 @@ Gets an authorization rule for a namespace by rule name. .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule .Notes COMPLEX PARAMETER PROPERTIES @@ -50,7 +50,7 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.servicebus/get-azservicebusdisasterrecoveryconfigauthorizationrule #> function Get-AzServiceBusDisasterRecoveryConfigAuthorizationRule { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] diff --git a/src/ServiceBus/ServiceBus.Autorest/internal/Get-AzServiceBusDisasterRecoveryConfigKey.ps1 b/src/ServiceBus/ServiceBus.Autorest/internal/Get-AzServiceBusDisasterRecoveryConfigKey.ps1 index 9b8d7c48ce1b..059949c545ea 100644 --- a/src/ServiceBus/ServiceBus.Autorest/internal/Get-AzServiceBusDisasterRecoveryConfigKey.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/internal/Get-AzServiceBusDisasterRecoveryConfigKey.ps1 @@ -25,12 +25,12 @@ Gets the primary and secondary connection strings for the namespace. {{ Add code here }} .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys .Link https://learn.microsoft.com/powershell/module/az.servicebus/get-azservicebusdisasterrecoveryconfigkey #> function Get-AzServiceBusDisasterRecoveryConfigKey { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] diff --git a/src/ServiceBus/ServiceBus.Autorest/internal/Get-AzServiceBusNamespaceAuthorizationRule.ps1 b/src/ServiceBus/ServiceBus.Autorest/internal/Get-AzServiceBusNamespaceAuthorizationRule.ps1 index 725c7a0f2128..67e9dffb9803 100644 --- a/src/ServiceBus/ServiceBus.Autorest/internal/Get-AzServiceBusNamespaceAuthorizationRule.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/internal/Get-AzServiceBusNamespaceAuthorizationRule.ps1 @@ -27,7 +27,7 @@ Gets an authorization rule for a namespace by rule name. .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule .Notes COMPLEX PARAMETER PROPERTIES @@ -50,7 +50,7 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.servicebus/get-azservicebusnamespaceauthorizationrule #> function Get-AzServiceBusNamespaceAuthorizationRule { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] diff --git a/src/ServiceBus/ServiceBus.Autorest/internal/Get-AzServiceBusNamespaceKey.ps1 b/src/ServiceBus/ServiceBus.Autorest/internal/Get-AzServiceBusNamespaceKey.ps1 index 37aca3a1652c..596745d01049 100644 --- a/src/ServiceBus/ServiceBus.Autorest/internal/Get-AzServiceBusNamespaceKey.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/internal/Get-AzServiceBusNamespaceKey.ps1 @@ -25,12 +25,12 @@ Gets the primary and secondary connection strings for the namespace. {{ Add code here }} .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys .Link https://learn.microsoft.com/powershell/module/az.servicebus/get-azservicebusnamespacekey #> function Get-AzServiceBusNamespaceKey { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] diff --git a/src/ServiceBus/ServiceBus.Autorest/internal/Get-AzServiceBusOperation.ps1 b/src/ServiceBus/ServiceBus.Autorest/internal/Get-AzServiceBusOperation.ps1 index de89ad4939bb..e52534a6ab28 100644 --- a/src/ServiceBus/ServiceBus.Autorest/internal/Get-AzServiceBusOperation.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/internal/Get-AzServiceBusOperation.ps1 @@ -25,12 +25,12 @@ Lists all of the available ServiceBus REST API operations. {{ Add code here }} .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperation +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperation .Link https://learn.microsoft.com/powershell/module/az.servicebus/get-azservicebusoperation #> function Get-AzServiceBusOperation { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperation])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperation])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter()] diff --git a/src/ServiceBus/ServiceBus.Autorest/internal/Get-AzServiceBusQueueAuthorizationRule.ps1 b/src/ServiceBus/ServiceBus.Autorest/internal/Get-AzServiceBusQueueAuthorizationRule.ps1 index 7e1cfb578e97..163702cb2039 100644 --- a/src/ServiceBus/ServiceBus.Autorest/internal/Get-AzServiceBusQueueAuthorizationRule.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/internal/Get-AzServiceBusQueueAuthorizationRule.ps1 @@ -27,7 +27,7 @@ Gets an authorization rule for a queue by rule name. .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule .Notes COMPLEX PARAMETER PROPERTIES @@ -50,7 +50,7 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.servicebus/get-azservicebusqueueauthorizationrule #> function Get-AzServiceBusQueueAuthorizationRule { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] diff --git a/src/ServiceBus/ServiceBus.Autorest/internal/Get-AzServiceBusQueueKey.ps1 b/src/ServiceBus/ServiceBus.Autorest/internal/Get-AzServiceBusQueueKey.ps1 index 8eb27af9ef62..0bb1618a26a5 100644 --- a/src/ServiceBus/ServiceBus.Autorest/internal/Get-AzServiceBusQueueKey.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/internal/Get-AzServiceBusQueueKey.ps1 @@ -25,12 +25,12 @@ Primary and secondary connection strings to the queue. {{ Add code here }} .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys .Link https://learn.microsoft.com/powershell/module/az.servicebus/get-azservicebusqueuekey #> function Get-AzServiceBusQueueKey { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] diff --git a/src/ServiceBus/ServiceBus.Autorest/internal/Get-AzServiceBusTopicAuthorizationRule.ps1 b/src/ServiceBus/ServiceBus.Autorest/internal/Get-AzServiceBusTopicAuthorizationRule.ps1 index 16c48af14585..012726e4e22d 100644 --- a/src/ServiceBus/ServiceBus.Autorest/internal/Get-AzServiceBusTopicAuthorizationRule.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/internal/Get-AzServiceBusTopicAuthorizationRule.ps1 @@ -27,7 +27,7 @@ Returns the specified authorization rule. .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule .Notes COMPLEX PARAMETER PROPERTIES @@ -50,7 +50,7 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.servicebus/get-azservicebustopicauthorizationrule #> function Get-AzServiceBusTopicAuthorizationRule { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] diff --git a/src/ServiceBus/ServiceBus.Autorest/internal/Get-AzServiceBusTopicKey.ps1 b/src/ServiceBus/ServiceBus.Autorest/internal/Get-AzServiceBusTopicKey.ps1 index 99c94e29153f..f777c9f9b5af 100644 --- a/src/ServiceBus/ServiceBus.Autorest/internal/Get-AzServiceBusTopicKey.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/internal/Get-AzServiceBusTopicKey.ps1 @@ -25,12 +25,12 @@ Gets the primary and secondary connection strings for the topic. {{ Add code here }} .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys .Link https://learn.microsoft.com/powershell/module/az.servicebus/get-azservicebustopickey #> function Get-AzServiceBusTopicKey { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] diff --git a/src/ServiceBus/ServiceBus.Autorest/internal/Invoke-AzServiceBusFailDisasterRecoveryConfigOver.ps1 b/src/ServiceBus/ServiceBus.Autorest/internal/Invoke-AzServiceBusFailDisasterRecoveryConfigOver.ps1 index 1cb422085c08..ebffc75ebaf8 100644 --- a/src/ServiceBus/ServiceBus.Autorest/internal/Invoke-AzServiceBusFailDisasterRecoveryConfigOver.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/internal/Invoke-AzServiceBusFailDisasterRecoveryConfigOver.ps1 @@ -25,7 +25,7 @@ Invokes GEO DR failover and reconfigure the alias to point to the secondary name {{ Add code here }} .Inputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverProperties +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverProperties .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs @@ -99,7 +99,7 @@ param( [Parameter(ParameterSetName='Fail', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='FailViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverProperties] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverProperties] # Safe failover is to indicate the service should wait for pending replication to finish before switching to the secondary. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, diff --git a/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusGeoDRConfiguration.ps1 b/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusGeoDRConfiguration.ps1 index 188ba52ee7c1..cd5bcb322b9f 100644 --- a/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusGeoDRConfiguration.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusGeoDRConfiguration.ps1 @@ -23,11 +23,11 @@ Creates or updates a new Alias(Disaster Recovery configuration) New-AzServiceBusGeoDRConfiguration -Name myAlias -ResourceGroupName myResourceGroup -NamespaceName myPrimaryNamespace -PartnerNamespace "/subscriptions/0000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ServiceBus/namespaces/mySecondaryNamespace" .Inputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery .Notes COMPLEX PARAMETER PROPERTIES @@ -60,7 +60,7 @@ PARAMETER : Single item in List or Get Alias(Disaster Reco https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebusgeodrconfiguration #> function New-AzServiceBusGeoDRConfiguration { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery])] [CmdletBinding(DefaultParameterSetName='CreateViaIdentity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory, ValueFromPipeline)] @@ -72,7 +72,7 @@ param( [Parameter(Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery] # Single item in List or Get Alias(Disaster Recovery configuration) operation # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, diff --git a/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusNamespaceAuthorizationRule.ps1 b/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusNamespaceAuthorizationRule.ps1 index 2e466dd3ebac..5c0036450385 100644 --- a/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusNamespaceAuthorizationRule.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusNamespaceAuthorizationRule.ps1 @@ -25,11 +25,11 @@ Creates or updates an authorization rule for a namespace. {{ Add code here }} .Inputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule .Notes COMPLEX PARAMETER PROPERTIES @@ -61,7 +61,7 @@ PARAMETER : Description of a namespace authorization rule. https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebusnamespaceauthorizationrule #> function New-AzServiceBusNamespaceAuthorizationRule { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='CreateExpanded', Mandatory)] @@ -107,7 +107,7 @@ param( [Parameter(ParameterSetName='CreateViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule] # Description of a namespace authorization rule. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, diff --git a/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusNamespaceKey.ps1 b/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusNamespaceKey.ps1 index a5b902dbb89b..d9a53a8d1a01 100644 --- a/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusNamespaceKey.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusNamespaceKey.ps1 @@ -25,9 +25,9 @@ Regenerates the primary or secondary connection strings for the namespace. {{ Add code here }} .Inputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParameters +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParameters .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys .Notes COMPLEX PARAMETER PROPERTIES @@ -40,7 +40,7 @@ PARAMETER : Parameters supplied to the Regenerat https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebusnamespacekey #> function New-AzServiceBusNamespaceKey { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys])] [CmdletBinding(DefaultParameterSetName='Regenerate', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] @@ -71,7 +71,7 @@ param( [Parameter(Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParameters] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParameters] # Parameters supplied to the Regenerate Authorization Rule operation, specifies which key needs to be reset. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, diff --git a/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusNamespaceV2.ps1 b/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusNamespaceV2.ps1 index 5da2cd62b1e0..0a1555c8be4a 100644 --- a/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusNamespaceV2.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusNamespaceV2.ps1 @@ -35,11 +35,11 @@ New-AzServiceBusNamespaceV2 -ResourceGroupName myResourceGroup -Name myNamespace New-AzServiceBusNamespaceV2 -ResourceGroupName myResourceGroup -Name myNamespace -SkuName Standard -Location southcentralus -Tag @{k1='v1'; k2='v2'} -DisableLocalAuth .Inputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace .Notes COMPLEX PARAMETER PROPERTIES @@ -79,6 +79,7 @@ PARAMETER : Description of a namespace resource. [KeyVersion ]: Version of KeyVault [UserAssignedIdentity ]: ARM ID of user Identity selected for encryption [MinimumTlsVersion ]: The minimum TLS version for the cluster to support, e.g. '1.2' + [PremiumMessagingPartition ]: The number of partitions of a Service Bus namespace. This property is only applicable to Premium SKU namespaces. The default value is 1 and possible values are 1, 2 and 4 [PrivateEndpointConnection ]: List of private endpoint connections. [ConnectionState ]: Status of the connection. [Description ]: Description of the connection state. @@ -92,7 +93,7 @@ PARAMETER : Description of a namespace resource. [SystemDataLastModifiedByType ]: The type of identity that last modified the resource. [PublicNetworkAccess ]: This determines if traffic is allowed over public network. By default it is enabled. [RequireInfrastructureEncryption ]: Enable Infrastructure Encryption (Double Encryption) - [SkuCapacity ]: The specified messaging units for the tier. For Premium tier, capacity are 1,2 and 4. + [SkuCapacity ]: Messaging units for your service bus premium namespace. Valid capacities are {1, 2, 4, 8, 16} multiples of your properties.premiumMessagingPartitions setting. For example, If properties.premiumMessagingPartitions is 1 then possible capacity values are 1, 2, 4, 8, and 16. If properties.premiumMessagingPartitions is 4 then possible capacity values are 4, 8, 16, 32 and 64 [SkuName ]: Name of this SKU. [SkuTier ]: The billing tier of this particular SKU. [SystemDataCreatedAt ]: The timestamp of resource creation (UTC). @@ -120,7 +121,7 @@ PRIVATEENDPOINTCONNECTION : List of private endpoi https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebusnamespacev2 #> function New-AzServiceBusNamespaceV2 { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='CreateExpanded', Mandatory)] @@ -186,7 +187,7 @@ param( [Parameter(ParameterSetName='CreateExpanded')] [AllowEmptyCollection()] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties[]] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties[]] # Properties of KeyVault # To construct, see NOTES section for KEYVAULTPROPERTY properties and create a hash table. ${KeyVaultProperty}, @@ -199,10 +200,18 @@ param( # '1.2' ${MinimumTlsVersion}, + [Parameter(ParameterSetName='CreateExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] + [System.Int32] + # The number of partitions of a Service Bus namespace. + # This property is only applicable to Premium SKU namespaces. + # The default value is 1 and possible values are 1, 2 and 4 + ${PremiumMessagingPartition}, + [Parameter(ParameterSetName='CreateExpanded')] [AllowEmptyCollection()] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection[]] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection[]] # List of private endpoint connections. # To construct, see NOTES section for PRIVATEENDPOINTCONNECTION properties and create a hash table. ${PrivateEndpointConnection}, @@ -224,8 +233,10 @@ param( [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] [System.Int32] - # The specified messaging units for the tier. - # For Premium tier, capacity are 1,2 and 4. + # Messaging units for your service bus premium namespace. + # Valid capacities are {1, 2, 4, 8, 16} multiples of your properties.premiumMessagingPartitions setting. + # For example, If properties.premiumMessagingPartitions is 1 then possible capacity values are 1, 2, 4, 8, and 16. + # If properties.premiumMessagingPartitions is 4 then possible capacity values are 4, 8, 16, 32 and 64 ${SkuCapacity}, [Parameter(ParameterSetName='CreateExpanded')] @@ -251,7 +262,7 @@ param( [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityUserAssignedIdentities]))] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityUserAssignedIdentities]))] [System.Collections.Hashtable] # Properties for User Assigned Identities ${UserAssignedIdentity}, @@ -264,7 +275,7 @@ param( [Parameter(ParameterSetName='CreateViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace] # Description of a namespace resource. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, diff --git a/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusNetworkRuleSet.ps1 b/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusNetworkRuleSet.ps1 index d009996adf6e..399d9ba3a192 100644 --- a/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusNetworkRuleSet.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusNetworkRuleSet.ps1 @@ -25,11 +25,11 @@ Create or update NetworkRuleSet for a Namespace. {{ Add code here }} .Inputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet .Notes COMPLEX PARAMETER PROPERTIES @@ -77,7 +77,7 @@ VIRTUALNETWORKRULE : List VirtualNetwork Rules https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebusnetworkruleset #> function New-AzServiceBusNetworkRuleSet { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='CreateExpanded', Mandatory)] @@ -117,7 +117,7 @@ param( [Parameter(ParameterSetName='CreateExpanded')] [AllowEmptyCollection()] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRules[]] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRules[]] # List of IpRules # To construct, see NOTES section for IPRULE properties and create a hash table. ${IPRule}, @@ -139,14 +139,14 @@ param( [Parameter(ParameterSetName='CreateExpanded')] [AllowEmptyCollection()] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRules[]] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRules[]] # List VirtualNetwork Rules # To construct, see NOTES section for VIRTUALNETWORKRULE properties and create a hash table. ${VirtualNetworkRule}, [Parameter(ParameterSetName='CreateViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet] # Description of NetworkRuleSet resource. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, diff --git a/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusPrivateEndpointConnection.ps1 b/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusPrivateEndpointConnection.ps1 index fc9c82776741..ee71d9216f25 100644 --- a/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusPrivateEndpointConnection.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusPrivateEndpointConnection.ps1 @@ -25,11 +25,11 @@ Creates or updates PrivateEndpointConnections of service namespace. {{ Add code here }} .Inputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection .Notes COMPLEX PARAMETER PROPERTIES @@ -64,7 +64,7 @@ PARAMETER : Properties of the PrivateEndpointConnect https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebusprivateendpointconnection #> function New-AzServiceBusPrivateEndpointConnection { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='CreateExpanded', Mandatory)] @@ -129,7 +129,7 @@ param( [Parameter(ParameterSetName='CreateViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection] # Properties of the PrivateEndpointConnection. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, diff --git a/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusQueue.ps1 b/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusQueue.ps1 index 4400acb5aaf4..796220826e65 100644 --- a/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusQueue.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusQueue.ps1 @@ -25,11 +25,11 @@ This operation is idempotent. New-AzServiceBusQueue -ResourceGroupName myResourceGroup -NamespaceName myNamespace -Name myQueue -AutoDeleteOnIdle (New-TimeSpan -Days 1 -Minutes 3 -Seconds 4) -DefaultMessageTimeToLive (New-TimeSpan -Days 5) -EnablePartitioning .Inputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue .Notes COMPLEX PARAMETER PROPERTIES @@ -76,7 +76,7 @@ PARAMETER : Description of queue Resource. https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebusqueue #> function New-AzServiceBusQueue { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue])] [CmdletBinding(DefaultParameterSetName='CreateViaIdentity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory, ValueFromPipeline)] @@ -88,7 +88,7 @@ param( [Parameter(Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue] # Description of queue Resource. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, diff --git a/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusQueueAuthorizationRule.ps1 b/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusQueueAuthorizationRule.ps1 index 430946d1f04f..5b89e267f721 100644 --- a/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusQueueAuthorizationRule.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusQueueAuthorizationRule.ps1 @@ -25,11 +25,11 @@ Creates an authorization rule for a queue. {{ Add code here }} .Inputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule .Notes COMPLEX PARAMETER PROPERTIES @@ -61,7 +61,7 @@ PARAMETER : Description of a namespace authorization rule. https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebusqueueauthorizationrule #> function New-AzServiceBusQueueAuthorizationRule { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='CreateExpanded', Mandatory)] @@ -113,7 +113,7 @@ param( [Parameter(ParameterSetName='CreateViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule] # Description of a namespace authorization rule. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, diff --git a/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusQueueKey.ps1 b/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusQueueKey.ps1 index 128ea8541b56..8a9a5e9efab8 100644 --- a/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusQueueKey.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusQueueKey.ps1 @@ -25,9 +25,9 @@ Regenerates the primary or secondary connection strings to the queue. {{ Add code here }} .Inputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParameters +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParameters .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys .Notes COMPLEX PARAMETER PROPERTIES @@ -40,7 +40,7 @@ PARAMETER : Parameters supplied to the Regenerat https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebusqueuekey #> function New-AzServiceBusQueueKey { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys])] [CmdletBinding(DefaultParameterSetName='Regenerate', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] @@ -77,7 +77,7 @@ param( [Parameter(Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParameters] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParameters] # Parameters supplied to the Regenerate Authorization Rule operation, specifies which key needs to be reset. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, diff --git a/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusRule.ps1 b/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusRule.ps1 index 1923b0a9a635..ae14a2965c40 100644 --- a/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusRule.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusRule.ps1 @@ -25,11 +25,11 @@ New-AzServiceBusRule -ResourceGroupName myResourceGroup -NamespaceName myNamespa New-AzServiceBusRule -ResourceGroupName myResourceGroup -NamespaceName myNamespace -TopicName myTopic -SubscriptionName mySubscription -Name mySqlRule -FilterType SqlFilter -SqlExpression 3=2 -ActionSqlExpression "SET a=b" .Inputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule .Notes COMPLEX PARAMETER PROPERTIES @@ -78,7 +78,7 @@ PARAMETER : Description of Rule Resource. https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebusrule #> function New-AzServiceBusRule { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule])] [CmdletBinding(DefaultParameterSetName='CreateViaIdentity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory, ValueFromPipeline)] @@ -90,7 +90,7 @@ param( [Parameter(Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule] # Description of Rule Resource. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, diff --git a/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusSubscription.ps1 b/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusSubscription.ps1 index a5029c3fbf58..4d338efc58f4 100644 --- a/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusSubscription.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusSubscription.ps1 @@ -23,11 +23,11 @@ Creates a topic subscription. New-AzServiceBusSubscription -ResourceGroupName myResourceGroup -NamespaceName myNamespace -TopicName myTopic -Name mySubscription -DefaultMessageTimeToLive (New-TimeSpan -Days 6) -EnableBatchedOperations .Inputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription .Notes COMPLEX PARAMETER PROPERTIES @@ -74,7 +74,7 @@ PARAMETER : Description of subscription resource. https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebussubscription #> function New-AzServiceBusSubscription { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription])] [CmdletBinding(DefaultParameterSetName='CreateViaIdentity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory, ValueFromPipeline)] @@ -86,7 +86,7 @@ param( [Parameter(Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription] # Description of subscription resource. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, diff --git a/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusTopic.ps1 b/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusTopic.ps1 index 20985a699597..574b87826398 100644 --- a/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusTopic.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusTopic.ps1 @@ -23,11 +23,11 @@ Creates a topic in the specified namespace. New-AzServiceBusTopic -ResourceGroupName myResourceGroup -NamespaceName myNamespace -Name myTopic -DefaultMessageTimeToLive (New-TimeSpan -Days 18) -EnableBatchedOperations .Inputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic .Notes COMPLEX PARAMETER PROPERTIES @@ -69,7 +69,7 @@ PARAMETER : Description of topic resource. https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebustopic #> function New-AzServiceBusTopic { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic])] [CmdletBinding(DefaultParameterSetName='CreateViaIdentity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory, ValueFromPipeline)] @@ -81,7 +81,7 @@ param( [Parameter(Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic] # Description of topic resource. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, diff --git a/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusTopicAuthorizationRule.ps1 b/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusTopicAuthorizationRule.ps1 index 80a5806a7c61..0a5c68a5cc4e 100644 --- a/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusTopicAuthorizationRule.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusTopicAuthorizationRule.ps1 @@ -25,11 +25,11 @@ Creates an authorization rule for the specified topic. {{ Add code here }} .Inputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule .Notes COMPLEX PARAMETER PROPERTIES @@ -61,7 +61,7 @@ PARAMETER : Description of a namespace authorization rule. https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebustopicauthorizationrule #> function New-AzServiceBusTopicAuthorizationRule { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='CreateExpanded', Mandatory)] @@ -113,7 +113,7 @@ param( [Parameter(ParameterSetName='CreateViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule] # Description of a namespace authorization rule. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, diff --git a/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusTopicKey.ps1 b/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusTopicKey.ps1 index efe950dfa25e..cdac2cbdc053 100644 --- a/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusTopicKey.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/internal/New-AzServiceBusTopicKey.ps1 @@ -25,9 +25,9 @@ Regenerates primary or secondary connection strings for the topic. {{ Add code here }} .Inputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParameters +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParameters .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys .Notes COMPLEX PARAMETER PROPERTIES @@ -40,7 +40,7 @@ PARAMETER : Parameters supplied to the Regenerat https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebustopickey #> function New-AzServiceBusTopicKey { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys])] [CmdletBinding(DefaultParameterSetName='Regenerate', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] @@ -77,7 +77,7 @@ param( [Parameter(Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParameters] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParameters] # Parameters supplied to the Regenerate Authorization Rule operation, specifies which key needs to be reset. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, diff --git a/src/ServiceBus/ServiceBus.Autorest/internal/ProxyCmdletDefinitions.ps1 b/src/ServiceBus/ServiceBus.Autorest/internal/ProxyCmdletDefinitions.ps1 index 2dbc97119286..ef2fe1543929 100644 --- a/src/ServiceBus/ServiceBus.Autorest/internal/ProxyCmdletDefinitions.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/internal/ProxyCmdletDefinitions.ps1 @@ -27,7 +27,7 @@ Gets an authorization rule for a namespace by rule name. .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule .Notes COMPLEX PARAMETER PROPERTIES @@ -50,7 +50,7 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.servicebus/get-azservicebusdisasterrecoveryconfigauthorizationrule #> function Get-AzServiceBusDisasterRecoveryConfigAuthorizationRule { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] @@ -202,12 +202,12 @@ Gets the primary and secondary connection strings for the namespace. {{ Add code here }} .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys .Link https://learn.microsoft.com/powershell/module/az.servicebus/get-azservicebusdisasterrecoveryconfigkey #> function Get-AzServiceBusDisasterRecoveryConfigKey { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] @@ -348,7 +348,7 @@ Gets an authorization rule for a namespace by rule name. .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule .Notes COMPLEX PARAMETER PROPERTIES @@ -371,7 +371,7 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.servicebus/get-azservicebusnamespaceauthorizationrule #> function Get-AzServiceBusNamespaceAuthorizationRule { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] @@ -516,12 +516,12 @@ Gets the primary and secondary connection strings for the namespace. {{ Add code here }} .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys .Link https://learn.microsoft.com/powershell/module/az.servicebus/get-azservicebusnamespacekey #> function Get-AzServiceBusNamespaceKey { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] @@ -654,12 +654,12 @@ Lists all of the available ServiceBus REST API operations. {{ Add code here }} .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperation +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperation .Link https://learn.microsoft.com/powershell/module/az.servicebus/get-azservicebusoperation #> function Get-AzServiceBusOperation { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IOperation])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IOperation])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter()] @@ -765,7 +765,7 @@ Gets an authorization rule for a queue by rule name. .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule .Notes COMPLEX PARAMETER PROPERTIES @@ -788,7 +788,7 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.servicebus/get-azservicebusqueueauthorizationrule #> function Get-AzServiceBusQueueAuthorizationRule { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] @@ -940,12 +940,12 @@ Primary and secondary connection strings to the queue. {{ Add code here }} .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys .Link https://learn.microsoft.com/powershell/module/az.servicebus/get-azservicebusqueuekey #> function Get-AzServiceBusQueueKey { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] @@ -1086,7 +1086,7 @@ Returns the specified authorization rule. .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule .Notes COMPLEX PARAMETER PROPERTIES @@ -1109,7 +1109,7 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.servicebus/get-azservicebustopicauthorizationrule #> function Get-AzServiceBusTopicAuthorizationRule { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] @@ -1261,12 +1261,12 @@ Gets the primary and secondary connection strings for the topic. {{ Add code here }} .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys .Link https://learn.microsoft.com/powershell/module/az.servicebus/get-azservicebustopickey #> function Get-AzServiceBusTopicKey { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] @@ -1577,7 +1577,7 @@ Invokes GEO DR failover and reconfigure the alias to point to the secondary name {{ Add code here }} .Inputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverProperties +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverProperties .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs @@ -1651,7 +1651,7 @@ param( [Parameter(ParameterSetName='Fail', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='FailViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IFailoverProperties] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IFailoverProperties] # Safe failover is to indicate the service should wait for pending replication to finish before switching to the secondary. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, @@ -1774,11 +1774,11 @@ Creates or updates a new Alias(Disaster Recovery configuration) New-AzServiceBusGeoDRConfiguration -Name myAlias -ResourceGroupName myResourceGroup -NamespaceName myPrimaryNamespace -PartnerNamespace "/subscriptions/0000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ServiceBus/namespaces/mySecondaryNamespace" .Inputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery .Notes COMPLEX PARAMETER PROPERTIES @@ -1811,7 +1811,7 @@ PARAMETER : Single item in List or Get Alias(Disaster Reco https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebusgeodrconfiguration #> function New-AzServiceBusGeoDRConfiguration { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery])] [CmdletBinding(DefaultParameterSetName='CreateViaIdentity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory, ValueFromPipeline)] @@ -1823,7 +1823,7 @@ param( [Parameter(Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery] # Single item in List or Get Alias(Disaster Recovery configuration) operation # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, @@ -1935,11 +1935,11 @@ Creates or updates an authorization rule for a namespace. {{ Add code here }} .Inputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule .Notes COMPLEX PARAMETER PROPERTIES @@ -1971,7 +1971,7 @@ PARAMETER : Description of a namespace authorization rule. https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebusnamespaceauthorizationrule #> function New-AzServiceBusNamespaceAuthorizationRule { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='CreateExpanded', Mandatory)] @@ -2017,7 +2017,7 @@ param( [Parameter(ParameterSetName='CreateViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule] # Description of a namespace authorization rule. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, @@ -2127,9 +2127,9 @@ Regenerates the primary or secondary connection strings for the namespace. {{ Add code here }} .Inputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParameters +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParameters .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys .Notes COMPLEX PARAMETER PROPERTIES @@ -2142,7 +2142,7 @@ PARAMETER : Parameters supplied to the Regenerat https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebusnamespacekey #> function New-AzServiceBusNamespaceKey { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys])] [CmdletBinding(DefaultParameterSetName='Regenerate', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] @@ -2173,7 +2173,7 @@ param( [Parameter(Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParameters] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParameters] # Parameters supplied to the Regenerate Authorization Rule operation, specifies which key needs to be reset. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, @@ -2292,11 +2292,11 @@ New-AzServiceBusNamespaceV2 -ResourceGroupName myResourceGroup -Name myNamespace New-AzServiceBusNamespaceV2 -ResourceGroupName myResourceGroup -Name myNamespace -SkuName Standard -Location southcentralus -Tag @{k1='v1'; k2='v2'} -DisableLocalAuth .Inputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace .Notes COMPLEX PARAMETER PROPERTIES @@ -2336,6 +2336,7 @@ PARAMETER : Description of a namespace resource. [KeyVersion ]: Version of KeyVault [UserAssignedIdentity ]: ARM ID of user Identity selected for encryption [MinimumTlsVersion ]: The minimum TLS version for the cluster to support, e.g. '1.2' + [PremiumMessagingPartition ]: The number of partitions of a Service Bus namespace. This property is only applicable to Premium SKU namespaces. The default value is 1 and possible values are 1, 2 and 4 [PrivateEndpointConnection ]: List of private endpoint connections. [ConnectionState ]: Status of the connection. [Description ]: Description of the connection state. @@ -2349,7 +2350,7 @@ PARAMETER : Description of a namespace resource. [SystemDataLastModifiedByType ]: The type of identity that last modified the resource. [PublicNetworkAccess ]: This determines if traffic is allowed over public network. By default it is enabled. [RequireInfrastructureEncryption ]: Enable Infrastructure Encryption (Double Encryption) - [SkuCapacity ]: The specified messaging units for the tier. For Premium tier, capacity are 1,2 and 4. + [SkuCapacity ]: Messaging units for your service bus premium namespace. Valid capacities are {1, 2, 4, 8, 16} multiples of your properties.premiumMessagingPartitions setting. For example, If properties.premiumMessagingPartitions is 1 then possible capacity values are 1, 2, 4, 8, and 16. If properties.premiumMessagingPartitions is 4 then possible capacity values are 4, 8, 16, 32 and 64 [SkuName ]: Name of this SKU. [SkuTier ]: The billing tier of this particular SKU. [SystemDataCreatedAt ]: The timestamp of resource creation (UTC). @@ -2377,7 +2378,7 @@ PRIVATEENDPOINTCONNECTION : List of private endpoi https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebusnamespacev2 #> function New-AzServiceBusNamespaceV2 { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='CreateExpanded', Mandatory)] @@ -2443,7 +2444,7 @@ param( [Parameter(ParameterSetName='CreateExpanded')] [AllowEmptyCollection()] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties[]] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties[]] # Properties of KeyVault # To construct, see NOTES section for KEYVAULTPROPERTY properties and create a hash table. ${KeyVaultProperty}, @@ -2456,10 +2457,18 @@ param( # '1.2' ${MinimumTlsVersion}, + [Parameter(ParameterSetName='CreateExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] + [System.Int32] + # The number of partitions of a Service Bus namespace. + # This property is only applicable to Premium SKU namespaces. + # The default value is 1 and possible values are 1, 2 and 4 + ${PremiumMessagingPartition}, + [Parameter(ParameterSetName='CreateExpanded')] [AllowEmptyCollection()] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection[]] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection[]] # List of private endpoint connections. # To construct, see NOTES section for PRIVATEENDPOINTCONNECTION properties and create a hash table. ${PrivateEndpointConnection}, @@ -2481,8 +2490,10 @@ param( [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] [System.Int32] - # The specified messaging units for the tier. - # For Premium tier, capacity are 1,2 and 4. + # Messaging units for your service bus premium namespace. + # Valid capacities are {1, 2, 4, 8, 16} multiples of your properties.premiumMessagingPartitions setting. + # For example, If properties.premiumMessagingPartitions is 1 then possible capacity values are 1, 2, 4, 8, and 16. + # If properties.premiumMessagingPartitions is 4 then possible capacity values are 4, 8, 16, 32 and 64 ${SkuCapacity}, [Parameter(ParameterSetName='CreateExpanded')] @@ -2508,7 +2519,7 @@ param( [Parameter(ParameterSetName='CreateExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IIdentityUserAssignedIdentities]))] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IIdentityUserAssignedIdentities]))] [System.Collections.Hashtable] # Properties for User Assigned Identities ${UserAssignedIdentity}, @@ -2521,7 +2532,7 @@ param( [Parameter(ParameterSetName='CreateViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace] # Description of a namespace resource. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, @@ -2643,11 +2654,11 @@ Create or update NetworkRuleSet for a Namespace. {{ Add code here }} .Inputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet .Notes COMPLEX PARAMETER PROPERTIES @@ -2695,7 +2706,7 @@ VIRTUALNETWORKRULE : List VirtualNetwork Rules https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebusnetworkruleset #> function New-AzServiceBusNetworkRuleSet { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='CreateExpanded', Mandatory)] @@ -2735,7 +2746,7 @@ param( [Parameter(ParameterSetName='CreateExpanded')] [AllowEmptyCollection()] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRules[]] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRules[]] # List of IpRules # To construct, see NOTES section for IPRULE properties and create a hash table. ${IPRule}, @@ -2757,14 +2768,14 @@ param( [Parameter(ParameterSetName='CreateExpanded')] [AllowEmptyCollection()] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRules[]] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRules[]] # List VirtualNetwork Rules # To construct, see NOTES section for VIRTUALNETWORKRULE properties and create a hash table. ${VirtualNetworkRule}, [Parameter(ParameterSetName='CreateViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet] # Description of NetworkRuleSet resource. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, @@ -2874,11 +2885,11 @@ Creates or updates PrivateEndpointConnections of service namespace. {{ Add code here }} .Inputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection .Notes COMPLEX PARAMETER PROPERTIES @@ -2913,7 +2924,7 @@ PARAMETER : Properties of the PrivateEndpointConnect https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebusprivateendpointconnection #> function New-AzServiceBusPrivateEndpointConnection { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='CreateExpanded', Mandatory)] @@ -2978,7 +2989,7 @@ param( [Parameter(ParameterSetName='CreateViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection] # Properties of the PrivateEndpointConnection. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, @@ -3088,11 +3099,11 @@ Creates an authorization rule for a queue. {{ Add code here }} .Inputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule .Notes COMPLEX PARAMETER PROPERTIES @@ -3124,7 +3135,7 @@ PARAMETER : Description of a namespace authorization rule. https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebusqueueauthorizationrule #> function New-AzServiceBusQueueAuthorizationRule { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='CreateExpanded', Mandatory)] @@ -3176,7 +3187,7 @@ param( [Parameter(ParameterSetName='CreateViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule] # Description of a namespace authorization rule. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, @@ -3286,9 +3297,9 @@ Regenerates the primary or secondary connection strings to the queue. {{ Add code here }} .Inputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParameters +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParameters .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys .Notes COMPLEX PARAMETER PROPERTIES @@ -3301,7 +3312,7 @@ PARAMETER : Parameters supplied to the Regenerat https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebusqueuekey #> function New-AzServiceBusQueueKey { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys])] [CmdletBinding(DefaultParameterSetName='Regenerate', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] @@ -3338,7 +3349,7 @@ param( [Parameter(Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParameters] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParameters] # Parameters supplied to the Regenerate Authorization Rule operation, specifies which key needs to be reset. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, @@ -3447,11 +3458,11 @@ This operation is idempotent. New-AzServiceBusQueue -ResourceGroupName myResourceGroup -NamespaceName myNamespace -Name myQueue -AutoDeleteOnIdle (New-TimeSpan -Days 1 -Minutes 3 -Seconds 4) -DefaultMessageTimeToLive (New-TimeSpan -Days 5) -EnablePartitioning .Inputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue .Notes COMPLEX PARAMETER PROPERTIES @@ -3498,7 +3509,7 @@ PARAMETER : Description of queue Resource. https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebusqueue #> function New-AzServiceBusQueue { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue])] [CmdletBinding(DefaultParameterSetName='CreateViaIdentity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory, ValueFromPipeline)] @@ -3510,7 +3521,7 @@ param( [Parameter(Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue] # Description of queue Resource. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, @@ -3616,11 +3627,11 @@ New-AzServiceBusRule -ResourceGroupName myResourceGroup -NamespaceName myNamespa New-AzServiceBusRule -ResourceGroupName myResourceGroup -NamespaceName myNamespace -TopicName myTopic -SubscriptionName mySubscription -Name mySqlRule -FilterType SqlFilter -SqlExpression 3=2 -ActionSqlExpression "SET a=b" .Inputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule .Notes COMPLEX PARAMETER PROPERTIES @@ -3669,7 +3680,7 @@ PARAMETER : Description of Rule Resource. https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebusrule #> function New-AzServiceBusRule { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule])] [CmdletBinding(DefaultParameterSetName='CreateViaIdentity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory, ValueFromPipeline)] @@ -3681,7 +3692,7 @@ param( [Parameter(Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule] # Description of Rule Resource. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, @@ -3785,11 +3796,11 @@ Creates a topic subscription. New-AzServiceBusSubscription -ResourceGroupName myResourceGroup -NamespaceName myNamespace -TopicName myTopic -Name mySubscription -DefaultMessageTimeToLive (New-TimeSpan -Days 6) -EnableBatchedOperations .Inputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription .Notes COMPLEX PARAMETER PROPERTIES @@ -3836,7 +3847,7 @@ PARAMETER : Description of subscription resource. https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebussubscription #> function New-AzServiceBusSubscription { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription])] [CmdletBinding(DefaultParameterSetName='CreateViaIdentity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory, ValueFromPipeline)] @@ -3848,7 +3859,7 @@ param( [Parameter(Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription] # Description of subscription resource. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, @@ -3954,11 +3965,11 @@ Creates an authorization rule for the specified topic. {{ Add code here }} .Inputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule .Notes COMPLEX PARAMETER PROPERTIES @@ -3990,7 +4001,7 @@ PARAMETER : Description of a namespace authorization rule. https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebustopicauthorizationrule #> function New-AzServiceBusTopicAuthorizationRule { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='CreateExpanded', Mandatory)] @@ -4042,7 +4053,7 @@ param( [Parameter(ParameterSetName='CreateViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule] # Description of a namespace authorization rule. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, @@ -4152,9 +4163,9 @@ Regenerates primary or secondary connection strings for the topic. {{ Add code here }} .Inputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParameters +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParameters .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys .Notes COMPLEX PARAMETER PROPERTIES @@ -4167,7 +4178,7 @@ PARAMETER : Parameters supplied to the Regenerat https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebustopickey #> function New-AzServiceBusTopicKey { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys])] [CmdletBinding(DefaultParameterSetName='Regenerate', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] @@ -4204,7 +4215,7 @@ param( [Parameter(Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRegenerateAccessKeyParameters] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRegenerateAccessKeyParameters] # Parameters supplied to the Regenerate Authorization Rule operation, specifies which key needs to be reset. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, @@ -4311,11 +4322,11 @@ Creates a topic in the specified namespace. New-AzServiceBusTopic -ResourceGroupName myResourceGroup -NamespaceName myNamespace -Name myTopic -DefaultMessageTimeToLive (New-TimeSpan -Days 18) -EnableBatchedOperations .Inputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic .Notes COMPLEX PARAMETER PROPERTIES @@ -4357,7 +4368,7 @@ PARAMETER : Description of topic resource. https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebustopic #> function New-AzServiceBusTopic { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic])] [CmdletBinding(DefaultParameterSetName='CreateViaIdentity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory, ValueFromPipeline)] @@ -4369,7 +4380,7 @@ param( [Parameter(Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic] # Description of topic resource. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, @@ -5001,11 +5012,11 @@ Creates Migration configuration and starts migration of entities from Standard t Start-AzServiceBusMigration -ResourceGroupName myResourceGroup -NamespaceName myNamespace -PostMigrationName myStandardNamespace2 -TargetNamespace /subscriptions/subscriptionId/resourceGroups/myResourceGroup/providers/Microsoft.ServiceBus/namespaces/myPremiumNamespace .Inputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties .Notes COMPLEX PARAMETER PROPERTIES @@ -5038,7 +5049,7 @@ PARAMETER : Single item in List or Get Migration Con https://learn.microsoft.com/powershell/module/az.servicebus/start-azservicebusmigration #> function Start-AzServiceBusMigration { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties])] [CmdletBinding(DefaultParameterSetName='CreateViaIdentity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory, ValueFromPipeline)] @@ -5050,7 +5061,7 @@ param( [Parameter(Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties] # Single item in List or Get Migration Config operation # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, @@ -5168,11 +5179,11 @@ Check the give namespace name availability. {{ Add code here }} .Inputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailability +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailability .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult .Notes COMPLEX PARAMETER PROPERTIES @@ -5198,7 +5209,7 @@ PARAMETER : Description of a Check Name availability req https://learn.microsoft.com/powershell/module/az.servicebus/test-azservicebusdisasterrecoveryconfignameavailability #> function Test-AzServiceBusDisasterRecoveryConfigNameAvailability { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult])] [CmdletBinding(DefaultParameterSetName='CheckExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Check', Mandatory)] @@ -5235,7 +5246,7 @@ param( [Parameter(ParameterSetName='Check', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='CheckViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailability] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailability] # Description of a Check Name availability request properties. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, @@ -5355,11 +5366,11 @@ Check the give namespace name availability. {{ Add code here }} .Inputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailability +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailability .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult .Notes COMPLEX PARAMETER PROPERTIES @@ -5385,7 +5396,7 @@ PARAMETER : Description of a Check Name availability req https://learn.microsoft.com/powershell/module/az.servicebus/test-azservicebusnamespacenameavailability #> function Test-AzServiceBusNamespaceNameAvailability { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult])] [CmdletBinding(DefaultParameterSetName='CheckExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Check')] @@ -5408,7 +5419,7 @@ param( [Parameter(ParameterSetName='Check', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='CheckViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailability] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailability] # Description of a Check Name availability request properties. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, diff --git a/src/ServiceBus/ServiceBus.Autorest/internal/README.md b/src/ServiceBus/ServiceBus.Autorest/internal/README.md index a29d157b5ccd..bda075ca92db 100644 --- a/src/ServiceBus/ServiceBus.Autorest/internal/README.md +++ b/src/ServiceBus/ServiceBus.Autorest/internal/README.md @@ -8,7 +8,7 @@ This directory contains a module to handle *internal only* cmdlets. Cmdlets that - Packaged: yes ## Details -The `Az.ServiceBus.internal.psm1` file is generated to this folder. This module file handles the hidden cmdlets. These cmdlets will not be exported by `Az.ServiceBus`. Instead, this sub-module is imported by the `..\custom\Az.ServiceBus.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.ServiceBus.internal\Get-Example` would call an internal cmdlet named `Get-Example`. +The `Az.ServiceBus.internal.psm1` file is generated to this folder. This module file handles the hidden cmdlets. These cmdlets will not be exported by `Az.ServiceBus`. Instead, this sub-module is imported by the `..\custom\Az.ServiceBus.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.ServiceBus.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.ServiceBus`. diff --git a/src/ServiceBus/ServiceBus.Autorest/internal/Start-AzServiceBusMigration.ps1 b/src/ServiceBus/ServiceBus.Autorest/internal/Start-AzServiceBusMigration.ps1 index 2e17f153de7e..39b61df7c9b3 100644 --- a/src/ServiceBus/ServiceBus.Autorest/internal/Start-AzServiceBusMigration.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/internal/Start-AzServiceBusMigration.ps1 @@ -23,11 +23,11 @@ Creates Migration configuration and starts migration of entities from Standard t Start-AzServiceBusMigration -ResourceGroupName myResourceGroup -NamespaceName myNamespace -PostMigrationName myStandardNamespace2 -TargetNamespace /subscriptions/subscriptionId/resourceGroups/myResourceGroup/providers/Microsoft.ServiceBus/namespaces/myPremiumNamespace .Inputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties .Notes COMPLEX PARAMETER PROPERTIES @@ -60,7 +60,7 @@ PARAMETER : Single item in List or Get Migration Con https://learn.microsoft.com/powershell/module/az.servicebus/start-azservicebusmigration #> function Start-AzServiceBusMigration { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties])] [CmdletBinding(DefaultParameterSetName='CreateViaIdentity', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory, ValueFromPipeline)] @@ -72,7 +72,7 @@ param( [Parameter(Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties] # Single item in List or Get Migration Config operation # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, diff --git a/src/ServiceBus/ServiceBus.Autorest/internal/Test-AzServiceBusDisasterRecoveryConfigNameAvailability.ps1 b/src/ServiceBus/ServiceBus.Autorest/internal/Test-AzServiceBusDisasterRecoveryConfigNameAvailability.ps1 index e3b74269e3a2..2ee2f336eef5 100644 --- a/src/ServiceBus/ServiceBus.Autorest/internal/Test-AzServiceBusDisasterRecoveryConfigNameAvailability.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/internal/Test-AzServiceBusDisasterRecoveryConfigNameAvailability.ps1 @@ -25,11 +25,11 @@ Check the give namespace name availability. {{ Add code here }} .Inputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailability +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailability .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult .Notes COMPLEX PARAMETER PROPERTIES @@ -55,7 +55,7 @@ PARAMETER : Description of a Check Name availability req https://learn.microsoft.com/powershell/module/az.servicebus/test-azservicebusdisasterrecoveryconfignameavailability #> function Test-AzServiceBusDisasterRecoveryConfigNameAvailability { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult])] [CmdletBinding(DefaultParameterSetName='CheckExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Check', Mandatory)] @@ -92,7 +92,7 @@ param( [Parameter(ParameterSetName='Check', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='CheckViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailability] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailability] # Description of a Check Name availability request properties. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, diff --git a/src/ServiceBus/ServiceBus.Autorest/internal/Test-AzServiceBusNamespaceNameAvailability.ps1 b/src/ServiceBus/ServiceBus.Autorest/internal/Test-AzServiceBusNamespaceNameAvailability.ps1 index 5e9f2cdaad6e..4c9bbbfbea84 100644 --- a/src/ServiceBus/ServiceBus.Autorest/internal/Test-AzServiceBusNamespaceNameAvailability.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/internal/Test-AzServiceBusNamespaceNameAvailability.ps1 @@ -25,11 +25,11 @@ Check the give namespace name availability. {{ Add code here }} .Inputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailability +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailability .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.IServiceBusIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult +Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult .Notes COMPLEX PARAMETER PROPERTIES @@ -55,7 +55,7 @@ PARAMETER : Description of a Check Name availability req https://learn.microsoft.com/powershell/module/az.servicebus/test-azservicebusnamespacenameavailability #> function Test-AzServiceBusNamespaceNameAvailability { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult])] [CmdletBinding(DefaultParameterSetName='CheckExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Check')] @@ -78,7 +78,7 @@ param( [Parameter(ParameterSetName='Check', Mandatory, ValueFromPipeline)] [Parameter(ParameterSetName='CheckViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailability] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailability] # Description of a Check Name availability request properties. # To construct, see NOTES section for PARAMETER properties and create a hash table. ${Parameter}, diff --git a/src/ServiceBus/ServiceBus.Autorest/test/Approve-AzServiceBusPrivateEndpointConnection.Recording.json b/src/ServiceBus/ServiceBus.Autorest/test/Approve-AzServiceBusPrivateEndpointConnection.Recording.json index 51cec5505be5..c80caca31cc9 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/Approve-AzServiceBusPrivateEndpointConnection.Recording.json +++ b/src/ServiceBus/ServiceBus.Autorest/test/Approve-AzServiceBusPrivateEndpointConnection.Recording.json @@ -1,13 +1,13 @@ { - "Approve-AzServiceBusPrivateEndpointConnection+[NoContext]+[NoScenario]+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections?api-version=2022-01-01-preview+1": { + "Approve-AzServiceBusPrivateEndpointConnection+[NoContext]+[NoScenario]+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "3" ], - "x-ms-client-request-id": [ "27645c03-3a9b-4260-a4b9-fd9c342b2de5" ], + "x-ms-client-request-id": [ "42a5d0c6-8215-4674-aecb-03adeaba2229" ], "CommandName": [ "Get-AzServiceBusPrivateEndpointConnection" ], "FullCommandName": [ "Get-AzServiceBusPrivateEndpointConnection_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -22,34 +22,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "c4ffbbbf-fc63-490b-a1f5-8f31830d0b5e_M9SN1_M9SN1" ], + "x-ms-request-id": [ "53ce96d2-5eab-4baf-988b-cdd231520fe2_M2SN1_M2SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "c2f0cfd6-1246-4e01-b21f-9c87a65d24bd" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095115Z:c2f0cfd6-1246-4e01-b21f-9c87a65d24bd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11966" ], + "x-ms-correlation-request-id": [ "93617386-cfb1-479e-9df5-62b3d7a89bd2" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131148Z:93617386-cfb1-479e-9df5-62b3d7a89bd2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:51:14 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:11:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1397" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd\",\"name\":\"c5e4d6c3-f38e-4834-929b-559e2d41d5cd\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.Network/privateEndpoints/pe2cxqud3\"},\"privateLinkServiceConnectionState\":{\"status\":\"Pending\",\"description\":\"Hello\"},\"groupIds\":[\"namespace\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94\",\"name\":\"b5d7b5d8-1b18-4afb-819a-706a0f3d6a94\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.Network/privateEndpoints/pe1jlbfx6\"},\"privateLinkServiceConnectionState\":{\"status\":\"Pending\",\"description\":\"Hello\"},\"groupIds\":[\"namespace\"]}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211\",\"name\":\"efc95bab-8a36-4368-bf40-071ec0dd3211\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe2otyvgf\"},\"privateLinkServiceConnectionState\":{\"status\":\"Pending\",\"description\":\"Hello\"},\"groupIds\":[\"namespace\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00\",\"name\":\"77566733-2ab6-455d-972d-793c5a451f00\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe1w0yv9t\"},\"privateLinkServiceConnectionState\":{\"status\":\"Pending\",\"description\":\"Hello\"},\"groupIds\":[\"namespace\"]}}]}", "isContentBase64": false } }, - "Approve-AzServiceBusPrivateEndpointConnection+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd?api-version=2022-01-01-preview+1": { + "Approve-AzServiceBusPrivateEndpointConnection+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "4" ], - "x-ms-client-request-id": [ "99c72d0c-0b50-4273-8164-963c534c7b30" ], + "x-ms-client-request-id": [ "23b0ad30-f9fb-43ef-91f5-ab4209874365" ], "CommandName": [ "Get-AzServiceBusPrivateEndpointConnection" ], "FullCommandName": [ "Get-AzServiceBusPrivateEndpointConnection_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -64,30 +64,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "70065c7a-a997-44e4-a0e3-4eaa6b9bbae5_M9SN1_M9SN1" ], + "x-ms-request-id": [ "94aeb217-aad7-408c-b811-71e16a1af8e9_M2SN1_M2SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "56ed28f9-61e2-4baf-ba54-c084361b8ab6" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095115Z:56ed28f9-61e2-4baf-ba54-c084361b8ab6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11965" ], + "x-ms-correlation-request-id": [ "cc5fdb38-55e5-42ea-b4e2-f80df020c27b" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131149Z:cc5fdb38-55e5-42ea-b4e2-f80df020c27b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:51:15 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:11:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "692" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd\",\"name\":\"c5e4d6c3-f38e-4834-929b-559e2d41d5cd\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.Network/privateEndpoints/pe2cxqud3\"},\"privateLinkServiceConnectionState\":{\"status\":\"Pending\",\"description\":\"Hello\"},\"groupIds\":[\"namespace\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211\",\"name\":\"efc95bab-8a36-4368-bf40-071ec0dd3211\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe2otyvgf\"},\"privateLinkServiceConnectionState\":{\"status\":\"Pending\",\"description\":\"Hello\"},\"groupIds\":[\"namespace\"]}}", "isContentBase64": false } }, - "Approve-AzServiceBusPrivateEndpointConnection+[NoContext]+SetExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd?api-version=2022-01-01-preview+2": { + "Approve-AzServiceBusPrivateEndpointConnection+[NoContext]+SetExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211?api-version=2022-10-01-preview+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd?api-version=2022-01-01-preview", - "Content": "{\n \"properties\": {\n \"privateEndpoint\": {\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.Network/privateEndpoints/pe2cxqud3\"\n },\n \"privateLinkServiceConnectionState\": {\n \"status\": \"Approved\",\n \"description\": \"\"\n },\n \"provisioningState\": \"Succeeded\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211?api-version=2022-10-01-preview", + "Content": "{\n \"properties\": {\n \"privateEndpoint\": {\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe2otyvgf\"\n },\n \"privateLinkServiceConnectionState\": {\n \"status\": \"Approved\",\n \"description\": \"\"\n },\n \"provisioningState\": \"Succeeded\"\n }\n}", "isContentBase64": false, "Headers": { }, @@ -101,35 +101,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "61589c0a-9f53-4fa0-b9ee-ea675f4b6f76_M9SN1_M9SN1" ], - "Azure-AsyncOperation": [ "https://management.azure.com:443/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd/operationStatus/c5e4d6c3-f38e-4834-929b-559e2d41d5cd?api-version=2022-01-01-preview\u0026operationType=Update" ], + "x-ms-request-id": [ "982a99ae-cc1f-4040-ac06-a1f4fe271a04_M2SN1_M2SN1" ], + "Azure-AsyncOperation": [ "https://management.azure.com:443/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211/operationStatus/efc95bab-8a36-4368-bf40-071ec0dd3211?api-version=2022-10-01-preview\u0026operationType=Update" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "eaad36e5-4e1a-4c11-bd3d-38ab121dcbb3" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095117Z:eaad36e5-4e1a-4c11-bd3d-38ab121dcbb3" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], + "x-ms-correlation-request-id": [ "e3332731-cbd0-4f47-9bdb-9cdea6cc6db5" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131149Z:e3332731-cbd0-4f47-9bdb-9cdea6cc6db5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:51:16 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:11:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "687" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd\",\"name\":\"c5e4d6c3-f38e-4834-929b-559e2d41d5cd\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Updating\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.Network/privateEndpoints/pe2cxqud3\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"\"},\"groupIds\":[\"namespace\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211\",\"name\":\"efc95bab-8a36-4368-bf40-071ec0dd3211\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Updating\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe2otyvgf\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"\"},\"groupIds\":[\"namespace\"]}}", "isContentBase64": false } }, - "Approve-AzServiceBusPrivateEndpointConnection+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd?api-version=2022-01-01-preview+3": { + "Approve-AzServiceBusPrivateEndpointConnection+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211?api-version=2022-10-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "6" ], - "x-ms-client-request-id": [ "745dc966-26c7-4758-ada4-b9e7e3122f8b" ], + "x-ms-client-request-id": [ "40c7670c-b1f2-43c6-afb4-3b29377a9170" ], "CommandName": [ "Get-AzServiceBusPrivateEndpointConnection" ], "FullCommandName": [ "Get-AzServiceBusPrivateEndpointConnection_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -144,34 +144,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "c079d456-0441-4946-980e-0544f25d8928_M9SN1_M9SN1" ], + "x-ms-request-id": [ "b251fe3d-067c-4926-bf3a-8340997f4ec4_M2SN1_M2SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "4c44af4c-c74c-4987-9afb-eabff0734e20" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095117Z:4c44af4c-c74c-4987-9afb-eabff0734e20" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11964" ], + "x-ms-correlation-request-id": [ "113bce0d-d8bc-4146-8c69-f62d482f89de" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131150Z:113bce0d-d8bc-4146-8c69-f62d482f89de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:51:16 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:11:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "687" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd\",\"name\":\"c5e4d6c3-f38e-4834-929b-559e2d41d5cd\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Updating\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.Network/privateEndpoints/pe2cxqud3\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"\"},\"groupIds\":[\"namespace\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211\",\"name\":\"efc95bab-8a36-4368-bf40-071ec0dd3211\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Updating\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe2otyvgf\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"\"},\"groupIds\":[\"namespace\"]}}", "isContentBase64": false } }, - "Approve-AzServiceBusPrivateEndpointConnection+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd?api-version=2022-01-01-preview+4": { + "Approve-AzServiceBusPrivateEndpointConnection+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211?api-version=2022-10-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "7" ], - "x-ms-client-request-id": [ "c3bf8333-fa1d-4543-adce-05f232e050d7" ], + "x-ms-client-request-id": [ "a3da9e86-67ff-4514-a471-ea36ad125010" ], "CommandName": [ "Get-AzServiceBusPrivateEndpointConnection" ], "FullCommandName": [ "Get-AzServiceBusPrivateEndpointConnection_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -186,34 +186,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "e9267090-796b-4163-8976-4e8ed4523db6_M9SN1_M9SN1" ], + "x-ms-request-id": [ "499ca66e-6618-4edf-8f5b-c73f0025369e_M2SN1_M2SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "2a343623-4852-40e6-bd33-a51fe63c6a81" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095127Z:2a343623-4852-40e6-bd33-a51fe63c6a81" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11963" ], + "x-ms-correlation-request-id": [ "9c0bef06-ec66-4572-bd74-2af5aa7e659c" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131201Z:9c0bef06-ec66-4572-bd74-2af5aa7e659c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:51:26 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:12:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "687" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd\",\"name\":\"c5e4d6c3-f38e-4834-929b-559e2d41d5cd\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Updating\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.Network/privateEndpoints/pe2cxqud3\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"\"},\"groupIds\":[\"namespace\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211\",\"name\":\"efc95bab-8a36-4368-bf40-071ec0dd3211\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Updating\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe2otyvgf\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"\"},\"groupIds\":[\"namespace\"]}}", "isContentBase64": false } }, - "Approve-AzServiceBusPrivateEndpointConnection+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd?api-version=2022-01-01-preview+5": { + "Approve-AzServiceBusPrivateEndpointConnection+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211?api-version=2022-10-01-preview+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "8" ], - "x-ms-client-request-id": [ "99bf94b3-3d4c-4f8e-942d-ad393a851750" ], + "x-ms-client-request-id": [ "5c49b351-0688-455b-a045-827ef3ba661f" ], "CommandName": [ "Get-AzServiceBusPrivateEndpointConnection" ], "FullCommandName": [ "Get-AzServiceBusPrivateEndpointConnection_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -228,34 +228,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "73474abc-128d-4a43-b53d-6b35629fc303_M9SN1_M9SN1" ], + "x-ms-request-id": [ "dbe6e48d-85dd-49d5-90b6-407f8d2e8e5d_M2SN1_M2SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "98914117-83df-4d15-b142-5d4cbe347e91" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095137Z:98914117-83df-4d15-b142-5d4cbe347e91" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11962" ], + "x-ms-correlation-request-id": [ "00131c07-9d40-40af-9329-ef0d0b47cd11" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131211Z:00131c07-9d40-40af-9329-ef0d0b47cd11" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:51:37 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:12:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "687" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd\",\"name\":\"c5e4d6c3-f38e-4834-929b-559e2d41d5cd\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Updating\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.Network/privateEndpoints/pe2cxqud3\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"\"},\"groupIds\":[\"namespace\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211\",\"name\":\"efc95bab-8a36-4368-bf40-071ec0dd3211\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Updating\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe2otyvgf\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"\"},\"groupIds\":[\"namespace\"]}}", "isContentBase64": false } }, - "Approve-AzServiceBusPrivateEndpointConnection+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd?api-version=2022-01-01-preview+6": { + "Approve-AzServiceBusPrivateEndpointConnection+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211?api-version=2022-10-01-preview+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "9" ], - "x-ms-client-request-id": [ "28018f05-3553-45a7-8415-20524c34ccd8" ], + "x-ms-client-request-id": [ "c7772bc6-ebd5-4108-9a9a-0c9691520535" ], "CommandName": [ "Get-AzServiceBusPrivateEndpointConnection" ], "FullCommandName": [ "Get-AzServiceBusPrivateEndpointConnection_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -270,34 +270,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "edae4b47-9bca-4c69-ab62-daaedf9cb81d_M9SN1_M9SN1" ], + "x-ms-request-id": [ "b0d457ac-77e8-489d-86de-18c77203ac7c_M2SN1_M2SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "c167cb5c-b67e-4101-a0e0-63d79ca48775" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095148Z:c167cb5c-b67e-4101-a0e0-63d79ca48775" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11961" ], + "x-ms-correlation-request-id": [ "08bef4ea-9ad2-4f37-94da-6a31ed53418c" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131222Z:08bef4ea-9ad2-4f37-94da-6a31ed53418c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:51:47 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:12:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "687" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd\",\"name\":\"c5e4d6c3-f38e-4834-929b-559e2d41d5cd\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Updating\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.Network/privateEndpoints/pe2cxqud3\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"\"},\"groupIds\":[\"namespace\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211\",\"name\":\"efc95bab-8a36-4368-bf40-071ec0dd3211\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Updating\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe2otyvgf\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"\"},\"groupIds\":[\"namespace\"]}}", "isContentBase64": false } }, - "Approve-AzServiceBusPrivateEndpointConnection+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd?api-version=2022-01-01-preview+7": { + "Approve-AzServiceBusPrivateEndpointConnection+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211?api-version=2022-10-01-preview+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "10" ], - "x-ms-client-request-id": [ "b212bcda-a7ce-4404-a17d-6e2b3b85d0ef" ], + "x-ms-client-request-id": [ "cf6780da-94d4-404f-8789-2d3280823b38" ], "CommandName": [ "Get-AzServiceBusPrivateEndpointConnection" ], "FullCommandName": [ "Get-AzServiceBusPrivateEndpointConnection_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -312,34 +312,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "841944d5-8f87-4d4e-88e6-6cd0c9468f06_M9SN1_M9SN1" ], + "x-ms-request-id": [ "db43f251-18e9-4736-8609-06b4f2dc3520_M11SN1_M11SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], - "x-ms-correlation-request-id": [ "77f368a6-58a1-452b-8809-819224e2c949" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095158Z:77f368a6-58a1-452b-8809-819224e2c949" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11960" ], + "x-ms-correlation-request-id": [ "ccece4fb-c666-4f67-8647-e59bab84e822" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131233Z:ccece4fb-c666-4f67-8647-e59bab84e822" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:51:57 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:12:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "688" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd\",\"name\":\"c5e4d6c3-f38e-4834-929b-559e2d41d5cd\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.Network/privateEndpoints/pe2cxqud3\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"\"},\"groupIds\":[\"namespace\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211\",\"name\":\"efc95bab-8a36-4368-bf40-071ec0dd3211\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe2otyvgf\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"\"},\"groupIds\":[\"namespace\"]}}", "isContentBase64": false } }, - "Approve-AzServiceBusPrivateEndpointConnection+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94?api-version=2022-01-01-preview+1": { + "Approve-AzServiceBusPrivateEndpointConnection+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "11" ], - "x-ms-client-request-id": [ "be649e6d-6409-4567-951f-3992efde27a6" ], + "x-ms-client-request-id": [ "8aa936a2-dc71-4a87-8bba-f5dd7829d502" ], "CommandName": [ "Get-AzServiceBusPrivateEndpointConnection" ], "FullCommandName": [ "Get-AzServiceBusPrivateEndpointConnection_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -354,34 +354,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "002c6603-9320-4baf-9a32-2741e7287e07_M9SN1_M9SN1" ], + "x-ms-request-id": [ "d2caaae2-1663-4a47-a0a9-3336b2e86583_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], - "x-ms-correlation-request-id": [ "6b0a436c-6d9e-4151-8b2c-dcda78d17223" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095208Z:6b0a436c-6d9e-4151-8b2c-dcda78d17223" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11959" ], + "x-ms-correlation-request-id": [ "856634e0-31f3-4c0f-b7ac-5505005b4700" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131244Z:856634e0-31f3-4c0f-b7ac-5505005b4700" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:52:07 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:12:43 GMT" ] }, "ContentHeaders": { "Content-Length": [ "692" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94\",\"name\":\"b5d7b5d8-1b18-4afb-819a-706a0f3d6a94\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.Network/privateEndpoints/pe1jlbfx6\"},\"privateLinkServiceConnectionState\":{\"status\":\"Pending\",\"description\":\"Hello\"},\"groupIds\":[\"namespace\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00\",\"name\":\"77566733-2ab6-455d-972d-793c5a451f00\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe1w0yv9t\"},\"privateLinkServiceConnectionState\":{\"status\":\"Pending\",\"description\":\"Hello\"},\"groupIds\":[\"namespace\"]}}", "isContentBase64": false } }, - "Approve-AzServiceBusPrivateEndpointConnection+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94?api-version=2022-01-01-preview+2": { + "Approve-AzServiceBusPrivateEndpointConnection+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00?api-version=2022-10-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "12" ], - "x-ms-client-request-id": [ "7216157f-24d4-4b94-bd70-737d14c03950" ], + "x-ms-client-request-id": [ "8ffcb99d-3ff7-4cab-a2cd-bbd12783c64f" ], "CommandName": [ "Get-AzServiceBusPrivateEndpointConnection" ], "FullCommandName": [ "Get-AzServiceBusPrivateEndpointConnection_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -396,30 +396,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "6611c273-d921-4024-9acc-4c68640c6488_M9SN1_M9SN1" ], + "x-ms-request-id": [ "851fff21-5b33-45f4-9b1e-ae74b70e1f0b_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], - "x-ms-correlation-request-id": [ "8bcd0b09-8715-4791-a62e-c13c5e99daf0" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095208Z:8bcd0b09-8715-4791-a62e-c13c5e99daf0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11958" ], + "x-ms-correlation-request-id": [ "bb51de81-7718-48fe-a841-f36d5e9cb3aa" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131244Z:bb51de81-7718-48fe-a841-f36d5e9cb3aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:52:08 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:12:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "692" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94\",\"name\":\"b5d7b5d8-1b18-4afb-819a-706a0f3d6a94\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.Network/privateEndpoints/pe1jlbfx6\"},\"privateLinkServiceConnectionState\":{\"status\":\"Pending\",\"description\":\"Hello\"},\"groupIds\":[\"namespace\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00\",\"name\":\"77566733-2ab6-455d-972d-793c5a451f00\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe1w0yv9t\"},\"privateLinkServiceConnectionState\":{\"status\":\"Pending\",\"description\":\"Hello\"},\"groupIds\":[\"namespace\"]}}", "isContentBase64": false } }, - "Approve-AzServiceBusPrivateEndpointConnection+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94?api-version=2022-01-01-preview+3": { + "Approve-AzServiceBusPrivateEndpointConnection+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00?api-version=2022-10-01-preview+3": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94?api-version=2022-01-01-preview", - "Content": "{\n \"properties\": {\n \"privateEndpoint\": {\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.Network/privateEndpoints/pe1jlbfx6\"\n },\n \"privateLinkServiceConnectionState\": {\n \"status\": \"Approved\",\n \"description\": \"Bye\"\n },\n \"provisioningState\": \"Succeeded\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00?api-version=2022-10-01-preview", + "Content": "{\n \"properties\": {\n \"privateEndpoint\": {\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe1w0yv9t\"\n },\n \"privateLinkServiceConnectionState\": {\n \"status\": \"Approved\",\n \"description\": \"Bye\"\n },\n \"provisioningState\": \"Succeeded\"\n }\n}", "isContentBase64": false, "Headers": { }, @@ -433,35 +433,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "6a28d359-f40a-40ff-8641-c7ecf04f2487_M9SN1_M9SN1" ], - "Azure-AsyncOperation": [ "https://management.azure.com:443/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94/operationStatus/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94?api-version=2022-01-01-preview\u0026operationType=Update" ], + "x-ms-request-id": [ "bd2e6249-98c2-472b-a4f4-8df3994b6468_M3SN1_M3SN1" ], + "Azure-AsyncOperation": [ "https://management.azure.com:443/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00/operationStatus/77566733-2ab6-455d-972d-793c5a451f00?api-version=2022-10-01-preview\u0026operationType=Update" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-correlation-request-id": [ "d15c1b5b-0139-409e-9267-d7898a0c5657" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095209Z:d15c1b5b-0139-409e-9267-d7898a0c5657" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], + "x-ms-correlation-request-id": [ "6de5e381-6c49-414a-b365-0de55085ec61" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131245Z:6de5e381-6c49-414a-b365-0de55085ec61" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:52:08 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:12:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "690" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94\",\"name\":\"b5d7b5d8-1b18-4afb-819a-706a0f3d6a94\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Updating\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.Network/privateEndpoints/pe1jlbfx6\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Bye\"},\"groupIds\":[\"namespace\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00\",\"name\":\"77566733-2ab6-455d-972d-793c5a451f00\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Updating\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe1w0yv9t\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Bye\"},\"groupIds\":[\"namespace\"]}}", "isContentBase64": false } }, - "Approve-AzServiceBusPrivateEndpointConnection+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94?api-version=2022-01-01-preview+4": { + "Approve-AzServiceBusPrivateEndpointConnection+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00?api-version=2022-10-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "14" ], - "x-ms-client-request-id": [ "850660ab-37e2-4b93-87ad-e7bc564fde9e" ], + "x-ms-client-request-id": [ "a949182d-9326-4dd2-a41e-b3e00176066f" ], "CommandName": [ "Get-AzServiceBusPrivateEndpointConnection" ], "FullCommandName": [ "Get-AzServiceBusPrivateEndpointConnection_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -476,34 +476,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "b85fa3bb-faf6-4d28-96d6-c2d90ad09af8_M9SN1_M9SN1" ], + "x-ms-request-id": [ "adf01b94-17cb-4b44-b6fe-9f7e90bd2438_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], - "x-ms-correlation-request-id": [ "313a0611-1ea9-4909-a287-68e326060347" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095209Z:313a0611-1ea9-4909-a287-68e326060347" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11957" ], + "x-ms-correlation-request-id": [ "19a4fe69-5ccd-44ee-9ef5-9c98d236e83f" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131246Z:19a4fe69-5ccd-44ee-9ef5-9c98d236e83f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:52:08 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:12:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "690" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94\",\"name\":\"b5d7b5d8-1b18-4afb-819a-706a0f3d6a94\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Updating\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.Network/privateEndpoints/pe1jlbfx6\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Bye\"},\"groupIds\":[\"namespace\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00\",\"name\":\"77566733-2ab6-455d-972d-793c5a451f00\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Updating\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe1w0yv9t\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Bye\"},\"groupIds\":[\"namespace\"]}}", "isContentBase64": false } }, - "Approve-AzServiceBusPrivateEndpointConnection+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94?api-version=2022-01-01-preview+5": { + "Approve-AzServiceBusPrivateEndpointConnection+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00?api-version=2022-10-01-preview+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "15" ], - "x-ms-client-request-id": [ "84e95818-d718-4f5e-bf87-8a2ae630b788" ], + "x-ms-client-request-id": [ "47980340-6205-4420-bd50-ffc4a075f704" ], "CommandName": [ "Get-AzServiceBusPrivateEndpointConnection" ], "FullCommandName": [ "Get-AzServiceBusPrivateEndpointConnection_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -518,34 +518,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "4fa21fa0-56ff-4e40-8519-048c31c4568f_M9SN1_M9SN1" ], + "x-ms-request-id": [ "a7524d26-6caa-44f4-83df-1168e7e949b9_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], - "x-ms-correlation-request-id": [ "e9fe54b0-ad75-46bb-9383-4458514d3386" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095219Z:e9fe54b0-ad75-46bb-9383-4458514d3386" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11956" ], + "x-ms-correlation-request-id": [ "be4d5f2e-2694-4177-a991-d340664e6db8" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131257Z:be4d5f2e-2694-4177-a991-d340664e6db8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:52:18 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:12:56 GMT" ] }, "ContentHeaders": { "Content-Length": [ "690" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94\",\"name\":\"b5d7b5d8-1b18-4afb-819a-706a0f3d6a94\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Updating\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.Network/privateEndpoints/pe1jlbfx6\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Bye\"},\"groupIds\":[\"namespace\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00\",\"name\":\"77566733-2ab6-455d-972d-793c5a451f00\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Updating\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe1w0yv9t\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Bye\"},\"groupIds\":[\"namespace\"]}}", "isContentBase64": false } }, - "Approve-AzServiceBusPrivateEndpointConnection+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94?api-version=2022-01-01-preview+6": { + "Approve-AzServiceBusPrivateEndpointConnection+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00?api-version=2022-10-01-preview+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "16" ], - "x-ms-client-request-id": [ "cb790b14-654b-474c-be07-7e8a68b4b37c" ], + "x-ms-client-request-id": [ "0262094e-c6b0-4c5c-b333-fa857cfe5801" ], "CommandName": [ "Get-AzServiceBusPrivateEndpointConnection" ], "FullCommandName": [ "Get-AzServiceBusPrivateEndpointConnection_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -560,34 +560,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "dcbf37bb-ce8a-4a1d-9cb4-5859c460ee54_M9SN1_M9SN1" ], + "x-ms-request-id": [ "7381f02f-de93-430d-a356-31831094d51c_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], - "x-ms-correlation-request-id": [ "47cb444e-47a3-4138-8e52-c416edbf605e" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095230Z:47cb444e-47a3-4138-8e52-c416edbf605e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11955" ], + "x-ms-correlation-request-id": [ "8a63cc48-a685-40cb-b4a3-bb4305c994e2" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131307Z:8a63cc48-a685-40cb-b4a3-bb4305c994e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:52:30 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:13:06 GMT" ] }, "ContentHeaders": { "Content-Length": [ "690" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94\",\"name\":\"b5d7b5d8-1b18-4afb-819a-706a0f3d6a94\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Updating\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.Network/privateEndpoints/pe1jlbfx6\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Bye\"},\"groupIds\":[\"namespace\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00\",\"name\":\"77566733-2ab6-455d-972d-793c5a451f00\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Updating\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe1w0yv9t\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Bye\"},\"groupIds\":[\"namespace\"]}}", "isContentBase64": false } }, - "Approve-AzServiceBusPrivateEndpointConnection+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94?api-version=2022-01-01-preview+7": { + "Approve-AzServiceBusPrivateEndpointConnection+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00?api-version=2022-10-01-preview+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "17" ], - "x-ms-client-request-id": [ "88f2d803-99df-475b-83c7-33f053d3fb68" ], + "x-ms-client-request-id": [ "d24cf890-de7c-4350-80cd-c70279c1e6a9" ], "CommandName": [ "Get-AzServiceBusPrivateEndpointConnection" ], "FullCommandName": [ "Get-AzServiceBusPrivateEndpointConnection_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -602,34 +602,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "ea9ca79b-bb6f-43b5-a3d8-bd46e09440c7_M9SN1_M9SN1" ], + "x-ms-request-id": [ "30948682-f9b1-4b61-8d13-8565bc840d2c_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11986" ], - "x-ms-correlation-request-id": [ "eb06f3bb-c93a-4650-a46e-488ebaca5afb" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095240Z:eb06f3bb-c93a-4650-a46e-488ebaca5afb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11954" ], + "x-ms-correlation-request-id": [ "6e323d05-b6bf-413a-a16e-a14fe8619c25" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131318Z:6e323d05-b6bf-413a-a16e-a14fe8619c25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:52:40 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:13:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "690" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94\",\"name\":\"b5d7b5d8-1b18-4afb-819a-706a0f3d6a94\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Updating\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.Network/privateEndpoints/pe1jlbfx6\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Bye\"},\"groupIds\":[\"namespace\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00\",\"name\":\"77566733-2ab6-455d-972d-793c5a451f00\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Updating\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe1w0yv9t\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Bye\"},\"groupIds\":[\"namespace\"]}}", "isContentBase64": false } }, - "Approve-AzServiceBusPrivateEndpointConnection+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94?api-version=2022-01-01-preview+8": { + "Approve-AzServiceBusPrivateEndpointConnection+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00?api-version=2022-10-01-preview+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "18" ], - "x-ms-client-request-id": [ "9f9c0359-8e14-4fc0-abdc-aaab6127473c" ], + "x-ms-client-request-id": [ "571618f2-8a96-4f2f-aa5a-98b2ab57cbf0" ], "CommandName": [ "Get-AzServiceBusPrivateEndpointConnection" ], "FullCommandName": [ "Get-AzServiceBusPrivateEndpointConnection_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -644,22 +644,22 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "539284fc-4dcf-4565-8051-66d3479a7042_M9SN1_M9SN1" ], + "x-ms-request-id": [ "5a09dee7-56d3-4487-acb2-8eced619b358_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11985" ], - "x-ms-correlation-request-id": [ "46ec9f63-1817-48f3-9e08-d7b0cbdbd2b4" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095250Z:46ec9f63-1817-48f3-9e08-d7b0cbdbd2b4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11953" ], + "x-ms-correlation-request-id": [ "e918e250-247e-4696-8c3c-faf0972b6f7f" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131328Z:e918e250-247e-4696-8c3c-faf0972b6f7f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:52:50 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:13:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "691" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94\",\"name\":\"b5d7b5d8-1b18-4afb-819a-706a0f3d6a94\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.Network/privateEndpoints/pe1jlbfx6\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Bye\"},\"groupIds\":[\"namespace\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00\",\"name\":\"77566733-2ab6-455d-972d-793c5a451f00\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe1w0yv9t\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Bye\"},\"groupIds\":[\"namespace\"]}}", "isContentBase64": false } } diff --git a/src/ServiceBus/ServiceBus.Autorest/test/Deny-AzServiceBusPrivateEndpointConnection.Recording.json b/src/ServiceBus/ServiceBus.Autorest/test/Deny-AzServiceBusPrivateEndpointConnection.Recording.json index a02e6442cec4..4a4b170bbc93 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/Deny-AzServiceBusPrivateEndpointConnection.Recording.json +++ b/src/ServiceBus/ServiceBus.Autorest/test/Deny-AzServiceBusPrivateEndpointConnection.Recording.json @@ -1,13 +1,13 @@ { - "Deny-AzServiceBusPrivateEndpointConnection+[NoContext]+[NoScenario]+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections?api-version=2022-01-01-preview+1": { + "Deny-AzServiceBusPrivateEndpointConnection+[NoContext]+[NoScenario]+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "19" ], - "x-ms-client-request-id": [ "d035ee50-760b-4013-b8d9-89c003317de5" ], + "x-ms-client-request-id": [ "2d31d170-1d29-4f5b-b6df-d9a97e7951d8" ], "CommandName": [ "Get-AzServiceBusPrivateEndpointConnection" ], "FullCommandName": [ "Get-AzServiceBusPrivateEndpointConnection_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -22,34 +22,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "da9a6734-4fd8-4d2e-99e0-940b8af88692_M9SN1_M9SN1" ], + "x-ms-request-id": [ "760c852f-b58d-4181-b855-a261b182f6b3_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11984" ], - "x-ms-correlation-request-id": [ "90309e4e-00f8-4bd8-b758-b8927bd92e23" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095339Z:90309e4e-00f8-4bd8-b758-b8927bd92e23" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11952" ], + "x-ms-correlation-request-id": [ "a456fda7-1d89-4d6b-bd2d-e5f134eba177" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131404Z:a456fda7-1d89-4d6b-bd2d-e5f134eba177" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:53:38 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:14:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1392" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd\",\"name\":\"c5e4d6c3-f38e-4834-929b-559e2d41d5cd\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.Network/privateEndpoints/pe2cxqud3\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"\"},\"groupIds\":[\"namespace\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94\",\"name\":\"b5d7b5d8-1b18-4afb-819a-706a0f3d6a94\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.Network/privateEndpoints/pe1jlbfx6\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Bye\"},\"groupIds\":[\"namespace\"]}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211\",\"name\":\"efc95bab-8a36-4368-bf40-071ec0dd3211\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe2otyvgf\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"\"},\"groupIds\":[\"namespace\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00\",\"name\":\"77566733-2ab6-455d-972d-793c5a451f00\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe1w0yv9t\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Bye\"},\"groupIds\":[\"namespace\"]}}]}", "isContentBase64": false } }, - "Deny-AzServiceBusPrivateEndpointConnection+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd?api-version=2022-01-01-preview+1": { + "Deny-AzServiceBusPrivateEndpointConnection+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "20" ], - "x-ms-client-request-id": [ "0597671a-e7df-4846-bc13-7308e9174260" ], + "x-ms-client-request-id": [ "4c41eedc-f71b-4906-944f-b96d1b104393" ], "CommandName": [ "Get-AzServiceBusPrivateEndpointConnection" ], "FullCommandName": [ "Get-AzServiceBusPrivateEndpointConnection_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -64,30 +64,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "c1f4da3e-f52b-4cff-be0f-6b7e46e11cfd_M9SN1_M9SN1" ], + "x-ms-request-id": [ "fcff3ffb-2794-4b7f-8232-f715eb363517_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11983" ], - "x-ms-correlation-request-id": [ "3095df1b-6e3c-4a89-9368-5a1b3e63632b" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095339Z:3095df1b-6e3c-4a89-9368-5a1b3e63632b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11951" ], + "x-ms-correlation-request-id": [ "456f9968-80d2-48ef-a607-3a6ef4adbe9d" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131404Z:456f9968-80d2-48ef-a607-3a6ef4adbe9d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:53:39 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:14:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "688" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd\",\"name\":\"c5e4d6c3-f38e-4834-929b-559e2d41d5cd\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.Network/privateEndpoints/pe2cxqud3\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"\"},\"groupIds\":[\"namespace\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211\",\"name\":\"efc95bab-8a36-4368-bf40-071ec0dd3211\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe2otyvgf\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"\"},\"groupIds\":[\"namespace\"]}}", "isContentBase64": false } }, - "Deny-AzServiceBusPrivateEndpointConnection+[NoContext]+SetExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd?api-version=2022-01-01-preview+2": { + "Deny-AzServiceBusPrivateEndpointConnection+[NoContext]+SetExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211?api-version=2022-10-01-preview+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd?api-version=2022-01-01-preview", - "Content": "{\n \"properties\": {\n \"privateEndpoint\": {\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.Network/privateEndpoints/pe2cxqud3\"\n },\n \"privateLinkServiceConnectionState\": {\n \"status\": \"Rejected\",\n \"description\": \"\"\n },\n \"provisioningState\": \"Succeeded\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211?api-version=2022-10-01-preview", + "Content": "{\n \"properties\": {\n \"privateEndpoint\": {\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe2otyvgf\"\n },\n \"privateLinkServiceConnectionState\": {\n \"status\": \"Rejected\",\n \"description\": \"\"\n },\n \"provisioningState\": \"Succeeded\"\n }\n}", "isContentBase64": false, "Headers": { }, @@ -101,35 +101,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "043f5a3d-aeb1-4ce6-a33c-24982686e06b_M9SN1_M9SN1" ], - "Azure-AsyncOperation": [ "https://management.azure.com:443/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd/operationStatus/c5e4d6c3-f38e-4834-929b-559e2d41d5cd?api-version=2022-01-01-preview\u0026operationType=Update" ], + "x-ms-request-id": [ "25441ba1-5dca-450e-8b28-c3483a216c1d_M3SN1_M3SN1" ], + "Azure-AsyncOperation": [ "https://management.azure.com:443/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211/operationStatus/efc95bab-8a36-4368-bf40-071ec0dd3211?api-version=2022-10-01-preview\u0026operationType=Update" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], - "x-ms-correlation-request-id": [ "a3198886-b928-4efc-9b3b-2640beba69d6" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095340Z:a3198886-b928-4efc-9b3b-2640beba69d6" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], + "x-ms-correlation-request-id": [ "5def83e4-71de-40e6-a4d0-12067d59b107" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131405Z:5def83e4-71de-40e6-a4d0-12067d59b107" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:53:39 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:14:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "687" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd\",\"name\":\"c5e4d6c3-f38e-4834-929b-559e2d41d5cd\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Updating\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.Network/privateEndpoints/pe2cxqud3\"},\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"\"},\"groupIds\":[\"namespace\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211\",\"name\":\"efc95bab-8a36-4368-bf40-071ec0dd3211\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Updating\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe2otyvgf\"},\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"\"},\"groupIds\":[\"namespace\"]}}", "isContentBase64": false } }, - "Deny-AzServiceBusPrivateEndpointConnection+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94?api-version=2022-01-01-preview+1": { + "Deny-AzServiceBusPrivateEndpointConnection+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "22" ], - "x-ms-client-request-id": [ "8ae68108-7354-4427-9cf8-b12cb10abbe9" ], + "x-ms-client-request-id": [ "fdd9cc52-d71a-4454-90e2-f33f4799e77d" ], "CommandName": [ "Get-AzServiceBusPrivateEndpointConnection" ], "FullCommandName": [ "Get-AzServiceBusPrivateEndpointConnection_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -144,34 +144,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "549c37ab-b310-4589-b078-f9cf2d3613ef_M9SN1_M9SN1" ], + "x-ms-request-id": [ "3538dcff-ef69-465e-b889-01e5b0fd3667_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11982" ], - "x-ms-correlation-request-id": [ "ab153d93-6f02-4613-b1bb-ad4d7f006d9c" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095340Z:ab153d93-6f02-4613-b1bb-ad4d7f006d9c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11950" ], + "x-ms-correlation-request-id": [ "9ed3dae2-2235-48c2-9767-14815182bebf" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131406Z:9ed3dae2-2235-48c2-9767-14815182bebf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:53:39 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:14:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "691" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94\",\"name\":\"b5d7b5d8-1b18-4afb-819a-706a0f3d6a94\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.Network/privateEndpoints/pe1jlbfx6\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Bye\"},\"groupIds\":[\"namespace\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00\",\"name\":\"77566733-2ab6-455d-972d-793c5a451f00\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe1w0yv9t\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Bye\"},\"groupIds\":[\"namespace\"]}}", "isContentBase64": false } }, - "Deny-AzServiceBusPrivateEndpointConnection+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94?api-version=2022-01-01-preview+2": { + "Deny-AzServiceBusPrivateEndpointConnection+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00?api-version=2022-10-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "23" ], - "x-ms-client-request-id": [ "eec43fe3-c1a0-4ce9-a831-a802be022599" ], + "x-ms-client-request-id": [ "ed1556a1-ff1f-458c-a3de-9dd3c83ffce6" ], "CommandName": [ "Get-AzServiceBusPrivateEndpointConnection" ], "FullCommandName": [ "Get-AzServiceBusPrivateEndpointConnection_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -186,30 +186,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "8bbc488c-d6e3-4b2f-af6d-465e1cb6e7b0_M9SN1_M9SN1" ], + "x-ms-request-id": [ "26698def-a663-4914-ab31-f1a355674424_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11981" ], - "x-ms-correlation-request-id": [ "3116a87f-6a9d-408b-9d90-ba85d88eaf54" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095340Z:3116a87f-6a9d-408b-9d90-ba85d88eaf54" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11949" ], + "x-ms-correlation-request-id": [ "0a9655a8-1e51-4328-85a5-9723333f2326" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131406Z:0a9655a8-1e51-4328-85a5-9723333f2326" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:53:39 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:14:06 GMT" ] }, "ContentHeaders": { "Content-Length": [ "691" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94\",\"name\":\"b5d7b5d8-1b18-4afb-819a-706a0f3d6a94\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.Network/privateEndpoints/pe1jlbfx6\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Bye\"},\"groupIds\":[\"namespace\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00\",\"name\":\"77566733-2ab6-455d-972d-793c5a451f00\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe1w0yv9t\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Bye\"},\"groupIds\":[\"namespace\"]}}", "isContentBase64": false } }, - "Deny-AzServiceBusPrivateEndpointConnection+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94?api-version=2022-01-01-preview+3": { + "Deny-AzServiceBusPrivateEndpointConnection+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00?api-version=2022-10-01-preview+3": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94?api-version=2022-01-01-preview", - "Content": "{\n \"properties\": {\n \"privateEndpoint\": {\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.Network/privateEndpoints/pe1jlbfx6\"\n },\n \"privateLinkServiceConnectionState\": {\n \"status\": \"Rejected\",\n \"description\": \"Bye\"\n },\n \"provisioningState\": \"Succeeded\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00?api-version=2022-10-01-preview", + "Content": "{\n \"properties\": {\n \"privateEndpoint\": {\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe1w0yv9t\"\n },\n \"privateLinkServiceConnectionState\": {\n \"status\": \"Rejected\",\n \"description\": \"Bye\"\n },\n \"provisioningState\": \"Succeeded\"\n }\n}", "isContentBase64": false, "Headers": { }, @@ -223,23 +223,23 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "6fcb16dc-f202-4ffc-a57a-1d5279dacc74_M9SN1_M9SN1" ], - "Azure-AsyncOperation": [ "https://management.azure.com:443/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94/operationStatus/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94?api-version=2022-01-01-preview\u0026operationType=Update" ], + "x-ms-request-id": [ "9f8d2a6f-4ca2-4d5e-9067-7f54243fa203_M3SN1_M3SN1" ], + "Azure-AsyncOperation": [ "https://management.azure.com:443/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00/operationStatus/77566733-2ab6-455d-972d-793c5a451f00?api-version=2022-10-01-preview\u0026operationType=Update" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], - "x-ms-correlation-request-id": [ "85360bdf-3c95-446c-b2ae-d90480dc2934" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095341Z:85360bdf-3c95-446c-b2ae-d90480dc2934" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], + "x-ms-correlation-request-id": [ "cb851537-da1e-4029-8489-139ccce6d507" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131407Z:cb851537-da1e-4029-8489-139ccce6d507" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:53:40 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:14:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "690" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94\",\"name\":\"b5d7b5d8-1b18-4afb-819a-706a0f3d6a94\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Updating\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.Network/privateEndpoints/pe1jlbfx6\"},\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"Bye\"},\"groupIds\":[\"namespace\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00\",\"name\":\"77566733-2ab6-455d-972d-793c5a451f00\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Updating\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe1w0yv9t\"},\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"Bye\"},\"groupIds\":[\"namespace\"]}}", "isContentBase64": false } } diff --git a/src/ServiceBus/ServiceBus.Autorest/test/Get-AzServiceBusAuthorizationRule.Recording.json b/src/ServiceBus/ServiceBus.Autorest/test/Get-AzServiceBusAuthorizationRule.Recording.json index 1347094b457f..dea8359edad5 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/Get-AzServiceBusAuthorizationRule.Recording.json +++ b/src/ServiceBus/ServiceBus.Autorest/test/Get-AzServiceBusAuthorizationRule.Recording.json @@ -1,13 +1,13 @@ { - "Get-AzServiceBusAuthorizationRule+[NoContext]+[NoScenario]+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules/namespaceAuthRule1?api-version=2022-01-01-preview+1": { + "Get-AzServiceBusAuthorizationRule+[NoContext]+[NoScenario]+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules/namespaceAuthRule1?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules/namespaceAuthRule1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules/namespaceAuthRule1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "25" ], - "x-ms-client-request-id": [ "5df3ee83-9b8e-4300-8b76-c6318a0e0433" ], + "x-ms-client-request-id": [ "5052e433-6d3b-410a-b3ec-704ef05f726a" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusNamespaceAuthorizationRule_Get" ], "FullCommandName": [ "Get-AzServiceBusNamespaceAuthorizationRule_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -23,32 +23,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11980" ], - "x-ms-request-id": [ "73f003dd-fff1-4538-a1dc-0d79cb6cf9e1" ], - "x-ms-correlation-request-id": [ "73f003dd-fff1-4538-a1dc-0d79cb6cf9e1" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095401Z:73f003dd-fff1-4538-a1dc-0d79cb6cf9e1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11948" ], + "x-ms-request-id": [ "a871c1bf-5531-4b1d-8abf-b46a4d645719" ], + "x-ms-correlation-request-id": [ "a871c1bf-5531-4b1d-8abf-b46a4d645719" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131419Z:a871c1bf-5531-4b1d-8abf-b46a4d645719" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:54:00 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:14:19 GMT" ] }, "ContentHeaders": { "Content-Length": [ "362" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/authorizationrules/namespaceAuthRule1\",\"name\":\"namespaceAuthRule1\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/authorizationrules/namespaceAuthRule1\",\"name\":\"namespaceAuthRule1\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}", "isContentBase64": false } }, - "Get-AzServiceBusAuthorizationRule+[NoContext]+[NoScenario]+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules/queueAuthRule1?api-version=2022-01-01-preview+2": { + "Get-AzServiceBusAuthorizationRule+[NoContext]+[NoScenario]+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules/queueAuthRule1?api-version=2022-10-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules/queueAuthRule1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules/queueAuthRule1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "26" ], - "x-ms-client-request-id": [ "a6807dce-edab-4b45-b769-0051348e2d9c" ], + "x-ms-client-request-id": [ "a4323d7c-9d9a-48c7-b2ee-fabdbd67d8de" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusQueueAuthorizationRule_Get" ], "FullCommandName": [ "Get-AzServiceBusQueueAuthorizationRule_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -64,32 +64,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11979" ], - "x-ms-request-id": [ "fbd348aa-a379-4c53-93b7-ca5f36c4fe02" ], - "x-ms-correlation-request-id": [ "fbd348aa-a379-4c53-93b7-ca5f36c4fe02" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095401Z:fbd348aa-a379-4c53-93b7-ca5f36c4fe02" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11947" ], + "x-ms-request-id": [ "ad61e9e7-1416-44bc-a520-f3e23aa6aefc" ], + "x-ms-correlation-request-id": [ "ad61e9e7-1416-44bc-a520-f3e23aa6aefc" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131420Z:ad61e9e7-1416-44bc-a520-f3e23aa6aefc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:54:00 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:14:19 GMT" ] }, "ContentHeaders": { "Content-Length": [ "375" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationrules/queueAuthRule1\",\"name\":\"queueAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationrules/queueAuthRule1\",\"name\":\"queueAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}", "isContentBase64": false } }, - "Get-AzServiceBusAuthorizationRule+[NoContext]+[NoScenario]+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules/topicAuthRule1?api-version=2022-01-01-preview+3": { + "Get-AzServiceBusAuthorizationRule+[NoContext]+[NoScenario]+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules/topicAuthRule1?api-version=2022-10-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules/topicAuthRule1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules/topicAuthRule1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "27" ], - "x-ms-client-request-id": [ "e39bd68a-125e-48a9-875d-606478eb733d" ], + "x-ms-client-request-id": [ "72f8d65d-5387-457c-b768-ce34b0847570" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusTopicAuthorizationRule_Get" ], "FullCommandName": [ "Get-AzServiceBusTopicAuthorizationRule_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -105,32 +105,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11978" ], - "x-ms-request-id": [ "229f7267-7091-4018-b7d1-18000f37affd" ], - "x-ms-correlation-request-id": [ "229f7267-7091-4018-b7d1-18000f37affd" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095402Z:229f7267-7091-4018-b7d1-18000f37affd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11946" ], + "x-ms-request-id": [ "66516147-bde0-488f-a310-6a444474252b" ], + "x-ms-correlation-request-id": [ "66516147-bde0-488f-a310-6a444474252b" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131421Z:66516147-bde0-488f-a310-6a444474252b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:54:01 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:14:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "375" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationrules/topicAuthRule1\",\"name\":\"topicAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationrules/topicAuthRule1\",\"name\":\"topicAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}", "isContentBase64": false } }, - "Get-AzServiceBusAuthorizationRule+[NoContext]+GetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules?api-version=2022-01-01-preview+1": { + "Get-AzServiceBusAuthorizationRule+[NoContext]+GetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "28" ], - "x-ms-client-request-id": [ "9e961025-6df2-4657-a5fb-214825113379" ], + "x-ms-client-request-id": [ "3d0553ae-2467-4db7-9adb-f9dd016f2298" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusNamespaceAuthorizationRule_List" ], "FullCommandName": [ "Get-AzServiceBusNamespaceAuthorizationRule_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -146,32 +146,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11977" ], - "x-ms-request-id": [ "1dcb87ae-6e06-46bb-9aa6-17b600f2a33f" ], - "x-ms-correlation-request-id": [ "1dcb87ae-6e06-46bb-9aa6-17b600f2a33f" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095402Z:1dcb87ae-6e06-46bb-9aa6-17b600f2a33f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11945" ], + "x-ms-request-id": [ "25371831-6d12-4ed8-82e9-67815e006279" ], + "x-ms-correlation-request-id": [ "25371831-6d12-4ed8-82e9-67815e006279" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131422Z:25371831-6d12-4ed8-82e9-67815e006279" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:54:02 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:14:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1096" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/authorizationrules/RootManageSharedAccessKey\",\"name\":\"RootManageSharedAccessKey\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Listen\",\"Manage\",\"Send\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/authorizationrules/namespaceAuthRule2\",\"name\":\"namespaceAuthRule2\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Send\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/authorizationrules/namespaceAuthRule1\",\"name\":\"namespaceAuthRule1\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/authorizationrules/RootManageSharedAccessKey\",\"name\":\"RootManageSharedAccessKey\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Listen\",\"Manage\",\"Send\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/authorizationrules/namespaceAuthRule2\",\"name\":\"namespaceAuthRule2\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Send\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/authorizationrules/namespaceAuthRule1\",\"name\":\"namespaceAuthRule1\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}]}", "isContentBase64": false } }, - "Get-AzServiceBusAuthorizationRule+[NoContext]+GetExpandedQueue+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules?api-version=2022-01-01-preview+1": { + "Get-AzServiceBusAuthorizationRule+[NoContext]+GetExpandedQueue+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "29" ], - "x-ms-client-request-id": [ "daaf1b10-8947-4ace-b6b1-d8080b478fe6" ], + "x-ms-client-request-id": [ "bc7aeb95-b1ab-4a6f-884f-f8db98ae592b" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusQueueAuthorizationRule_List" ], "FullCommandName": [ "Get-AzServiceBusQueueAuthorizationRule_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -187,32 +187,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11976" ], - "x-ms-request-id": [ "68f0916b-a91a-4b9d-9130-0df05f5e88ff" ], - "x-ms-correlation-request-id": [ "68f0916b-a91a-4b9d-9130-0df05f5e88ff" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095403Z:68f0916b-a91a-4b9d-9130-0df05f5e88ff" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11944" ], + "x-ms-request-id": [ "fa3e24ac-3b68-44b0-bb94-60ce3c95ac18" ], + "x-ms-correlation-request-id": [ "fa3e24ac-3b68-44b0-bb94-60ce3c95ac18" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131422Z:fa3e24ac-3b68-44b0-bb94-60ce3c95ac18" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:54:02 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:14:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "763" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationrules/queueAuthRule2\",\"name\":\"queueAuthRule2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationrules/queueAuthRule1\",\"name\":\"queueAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationrules/queueAuthRule1\",\"name\":\"queueAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationrules/queueAuthRule2\",\"name\":\"queueAuthRule2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}]}", "isContentBase64": false } }, - "Get-AzServiceBusAuthorizationRule+[NoContext]+GetExpandedTopic+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules?api-version=2022-01-01-preview+1": { + "Get-AzServiceBusAuthorizationRule+[NoContext]+GetExpandedTopic+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "30" ], - "x-ms-client-request-id": [ "44ac64da-3e7d-417a-b0dd-d5342e572d97" ], + "x-ms-client-request-id": [ "73226c62-d392-49f0-81fd-234ea26af67f" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusTopicAuthorizationRule_List" ], "FullCommandName": [ "Get-AzServiceBusTopicAuthorizationRule_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -228,32 +228,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11975" ], - "x-ms-request-id": [ "ef1e9e64-7215-4b7d-9256-011294230a10" ], - "x-ms-correlation-request-id": [ "ef1e9e64-7215-4b7d-9256-011294230a10" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095403Z:ef1e9e64-7215-4b7d-9256-011294230a10" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11943" ], + "x-ms-request-id": [ "c1282746-d45d-4d21-b2ce-b4a7fdae5c5a" ], + "x-ms-correlation-request-id": [ "c1282746-d45d-4d21-b2ce-b4a7fdae5c5a" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131423Z:c1282746-d45d-4d21-b2ce-b4a7fdae5c5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:54:02 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:14:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "747" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationrules/topicAuthRule2\",\"name\":\"topicAuthRule2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Listen\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationrules/topicAuthRule1\",\"name\":\"topicAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationrules/topicAuthRule2\",\"name\":\"topicAuthRule2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Listen\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationrules/topicAuthRule1\",\"name\":\"topicAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}]}", "isContentBase64": false } }, - "Get-AzServiceBusAuthorizationRule+[NoContext]+GetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules/namespaceAuthRule1?api-version=2022-01-01-preview+1": { + "Get-AzServiceBusAuthorizationRule+[NoContext]+GetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules/namespaceAuthRule1?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules/namespaceAuthRule1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules/namespaceAuthRule1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "31" ], - "x-ms-client-request-id": [ "816afdaa-afe9-4f0f-b5c9-d55ab1cee2e2" ], + "x-ms-client-request-id": [ "7e71f2d7-4e48-40b9-93cc-84c1d792d23e" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusNamespaceAuthorizationRule_GetViaIdentity" ], "FullCommandName": [ "Get-AzServiceBusNamespaceAuthorizationRule_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -269,32 +269,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11974" ], - "x-ms-request-id": [ "9278d211-8c8a-4130-889f-06b2a281115e" ], - "x-ms-correlation-request-id": [ "9278d211-8c8a-4130-889f-06b2a281115e" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095404Z:9278d211-8c8a-4130-889f-06b2a281115e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11942" ], + "x-ms-request-id": [ "d62762c7-b07d-47b5-b40c-20dbb91b3d7f" ], + "x-ms-correlation-request-id": [ "d62762c7-b07d-47b5-b40c-20dbb91b3d7f" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131424Z:d62762c7-b07d-47b5-b40c-20dbb91b3d7f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:54:03 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:14:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "362" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/authorizationrules/namespaceAuthRule1\",\"name\":\"namespaceAuthRule1\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/authorizationrules/namespaceAuthRule1\",\"name\":\"namespaceAuthRule1\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}", "isContentBase64": false } }, - "Get-AzServiceBusAuthorizationRule+[NoContext]+GetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules/queueAuthRule1?api-version=2022-01-01-preview+2": { + "Get-AzServiceBusAuthorizationRule+[NoContext]+GetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules/queueAuthRule1?api-version=2022-10-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules/queueAuthRule1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules/queueAuthRule1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "32" ], - "x-ms-client-request-id": [ "fa7919bf-c3ec-4da4-91d4-9bc9abb696f3" ], + "x-ms-client-request-id": [ "db8d2512-d7b3-4d83-8740-c2128b50c908" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusQueueAuthorizationRule_GetViaIdentity" ], "FullCommandName": [ "Get-AzServiceBusQueueAuthorizationRule_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -310,32 +310,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11973" ], - "x-ms-request-id": [ "29bbe5f9-c3a7-4c30-bfd1-53e1680dc236" ], - "x-ms-correlation-request-id": [ "29bbe5f9-c3a7-4c30-bfd1-53e1680dc236" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095404Z:29bbe5f9-c3a7-4c30-bfd1-53e1680dc236" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11941" ], + "x-ms-request-id": [ "a50618f8-df8f-4e64-850f-8db240b6b0b9" ], + "x-ms-correlation-request-id": [ "a50618f8-df8f-4e64-850f-8db240b6b0b9" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131425Z:a50618f8-df8f-4e64-850f-8db240b6b0b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:54:03 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:14:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "375" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationrules/queueAuthRule1\",\"name\":\"queueAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationrules/queueAuthRule1\",\"name\":\"queueAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}", "isContentBase64": false } }, - "Get-AzServiceBusAuthorizationRule+[NoContext]+GetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules/topicAuthRule1?api-version=2022-01-01-preview+3": { + "Get-AzServiceBusAuthorizationRule+[NoContext]+GetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules/topicAuthRule1?api-version=2022-10-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules/topicAuthRule1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules/topicAuthRule1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "33" ], - "x-ms-client-request-id": [ "f06d46b2-f395-4ff1-bfd1-8ba862c7fc6d" ], + "x-ms-client-request-id": [ "ae6186d1-32b5-495d-b05b-47900f338df4" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusTopicAuthorizationRule_GetViaIdentity" ], "FullCommandName": [ "Get-AzServiceBusTopicAuthorizationRule_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -351,20 +351,20 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11972" ], - "x-ms-request-id": [ "36191b89-ec2c-47e2-ae15-897fb460f536" ], - "x-ms-correlation-request-id": [ "36191b89-ec2c-47e2-ae15-897fb460f536" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095405Z:36191b89-ec2c-47e2-ae15-897fb460f536" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11940" ], + "x-ms-request-id": [ "6c1899a1-ad4a-4ace-aa44-9a2e0abc4cf9" ], + "x-ms-correlation-request-id": [ "6c1899a1-ad4a-4ace-aa44-9a2e0abc4cf9" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131426Z:6c1899a1-ad4a-4ace-aa44-9a2e0abc4cf9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:54:04 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:14:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "375" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationrules/topicAuthRule1\",\"name\":\"topicAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationrules/topicAuthRule1\",\"name\":\"topicAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}", "isContentBase64": false } } diff --git a/src/ServiceBus/ServiceBus.Autorest/test/Get-AzServiceBusKey.Recording.json b/src/ServiceBus/ServiceBus.Autorest/test/Get-AzServiceBusKey.Recording.json index 2dbe72d98bb6..bd832649fb6f 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/Get-AzServiceBusKey.Recording.json +++ b/src/ServiceBus/ServiceBus.Autorest/test/Get-AzServiceBusKey.Recording.json @@ -1,13 +1,13 @@ { - "Get-AzServiceBusKey+[NoContext]+GetExpandedNamespace+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules/namespaceAuthRule1/listKeys?api-version=2022-01-01-preview+1": { + "Get-AzServiceBusKey+[NoContext]+GetExpandedNamespace+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules/namespaceAuthRule1/listKeys?api-version=2022-10-01-preview+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules/namespaceAuthRule1/listKeys?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules/namespaceAuthRule1/listKeys?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "34" ], - "x-ms-client-request-id": [ "2fab6ea1-d16d-47ab-910a-db343b50436c" ], + "x-ms-client-request-id": [ "33c533ce-0b4f-4c09-96b4-3cd4b886138c" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusNamespaceKey_List" ], "FullCommandName": [ "Get-AzServiceBusNamespaceKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -23,32 +23,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-request-id": [ "3d19674c-9e8e-4526-88f6-36d2a4cf86bc" ], - "x-ms-correlation-request-id": [ "3d19674c-9e8e-4526-88f6-36d2a4cf86bc" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095444Z:3d19674c-9e8e-4526-88f6-36d2a4cf86bc" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], + "x-ms-request-id": [ "3a120513-ff25-4520-b33d-525e82412bf0" ], + "x-ms-correlation-request-id": [ "3a120513-ff25-4520-b33d-525e82412bf0" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131448Z:3a120513-ff25-4520-b33d-525e82412bf0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:54:44 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:14:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "528" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"primaryConnectionString\":\"Endpoint=sb://namespacenamepfxymc.servicebus.windows.net/;SharedAccessKeyName=namespaceAuthRule1;SharedAccessKey=9LEKThbPszzv0wP4FrDsglMFKxaEISVH5Um/iWfMtJY=\",\"secondaryConnectionString\":\"Endpoint=sb://namespacenamepfxymc.servicebus.windows.net/;SharedAccessKeyName=namespaceAuthRule1;SharedAccessKey=cP6vFylar4a331UOLMgu5ALq3d3pfwlDXBXU2UYRBic=\",\"primaryKey\":\"9LEKThbPszzv0wP4FrDsglMFKxaEISVH5Um/iWfMtJY=\",\"secondaryKey\":\"cP6vFylar4a331UOLMgu5ALq3d3pfwlDXBXU2UYRBic=\",\"keyName\":\"namespaceAuthRule1\"}", + "Content": "{\"primaryConnectionString\":\"Endpoint=sb://namespacenamehjil09.servicebus.windows.net/;SharedAccessKeyName=namespaceAuthRule1;SharedAccessKey=x6oIGJ4kG+21Tg8d8Q68Hz3nnygn5ebHy+ASbCB3YvE=\",\"secondaryConnectionString\":\"Endpoint=sb://namespacenamehjil09.servicebus.windows.net/;SharedAccessKeyName=namespaceAuthRule1;SharedAccessKey=XVfSwAW8/2zZ0gMmpeE5sRx3ern/rKCv7+ASbGdJ0is=\",\"primaryKey\":\"x6oIGJ4kG+21Tg8d8Q68Hz3nnygn5ebHy+ASbCB3YvE=\",\"secondaryKey\":\"XVfSwAW8/2zZ0gMmpeE5sRx3ern/rKCv7+ASbGdJ0is=\",\"keyName\":\"namespaceAuthRule1\"}", "isContentBase64": false } }, - "Get-AzServiceBusKey+[NoContext]+GetExpandedQueue+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules/queueAuthRule1/ListKeys?api-version=2022-01-01-preview+1": { + "Get-AzServiceBusKey+[NoContext]+GetExpandedQueue+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules/queueAuthRule1/ListKeys?api-version=2022-10-01-preview+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules/queueAuthRule1/ListKeys?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules/queueAuthRule1/ListKeys?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "35" ], - "x-ms-client-request-id": [ "756ee338-32aa-4543-a457-9bf15293e385" ], + "x-ms-client-request-id": [ "9d02995b-6a2c-4071-b5c9-fc75b7a6b301" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusQueueKey_List" ], "FullCommandName": [ "Get-AzServiceBusQueueKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -64,32 +64,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-request-id": [ "1cad8b8c-659c-4342-85cb-d658583683d8" ], - "x-ms-correlation-request-id": [ "1cad8b8c-659c-4342-85cb-d658583683d8" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095445Z:1cad8b8c-659c-4342-85cb-d658583683d8" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], + "x-ms-request-id": [ "d5fbe21e-7823-44af-8afd-22da607f1ddd" ], + "x-ms-correlation-request-id": [ "d5fbe21e-7823-44af-8afd-22da607f1ddd" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131449Z:d5fbe21e-7823-44af-8afd-22da607f1ddd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:54:45 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:14:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "552" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"primaryConnectionString\":\"Endpoint=sb://namespacenamepfxymc.servicebus.windows.net/;SharedAccessKeyName=queueAuthRule1;SharedAccessKey=NZd5+RSOSa8SFRqDTo/sZu8Ev8IazRg0WBWYw9zJYr8=;EntityPath=queue1\",\"secondaryConnectionString\":\"Endpoint=sb://namespacenamepfxymc.servicebus.windows.net/;SharedAccessKeyName=queueAuthRule1;SharedAccessKey=G6HRUQMl2FC3Q+wuUbjfEkFB/MyrfaGvM70kR4mfHR4=;EntityPath=queue1\",\"primaryKey\":\"NZd5+RSOSa8SFRqDTo/sZu8Ev8IazRg0WBWYw9zJYr8=\",\"secondaryKey\":\"G6HRUQMl2FC3Q+wuUbjfEkFB/MyrfaGvM70kR4mfHR4=\",\"keyName\":\"queueAuthRule1\"}", + "Content": "{\"primaryConnectionString\":\"Endpoint=sb://namespacenamehjil09.servicebus.windows.net/;SharedAccessKeyName=queueAuthRule1;SharedAccessKey=TuGK3T3dv9NQC1Ga7KezLgzpV5x/3NCRs+ASbNm52ok=;EntityPath=queue1\",\"secondaryConnectionString\":\"Endpoint=sb://namespacenamehjil09.servicebus.windows.net/;SharedAccessKeyName=queueAuthRule1;SharedAccessKey=jzpzNASrPw8MizwCbMpQLXBEbFaTGgyjo+ASbI+BS5c=;EntityPath=queue1\",\"primaryKey\":\"TuGK3T3dv9NQC1Ga7KezLgzpV5x/3NCRs+ASbNm52ok=\",\"secondaryKey\":\"jzpzNASrPw8MizwCbMpQLXBEbFaTGgyjo+ASbI+BS5c=\",\"keyName\":\"queueAuthRule1\"}", "isContentBase64": false } }, - "Get-AzServiceBusKey+[NoContext]+GetExpandedTopic+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules/topicAuthRule1/ListKeys?api-version=2022-01-01-preview+1": { + "Get-AzServiceBusKey+[NoContext]+GetExpandedTopic+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules/topicAuthRule1/ListKeys?api-version=2022-10-01-preview+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules/topicAuthRule1/ListKeys?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules/topicAuthRule1/ListKeys?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "36" ], - "x-ms-client-request-id": [ "42249adb-bc36-4a64-88fa-bff0626c23af" ], + "x-ms-client-request-id": [ "c5460c54-74c8-4d8d-8b9b-7c7f62b81c2d" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusTopicKey_List" ], "FullCommandName": [ "Get-AzServiceBusTopicKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -105,20 +105,20 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], - "x-ms-request-id": [ "c80add00-cbb7-4e08-bf31-9865808daf53" ], - "x-ms-correlation-request-id": [ "c80add00-cbb7-4e08-bf31-9865808daf53" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095446Z:c80add00-cbb7-4e08-bf31-9865808daf53" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], + "x-ms-request-id": [ "58bdf0b3-4b08-4591-b74c-7e486f4295fc" ], + "x-ms-correlation-request-id": [ "58bdf0b3-4b08-4591-b74c-7e486f4295fc" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131450Z:58bdf0b3-4b08-4591-b74c-7e486f4295fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:54:46 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:14:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "552" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"primaryConnectionString\":\"Endpoint=sb://namespacenamepfxymc.servicebus.windows.net/;SharedAccessKeyName=topicAuthRule1;SharedAccessKey=aJ9M+gKzSNoQ6k25RYOBE+eF8IF4W6oY5LRVlRFz51A=;EntityPath=topic1\",\"secondaryConnectionString\":\"Endpoint=sb://namespacenamepfxymc.servicebus.windows.net/;SharedAccessKeyName=topicAuthRule1;SharedAccessKey=4i0j6YwSI8ehDbxZvIi5uFHMw9r1Hv1yw+Y//ryrns0=;EntityPath=topic1\",\"primaryKey\":\"aJ9M+gKzSNoQ6k25RYOBE+eF8IF4W6oY5LRVlRFz51A=\",\"secondaryKey\":\"4i0j6YwSI8ehDbxZvIi5uFHMw9r1Hv1yw+Y//ryrns0=\",\"keyName\":\"topicAuthRule1\"}", + "Content": "{\"primaryConnectionString\":\"Endpoint=sb://namespacenamehjil09.servicebus.windows.net/;SharedAccessKeyName=topicAuthRule1;SharedAccessKey=f33rSyiL7n/z1Z6G+y3HdBjHEXVeZAboF+ASbHaw1ug=;EntityPath=topic1\",\"secondaryConnectionString\":\"Endpoint=sb://namespacenamehjil09.servicebus.windows.net/;SharedAccessKeyName=topicAuthRule1;SharedAccessKey=mpNbl3j14kx4+D5cH636PArtxDhUG6iNP+ASbP/FPQk=;EntityPath=topic1\",\"primaryKey\":\"f33rSyiL7n/z1Z6G+y3HdBjHEXVeZAboF+ASbHaw1ug=\",\"secondaryKey\":\"mpNbl3j14kx4+D5cH636PArtxDhUG6iNP+ASbP/FPQk=\",\"keyName\":\"topicAuthRule1\"}", "isContentBase64": false } } diff --git a/src/ServiceBus/ServiceBus.Autorest/test/Get-AzServiceBusNamespaceV2.Recording.json b/src/ServiceBus/ServiceBus.Autorest/test/Get-AzServiceBusNamespaceV2.Recording.json index b48a4b7c3f46..a31690329729 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/Get-AzServiceBusNamespaceV2.Recording.json +++ b/src/ServiceBus/ServiceBus.Autorest/test/Get-AzServiceBusNamespaceV2.Recording.json @@ -1,13 +1,13 @@ { - "Get-AzServiceBusNamespaceV2+[NoContext]+List+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ServiceBus/namespaces?api-version=2022-01-01-preview+1": { + "Get-AzServiceBusNamespaceV2+[NoContext]+List+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ServiceBus/namespaces?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ServiceBus/namespaces?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ServiceBus/namespaces?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "37" ], - "x-ms-client-request-id": [ "f171159a-ef7d-4550-8c00-c69b5886a394" ], + "x-ms-client-request-id": [ "eb273a78-a759-411c-b078-40e1fd0b5f30" ], "CommandName": [ "Get-AzServiceBusNamespaceV2" ], "FullCommandName": [ "Get-AzServiceBusNamespaceV2_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -23,35 +23,35 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-inline-count": [ "" ], - "x-ms-request-id": [ "d561da43-0423-4e54-aba1-dd56f2071b60_M7SN1_M7SN1" ], + "x-ms-request-id": [ "8219e828-cf68-4f22-8c2f-75a996cd933d_M4SN1_M4SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11971" ], - "x-ms-correlation-request-id": [ "f1a40509-ac36-4a1e-8ef1-bfa22ffd1d7d" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095524Z:f1a40509-ac36-4a1e-8ef1-bfa22ffd1d7d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11939" ], + "x-ms-correlation-request-id": [ "46bf4ad8-9186-4d3d-8dab-07d5b857f776" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131517Z:46bf4ad8-9186-4d3d-8dab-07d5b857f776" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:55:23 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:15:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "75194" ], + "Content-Length": [ "79959" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-carrue-powershelltest/providers/Microsoft.ServiceBus/namespaces/v-carrue-ns1\",\"name\":\"v-carrue-ns1\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US 2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:v-carrue-ns1\",\"createdAt\":\"2021-04-08T23:48:28.973Z\",\"updatedAt\":\"2021-04-08T23:49:11.203Z\",\"serviceBusEndpoint\":\"https://v-carrue-ns1.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.ServiceBus/namespaces/testsbnsforqueue\",\"name\":\"testsbnsforqueue\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testsbnsforqueue\",\"createdAt\":\"2021-04-15T01:08:43.003Z\",\"updatedAt\":\"2021-04-15T01:09:56.953Z\",\"serviceBusEndpoint\":\"https://testsbnsforqueue.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.ServiceBus/namespaces/testsbnsforqueueSTD\",\"name\":\"testsbnsforqueueSTD\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testsbnsforqueuestd\",\"createdAt\":\"2021-04-15T01:23:46.453Z\",\"updatedAt\":\"2021-04-15T01:24:32.87Z\",\"serviceBusEndpoint\":\"https://testsbnsforqueueSTD.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Basic\",\"tier\":\"Basic\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.ServiceBus/namespaces/testsbnsbasic1\",\"name\":\"testsbnsbasic1\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testsbnsbasic1\",\"createdAt\":\"2021-04-27T01:06:45.723Z\",\"updatedAt\":\"2021-04-27T01:07:31.023Z\",\"serviceBusEndpoint\":\"https://testsbnsbasic1.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Basic\",\"tier\":\"Basic\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.ServiceBus/namespaces/testin-service-bus\",\"name\":\"testin-service-bus\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testin-service-bus\",\"createdAt\":\"2021-04-27T01:36:32.873Z\",\"updatedAt\":\"2021-04-27T01:37:16.757Z\",\"serviceBusEndpoint\":\"https://testin-service-bus.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Basic\",\"tier\":\"Basic\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/suparame-rg/providers/Microsoft.ServiceBus/namespaces/SuparameSbusTest\",\"name\":\"SuparameSbusTest\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:suparamesbustest\",\"createdAt\":\"2021-06-01T19:19:37.613Z\",\"updatedAt\":\"2021-06-01T19:20:20.14Z\",\"serviceBusEndpoint\":\"https://SuparameSbusTest.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/SB-Intern2021ResourceGroup/providers/Microsoft.ServiceBus/namespaces/sophia-explore\",\"name\":\"sophia-explore\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sophia-explore\",\"createdAt\":\"2021-06-15T21:30:00.227Z\",\"updatedAt\":\"2021-06-15T21:30:41.93Z\",\"serviceBusEndpoint\":\"https://sophia-explore.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Basic\",\"tier\":\"Basic\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/kindrasiri_eh_benchmark/providers/Microsoft.ServiceBus/namespaces/servicebus-demo-kasun\",\"name\":\"servicebus-demo-kasun\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US 2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:servicebus-demo-kasun\",\"createdAt\":\"2021-06-29T15:27:45.863Z\",\"updatedAt\":\"2021-06-29T15:28:30.667Z\",\"serviceBusEndpoint\":\"https://servicebus-demo-kasun.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/dorothytest/providers/Microsoft.ServiceBus/namespaces/standardnewapi\",\"name\":\"standardnewapi\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:standardnewapi\",\"createdAt\":\"2021-07-12T17:45:32.617Z\",\"updatedAt\":\"2021-07-12T17:46:16.403Z\",\"serviceBusEndpoint\":\"https://standardnewapi.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Ardsouza-MoveTest-WestEurope-Source-1/providers/Microsoft.ServiceBus/namespaces/spsbusns08043\",\"name\":\"spsbusns08043\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:spsbusns08043\",\"createdAt\":\"2021-08-04T22:07:17.28Z\",\"updatedAt\":\"2021-08-04T22:08:01.633Z\",\"serviceBusEndpoint\":\"https://spsbusns08043.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/PPGTest/providers/Microsoft.ServiceBus/namespaces/TestSBPrim0901\",\"name\":\"TestSBPrim0901\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"Central US EUAP\",\"tags\":{},\"identity\":{\"principalId\":\"6b33d086-ffbd-4ccb-8b66-40ab9405cb6a\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testsbprim0901\",\"createdAt\":\"2021-09-02T01:02:44.753Z\",\"updatedAt\":\"2022-11-15T19:40:08.023Z\",\"serviceBusEndpoint\":\"https://TestSBPrim0901.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/PPGTest/providers/Microsoft.ServiceBus/namespaces/TestSBPremSec0901\",\"name\":\"TestSBPremSec0901\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testsbpremsec0901\",\"createdAt\":\"2021-09-02T01:10:50.98Z\",\"updatedAt\":\"2022-11-15T19:41:18.683Z\",\"serviceBusEndpoint\":\"https://TestSBPremSec0901.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-6226\",\"name\":\"sdk-Namespace-6226\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"Australia East\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"identity\":{\"principalId\":\"054bf5ab-1f23-4a26-90b3-2bc78252229f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-6226\",\"createdAt\":\"2021-09-22T17:27:35.293Z\",\"updatedAt\":\"2022-11-10T17:22:12.46Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-6226.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-5506\",\"name\":\"sdk-Namespace-5506\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West Central US\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-5506\",\"createdAt\":\"2021-09-22T21:15:19.707Z\",\"updatedAt\":\"2021-09-22T21:24:59.14Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-5506.servicebus.windows.net:443/\",\"status\":\"Active\",\"alternateName\":\"sdk-PostMigration-5506\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/cli_test_eh_networkwrj55aatxlgxucsba6igeidap7hqov64fz6i6fhkxg2q66tsychlm5im/providers/Microsoft.ServiceBus/namespaces/servicebus-nsclidurp\",\"name\":\"servicebus-nsclidurp\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{\"{tag1\":\"value1}\"},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nsclidurp\",\"createdAt\":\"2021-09-30T00:42:42.94Z\",\"updatedAt\":\"2021-09-30T00:43:27.07Z\",\"serviceBusEndpoint\":\"https://servicebus-nsclidurp.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/cli_test_eh_networkb6dybi7i77qadmwp3x7qn4fsvzex5svqgkd23ljbqqekhpuqpewxl5ox/providers/Microsoft.ServiceBus/namespaces/servicebus-nsclimdvj\",\"name\":\"servicebus-nsclimdvj\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{\"{tag1\":\"value1}\"},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nsclimdvj\",\"createdAt\":\"2021-09-30T01:41:09.41Z\",\"updatedAt\":\"2021-09-30T01:41:52.31Z\",\"serviceBusEndpoint\":\"https://servicebus-nsclimdvj.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/cli_test_eh_networkteenbwgqgyyl2y6iy7uyajvcvzeffcawclhjplzvgypwqep53ptcz56k/providers/Microsoft.ServiceBus/namespaces/servicebus-nscligk4i\",\"name\":\"servicebus-nscligk4i\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{\"{tag1\":\"value1}\"},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscligk4i\",\"createdAt\":\"2021-09-30T02:07:26.58Z\",\"updatedAt\":\"2021-09-30T02:08:08.96Z\",\"serviceBusEndpoint\":\"https://servicebus-nscligk4i.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-7912\",\"name\":\"sdk-Namespace-7912\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West Central US\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-7912\",\"createdAt\":\"2021-10-25T10:43:06.873Z\",\"updatedAt\":\"2021-10-25T11:35:04.843Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-7912.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-6064\",\"name\":\"sdk-Namespace-6064\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West Central US\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-6064\",\"createdAt\":\"2021-10-25T11:28:25.843Z\",\"updatedAt\":\"2021-10-25T11:35:10.567Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-6064.servicebus.windows.net:443/\",\"status\":\"Active\",\"alternateName\":\"sdk-PostMigration-4665\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-6179\",\"name\":\"sdk-Namespace-6179\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"Australia East\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"identity\":{\"principalId\":\"99682142-7601-41ba-807c-824e705986d5\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"sdktestingkey11\",\"keyVaultUri\":\"https://sdktestingkey1.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-6179\",\"createdAt\":\"2021-10-26T08:21:55.237Z\",\"updatedAt\":\"2022-10-29T08:16:18.583Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-6179.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/dorothytest/providers/Microsoft.ServiceBus/namespaces/standardregressiontest\",\"name\":\"standardregressiontest\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:standardregressiontest\",\"createdAt\":\"2021-11-02T05:22:12.01Z\",\"updatedAt\":\"2021-11-02T05:22:56.543Z\",\"serviceBusEndpoint\":\"https://standardregressiontest.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/damorg/providers/Microsoft.ServiceBus/namespaces/testPS\",\"name\":\"testPS\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testps\",\"createdAt\":\"2022-01-13T17:43:35.237Z\",\"updatedAt\":\"2022-01-13T17:44:20.01Z\",\"serviceBusEndpoint\":\"https://testPS.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Basic\",\"tier\":\"Basic\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/damorg/providers/Microsoft.ServiceBus/namespaces/pstesting\",\"name\":\"pstesting\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:pstesting\",\"createdAt\":\"2022-01-18T05:58:14.157Z\",\"updatedAt\":\"2022-02-12T01:32:16.497Z\",\"serviceBusEndpoint\":\"https://pstesting.servicebus.windows.net:443/\",\"status\":\"Active\",\"alternateName\":\"bpstesting-postmigration2\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/jakeschiller-synthetics/providers/Microsoft.ServiceBus/namespaces/synthetics-sb-ns\",\"name\":\"synthetics-sb-ns\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{\"jms-for\":\"cache\"},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:synthetics-sb-ns\",\"createdAt\":\"2022-01-26T21:42:54.873Z\",\"updatedAt\":\"2022-07-08T18:29:09.99Z\",\"serviceBusEndpoint\":\"https://synthetics-sb-ns.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-ServiceBus-EASTUS2EUAP/providers/Microsoft.ServiceBus/namespaces/sbprem-perf-cbn-ns-1\",\"name\":\"sbprem-perf-cbn-ns-1\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"EAST US 2 EUAP\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Failed\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sbprem-perf-cbn-ns-1\",\"createdAt\":\"2022-01-31T23:43:38.71Z\",\"updatedAt\":\"2022-06-01T21:49:33.537Z\",\"serviceBusEndpoint\":\"https://sbprem-perf-cbn-ns-1.servicebus.windows.net:443/\",\"status\":\"Activating\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/rg-eldert-pg/providers/Microsoft.ServiceBus/namespaces/sb-eldert-pg\",\"name\":\"sb-eldert-pg\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US 2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sb-eldert-pg\",\"createdAt\":\"2022-02-09T22:18:45.293Z\",\"updatedAt\":\"2022-04-04T02:57:41.057Z\",\"serviceBusEndpoint\":\"https://sb-eldert-pg.servicebus.windows.net:443/\",\"status\":\"Active\",\"alternateName\":\"sb-eldert-pg-standard\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps8383/providers/Microsoft.ServiceBus/namespaces/ServiceBus-STDNamespace-8049\",\"name\":\"ServiceBus-STDNamespace-8049\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:servicebus-stdnamespace-8049\",\"createdAt\":\"2022-02-16T14:59:22.237Z\",\"updatedAt\":\"2022-02-16T15:06:07.67Z\",\"serviceBusEndpoint\":\"https://ServiceBus-STDNamespace-8049.servicebus.windows.net:443/\",\"status\":\"Active\",\"alternateName\":\"PostMigration-Name-3646\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps8383/providers/Microsoft.ServiceBus/namespaces/ServiceBus-PRENamespace-8744\",\"name\":\"ServiceBus-PRENamespace-8744\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Central US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:servicebus-prenamespace-8744\",\"createdAt\":\"2022-02-16T15:00:30.94Z\",\"updatedAt\":\"2022-02-16T15:05:57.88Z\",\"serviceBusEndpoint\":\"https://ServiceBus-PRENamespace-8744.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/cli_test_sb_aliast2seb6uiraga2np5lweiufaxq64glozljlzhjhj3fcla4zct3swtvszahw/providers/Microsoft.ServiceBus/namespaces/sb-nscli4sweuzamk5wa\",\"name\":\"sb-nscli4sweuzamk5wa\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"{tag1: value1,\":\"\",\"tag2: value2}\":\"\"},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli4sweuzamk5wa\",\"createdAt\":\"2022-02-22T04:06:39.203Z\",\"updatedAt\":\"2022-02-22T04:11:45.95Z\",\"serviceBusEndpoint\":\"https://sb-nscli4sweuzamk5wa.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/cli_test_sb_aliast2seb6uiraga2np5lweiufaxq64glozljlzhjhj3fcla4zct3swtvszahw/providers/Microsoft.ServiceBus/namespaces/sb-nsclitm6qtnps6jqu\",\"name\":\"sb-nsclitm6qtnps6jqu\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Central US\",\"tags\":{\"{tag1: value1,\":\"\",\"tag2: value2}\":\"\"},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sb-nsclitm6qtnps6jqu\",\"createdAt\":\"2022-02-22T04:08:21.133Z\",\"updatedAt\":\"2022-02-22T04:11:48.73Z\",\"serviceBusEndpoint\":\"https://sb-nsclitm6qtnps6jqu.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/TestingKa/providers/Microsoft.ServiceBus/namespaces/sbMetric\",\"name\":\"sbMetric\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"Central US EUAP\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sbmetric\",\"createdAt\":\"2022-03-09T21:45:38.303Z\",\"updatedAt\":\"2022-03-09T21:46:21.583Z\",\"serviceBusEndpoint\":\"https://sbMetric.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/rg-minimum-tls-sample/providers/Microsoft.ServiceBus/namespaces/sb-minimum-tls-sample\",\"name\":\"sb-minimum-tls-sample\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US\",\"tags\":{\"Owner\":\"Eldert Grootenboer\"},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sb-minimum-tls-sample\",\"createdAt\":\"2022-03-21T17:30:32.467Z\",\"updatedAt\":\"2022-03-21T17:31:16.66Z\",\"serviceBusEndpoint\":\"https://sb-minimum-tls-sample.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/bailiu-servicebus-test-resources/providers/Microsoft.ServiceBus/namespaces/bailiu-servicebus-test-standard\",\"name\":\"bailiu-servicebus-test-standard\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"EAST US 2 EUAP\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:bailiu-servicebus-test-standard\",\"createdAt\":\"2022-03-30T22:00:46.823Z\",\"updatedAt\":\"2022-03-30T22:01:30.287Z\",\"serviceBusEndpoint\":\"https://bailiu-servicebus-test-standard.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/spsbusrg/providers/Microsoft.ServiceBus/namespaces/spsbusns0412\",\"name\":\"spsbusns0412\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:spsbusns0412\",\"createdAt\":\"2022-04-12T21:39:51.047Z\",\"updatedAt\":\"2022-04-12T21:40:35.39Z\",\"serviceBusEndpoint\":\"https://spsbusns0412.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-ServiceBus-EASTUS2EUAP/providers/Microsoft.ServiceBus/namespaces/vijayperftest2\",\"name\":\"vijayperftest2\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"EAST US 2 EUAP\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Failed\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:vijayperftest2\",\"createdAt\":\"2022-04-14T22:48:57.633Z\",\"updatedAt\":\"2022-06-01T21:49:33.53Z\",\"serviceBusEndpoint\":\"https://vijayperftest2.servicebus.windows.net:443/\",\"status\":\"Activating\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/rg-eldert-empower-your-azure-iac-with-bicep/providers/Microsoft.ServiceBus/namespaces/contoso-service-bus\",\"name\":\"contoso-service-bus\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US 2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:contoso-service-bus\",\"createdAt\":\"2022-04-15T21:10:11.32Z\",\"updatedAt\":\"2022-04-15T21:10:54.23Z\",\"serviceBusEndpoint\":\"https://contoso-service-bus.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/TestingSDK20220101/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-7033\",\"name\":\"sdk-Namespace-7033\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"Australia East\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-7033\",\"createdAt\":\"2022-04-21T22:01:13.913Z\",\"updatedAt\":\"2022-04-21T22:01:58.623Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-7033.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/TestingSDK20220101/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-5025\",\"name\":\"sdk-Namespace-5025\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"Australia East\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-5025\",\"createdAt\":\"2022-04-21T22:16:39.923Z\",\"updatedAt\":\"2022-04-21T22:17:25.36Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-5025.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/jagstest/providers/Microsoft.ServiceBus/namespaces/jagsPMmintls\",\"name\":\"jagsPMmintls\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:jagspmmintls\",\"createdAt\":\"2022-04-27T18:09:53.973Z\",\"updatedAt\":\"2022-04-27T18:30:41.993Z\",\"serviceBusEndpoint\":\"https://jagsPMmintls.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Basic\",\"tier\":\"Basic\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/PPGTest/providers/Microsoft.ServiceBus/namespaces/TestSBBasic0427\",\"name\":\"TestSBBasic0427\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"Canada Central\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testsbbasic0427\",\"createdAt\":\"2022-04-27T19:48:28.377Z\",\"updatedAt\":\"2022-04-27T21:05:55.457Z\",\"serviceBusEndpoint\":\"https://TestSBBasic0427.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-ServiceBus-EASTUS2EUAP/providers/Microsoft.ServiceBus/namespaces/vijayperftest7\",\"name\":\"vijayperftest7\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"EAST US 2 EUAP\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Failed\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:vijayperftest7\",\"createdAt\":\"2022-04-28T00:22:48.597Z\",\"updatedAt\":\"2022-06-01T21:49:33.53Z\",\"serviceBusEndpoint\":\"https://vijayperftest7.servicebus.windows.net:443/\",\"status\":\"Activating\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/jakeschiller/providers/Microsoft.ServiceBus/namespaces/dri-testsb\",\"name\":\"dri-testsb\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West Central US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:dri-testsb\",\"createdAt\":\"2022-05-10T14:41:17.363Z\",\"updatedAt\":\"2022-05-10T14:42:01.29Z\",\"serviceBusEndpoint\":\"https://dri-testsb.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/spsbusrg/providers/Microsoft.ServiceBus/namespaces/sptlsns0510\",\"name\":\"sptlsns0510\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sptlsns0510\",\"createdAt\":\"2022-05-10T18:37:45.837Z\",\"updatedAt\":\"2022-05-10T18:38:29.23Z\",\"serviceBusEndpoint\":\"https://sptlsns0510.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/damorg/providers/Microsoft.ServiceBus/namespaces/testlatestSBMSI\",\"name\":\"testlatestSBMSI\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/damorg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Test-MSI\":{\"clientId\":\"a2214131-2993-43cd-82fe-e243903823e4\",\"principalId\":\"b91e572e-977a-41dd-af98-8e35aacbce8c\"}}},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"testkey\",\"keyVaultUri\":\"https://testdamokeyvault.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/damorg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Test-MSI\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testlatestsbmsi\",\"createdAt\":\"2022-05-12T14:18:11.68Z\",\"updatedAt\":\"2022-11-08T06:44:14.31Z\",\"serviceBusEndpoint\":\"https://testlatestSBMSI.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/damorg/providers/Microsoft.ServiceBus/namespaces/testlatestSBMSI1\",\"name\":\"testlatestSBMSI1\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/damorg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Test-MSI\":{\"clientId\":\"a2214131-2993-43cd-82fe-e243903823e4\",\"principalId\":\"b91e572e-977a-41dd-af98-8e35aacbce8c\"}}},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"testkey\",\"keyVaultUri\":\"https://testdamokeyvault.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/damorg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Test-MSI\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testlatestsbmsi1\",\"createdAt\":\"2022-05-12T15:12:20.353Z\",\"updatedAt\":\"2022-11-08T06:44:09.057Z\",\"serviceBusEndpoint\":\"https://testlatestSBMSI1.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/anway/providers/Microsoft.ServiceBus/namespaces/premiumnoebs\",\"name\":\"premiumnoebs\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"EAST US 2 EUAP\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:premiumnoebs\",\"createdAt\":\"2022-05-12T18:30:55.67Z\",\"updatedAt\":\"2022-05-12T18:32:12.573Z\",\"serviceBusEndpoint\":\"https://premiumnoebs.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/cli_test_sb_privateyh52pynvfafabynpghrgrtmgx3cg2exbaafx6a3dlwhxxnwvnuredxr4/providers/Microsoft.ServiceBus/namespaces/servicebus-nsclifr66\",\"name\":\"servicebus-nsclifr66\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{\"{tag1\":\"value1}\"},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nsclifr66\",\"createdAt\":\"2022-05-13T17:11:57.133Z\",\"updatedAt\":\"2022-05-13T17:13:15.163Z\",\"serviceBusEndpoint\":\"https://servicebus-nsclifr66.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/spsbusrg/providers/Microsoft.ServiceBus/namespaces/spsbuspremns0516\",\"name\":\"spsbuspremns0516\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:spsbuspremns0516\",\"createdAt\":\"2022-05-16T19:10:24.013Z\",\"updatedAt\":\"2022-11-20T23:06:41.073Z\",\"serviceBusEndpoint\":\"https://spsbuspremns0516.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/spsbuspremrgimport/providers/Microsoft.ServiceBus/namespaces/spsbuspremnsimport0516\",\"name\":\"spsbuspremnsimport0516\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:spsbuspremnsimport0516\",\"createdAt\":\"2022-05-16T20:03:33.607Z\",\"updatedAt\":\"2022-05-16T20:04:46.26Z\",\"serviceBusEndpoint\":\"https://spsbuspremnsimport0516.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/spsbuspremimportrg2/providers/Microsoft.ServiceBus/namespaces/spsbuspremnsimport05162\",\"name\":\"spsbuspremnsimport05162\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:spsbuspremnsimport05162\",\"createdAt\":\"2022-05-16T20:09:18.567Z\",\"updatedAt\":\"2022-11-20T23:06:10.58Z\",\"serviceBusEndpoint\":\"https://spsbuspremnsimport05162.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-ServiceBus-EASTUS2EUAP/providers/Microsoft.ServiceBus/namespaces/premiumebs\",\"name\":\"premiumebs\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"EAST US 2 EUAP\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:premiumebs\",\"createdAt\":\"2022-05-16T23:17:00.89Z\",\"updatedAt\":\"2022-07-12T21:10:35.843Z\",\"serviceBusEndpoint\":\"https://premiumebs.servicebus.windows.net:443/\",\"status\":\"Removing\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/spsbusarmrg0516/providers/Microsoft.ServiceBus/namespaces/spsbusarmns0516\",\"name\":\"spsbusarmns0516\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:spsbusarmns0516\",\"createdAt\":\"2022-05-17T01:21:33.28Z\",\"updatedAt\":\"2022-11-20T23:01:06.53Z\",\"serviceBusEndpoint\":\"https://spsbusarmns0516.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ardsouza-test/providers/Microsoft.ServiceBus/namespaces/arddsouza-publicnwacc-test\",\"name\":\"arddsouza-publicnwacc-test\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"EAST US 2 EUAP\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:arddsouza-publicnwacc-test\",\"createdAt\":\"2022-05-17T15:39:51.217Z\",\"updatedAt\":\"2022-05-17T15:45:11.673Z\",\"serviceBusEndpoint\":\"https://arddsouza-publicnwacc-test.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-ServiceBus-EastUS2/providers/Microsoft.ServiceBus/namespaces/premiumbn3noebs\",\"name\":\"premiumbn3noebs\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US 2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:premiumbn3noebs\",\"createdAt\":\"2022-05-18T22:32:36.127Z\",\"updatedAt\":\"2022-05-18T22:33:47.16Z\",\"serviceBusEndpoint\":\"https://premiumbn3noebs.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-ServiceBus-EastUS2/providers/Microsoft.ServiceBus/namespaces/premiumbn3aznoebs\",\"name\":\"premiumbn3aznoebs\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US 2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:premiumbn3aznoebs\",\"createdAt\":\"2022-05-18T23:42:08.71Z\",\"updatedAt\":\"2022-05-18T23:43:21.73Z\",\"serviceBusEndpoint\":\"https://premiumbn3aznoebs.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-ServiceBus-EASTUS2EUAP/providers/Microsoft.ServiceBus/namespaces/premiumebs2\",\"name\":\"premiumebs2\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"EAST US 2 EUAP\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:premiumebs2\",\"createdAt\":\"2022-05-18T23:54:08.84Z\",\"updatedAt\":\"2022-05-18T23:55:46.587Z\",\"serviceBusEndpoint\":\"https://premiumebs2.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/cesar-kafka/providers/Microsoft.ServiceBus/namespaces/cesar-premium-az-cbnaz4\",\"name\":\"cesar-premium-az-cbnaz4\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"EAST US 2 EUAP\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:cesar-premium-az-cbnaz4\",\"createdAt\":\"2022-05-19T00:58:39.067Z\",\"updatedAt\":\"2022-05-19T01:26:36.74Z\",\"serviceBusEndpoint\":\"https://cesar-premium-az-cbnaz4.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/anway/providers/Microsoft.ServiceBus/namespaces/encryptiontest\",\"name\":\"encryptiontest\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US 2\",\"tags\":{},\"identity\":{\"principalId\":\"68a5ed9e-0de7-48c1-a129-8f6ea42d3278\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"k1\",\"keyVaultUri\":\"https://anwaydev.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"k2\",\"keyVaultUri\":\"https://anwaydev.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":true},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:encryptiontest\",\"createdAt\":\"2022-05-25T22:59:59.527Z\",\"updatedAt\":\"2022-10-10T23:03:09.703Z\",\"serviceBusEndpoint\":\"https://encryptiontest.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/rg-eldert-implementing-an-event-sourcing-strategy-on-azure/providers/Microsoft.ServiceBus/namespaces/sb-implementing-event-sourcing-strategy\",\"name\":\"sb-implementing-event-sourcing-strategy\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US 2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sb-implementing-event-sourcing-strategy\",\"createdAt\":\"2022-05-27T00:56:33.893Z\",\"updatedAt\":\"2022-05-27T01:09:43Z\",\"serviceBusEndpoint\":\"https://sb-implementing-event-sourcing-strategy.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/karenTest/providers/Microsoft.ServiceBus/namespaces/applensTest\",\"name\":\"applensTest\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"Central US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:applenstest\",\"createdAt\":\"2022-05-27T18:34:24.68Z\",\"updatedAt\":\"2022-09-19T09:34:56.84Z\",\"serviceBusEndpoint\":\"https://applensTest.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/rg-eldert-pg/providers/Microsoft.ServiceBus/namespaces/sb-eldert-premium-pg\",\"name\":\"sb-eldert-premium-pg\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US 2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sb-eldert-premium-pg\",\"createdAt\":\"2022-05-31T22:20:50.39Z\",\"updatedAt\":\"2022-10-14T20:48:17.98Z\",\"serviceBusEndpoint\":\"https://sb-eldert-premium-pg.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/karenTest/providers/Microsoft.ServiceBus/namespaces/icmTest\",\"name\":\"icmTest\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"Central US\",\"tags\":{},\"identity\":{\"principalId\":\"e416364a-9176-42ea-b566-d0f45c3f0ad1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:icmtest\",\"createdAt\":\"2022-06-01T17:26:00.157Z\",\"updatedAt\":\"2022-10-15T01:37:09.5Z\",\"serviceBusEndpoint\":\"https://icmTest.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/bailiu-servicebus-test-resources/providers/Microsoft.ServiceBus/namespaces/bailiu-servicebus-test-premium\",\"name\":\"bailiu-servicebus-test-premium\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"EAST US 2 EUAP\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:bailiu-servicebus-test-premium\",\"createdAt\":\"2022-06-02T01:30:02.11Z\",\"updatedAt\":\"2022-06-02T01:31:19.123Z\",\"serviceBusEndpoint\":\"https://bailiu-servicebus-test-premium.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/damorg/providers/Microsoft.ServiceBus/namespaces/geodrbackup\",\"name\":\"geodrbackup\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:geodrbackup\",\"createdAt\":\"2022-06-03T10:07:15.727Z\",\"updatedAt\":\"2022-06-10T08:03:55.733Z\",\"serviceBusEndpoint\":\"https://geodrbackup.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/damorg/providers/Microsoft.ServiceBus/namespaces/geodrbackup2\",\"name\":\"geodrbackup2\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:geodrbackup2\",\"createdAt\":\"2022-06-04T07:10:36.03Z\",\"updatedAt\":\"2022-06-04T07:11:51.513Z\",\"serviceBusEndpoint\":\"https://geodrbackup2.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-ServiceBus-EASTUS2EUAP/providers/Microsoft.ServiceBus/namespaces/premiumebs3\",\"name\":\"premiumebs3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"EAST US 2 EUAP\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:premiumebs3\",\"createdAt\":\"2022-06-08T04:26:57.367Z\",\"updatedAt\":\"2022-07-12T21:10:13.047Z\",\"serviceBusEndpoint\":\"https://premiumebs3.servicebus.windows.net:443/\",\"status\":\"Removing\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-8587\",\"name\":\"sdk-Namespace-8587\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-8587\",\"createdAt\":\"2022-06-08T13:09:22.407Z\",\"updatedAt\":\"2022-06-08T13:27:13.71Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-8587.servicebus.windows.net:443/\",\"status\":\"Disabled\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RGTestingCreateCluster/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-6837\",\"name\":\"sdk-Namespace-6837\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-6837\",\"createdAt\":\"2022-06-08T13:31:34.743Z\",\"updatedAt\":\"2022-06-08T13:33:16.23Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-6837.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/DefaultResourceGroup-EUS2/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-8810\",\"name\":\"sdk-Namespace-8810\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US 2\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-8810\",\"createdAt\":\"2022-06-08T13:32:47.733Z\",\"updatedAt\":\"2022-06-08T13:34:01.107Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-8810.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RGTestingCreateCluster/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-4456\",\"name\":\"sdk-Namespace-4456\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-4456\",\"createdAt\":\"2022-06-08T13:36:30.017Z\",\"updatedAt\":\"2022-06-08T13:49:53.697Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-4456.servicebus.windows.net:443/\",\"status\":\"Active\",\"alternateName\":\"sdk-DisasterRecovery8645\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RGTestingCreateCluster/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-4885\",\"name\":\"sdk-Namespace-4885\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Central US\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-4885\",\"createdAt\":\"2022-06-08T13:38:15.643Z\",\"updatedAt\":\"2022-06-08T13:51:26.41Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-4885.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/DefaultResourceGroup-EUS2/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-9022\",\"name\":\"sdk-Namespace-9022\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US 2\",\"tags\":{\"tag3\":\"value3\",\"tag4\":\"value4\"},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-9022\",\"createdAt\":\"2022-06-08T13:54:41.563Z\",\"updatedAt\":\"2022-06-08T13:56:31.21Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-9022.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/damorg/providers/Microsoft.ServiceBus/namespaces/geodrsec\",\"name\":\"geodrsec\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West Central US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:geodrsec\",\"createdAt\":\"2022-06-10T06:30:54.383Z\",\"updatedAt\":\"2022-06-10T08:03:57.317Z\",\"serviceBusEndpoint\":\"https://geodrsec.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/spsbusrg/providers/Microsoft.ServiceBus/namespaces/contoso-service-bus-ns\",\"name\":\"contoso-service-bus-ns\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:contoso-service-bus-ns\",\"createdAt\":\"2022-06-14T20:02:39.237Z\",\"updatedAt\":\"2022-06-14T20:03:22.84Z\",\"serviceBusEndpoint\":\"https://contoso-service-bus-ns.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-ServiceBus-EASTUS2EUAP/providers/Microsoft.ServiceBus/namespaces/premiumebs4\",\"name\":\"premiumebs4\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"EAST US 2 EUAP\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:premiumebs4\",\"createdAt\":\"2022-06-15T19:25:30.463Z\",\"updatedAt\":\"2022-07-12T21:10:03.523Z\",\"serviceBusEndpoint\":\"https://premiumebs4.servicebus.windows.net:443/\",\"status\":\"Removing\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-ServiceBus-EASTUS2EUAP/providers/Microsoft.ServiceBus/namespaces/premiumebs5\",\"name\":\"premiumebs5\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"EAST US 2 EUAP\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:premiumebs5\",\"createdAt\":\"2022-06-15T19:25:41.55Z\",\"updatedAt\":\"2022-07-12T21:09:57.107Z\",\"serviceBusEndpoint\":\"https://premiumebs5.servicebus.windows.net:443/\",\"status\":\"Removing\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-ServiceBus-EASTUS2EUAP/providers/Microsoft.ServiceBus/namespaces/premiumebs6\",\"name\":\"premiumebs6\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"EAST US 2 EUAP\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:premiumebs6\",\"createdAt\":\"2022-06-15T19:25:51.517Z\",\"updatedAt\":\"2022-06-15T19:28:31.273Z\",\"serviceBusEndpoint\":\"https://premiumebs6.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-ServiceBus-EASTUS2EUAP/providers/Microsoft.ServiceBus/namespaces/premiumebs7\",\"name\":\"premiumebs7\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"EAST US 2 EUAP\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:premiumebs7\",\"createdAt\":\"2022-06-15T19:26:02.93Z\",\"updatedAt\":\"2022-07-12T21:09:46.69Z\",\"serviceBusEndpoint\":\"https://premiumebs7.servicebus.windows.net:443/\",\"status\":\"Removing\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-ServiceBus-EASTUS2EUAP/providers/Microsoft.ServiceBus/namespaces/premiumebs8\",\"name\":\"premiumebs8\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"EAST US 2 EUAP\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:premiumebs8\",\"createdAt\":\"2022-06-15T19:26:16.803Z\",\"updatedAt\":\"2022-06-15T19:29:36.037Z\",\"serviceBusEndpoint\":\"https://premiumebs8.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-ServiceBus-EASTUS2EUAP/providers/Microsoft.ServiceBus/namespaces/premiumebs9\",\"name\":\"premiumebs9\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"EAST US 2 EUAP\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:premiumebs9\",\"createdAt\":\"2022-06-15T19:26:25.66Z\",\"updatedAt\":\"2022-07-12T21:09:02.747Z\",\"serviceBusEndpoint\":\"https://premiumebs9.servicebus.windows.net:443/\",\"status\":\"Removing\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-ServiceBus-EASTUS2EUAP/providers/Microsoft.ServiceBus/namespaces/premiumebs10\",\"name\":\"premiumebs10\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"EAST US 2 EUAP\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:premiumebs10\",\"createdAt\":\"2022-06-15T19:26:37.423Z\",\"updatedAt\":\"2022-07-12T21:10:29.553Z\",\"serviceBusEndpoint\":\"https://premiumebs10.servicebus.windows.net:443/\",\"status\":\"Removing\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-ServiceBus-EASTUS2EUAP/providers/Microsoft.ServiceBus/namespaces/premiumebs11\",\"name\":\"premiumebs11\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"EAST US 2 EUAP\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:premiumebs11\",\"createdAt\":\"2022-06-15T19:26:45.57Z\",\"updatedAt\":\"2022-07-12T21:10:23.047Z\",\"serviceBusEndpoint\":\"https://premiumebs11.servicebus.windows.net:443/\",\"status\":\"Removing\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/spsbusrg/providers/Microsoft.ServiceBus/namespaces/spsbusns0617\",\"name\":\"spsbusns0617\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:spsbusns0617\",\"createdAt\":\"2022-06-17T15:16:10.293Z\",\"updatedAt\":\"2022-06-17T15:16:54.407Z\",\"serviceBusEndpoint\":\"https://spsbusns0617.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RGTestingCreateCluster/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-8755\",\"name\":\"sdk-Namespace-8755\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-8755\",\"createdAt\":\"2022-06-20T08:01:50.84Z\",\"updatedAt\":\"2022-06-20T08:19:28.517Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-8755.servicebus.windows.net:443/\",\"status\":\"Active\",\"alternateName\":\"sdk-DisasterRecovery5454\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RGTestingCreateCluster/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-9515\",\"name\":\"sdk-Namespace-9515\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Central US\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-9515\",\"createdAt\":\"2022-06-20T08:03:37.943Z\",\"updatedAt\":\"2022-06-20T08:21:57.427Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-9515.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-356\",\"name\":\"sdk-Namespace-356\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West Central US\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-356\",\"createdAt\":\"2022-06-20T10:17:56.817Z\",\"updatedAt\":\"2022-06-20T10:24:54.94Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-356.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-7844\",\"name\":\"sdk-Namespace-7844\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-7844\",\"createdAt\":\"2022-06-20T10:20:07.663Z\",\"updatedAt\":\"2022-06-20T10:24:51.11Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-7844.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-7080\",\"name\":\"sdk-Namespace-7080\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West Central US\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-7080\",\"createdAt\":\"2022-06-20T10:25:57.817Z\",\"updatedAt\":\"2022-06-20T10:34:17.16Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-7080.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-8820\",\"name\":\"sdk-Namespace-8820\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-8820\",\"createdAt\":\"2022-06-20T10:28:08.497Z\",\"updatedAt\":\"2022-06-20T10:31:58.61Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-8820.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-8391\",\"name\":\"sdk-Namespace-8391\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West Central US\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-8391\",\"createdAt\":\"2022-06-20T15:21:25.033Z\",\"updatedAt\":\"2022-06-20T15:38:16.48Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-8391.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-7648\",\"name\":\"sdk-Namespace-7648\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-7648\",\"createdAt\":\"2022-06-20T15:23:34.99Z\",\"updatedAt\":\"2022-06-20T15:37:49.787Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-7648.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-6665\",\"name\":\"sdk-Namespace-6665\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West Central US\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-6665\",\"createdAt\":\"2022-06-20T15:35:25.98Z\",\"updatedAt\":\"2022-06-20T15:49:36.68Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-6665.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-4813\",\"name\":\"sdk-Namespace-4813\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-4813\",\"createdAt\":\"2022-06-20T15:38:10.15Z\",\"updatedAt\":\"2022-06-20T15:54:02.917Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-4813.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/testvinsusbrg621/providers/Microsoft.ServiceBus/namespaces/testvinsustns621\",\"name\":\"testvinsustns621\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US 2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testvinsustns621\",\"createdAt\":\"2022-06-21T17:52:08.463Z\",\"updatedAt\":\"2022-06-21T17:52:51.333Z\",\"serviceBusEndpoint\":\"https://testvinsustns621.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/DefaultResourceGroup-EUS2/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-7743\",\"name\":\"sdk-Namespace-7743\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US 2\",\"tags\":{\"tag3\":\"value3\",\"tag4\":\"value4\"},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-7743\",\"createdAt\":\"2022-06-22T05:36:47.6Z\",\"updatedAt\":\"2022-06-22T05:38:36.483Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-7743.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/PPGTest/providers/Microsoft.ServiceBus/namespaces/TestSBSC0623\",\"name\":\"TestSBSC0623\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testsbsc0623\",\"createdAt\":\"2022-06-23T23:19:43.443Z\",\"updatedAt\":\"2022-06-23T23:20:52.63Z\",\"serviceBusEndpoint\":\"https://TestSBSC0623.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/PPGTest/providers/Microsoft.ServiceBus/namespaces/TestSBCreateDLA0622\",\"name\":\"TestSBCreateDLA0622\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"Australia East\",\"tags\":{},\"identity\":{\"principalId\":\"f53312ee-af6c-445d-bc1f-2b98c6c10b55\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/PPGTest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/TestUAI0506\":{\"clientId\":\"40578752-05e9-4b8b-bdc4-f07e960571e0\",\"principalId\":\"406cc555-ce08-485a-a5a6-ef1ccc5e7bec\"}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"TestKey0407\",\"keyVaultUri\":\"https://testkvnew0407.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/PPGTest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/TestUAI0506\"}}],\"requireInfrastructureEncryption\":true},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testsbcreatedla0622\",\"createdAt\":\"2022-06-24T20:21:48.483Z\",\"updatedAt\":\"2022-11-11T18:36:09.09Z\",\"serviceBusEndpoint\":\"https://TestSBCreateDLA0622.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps7874/providers/Microsoft.ServiceBus/namespaces/ServiceBus-STDNamespace-81\",\"name\":\"ServiceBus-STDNamespace-81\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:servicebus-stdnamespace-81\",\"createdAt\":\"2022-06-25T16:29:39.377Z\",\"updatedAt\":\"2022-06-25T16:30:23.5Z\",\"serviceBusEndpoint\":\"https://ServiceBus-STDNamespace-81.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps7874/providers/Microsoft.ServiceBus/namespaces/ServiceBus-PRENamespace-5412\",\"name\":\"ServiceBus-PRENamespace-5412\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Central US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:servicebus-prenamespace-5412\",\"createdAt\":\"2022-06-25T16:30:48.453Z\",\"updatedAt\":\"2022-06-25T16:32:07.38Z\",\"serviceBusEndpoint\":\"https://ServiceBus-PRENamespace-5412.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RGName-5648/providers/Microsoft.ServiceBus/namespaces/Namespace1-1879\",\"name\":\"Namespace1-1879\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US 2\",\"tags\":{\"Tag1\":\"Tag1Value\"},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespace1-1879\",\"createdAt\":\"2022-06-25T18:02:09.607Z\",\"updatedAt\":\"2022-06-25T18:02:53.07Z\",\"serviceBusEndpoint\":\"https://Namespace1-1879.servicebus.windows.net:443/\",\"status\":\"Active\"}}],\"nextLink\":\"https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ServiceBus/namespaces?api-version=2022-01-01-preview\u0026$skipToken=2022-06-25T18:02:09.607Z\"}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-carrue-powershelltest/providers/Microsoft.ServiceBus/namespaces/v-carrue-ns1\",\"name\":\"v-carrue-ns1\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US 2\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:v-carrue-ns1\",\"createdAt\":\"2021-04-08T23:48:28.973Z\",\"updatedAt\":\"2021-04-08T23:49:11.203Z\",\"serviceBusEndpoint\":\"https://v-carrue-ns1.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Basic\",\"tier\":\"Basic\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/suparame-rg/providers/Microsoft.ServiceBus/namespaces/SuparameSbusTest\",\"name\":\"SuparameSbusTest\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:suparamesbustest\",\"createdAt\":\"2021-06-01T19:19:37.613Z\",\"updatedAt\":\"2021-06-01T19:20:20.14Z\",\"serviceBusEndpoint\":\"https://SuparameSbusTest.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/SB-Intern2021ResourceGroup/providers/Microsoft.ServiceBus/namespaces/sophia-explore\",\"name\":\"sophia-explore\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sophia-explore\",\"createdAt\":\"2021-06-15T21:30:00.227Z\",\"updatedAt\":\"2021-06-15T21:30:41.93Z\",\"serviceBusEndpoint\":\"https://sophia-explore.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/dorothytest/providers/Microsoft.ServiceBus/namespaces/standardnewapi\",\"name\":\"standardnewapi\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:standardnewapi\",\"createdAt\":\"2021-07-12T17:45:32.617Z\",\"updatedAt\":\"2021-07-12T17:46:16.403Z\",\"serviceBusEndpoint\":\"https://standardnewapi.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Ardsouza-MoveTest-WestEurope-Source-1/providers/Microsoft.ServiceBus/namespaces/spsbusns08043\",\"name\":\"spsbusns08043\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:spsbusns08043\",\"createdAt\":\"2021-08-04T22:07:17.28Z\",\"updatedAt\":\"2021-08-04T22:08:01.633Z\",\"serviceBusEndpoint\":\"https://spsbusns08043.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/PPGTest/providers/Microsoft.ServiceBus/namespaces/TestSBPrim0901\",\"name\":\"TestSBPrim0901\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"Central US EUAP\",\"tags\":{},\"identity\":{\"principalId\":\"6b33d086-ffbd-4ccb-8b66-40ab9405cb6a\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testsbprim0901\",\"createdAt\":\"2021-09-02T01:02:44.753Z\",\"updatedAt\":\"2023-02-15T19:40:14.5Z\",\"serviceBusEndpoint\":\"https://TestSBPrim0901.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/PPGTest/providers/Microsoft.ServiceBus/namespaces/TestSBPremSec0901\",\"name\":\"TestSBPremSec0901\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testsbpremsec0901\",\"createdAt\":\"2021-09-02T01:10:50.98Z\",\"updatedAt\":\"2023-02-15T19:41:27.563Z\",\"serviceBusEndpoint\":\"https://TestSBPremSec0901.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-5506\",\"name\":\"sdk-Namespace-5506\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West Central US\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-5506\",\"createdAt\":\"2021-09-22T21:15:19.707Z\",\"updatedAt\":\"2021-09-22T21:24:59.14Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-5506.servicebus.windows.net:443/\",\"status\":\"Active\",\"alternateName\":\"sdk-PostMigration-5506\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/cli_test_eh_networkwrj55aatxlgxucsba6igeidap7hqov64fz6i6fhkxg2q66tsychlm5im/providers/Microsoft.ServiceBus/namespaces/servicebus-nsclidurp\",\"name\":\"servicebus-nsclidurp\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{\"{tag1\":\"value1}\"},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nsclidurp\",\"createdAt\":\"2021-09-30T00:42:42.94Z\",\"updatedAt\":\"2021-09-30T00:43:27.07Z\",\"serviceBusEndpoint\":\"https://servicebus-nsclidurp.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/cli_test_eh_networkb6dybi7i77qadmwp3x7qn4fsvzex5svqgkd23ljbqqekhpuqpewxl5ox/providers/Microsoft.ServiceBus/namespaces/servicebus-nsclimdvj\",\"name\":\"servicebus-nsclimdvj\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{\"{tag1\":\"value1}\"},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nsclimdvj\",\"createdAt\":\"2021-09-30T01:41:09.41Z\",\"updatedAt\":\"2021-09-30T01:41:52.31Z\",\"serviceBusEndpoint\":\"https://servicebus-nsclimdvj.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/cli_test_eh_networkteenbwgqgyyl2y6iy7uyajvcvzeffcawclhjplzvgypwqep53ptcz56k/providers/Microsoft.ServiceBus/namespaces/servicebus-nscligk4i\",\"name\":\"servicebus-nscligk4i\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{\"{tag1\":\"value1}\"},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscligk4i\",\"createdAt\":\"2021-09-30T02:07:26.58Z\",\"updatedAt\":\"2021-09-30T02:08:08.96Z\",\"serviceBusEndpoint\":\"https://servicebus-nscligk4i.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-7912\",\"name\":\"sdk-Namespace-7912\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West Central US\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-7912\",\"createdAt\":\"2021-10-25T10:43:06.873Z\",\"updatedAt\":\"2021-10-25T11:35:04.843Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-7912.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-6064\",\"name\":\"sdk-Namespace-6064\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West Central US\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-6064\",\"createdAt\":\"2021-10-25T11:28:25.843Z\",\"updatedAt\":\"2021-10-25T11:35:10.567Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-6064.servicebus.windows.net:443/\",\"status\":\"Active\",\"alternateName\":\"sdk-PostMigration-4665\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/dorothytest/providers/Microsoft.ServiceBus/namespaces/standardregressiontest\",\"name\":\"standardregressiontest\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:standardregressiontest\",\"createdAt\":\"2021-11-02T05:22:12.01Z\",\"updatedAt\":\"2021-11-02T05:22:56.543Z\",\"serviceBusEndpoint\":\"https://standardregressiontest.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/jakeschiller-synthetics/providers/Microsoft.ServiceBus/namespaces/synthetics-sb-ns\",\"name\":\"synthetics-sb-ns\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{\"jms-for\":\"cache\"},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:synthetics-sb-ns\",\"createdAt\":\"2022-01-26T21:42:54.873Z\",\"updatedAt\":\"2022-07-08T18:29:09.99Z\",\"serviceBusEndpoint\":\"https://synthetics-sb-ns.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-ServiceBus-EASTUS2EUAP/providers/Microsoft.ServiceBus/namespaces/sbprem-perf-cbn-ns-1\",\"name\":\"sbprem-perf-cbn-ns-1\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"EAST US 2 EUAP\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Failed\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sbprem-perf-cbn-ns-1\",\"createdAt\":\"2022-01-31T23:43:38.71Z\",\"updatedAt\":\"2022-06-01T21:49:33.537Z\",\"serviceBusEndpoint\":\"https://sbprem-perf-cbn-ns-1.servicebus.windows.net:443/\",\"status\":\"Activating\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/rg-eldert-pg/providers/Microsoft.ServiceBus/namespaces/sb-eldert-pg\",\"name\":\"sb-eldert-pg\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US 2\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sb-eldert-pg\",\"createdAt\":\"2022-02-09T22:18:45.293Z\",\"updatedAt\":\"2022-04-04T02:57:41.057Z\",\"serviceBusEndpoint\":\"https://sb-eldert-pg.servicebus.windows.net:443/\",\"status\":\"Active\",\"alternateName\":\"sb-eldert-pg-standard\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps8383/providers/Microsoft.ServiceBus/namespaces/ServiceBus-STDNamespace-8049\",\"name\":\"ServiceBus-STDNamespace-8049\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:servicebus-stdnamespace-8049\",\"createdAt\":\"2022-02-16T14:59:22.237Z\",\"updatedAt\":\"2022-02-16T15:06:07.67Z\",\"serviceBusEndpoint\":\"https://ServiceBus-STDNamespace-8049.servicebus.windows.net:443/\",\"status\":\"Active\",\"alternateName\":\"PostMigration-Name-3646\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps8383/providers/Microsoft.ServiceBus/namespaces/ServiceBus-PRENamespace-8744\",\"name\":\"ServiceBus-PRENamespace-8744\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Central US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:servicebus-prenamespace-8744\",\"createdAt\":\"2022-02-16T15:00:30.94Z\",\"updatedAt\":\"2022-02-16T15:05:57.88Z\",\"serviceBusEndpoint\":\"https://ServiceBus-PRENamespace-8744.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/cli_test_sb_aliast2seb6uiraga2np5lweiufaxq64glozljlzhjhj3fcla4zct3swtvszahw/providers/Microsoft.ServiceBus/namespaces/sb-nscli4sweuzamk5wa\",\"name\":\"sb-nscli4sweuzamk5wa\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"{tag1: value1,\":\"\",\"tag2: value2}\":\"\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli4sweuzamk5wa\",\"createdAt\":\"2022-02-22T04:06:39.203Z\",\"updatedAt\":\"2022-02-22T04:11:45.95Z\",\"serviceBusEndpoint\":\"https://sb-nscli4sweuzamk5wa.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/cli_test_sb_aliast2seb6uiraga2np5lweiufaxq64glozljlzhjhj3fcla4zct3swtvszahw/providers/Microsoft.ServiceBus/namespaces/sb-nsclitm6qtnps6jqu\",\"name\":\"sb-nsclitm6qtnps6jqu\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Central US\",\"tags\":{\"{tag1: value1,\":\"\",\"tag2: value2}\":\"\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sb-nsclitm6qtnps6jqu\",\"createdAt\":\"2022-02-22T04:08:21.133Z\",\"updatedAt\":\"2022-02-22T04:11:48.73Z\",\"serviceBusEndpoint\":\"https://sb-nsclitm6qtnps6jqu.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/rg-minimum-tls-sample/providers/Microsoft.ServiceBus/namespaces/sb-minimum-tls-sample\",\"name\":\"sb-minimum-tls-sample\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US\",\"tags\":{\"Owner\":\"Eldert Grootenboer\"},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sb-minimum-tls-sample\",\"createdAt\":\"2022-03-21T17:30:32.467Z\",\"updatedAt\":\"2022-03-21T17:31:16.66Z\",\"serviceBusEndpoint\":\"https://sb-minimum-tls-sample.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/spsbusrg/providers/Microsoft.ServiceBus/namespaces/spsbusns0412\",\"name\":\"spsbusns0412\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:spsbusns0412\",\"createdAt\":\"2022-04-12T21:39:51.047Z\",\"updatedAt\":\"2022-04-12T21:40:35.39Z\",\"serviceBusEndpoint\":\"https://spsbusns0412.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-ServiceBus-EASTUS2EUAP/providers/Microsoft.ServiceBus/namespaces/vijayperftest2\",\"name\":\"vijayperftest2\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"EAST US 2 EUAP\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Failed\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:vijayperftest2\",\"createdAt\":\"2022-04-14T22:48:57.633Z\",\"updatedAt\":\"2022-06-01T21:49:33.53Z\",\"serviceBusEndpoint\":\"https://vijayperftest2.servicebus.windows.net:443/\",\"status\":\"Activating\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/rg-eldert-empower-your-azure-iac-with-bicep/providers/Microsoft.ServiceBus/namespaces/contoso-service-bus\",\"name\":\"contoso-service-bus\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US 2\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:contoso-service-bus\",\"createdAt\":\"2022-04-15T21:10:11.32Z\",\"updatedAt\":\"2022-04-15T21:10:54.23Z\",\"serviceBusEndpoint\":\"https://contoso-service-bus.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/TestingSDK20220101/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-7033\",\"name\":\"sdk-Namespace-7033\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"Australia East\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-7033\",\"createdAt\":\"2022-04-21T22:01:13.913Z\",\"updatedAt\":\"2022-04-21T22:01:58.623Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-7033.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/TestingSDK20220101/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-5025\",\"name\":\"sdk-Namespace-5025\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"Australia East\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-5025\",\"createdAt\":\"2022-04-21T22:16:39.923Z\",\"updatedAt\":\"2022-04-21T22:17:25.36Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-5025.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/jagstest/providers/Microsoft.ServiceBus/namespaces/jagsPMmintls\",\"name\":\"jagsPMmintls\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:jagspmmintls\",\"createdAt\":\"2022-04-27T18:09:53.973Z\",\"updatedAt\":\"2022-04-27T18:30:41.993Z\",\"serviceBusEndpoint\":\"https://jagsPMmintls.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-ServiceBus-EASTUS2EUAP/providers/Microsoft.ServiceBus/namespaces/vijayperftest7\",\"name\":\"vijayperftest7\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"EAST US 2 EUAP\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Failed\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:vijayperftest7\",\"createdAt\":\"2022-04-28T00:22:48.597Z\",\"updatedAt\":\"2022-06-01T21:49:33.53Z\",\"serviceBusEndpoint\":\"https://vijayperftest7.servicebus.windows.net:443/\",\"status\":\"Activating\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/spsbusrg/providers/Microsoft.ServiceBus/namespaces/sptlsns0510\",\"name\":\"sptlsns0510\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sptlsns0510\",\"createdAt\":\"2022-05-10T18:37:45.837Z\",\"updatedAt\":\"2022-05-10T18:38:29.23Z\",\"serviceBusEndpoint\":\"https://sptlsns0510.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/cli_test_sb_privateyh52pynvfafabynpghrgrtmgx3cg2exbaafx6a3dlwhxxnwvnuredxr4/providers/Microsoft.ServiceBus/namespaces/servicebus-nsclifr66\",\"name\":\"servicebus-nsclifr66\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{\"{tag1\":\"value1}\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"privateEndpointConnections\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ServiceBus/namespaces/privateEndpointConnections/a8c89231-6cd1-47a5-98ac-87e51283ef43\",\"name\":\"a8c89231-6cd1-47a5-98ac-87e51283ef43\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/cli_test_sb_privateyh52pynvfafabynpghrgrtmgx3cg2exbaafx6a3dlwhxxnwvnuredxr4/providers/Microsoft.Network/privateEndpoints/cli-pe-ay4qn7os5r3w3j4yw\"},\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"\"},\"groupIds\":[\"namespace\"]}}],\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nsclifr66\",\"createdAt\":\"2022-05-13T17:11:57.133Z\",\"updatedAt\":\"2022-05-13T17:13:15.163Z\",\"serviceBusEndpoint\":\"https://servicebus-nsclifr66.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":4},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/spsbusrg/providers/Microsoft.ServiceBus/namespaces/spsbuspremns0516\",\"name\":\"spsbuspremns0516\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:spsbuspremns0516\",\"createdAt\":\"2022-05-16T19:10:24.013Z\",\"updatedAt\":\"2023-02-19T11:00:43.797Z\",\"serviceBusEndpoint\":\"https://spsbuspremns0516.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/spsbuspremrgimport/providers/Microsoft.ServiceBus/namespaces/spsbuspremnsimport0516\",\"name\":\"spsbuspremnsimport0516\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:spsbuspremnsimport0516\",\"createdAt\":\"2022-05-16T20:03:33.607Z\",\"updatedAt\":\"2022-05-16T20:04:46.26Z\",\"serviceBusEndpoint\":\"https://spsbuspremnsimport0516.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":4},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/spsbuspremimportrg2/providers/Microsoft.ServiceBus/namespaces/spsbuspremnsimport05162\",\"name\":\"spsbuspremnsimport05162\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:spsbuspremnsimport05162\",\"createdAt\":\"2022-05-16T20:09:18.567Z\",\"updatedAt\":\"2023-02-19T11:01:09.187Z\",\"serviceBusEndpoint\":\"https://spsbuspremnsimport05162.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/spsbusarmrg0516/providers/Microsoft.ServiceBus/namespaces/spsbusarmns0516\",\"name\":\"spsbusarmns0516\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:spsbusarmns0516\",\"createdAt\":\"2022-05-17T01:21:33.28Z\",\"updatedAt\":\"2023-02-19T11:01:05.7Z\",\"serviceBusEndpoint\":\"https://spsbusarmns0516.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/rg-eldert-implementing-an-event-sourcing-strategy-on-azure/providers/Microsoft.ServiceBus/namespaces/sb-implementing-event-sourcing-strategy\",\"name\":\"sb-implementing-event-sourcing-strategy\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US 2\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sb-implementing-event-sourcing-strategy\",\"createdAt\":\"2022-05-27T00:56:33.893Z\",\"updatedAt\":\"2022-12-06T18:15:02.64Z\",\"serviceBusEndpoint\":\"https://sb-implementing-event-sourcing-strategy.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/rg-eldert-pg/providers/Microsoft.ServiceBus/namespaces/sb-eldert-premium-pg\",\"name\":\"sb-eldert-premium-pg\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US 2\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"privateEndpointConnections\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ServiceBus/namespaces/privateEndpointConnections/649fe754-3fdf-4d43-a672-c90dd9045e0a\",\"name\":\"649fe754-3fdf-4d43-a672-c90dd9045e0a\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"West US 2\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/rg-eldert-pg/providers/Microsoft.Network/privateEndpoints/pe-eldert-pg\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-Approved\"},\"groupIds\":[\"namespace\"]}}],\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sb-eldert-premium-pg\",\"createdAt\":\"2022-05-31T22:20:50.39Z\",\"updatedAt\":\"2022-10-14T20:48:17.98Z\",\"serviceBusEndpoint\":\"https://sb-eldert-premium-pg.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/damorg/providers/Microsoft.ServiceBus/namespaces/geodrbackup\",\"name\":\"geodrbackup\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:geodrbackup\",\"createdAt\":\"2022-06-03T10:07:15.727Z\",\"updatedAt\":\"2022-06-10T08:03:55.733Z\",\"serviceBusEndpoint\":\"https://geodrbackup.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-8587\",\"name\":\"sdk-Namespace-8587\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-8587\",\"createdAt\":\"2022-06-08T13:09:22.407Z\",\"updatedAt\":\"2022-06-08T13:27:13.71Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-8587.servicebus.windows.net:443/\",\"status\":\"Disabled\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RGTestingCreateCluster/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-6837\",\"name\":\"sdk-Namespace-6837\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-6837\",\"createdAt\":\"2022-06-08T13:31:34.743Z\",\"updatedAt\":\"2022-06-08T13:33:16.23Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-6837.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/DefaultResourceGroup-EUS2/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-8810\",\"name\":\"sdk-Namespace-8810\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US 2\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-8810\",\"createdAt\":\"2022-06-08T13:32:47.733Z\",\"updatedAt\":\"2022-06-08T13:34:01.107Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-8810.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RGTestingCreateCluster/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-4456\",\"name\":\"sdk-Namespace-4456\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-4456\",\"createdAt\":\"2022-06-08T13:36:30.017Z\",\"updatedAt\":\"2022-06-08T13:49:53.697Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-4456.servicebus.windows.net:443/\",\"status\":\"Active\",\"alternateName\":\"sdk-DisasterRecovery8645\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RGTestingCreateCluster/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-4885\",\"name\":\"sdk-Namespace-4885\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Central US\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-4885\",\"createdAt\":\"2022-06-08T13:38:15.643Z\",\"updatedAt\":\"2022-06-08T13:51:26.41Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-4885.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/DefaultResourceGroup-EUS2/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-9022\",\"name\":\"sdk-Namespace-9022\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US 2\",\"tags\":{\"tag3\":\"value3\",\"tag4\":\"value4\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-9022\",\"createdAt\":\"2022-06-08T13:54:41.563Z\",\"updatedAt\":\"2022-06-08T13:56:31.21Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-9022.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/damorg/providers/Microsoft.ServiceBus/namespaces/geodrsec\",\"name\":\"geodrsec\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West Central US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:geodrsec\",\"createdAt\":\"2022-06-10T06:30:54.383Z\",\"updatedAt\":\"2022-06-10T08:03:57.317Z\",\"serviceBusEndpoint\":\"https://geodrsec.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/spsbusrg/providers/Microsoft.ServiceBus/namespaces/contoso-service-bus-ns\",\"name\":\"contoso-service-bus-ns\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:contoso-service-bus-ns\",\"createdAt\":\"2022-06-14T20:02:39.237Z\",\"updatedAt\":\"2022-06-14T20:03:22.84Z\",\"serviceBusEndpoint\":\"https://contoso-service-bus-ns.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/spsbusrg/providers/Microsoft.ServiceBus/namespaces/spsbusns0617\",\"name\":\"spsbusns0617\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:spsbusns0617\",\"createdAt\":\"2022-06-17T15:16:10.293Z\",\"updatedAt\":\"2022-06-17T15:16:54.407Z\",\"serviceBusEndpoint\":\"https://spsbusns0617.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RGTestingCreateCluster/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-8755\",\"name\":\"sdk-Namespace-8755\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-8755\",\"createdAt\":\"2022-06-20T08:01:50.84Z\",\"updatedAt\":\"2022-06-20T08:19:28.517Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-8755.servicebus.windows.net:443/\",\"status\":\"Active\",\"alternateName\":\"sdk-DisasterRecovery5454\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RGTestingCreateCluster/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-9515\",\"name\":\"sdk-Namespace-9515\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Central US\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-9515\",\"createdAt\":\"2022-06-20T08:03:37.943Z\",\"updatedAt\":\"2022-06-20T08:21:57.427Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-9515.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-356\",\"name\":\"sdk-Namespace-356\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West Central US\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-356\",\"createdAt\":\"2022-06-20T10:17:56.817Z\",\"updatedAt\":\"2022-06-20T10:24:54.94Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-356.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-7844\",\"name\":\"sdk-Namespace-7844\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-7844\",\"createdAt\":\"2022-06-20T10:20:07.663Z\",\"updatedAt\":\"2022-06-20T10:24:51.11Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-7844.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-7080\",\"name\":\"sdk-Namespace-7080\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West Central US\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-7080\",\"createdAt\":\"2022-06-20T10:25:57.817Z\",\"updatedAt\":\"2022-06-20T10:34:17.16Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-7080.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-8820\",\"name\":\"sdk-Namespace-8820\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-8820\",\"createdAt\":\"2022-06-20T10:28:08.497Z\",\"updatedAt\":\"2022-06-20T10:31:58.61Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-8820.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-8391\",\"name\":\"sdk-Namespace-8391\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West Central US\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-8391\",\"createdAt\":\"2022-06-20T15:21:25.033Z\",\"updatedAt\":\"2022-06-20T15:38:16.48Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-8391.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-7648\",\"name\":\"sdk-Namespace-7648\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-7648\",\"createdAt\":\"2022-06-20T15:23:34.99Z\",\"updatedAt\":\"2022-06-20T15:37:49.787Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-7648.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-6665\",\"name\":\"sdk-Namespace-6665\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West Central US\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-6665\",\"createdAt\":\"2022-06-20T15:35:25.98Z\",\"updatedAt\":\"2022-06-20T15:49:36.68Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-6665.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-4813\",\"name\":\"sdk-Namespace-4813\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-4813\",\"createdAt\":\"2022-06-20T15:38:10.15Z\",\"updatedAt\":\"2022-06-20T15:54:02.917Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-4813.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/testvinsusbrg621/providers/Microsoft.ServiceBus/namespaces/testvinsustns621\",\"name\":\"testvinsustns621\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US 2\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testvinsustns621\",\"createdAt\":\"2022-06-21T17:52:08.463Z\",\"updatedAt\":\"2022-06-21T17:52:51.333Z\",\"serviceBusEndpoint\":\"https://testvinsustns621.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/DefaultResourceGroup-EUS2/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-7743\",\"name\":\"sdk-Namespace-7743\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US 2\",\"tags\":{\"tag3\":\"value3\",\"tag4\":\"value4\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-7743\",\"createdAt\":\"2022-06-22T05:36:47.6Z\",\"updatedAt\":\"2022-06-22T05:38:36.483Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-7743.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps7874/providers/Microsoft.ServiceBus/namespaces/ServiceBus-STDNamespace-81\",\"name\":\"ServiceBus-STDNamespace-81\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:servicebus-stdnamespace-81\",\"createdAt\":\"2022-06-25T16:29:39.377Z\",\"updatedAt\":\"2022-06-25T16:30:23.5Z\",\"serviceBusEndpoint\":\"https://ServiceBus-STDNamespace-81.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps7874/providers/Microsoft.ServiceBus/namespaces/ServiceBus-PRENamespace-5412\",\"name\":\"ServiceBus-PRENamespace-5412\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Central US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:servicebus-prenamespace-5412\",\"createdAt\":\"2022-06-25T16:30:48.453Z\",\"updatedAt\":\"2022-06-25T16:32:07.38Z\",\"serviceBusEndpoint\":\"https://ServiceBus-PRENamespace-5412.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RGName-5648/providers/Microsoft.ServiceBus/namespaces/Namespace1-1879\",\"name\":\"Namespace1-1879\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US 2\",\"tags\":{\"Tag1\":\"Tag1Value\"},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespace1-1879\",\"createdAt\":\"2022-06-25T18:02:09.607Z\",\"updatedAt\":\"2022-06-25T18:02:53.07Z\",\"serviceBusEndpoint\":\"https://Namespace1-1879.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps7723/providers/Microsoft.ServiceBus/namespaces/ServiceBus-Namespace-9941\",\"name\":\"ServiceBus-Namespace-9941\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:servicebus-namespace-9941\",\"createdAt\":\"2022-06-27T05:30:19.03Z\",\"updatedAt\":\"2022-06-27T05:35:38.073Z\",\"serviceBusEndpoint\":\"https://ServiceBus-Namespace-9941.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps7723/providers/Microsoft.ServiceBus/namespaces/ServiceBus-Namespace-6576\",\"name\":\"ServiceBus-Namespace-6576\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Central US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:servicebus-namespace-6576\",\"createdAt\":\"2022-06-27T05:32:01.23Z\",\"updatedAt\":\"2022-06-27T05:35:33.557Z\",\"serviceBusEndpoint\":\"https://ServiceBus-Namespace-6576.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Basic\",\"tier\":\"Basic\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/geguirgu/providers/Microsoft.ServiceBus/namespaces/geguirgu-servicebus\",\"name\":\"geguirgu-servicebus\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:geguirgu-servicebus\",\"createdAt\":\"2022-06-28T17:31:06.9Z\",\"updatedAt\":\"2022-06-28T17:31:50.843Z\",\"serviceBusEndpoint\":\"https://geguirgu-servicebus.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":4},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/testvinsu718/providers/Microsoft.ServiceBus/namespaces/testsbPremvinsu1\",\"name\":\"testsbPremvinsu1\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"Central US EUAP\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testsbpremvinsu1\",\"createdAt\":\"2022-07-19T02:44:14.26Z\",\"updatedAt\":\"2023-02-09T00:27:21.637Z\",\"serviceBusEndpoint\":\"https://testsbPremvinsu1.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/testservicebusRG-6007/providers/Microsoft.ServiceBus/namespaces/testnamespacemgmt6809\",\"name\":\"testnamespacemgmt6809\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US 2\",\"tags\":{},\"identity\":{\"principalId\":\"79ab4c89-6a57-4dfd-8334-10adec71cecc\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testnamespacemgmt6809\",\"createdAt\":\"2022-08-03T12:04:00.99Z\",\"updatedAt\":\"2023-02-03T11:59:08.4Z\",\"serviceBusEndpoint\":\"https://testnamespacemgmt6809.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/testservicebusRG-569/providers/Microsoft.ServiceBus/namespaces/testnamespacemgmt1331\",\"name\":\"testnamespacemgmt1331\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US 2\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testnamespacemgmt1331\",\"createdAt\":\"2022-08-04T05:27:45.82Z\",\"updatedAt\":\"2022-08-04T05:28:57.907Z\",\"serviceBusEndpoint\":\"https://testnamespacemgmt1331.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/testservicebusRG-3931/providers/Microsoft.ServiceBus/namespaces/testnamespacemgmt7504\",\"name\":\"testnamespacemgmt7504\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US 2\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testnamespacemgmt7504\",\"createdAt\":\"2022-08-04T05:46:10.67Z\",\"updatedAt\":\"2022-08-04T05:47:23.873Z\",\"serviceBusEndpoint\":\"https://testnamespacemgmt7504.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/testservicebusRG-74/providers/Microsoft.ServiceBus/namespaces/testnamespacemgmt1417\",\"name\":\"testnamespacemgmt1417\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US 2\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testnamespacemgmt1417\",\"createdAt\":\"2022-08-04T06:02:23.22Z\",\"updatedAt\":\"2022-08-04T06:03:35.823Z\",\"serviceBusEndpoint\":\"https://testnamespacemgmt1417.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/testservicebusRG-4710/providers/Microsoft.ServiceBus/namespaces/testnamespacemgmt8453\",\"name\":\"testnamespacemgmt8453\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US 2\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testnamespacemgmt8453\",\"createdAt\":\"2022-08-04T08:15:34.403Z\",\"updatedAt\":\"2022-08-04T08:16:39.06Z\",\"serviceBusEndpoint\":\"https://testnamespacemgmt8453.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/testservicebusRG-4749/providers/Microsoft.ServiceBus/namespaces/testnamespacemgmt2719\",\"name\":\"testnamespacemgmt2719\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US 2\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testnamespacemgmt2719\",\"createdAt\":\"2022-08-04T08:19:34.51Z\",\"updatedAt\":\"2022-08-04T08:20:55.813Z\",\"serviceBusEndpoint\":\"https://testnamespacemgmt2719.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/SDK-ServiceBus-7854/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-8751\",\"name\":\"sdk-Namespace-8751\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"Australia East\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-8751\",\"createdAt\":\"2022-08-05T05:24:49.13Z\",\"updatedAt\":\"2022-08-05T05:25:33.72Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-8751.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RGTestingCreateCluster/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-6005\",\"name\":\"sdk-Namespace-6005\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-6005\",\"createdAt\":\"2022-08-05T05:28:18.517Z\",\"updatedAt\":\"2022-08-05T05:38:11.98Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-6005.servicebus.windows.net:443/\",\"status\":\"Active\",\"alternateName\":\"sdk-DisasterRecovery1518\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RGTestingCreateCluster/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-9395\",\"name\":\"sdk-Namespace-9395\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Central US\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-9395\",\"createdAt\":\"2022-08-05T05:29:56.073Z\",\"updatedAt\":\"2022-08-05T05:39:34.333Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-9395.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-8877\",\"name\":\"sdk-Namespace-8877\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West Central US\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-8877\",\"createdAt\":\"2022-08-05T06:42:12.9Z\",\"updatedAt\":\"2022-08-05T06:52:48.643Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-8877.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-818\",\"name\":\"sdk-Namespace-818\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-818\",\"createdAt\":\"2022-08-05T06:44:15.33Z\",\"updatedAt\":\"2022-08-05T06:54:04.78Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-818.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/SDK-ServiceBus-7854/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-8973\",\"name\":\"sdk-Namespace-8973\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"Australia East\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-8973\",\"createdAt\":\"2022-08-05T08:05:40.303Z\",\"updatedAt\":\"2022-08-05T08:06:24.6Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-8973.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps5206/providers/Microsoft.ServiceBus/namespaces/ServiceBus-STDNamespace-6102\",\"name\":\"ServiceBus-STDNamespace-6102\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:servicebus-stdnamespace-6102\",\"createdAt\":\"2022-08-15T04:47:52.1Z\",\"updatedAt\":\"2022-08-15T04:54:51.313Z\",\"serviceBusEndpoint\":\"https://ServiceBus-STDNamespace-6102.servicebus.windows.net:443/\",\"status\":\"Active\",\"alternateName\":\"PostMigration-Name-8545\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps5206/providers/Microsoft.ServiceBus/namespaces/ServiceBus-PRENamespace-3686\",\"name\":\"ServiceBus-PRENamespace-3686\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Central US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:servicebus-prenamespace-3686\",\"createdAt\":\"2022-08-15T04:48:55.11Z\",\"updatedAt\":\"2022-08-15T04:54:48.803Z\",\"serviceBusEndpoint\":\"https://ServiceBus-PRENamespace-3686.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ServiceBus-DRDrill-August-2022/providers/Microsoft.ServiceBus/namespaces/ServiceBus-DRDrill-August-2022-SB-NonAZ\",\"name\":\"ServiceBus-DRDrill-August-2022-SB-NonAZ\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"EAST US 2 EUAP\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:servicebus-drdrill-august-2022-sb-nonaz\",\"createdAt\":\"2022-08-15T17:00:54.41Z\",\"updatedAt\":\"2022-08-15T17:02:33.183Z\",\"serviceBusEndpoint\":\"https://ServiceBus-DRDrill-August-2022-SB-NonAZ.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ServiceBus-DRDrill-August-2022/providers/Microsoft.ServiceBus/namespaces/ServiceBus-DRDrill-August-2022-SB-ReallyNonAZ\",\"name\":\"ServiceBus-DRDrill-August-2022-SB-ReallyNonAZ\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"EAST US 2 EUAP\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:servicebus-drdrill-august-2022-sb-reallynonaz\",\"createdAt\":\"2022-08-15T17:11:52.113Z\",\"updatedAt\":\"2022-08-15T17:38:25.417Z\",\"serviceBusEndpoint\":\"https://ServiceBus-DRDrill-August-2022-SB-ReallyNonAZ.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ServiceBus-DRDrill-August-2022/providers/Microsoft.ServiceBus/namespaces/ServiceBus-DRDrill-August-2022-SB-NonAZ-cuseuap\",\"name\":\"ServiceBus-DRDrill-August-2022-SB-NonAZ-cuseuap\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"Central US EUAP\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:servicebus-drdrill-august-2022-sb-nonaz-cuseuap\",\"createdAt\":\"2022-08-15T17:30:08.67Z\",\"updatedAt\":\"2022-08-15T17:38:19.193Z\",\"serviceBusEndpoint\":\"https://ServiceBus-DRDrill-August-2022-SB-NonAZ-cuseuap.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps51/providers/Microsoft.ServiceBus/namespaces/ServiceBus-STDNamespace-276\",\"name\":\"ServiceBus-STDNamespace-276\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:servicebus-stdnamespace-276\",\"createdAt\":\"2022-08-16T05:32:29.537Z\",\"updatedAt\":\"2022-08-16T05:39:11.66Z\",\"serviceBusEndpoint\":\"https://ServiceBus-STDNamespace-276.servicebus.windows.net:443/\",\"status\":\"Active\",\"alternateName\":\"PostMigration-Name-9658\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps51/providers/Microsoft.ServiceBus/namespaces/ServiceBus-PRENamespace-9080\",\"name\":\"ServiceBus-PRENamespace-9080\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Central US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:servicebus-prenamespace-9080\",\"createdAt\":\"2022-08-16T05:33:33.527Z\",\"updatedAt\":\"2022-08-16T05:39:09.86Z\",\"serviceBusEndpoint\":\"https://ServiceBus-PRENamespace-9080.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/damorg/providers/Microsoft.ServiceBus/namespaces/testPSV2\",\"name\":\"testPSV2\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"Australia East\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testpsv2\",\"createdAt\":\"2022-08-17T11:12:02.61Z\",\"updatedAt\":\"2022-08-17T12:33:05.387Z\",\"serviceBusEndpoint\":\"https://testPSV2.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/damorg/providers/Microsoft.ServiceBus/namespaces/testPSStandard\",\"name\":\"testPSStandard\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testpsstandard\",\"createdAt\":\"2022-08-17T12:29:22.427Z\",\"updatedAt\":\"2022-08-17T12:33:09.81Z\",\"serviceBusEndpoint\":\"https://testPSStandard.servicebus.windows.net:443/\",\"status\":\"Active\",\"alternateName\":\"testSBPostMigrationName\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/dsms-test-rg/providers/Microsoft.ServiceBus/namespaces/dsmstestsb1\",\"name\":\"dsmstestsb1\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"EAST US 2 EUAP\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:dsmstestsb1\",\"createdAt\":\"2022-08-22T17:15:28.183Z\",\"updatedAt\":\"2022-08-22T17:16:12.777Z\",\"serviceBusEndpoint\":\"https://dsmstestsb1.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/AutomatedPowershellTesting/providers/Microsoft.ServiceBus/namespaces/testingSBTemplate\",\"name\":\"testingSBTemplate\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"Australia East\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testingsbtemplate\",\"createdAt\":\"2022-08-28T06:14:15.157Z\",\"updatedAt\":\"2022-09-15T14:55:26.22Z\",\"serviceBusEndpoint\":\"https://testingSBTemplate.servicebus.windows.net:443/\",\"status\":\"Active\",\"alternateName\":\"sbmigratepremium2\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/cli_test_eh_namespaceu6xvflr4vht7rxff5dlizo3gi665atsiqq2pxzwt4uehtgjmd3dpba/providers/Microsoft.ServiceBus/namespaces/servicebus-nsclieymu\",\"name\":\"servicebus-nsclieymu\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"principalId\":\"68924081-c891-4869-b36f-a21c51e2c344\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nsclieymu\",\"createdAt\":\"2022-08-29T07:31:14.363Z\",\"updatedAt\":\"2023-01-14T07:26:12.027Z\",\"serviceBusEndpoint\":\"https://servicebus-nsclieymu.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RGName-2450/providers/Microsoft.ServiceBus/namespaces/Namespace-9959\",\"name\":\"Namespace-9959\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespace-9959\",\"createdAt\":\"2022-09-02T10:43:49.647Z\",\"updatedAt\":\"2022-09-02T10:44:34.66Z\",\"serviceBusEndpoint\":\"https://Namespace-9959.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/AutomatedPowershellTesting/providers/Microsoft.ServiceBus/namespaces/sbmigratepremium\",\"name\":\"sbmigratepremium\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sbmigratepremium\",\"createdAt\":\"2022-09-13T05:00:55.647Z\",\"updatedAt\":\"2022-09-15T14:55:22.693Z\",\"serviceBusEndpoint\":\"https://sbmigratepremium.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/AutomatedPowershellTesting/providers/Microsoft.ServiceBus/namespaces/testSBARMTemplate\",\"name\":\"testSBARMTemplate\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testsbarmtemplate\",\"createdAt\":\"2022-09-14T09:01:24.307Z\",\"updatedAt\":\"2022-09-14T09:02:09.747Z\",\"serviceBusEndpoint\":\"https://testSBARMTemplate.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/serkant/providers/Microsoft.ServiceBus/namespaces/serkant-sb1\",\"name\":\"serkant-sb1\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Disabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:serkant-sb1\",\"createdAt\":\"2022-09-14T18:25:04.52Z\",\"updatedAt\":\"2022-09-20T15:11:36.88Z\",\"serviceBusEndpoint\":\"https://serkant-sb1.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/PS-Testing/providers/Microsoft.ServiceBus/namespaces/Namespace1-7974\",\"name\":\"Namespace1-7974\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespace1-7974\",\"createdAt\":\"2022-09-25T08:01:39.173Z\",\"updatedAt\":\"2022-09-25T08:07:57.013Z\",\"serviceBusEndpoint\":\"https://Namespace1-7974.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/PS-Testing/providers/Microsoft.ServiceBus/namespaces/Namespace2-5304\",\"name\":\"Namespace2-5304\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"principalId\":\"acb4ce9b-2730-494d-a18d-a8be0420bdcb\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://ps-test-kv1.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://ps-test-kv1.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespace2-5304\",\"createdAt\":\"2022-09-25T08:08:42.127Z\",\"updatedAt\":\"2023-02-10T08:03:15.977Z\",\"serviceBusEndpoint\":\"https://Namespace2-5304.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/PS-Testing/providers/Microsoft.ServiceBus/namespaces/Namespace1-6359\",\"name\":\"Namespace1-6359\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/PS-Testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{\"clientId\":\"38a989a1-3fab-4015-b546-cbcf7a67aa89\",\"principalId\":\"624205aa-192c-4303-9606-990d06cbd997\"},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/PS-Testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{\"clientId\":\"440d7336-c408-4327-ad13-10a4e71aad64\",\"principalId\":\"1bdb6af0-4284-47f4-b049-94aa2868d90b\"}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://ps-test-kv1.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/PS-Testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://ps-test-kv1.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/PS-Testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key1\",\"keyVaultUri\":\"https://ps-test-kv2.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/PS-Testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespace1-6359\",\"createdAt\":\"2022-09-25T08:17:21.787Z\",\"updatedAt\":\"2023-02-03T13:42:07.787Z\",\"serviceBusEndpoint\":\"https://Namespace1-6359.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/rg-eldert-pg-javaone/providers/Microsoft.ServiceBus/namespaces/rg-eldert-pg-javaone-sbus\",\"name\":\"rg-eldert-pg-javaone-sbus\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:rg-eldert-pg-javaone-sbus\",\"createdAt\":\"2022-10-12T22:58:34.72Z\",\"updatedAt\":\"2022-10-12T22:59:48.85Z\",\"serviceBusEndpoint\":\"https://rg-eldert-pg-javaone-sbus.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":4},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-ServiceBus-EastUS/providers/Microsoft.ServiceBus/namespaces/Ardsouza-BL-VAZ40001-ScaleSets-2\",\"name\":\"Ardsouza-BL-VAZ40001-ScaleSets-2\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-bl-vaz40001-scalesets-2\",\"createdAt\":\"2022-10-13T00:48:44.047Z\",\"updatedAt\":\"2022-10-13T00:50:59.927Z\",\"serviceBusEndpoint\":\"https://Ardsouza-BL-VAZ40001-ScaleSets-2.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":4},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-ServiceBus-EastUS/providers/Microsoft.ServiceBus/namespaces/Ardsouza-BL-VAZ40001-ScaleSets-3\",\"name\":\"Ardsouza-BL-VAZ40001-ScaleSets-3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":2,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-bl-vaz40001-scalesets-3\",\"createdAt\":\"2022-10-17T20:51:13.547Z\",\"updatedAt\":\"2022-10-17T20:52:50.7Z\",\"serviceBusEndpoint\":\"https://Ardsouza-BL-VAZ40001-ScaleSets-3.servicebus.windows.net:443/\",\"status\":\"Active\"}}],\"nextLink\":\"https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ServiceBus/namespaces?api-version=2022-10-01-preview\u0026$skipToken=2022-10-17T20:51:13.547Z\"}", "isContentBase64": false } }, - "Get-AzServiceBusNamespaceV2+[NoContext]+List+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ServiceBus/namespaces?api-version=2022-01-01-preview\u0026$skipToken=2022-06-25T18:02:09.607Z+2": { + "Get-AzServiceBusNamespaceV2+[NoContext]+List+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ServiceBus/namespaces?api-version=2022-10-01-preview\u0026$skipToken=2022-10-17T20:51:13.547Z+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ServiceBus/namespaces?api-version=2022-01-01-preview\u0026$skipToken=2022-06-25T18:02:09.607Z", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ServiceBus/namespaces?api-version=2022-10-01-preview\u0026$skipToken=2022-10-17T20:51:13.547Z", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "38" ], - "x-ms-client-request-id": [ "f171159a-ef7d-4550-8c00-c69b5886a394" ], + "x-ms-client-request-id": [ "eb273a78-a759-411c-b078-40e1fd0b5f30" ], "CommandName": [ "Get-AzServiceBusNamespaceV2" ], "FullCommandName": [ "Get-AzServiceBusNamespaceV2_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -66,77 +66,34 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-inline-count": [ "" ], - "x-ms-request-id": [ "24826bcc-675c-4378-9d8c-a0e9d96a7d5a_M7SN1_M7SN1" ], + "x-ms-request-id": [ "78440f17-b40c-4bc0-8297-24a9866269a6_M4SN1_M4SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11970" ], - "x-ms-correlation-request-id": [ "9cd7c6b3-f75f-43ce-ab5d-a8c032d47c2f" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095524Z:9cd7c6b3-f75f-43ce-ab5d-a8c032d47c2f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11938" ], + "x-ms-correlation-request-id": [ "e022b518-6210-42a7-b530-50565cd28c40" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131518Z:e022b518-6210-42a7-b530-50565cd28c40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:55:24 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:15:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "78123" ], + "Content-Length": [ "65725" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps7723/providers/Microsoft.ServiceBus/namespaces/ServiceBus-Namespace-9941\",\"name\":\"ServiceBus-Namespace-9941\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:servicebus-namespace-9941\",\"createdAt\":\"2022-06-27T05:30:19.03Z\",\"updatedAt\":\"2022-06-27T05:35:38.073Z\",\"serviceBusEndpoint\":\"https://ServiceBus-Namespace-9941.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps7723/providers/Microsoft.ServiceBus/namespaces/ServiceBus-Namespace-6576\",\"name\":\"ServiceBus-Namespace-6576\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Central US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:servicebus-namespace-6576\",\"createdAt\":\"2022-06-27T05:32:01.23Z\",\"updatedAt\":\"2022-06-27T05:35:33.557Z\",\"serviceBusEndpoint\":\"https://ServiceBus-Namespace-6576.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Basic\",\"tier\":\"Basic\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/geguirgu/providers/Microsoft.ServiceBus/namespaces/geguirgu-servicebus\",\"name\":\"geguirgu-servicebus\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:geguirgu-servicebus\",\"createdAt\":\"2022-06-28T17:31:06.9Z\",\"updatedAt\":\"2022-06-28T17:31:50.843Z\",\"serviceBusEndpoint\":\"https://geguirgu-servicebus.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-ServiceBus-EastUS2/providers/Microsoft.ServiceBus/namespaces/premiumnoebs1\",\"name\":\"premiumnoebs1\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US 2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:premiumnoebs1\",\"createdAt\":\"2022-06-29T21:20:32.187Z\",\"updatedAt\":\"2022-06-29T21:21:47.19Z\",\"serviceBusEndpoint\":\"https://premiumnoebs1.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-ServiceBus-EastUS2/providers/Microsoft.ServiceBus/namespaces/premiumnoebs2\",\"name\":\"premiumnoebs2\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US 2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:premiumnoebs2\",\"createdAt\":\"2022-06-29T21:23:03.767Z\",\"updatedAt\":\"2022-06-29T21:24:14.393Z\",\"serviceBusEndpoint\":\"https://premiumnoebs2.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-ServiceBus-EastUS2/providers/Microsoft.ServiceBus/namespaces/premiumnoebs3\",\"name\":\"premiumnoebs3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US 2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:premiumnoebs3\",\"createdAt\":\"2022-06-29T21:23:13.65Z\",\"updatedAt\":\"2022-06-29T21:24:39.06Z\",\"serviceBusEndpoint\":\"https://premiumnoebs3.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-ServiceBus-EastUS2/providers/Microsoft.ServiceBus/namespaces/premiumnoebs4\",\"name\":\"premiumnoebs4\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US 2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:premiumnoebs4\",\"createdAt\":\"2022-06-29T21:23:22.537Z\",\"updatedAt\":\"2022-06-29T21:25:05.373Z\",\"serviceBusEndpoint\":\"https://premiumnoebs4.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-ServiceBus-EastUS2/providers/Microsoft.ServiceBus/namespaces/premiumnoebs5\",\"name\":\"premiumnoebs5\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US 2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:premiumnoebs5\",\"createdAt\":\"2022-06-29T21:23:35.317Z\",\"updatedAt\":\"2022-06-29T21:25:30.857Z\",\"serviceBusEndpoint\":\"https://premiumnoebs5.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-ServiceBus-EastUS2/providers/Microsoft.ServiceBus/namespaces/premiumnoebs6\",\"name\":\"premiumnoebs6\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US 2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:premiumnoebs6\",\"createdAt\":\"2022-06-29T21:23:42.777Z\",\"updatedAt\":\"2022-06-29T21:26:10.123Z\",\"serviceBusEndpoint\":\"https://premiumnoebs6.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-ServiceBus-EastUS2/providers/Microsoft.ServiceBus/namespaces/premiumnoebs7\",\"name\":\"premiumnoebs7\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US 2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:premiumnoebs7\",\"createdAt\":\"2022-06-29T21:23:52.873Z\",\"updatedAt\":\"2022-06-29T21:26:39.353Z\",\"serviceBusEndpoint\":\"https://premiumnoebs7.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-ServiceBus-EastUS2/providers/Microsoft.ServiceBus/namespaces/premiumnoebs8\",\"name\":\"premiumnoebs8\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US 2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:premiumnoebs8\",\"createdAt\":\"2022-06-29T21:24:01.07Z\",\"updatedAt\":\"2022-06-29T21:27:08.697Z\",\"serviceBusEndpoint\":\"https://premiumnoebs8.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-ServiceBus-EastUS2/providers/Microsoft.ServiceBus/namespaces/premiumnoebs9\",\"name\":\"premiumnoebs9\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US 2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:premiumnoebs9\",\"createdAt\":\"2022-06-29T21:24:11.553Z\",\"updatedAt\":\"2022-06-29T21:27:38.593Z\",\"serviceBusEndpoint\":\"https://premiumnoebs9.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-ServiceBus-EastUS2/providers/Microsoft.ServiceBus/namespaces/premiumnoebs10\",\"name\":\"premiumnoebs10\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US 2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:premiumnoebs10\",\"createdAt\":\"2022-06-29T21:24:19.093Z\",\"updatedAt\":\"2022-06-29T21:28:08.82Z\",\"serviceBusEndpoint\":\"https://premiumnoebs10.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-ServiceBus-EastUS2/providers/Microsoft.ServiceBus/namespaces/premiumnoebs11\",\"name\":\"premiumnoebs11\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US 2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:premiumnoebs11\",\"createdAt\":\"2022-06-29T21:24:30.23Z\",\"updatedAt\":\"2022-06-29T21:28:32.273Z\",\"serviceBusEndpoint\":\"https://premiumnoebs11.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/testvinsu718/providers/Microsoft.ServiceBus/namespaces/testsbPremvinsu1\",\"name\":\"testsbPremvinsu1\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"Central US EUAP\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testsbpremvinsu1\",\"createdAt\":\"2022-07-19T02:44:14.26Z\",\"updatedAt\":\"2022-07-19T02:45:28.813Z\",\"serviceBusEndpoint\":\"https://testsbPremvinsu1.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/karenTest/providers/Microsoft.ServiceBus/namespaces/jmstest\",\"name\":\"jmstest\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West Central US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:jmstest\",\"createdAt\":\"2022-07-20T23:53:11.547Z\",\"updatedAt\":\"2022-09-12T21:17:02.257Z\",\"serviceBusEndpoint\":\"https://jmstest.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/testservicebusRG-6007/providers/Microsoft.ServiceBus/namespaces/testnamespacemgmt6809\",\"name\":\"testnamespacemgmt6809\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US 2\",\"tags\":{},\"identity\":{\"principalId\":\"79ab4c89-6a57-4dfd-8334-10adec71cecc\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testnamespacemgmt6809\",\"createdAt\":\"2022-08-03T12:04:00.99Z\",\"updatedAt\":\"2022-11-03T11:59:10.333Z\",\"serviceBusEndpoint\":\"https://testnamespacemgmt6809.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/testservicebusRG-569/providers/Microsoft.ServiceBus/namespaces/testnamespacemgmt1331\",\"name\":\"testnamespacemgmt1331\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US 2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testnamespacemgmt1331\",\"createdAt\":\"2022-08-04T05:27:45.82Z\",\"updatedAt\":\"2022-08-04T05:28:57.907Z\",\"serviceBusEndpoint\":\"https://testnamespacemgmt1331.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/testservicebusRG-3931/providers/Microsoft.ServiceBus/namespaces/testnamespacemgmt7504\",\"name\":\"testnamespacemgmt7504\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US 2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testnamespacemgmt7504\",\"createdAt\":\"2022-08-04T05:46:10.67Z\",\"updatedAt\":\"2022-08-04T05:47:23.873Z\",\"serviceBusEndpoint\":\"https://testnamespacemgmt7504.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/testservicebusRG-74/providers/Microsoft.ServiceBus/namespaces/testnamespacemgmt1417\",\"name\":\"testnamespacemgmt1417\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US 2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testnamespacemgmt1417\",\"createdAt\":\"2022-08-04T06:02:23.22Z\",\"updatedAt\":\"2022-08-04T06:03:35.823Z\",\"serviceBusEndpoint\":\"https://testnamespacemgmt1417.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/testservicebusRG-4710/providers/Microsoft.ServiceBus/namespaces/testnamespacemgmt8453\",\"name\":\"testnamespacemgmt8453\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US 2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testnamespacemgmt8453\",\"createdAt\":\"2022-08-04T08:15:34.403Z\",\"updatedAt\":\"2022-08-04T08:16:39.06Z\",\"serviceBusEndpoint\":\"https://testnamespacemgmt8453.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/testservicebusRG-4749/providers/Microsoft.ServiceBus/namespaces/testnamespacemgmt2719\",\"name\":\"testnamespacemgmt2719\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US 2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testnamespacemgmt2719\",\"createdAt\":\"2022-08-04T08:19:34.51Z\",\"updatedAt\":\"2022-08-04T08:20:55.813Z\",\"serviceBusEndpoint\":\"https://testnamespacemgmt2719.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/SDK-ServiceBus-7854/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-8751\",\"name\":\"sdk-Namespace-8751\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"Australia East\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-8751\",\"createdAt\":\"2022-08-05T05:24:49.13Z\",\"updatedAt\":\"2022-08-05T05:25:33.72Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-8751.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RGTestingCreateCluster/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-6005\",\"name\":\"sdk-Namespace-6005\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-6005\",\"createdAt\":\"2022-08-05T05:28:18.517Z\",\"updatedAt\":\"2022-08-05T05:38:11.98Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-6005.servicebus.windows.net:443/\",\"status\":\"Active\",\"alternateName\":\"sdk-DisasterRecovery1518\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RGTestingCreateCluster/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-9395\",\"name\":\"sdk-Namespace-9395\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Central US\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-9395\",\"createdAt\":\"2022-08-05T05:29:56.073Z\",\"updatedAt\":\"2022-08-05T05:39:34.333Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-9395.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-8877\",\"name\":\"sdk-Namespace-8877\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West Central US\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-8877\",\"createdAt\":\"2022-08-05T06:42:12.9Z\",\"updatedAt\":\"2022-08-05T06:52:48.643Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-8877.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-818\",\"name\":\"sdk-Namespace-818\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US\",\"tags\":{\"tag1\":\"value1\",\"tag2\":\"value2\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-818\",\"createdAt\":\"2022-08-05T06:44:15.33Z\",\"updatedAt\":\"2022-08-05T06:54:04.78Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-818.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/SDK-ServiceBus-7854/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-8973\",\"name\":\"sdk-Namespace-8973\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"Australia East\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-8973\",\"createdAt\":\"2022-08-05T08:05:40.303Z\",\"updatedAt\":\"2022-08-05T08:06:24.6Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-8973.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps5206/providers/Microsoft.ServiceBus/namespaces/ServiceBus-STDNamespace-6102\",\"name\":\"ServiceBus-STDNamespace-6102\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:servicebus-stdnamespace-6102\",\"createdAt\":\"2022-08-15T04:47:52.1Z\",\"updatedAt\":\"2022-08-15T04:54:51.313Z\",\"serviceBusEndpoint\":\"https://ServiceBus-STDNamespace-6102.servicebus.windows.net:443/\",\"status\":\"Active\",\"alternateName\":\"PostMigration-Name-8545\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps5206/providers/Microsoft.ServiceBus/namespaces/ServiceBus-PRENamespace-3686\",\"name\":\"ServiceBus-PRENamespace-3686\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Central US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:servicebus-prenamespace-3686\",\"createdAt\":\"2022-08-15T04:48:55.11Z\",\"updatedAt\":\"2022-08-15T04:54:48.803Z\",\"serviceBusEndpoint\":\"https://ServiceBus-PRENamespace-3686.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ServiceBus-DRDrill-August-2022/providers/Microsoft.ServiceBus/namespaces/ServiceBus-DRDrill-August-2022-SB-NonAZ\",\"name\":\"ServiceBus-DRDrill-August-2022-SB-NonAZ\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"EAST US 2 EUAP\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:servicebus-drdrill-august-2022-sb-nonaz\",\"createdAt\":\"2022-08-15T17:00:54.41Z\",\"updatedAt\":\"2022-08-15T17:02:33.183Z\",\"serviceBusEndpoint\":\"https://ServiceBus-DRDrill-August-2022-SB-NonAZ.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ServiceBus-DRDrill-August-2022/providers/Microsoft.ServiceBus/namespaces/ServiceBus-DRDrill-August-2022-SB-ReallyNonAZ\",\"name\":\"ServiceBus-DRDrill-August-2022-SB-ReallyNonAZ\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"EAST US 2 EUAP\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:servicebus-drdrill-august-2022-sb-reallynonaz\",\"createdAt\":\"2022-08-15T17:11:52.113Z\",\"updatedAt\":\"2022-08-15T17:38:25.417Z\",\"serviceBusEndpoint\":\"https://ServiceBus-DRDrill-August-2022-SB-ReallyNonAZ.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ServiceBus-DRDrill-August-2022/providers/Microsoft.ServiceBus/namespaces/ServiceBus-DRDrill-August-2022-SB-NonAZ-cuseuap\",\"name\":\"ServiceBus-DRDrill-August-2022-SB-NonAZ-cuseuap\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"Central US EUAP\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:servicebus-drdrill-august-2022-sb-nonaz-cuseuap\",\"createdAt\":\"2022-08-15T17:30:08.67Z\",\"updatedAt\":\"2022-08-15T17:38:19.193Z\",\"serviceBusEndpoint\":\"https://ServiceBus-DRDrill-August-2022-SB-NonAZ-cuseuap.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps51/providers/Microsoft.ServiceBus/namespaces/ServiceBus-STDNamespace-276\",\"name\":\"ServiceBus-STDNamespace-276\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:servicebus-stdnamespace-276\",\"createdAt\":\"2022-08-16T05:32:29.537Z\",\"updatedAt\":\"2022-08-16T05:39:11.66Z\",\"serviceBusEndpoint\":\"https://ServiceBus-STDNamespace-276.servicebus.windows.net:443/\",\"status\":\"Active\",\"alternateName\":\"PostMigration-Name-9658\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps51/providers/Microsoft.ServiceBus/namespaces/ServiceBus-PRENamespace-9080\",\"name\":\"ServiceBus-PRENamespace-9080\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Central US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:servicebus-prenamespace-9080\",\"createdAt\":\"2022-08-16T05:33:33.527Z\",\"updatedAt\":\"2022-08-16T05:39:09.86Z\",\"serviceBusEndpoint\":\"https://ServiceBus-PRENamespace-9080.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/damorg/providers/Microsoft.ServiceBus/namespaces/testPSV2\",\"name\":\"testPSV2\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"Australia East\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testpsv2\",\"createdAt\":\"2022-08-17T11:12:02.61Z\",\"updatedAt\":\"2022-08-17T12:33:05.387Z\",\"serviceBusEndpoint\":\"https://testPSV2.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/damorg/providers/Microsoft.ServiceBus/namespaces/testPSStandard\",\"name\":\"testPSStandard\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testpsstandard\",\"createdAt\":\"2022-08-17T12:29:22.427Z\",\"updatedAt\":\"2022-08-17T12:33:09.81Z\",\"serviceBusEndpoint\":\"https://testPSStandard.servicebus.windows.net:443/\",\"status\":\"Active\",\"alternateName\":\"testSBPostMigrationName\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/dsms-test-rg/providers/Microsoft.ServiceBus/namespaces/dsmstestsb1\",\"name\":\"dsmstestsb1\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"EAST US 2 EUAP\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:dsmstestsb1\",\"createdAt\":\"2022-08-22T17:15:28.183Z\",\"updatedAt\":\"2022-08-22T17:16:12.777Z\",\"serviceBusEndpoint\":\"https://dsmstestsb1.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/AutomatedPowershellTesting/providers/Microsoft.ServiceBus/namespaces/testingSBTemplate\",\"name\":\"testingSBTemplate\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"Australia East\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testingsbtemplate\",\"createdAt\":\"2022-08-28T06:14:15.157Z\",\"updatedAt\":\"2022-09-15T14:55:26.22Z\",\"serviceBusEndpoint\":\"https://testingSBTemplate.servicebus.windows.net:443/\",\"status\":\"Active\",\"alternateName\":\"sbmigratepremium2\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-44332211\",\"name\":\"sdk-Namespace-44332211\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.1\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-44332211\",\"createdAt\":\"2022-08-29T06:58:57.6Z\",\"updatedAt\":\"2022-08-29T07:04:18.52Z\",\"serviceBusEndpoint\":\"https://sdk-Namespace-44332211.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/cli_test_eh_namespaceu6xvflr4vht7rxff5dlizo3gi665atsiqq2pxzwt4uehtgjmd3dpba/providers/Microsoft.ServiceBus/namespaces/servicebus-nsclieymu\",\"name\":\"servicebus-nsclieymu\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"principalId\":\"68924081-c891-4869-b36f-a21c51e2c344\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nsclieymu\",\"createdAt\":\"2022-08-29T07:31:14.363Z\",\"updatedAt\":\"2022-10-14T07:26:20Z\",\"serviceBusEndpoint\":\"https://servicebus-nsclieymu.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.ServiceBus/namespaces/testingmintls\",\"name\":\"testingmintls\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.1\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testingmintls\",\"createdAt\":\"2022-08-30T16:48:43.923Z\",\"updatedAt\":\"2022-08-30T16:50:32.997Z\",\"serviceBusEndpoint\":\"https://testingmintls.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/rg-eldert-pg/providers/Microsoft.ServiceBus/namespaces/sb-eldert-premium-geodr1-pg\",\"name\":\"sb-eldert-premium-geodr1-pg\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sb-eldert-premium-geodr1-pg\",\"createdAt\":\"2022-09-01T01:38:11.217Z\",\"updatedAt\":\"2022-09-01T01:50:09.46Z\",\"serviceBusEndpoint\":\"https://sb-eldert-premium-geodr1-pg.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/rg-eldert-pg/providers/Microsoft.ServiceBus/namespaces/sb-eldert-premium-geodr2-pg\",\"name\":\"sb-eldert-premium-geodr2-pg\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sb-eldert-premium-geodr2-pg\",\"createdAt\":\"2022-09-01T01:38:49.343Z\",\"updatedAt\":\"2022-09-01T03:00:35.61Z\",\"serviceBusEndpoint\":\"https://sb-eldert-premium-geodr2-pg.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/RGName-2450/providers/Microsoft.ServiceBus/namespaces/Namespace-9959\",\"name\":\"Namespace-9959\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespace-9959\",\"createdAt\":\"2022-09-02T10:43:49.647Z\",\"updatedAt\":\"2022-09-02T10:44:34.66Z\",\"serviceBusEndpoint\":\"https://Namespace-9959.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/dsms-test-rg/providers/Microsoft.ServiceBus/namespaces/kevxdsmstest\",\"name\":\"kevxdsmstest\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"Central US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:kevxdsmstest\",\"createdAt\":\"2022-09-13T00:34:14.37Z\",\"updatedAt\":\"2022-09-13T00:34:58.66Z\",\"serviceBusEndpoint\":\"https://kevxdsmstest.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/AutomatedPowershellTesting/providers/Microsoft.ServiceBus/namespaces/sbmigratepremium\",\"name\":\"sbmigratepremium\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sbmigratepremium\",\"createdAt\":\"2022-09-13T05:00:55.647Z\",\"updatedAt\":\"2022-09-15T14:55:22.693Z\",\"serviceBusEndpoint\":\"https://sbmigratepremium.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/AutomatedPowershellTesting/providers/Microsoft.ServiceBus/namespaces/testSBARMTemplate\",\"name\":\"testSBARMTemplate\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testsbarmtemplate\",\"createdAt\":\"2022-09-14T09:01:24.307Z\",\"updatedAt\":\"2022-09-14T09:02:09.747Z\",\"serviceBusEndpoint\":\"https://testSBARMTemplate.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/serkant/providers/Microsoft.ServiceBus/namespaces/serkant-sb1\",\"name\":\"serkant-sb1\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Disabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:serkant-sb1\",\"createdAt\":\"2022-09-14T18:25:04.52Z\",\"updatedAt\":\"2022-09-20T15:11:36.88Z\",\"serviceBusEndpoint\":\"https://serkant-sb1.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-ServiceBus-EASTUS2EUAP/providers/Microsoft.ServiceBus/namespaces/test-sb-prem-namespace-1\",\"name\":\"test-sb-prem-namespace-1\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"EAST US 2 EUAP\",\"tags\":{\"SU\":\"VAZ401\"},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Disabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:test-sb-prem-namespace-1\",\"createdAt\":\"2022-09-14T22:05:14.73Z\",\"updatedAt\":\"2022-09-19T19:46:08.123Z\",\"serviceBusEndpoint\":\"https://test-sb-prem-namespace-1.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-ServiceBus-EASTUS2EUAP/providers/Microsoft.ServiceBus/namespaces/test-sb-prem-namespace-2\",\"name\":\"test-sb-prem-namespace-2\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"EAST US 2 EUAP\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:test-sb-prem-namespace-2\",\"createdAt\":\"2022-09-14T22:14:07.053Z\",\"updatedAt\":\"2022-09-20T18:32:38.56Z\",\"serviceBusEndpoint\":\"https://test-sb-prem-namespace-2.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-ServiceBus-EASTUS2EUAP/providers/Microsoft.ServiceBus/namespaces/test-sb-prem-namespace-3\",\"name\":\"test-sb-prem-namespace-3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"EAST US 2 EUAP\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:test-sb-prem-namespace-3\",\"createdAt\":\"2022-09-14T22:14:18.25Z\",\"updatedAt\":\"2022-09-14T22:15:53.14Z\",\"serviceBusEndpoint\":\"https://test-sb-prem-namespace-3.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-ServiceBus-EASTUS2EUAP/providers/Microsoft.ServiceBus/namespaces/test-sb-prem-namespace-4\",\"name\":\"test-sb-prem-namespace-4\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"EAST US 2 EUAP\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:test-sb-prem-namespace-4\",\"createdAt\":\"2022-09-14T22:14:33.077Z\",\"updatedAt\":\"2022-09-14T22:16:26.817Z\",\"serviceBusEndpoint\":\"https://test-sb-prem-namespace-4.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-ServiceBus-EASTUS2EUAP/providers/Microsoft.ServiceBus/namespaces/test-sb-prem-namespace-5\",\"name\":\"test-sb-prem-namespace-5\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"EAST US 2 EUAP\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:test-sb-prem-namespace-5\",\"createdAt\":\"2022-09-14T22:14:45.85Z\",\"updatedAt\":\"2022-09-14T22:17:13.2Z\",\"serviceBusEndpoint\":\"https://test-sb-prem-namespace-5.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/damorg/providers/Microsoft.ServiceBus/namespaces/sb-primary-ns1\",\"name\":\"sb-primary-ns1\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sb-primary-ns1\",\"createdAt\":\"2022-09-16T07:03:28.223Z\",\"updatedAt\":\"2022-09-16T07:27:03.803Z\",\"serviceBusEndpoint\":\"https://sb-primary-ns1.servicebus.windows.net:443/\",\"status\":\"Active\",\"alternateName\":\"sb-migrate-secondpremium\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/damorg/providers/Microsoft.ServiceBus/namespaces/sb-secondary-ns1\",\"name\":\"sb-secondary-ns1\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sb-secondary-ns1\",\"createdAt\":\"2022-09-16T07:04:43.853Z\",\"updatedAt\":\"2022-09-16T07:27:04.207Z\",\"serviceBusEndpoint\":\"https://sb-secondary-ns1.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Basic\",\"tier\":\"Basic\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/jfgRsrcGrp1/providers/Microsoft.ServiceBus/namespaces/jfgSbNmspc1\",\"name\":\"jfgSbNmspc1\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West Europe\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:jfgsbnmspc1\",\"createdAt\":\"2022-09-20T22:08:43.84Z\",\"updatedAt\":\"2022-09-20T22:09:27.257Z\",\"serviceBusEndpoint\":\"https://jfgSbNmspc1.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/jfgRsrcGrp1/providers/Microsoft.ServiceBus/namespaces/jfgSBNmspc2withPremium\",\"name\":\"jfgSBNmspc2withPremium\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West Europe\",\"tags\":{},\"identity\":{\"principalId\":\"6ceb53d7-2341-4e27-9f2f-5f8642193396\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{\"clientId\":\"38a989a1-3fab-4015-b546-cbcf7a67aa89\",\"principalId\":\"624205aa-192c-4303-9606-990d06cbd997\"},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{\"clientId\":\"440d7336-c408-4327-ad13-10a4e71aad64\",\"principalId\":\"1bdb6af0-4284-47f4-b049-94aa2868d90b\"}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:jfgsbnmspc2withpremium\",\"createdAt\":\"2022-09-20T22:11:35.137Z\",\"updatedAt\":\"2022-11-05T23:26:10.363Z\",\"serviceBusEndpoint\":\"https://jfgSBNmspc2withPremium.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Saglodha-RG/providers/Microsoft.ServiceBus/namespaces/premns-saglodha\",\"name\":\"premns-saglodha\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US 2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:premns-saglodha\",\"createdAt\":\"2022-09-22T14:48:55.867Z\",\"updatedAt\":\"2022-09-22T14:50:07.863Z\",\"serviceBusEndpoint\":\"https://premns-saglodha.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/v-ajnavtest/providers/Microsoft.ServiceBus/namespaces/testingqueuefwdto\",\"name\":\"testingqueuefwdto\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testingqueuefwdto\",\"createdAt\":\"2022-09-23T18:53:19.38Z\",\"updatedAt\":\"2022-09-23T18:54:04.303Z\",\"serviceBusEndpoint\":\"https://testingqueuefwdto.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/PS-Testing/providers/Microsoft.ServiceBus/namespaces/Namespace1-7974\",\"name\":\"Namespace1-7974\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespace1-7974\",\"createdAt\":\"2022-09-25T08:01:39.173Z\",\"updatedAt\":\"2022-09-25T08:07:57.013Z\",\"serviceBusEndpoint\":\"https://Namespace1-7974.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/PS-Testing/providers/Microsoft.ServiceBus/namespaces/Namespace2-5304\",\"name\":\"Namespace2-5304\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"principalId\":\"acb4ce9b-2730-494d-a18d-a8be0420bdcb\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://ps-test-kv1.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://ps-test-kv1.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespace2-5304\",\"createdAt\":\"2022-09-25T08:08:42.127Z\",\"updatedAt\":\"2022-11-10T08:03:09.853Z\",\"serviceBusEndpoint\":\"https://Namespace2-5304.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/PS-Testing/providers/Microsoft.ServiceBus/namespaces/Namespace1-6359\",\"name\":\"Namespace1-6359\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/PS-Testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{\"clientId\":\"38a989a1-3fab-4015-b546-cbcf7a67aa89\",\"principalId\":\"624205aa-192c-4303-9606-990d06cbd997\"},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/PS-Testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{\"clientId\":\"440d7336-c408-4327-ad13-10a4e71aad64\",\"principalId\":\"1bdb6af0-4284-47f4-b049-94aa2868d90b\"}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://ps-test-kv1.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/PS-Testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://ps-test-kv1.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/PS-Testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key1\",\"keyVaultUri\":\"https://ps-test-kv2.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/PS-Testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespace1-6359\",\"createdAt\":\"2022-09-25T08:17:21.787Z\",\"updatedAt\":\"2022-11-03T13:42:10.783Z\",\"serviceBusEndpoint\":\"https://Namespace1-6359.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/damorg/providers/Microsoft.ServiceBus/namespaces/servicebus12345\",\"name\":\"servicebus12345\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:servicebus12345\",\"createdAt\":\"2022-09-26T04:59:43.47Z\",\"updatedAt\":\"2022-09-26T05:00:26.2Z\",\"serviceBusEndpoint\":\"https://servicebus12345.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/anway/providers/Microsoft.ServiceBus/namespaces/euapmintls\",\"name\":\"euapmintls\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"EAST US 2 EUAP\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:euapmintls\",\"createdAt\":\"2022-09-29T19:07:29.45Z\",\"updatedAt\":\"2022-09-29T20:41:29.123Z\",\"serviceBusEndpoint\":\"https://euapmintls.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/PPGTest/providers/Microsoft.ServiceBus/namespaces/TestNS1006\",\"name\":\"TestNS1006\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US 2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testns1006\",\"createdAt\":\"2022-10-07T23:59:29.217Z\",\"updatedAt\":\"2022-10-08T00:00:42.497Z\",\"serviceBusEndpoint\":\"https://TestNS1006.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":4},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/jupachol-test/providers/Microsoft.ServiceBus/namespaces/jupachol-test-premium\",\"name\":\"jupachol-test-premium\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US 2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:jupachol-test-premium\",\"createdAt\":\"2022-10-11T02:23:25.33Z\",\"updatedAt\":\"2022-10-11T02:45:03.13Z\",\"serviceBusEndpoint\":\"https://jupachol-test-premium.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/rg-eldert-pg-javaone/providers/Microsoft.ServiceBus/namespaces/rg-eldert-pg-javaone-sbus\",\"name\":\"rg-eldert-pg-javaone-sbus\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:rg-eldert-pg-javaone-sbus\",\"createdAt\":\"2022-10-12T22:58:34.72Z\",\"updatedAt\":\"2022-10-12T22:59:48.85Z\",\"serviceBusEndpoint\":\"https://rg-eldert-pg-javaone-sbus.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/anwayeastus/providers/Microsoft.ServiceBus/namespaces/anway-std-eus\",\"name\":\"anway-std-eus\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:anway-std-eus\",\"createdAt\":\"2022-10-13T00:32:04.723Z\",\"updatedAt\":\"2022-10-13T00:32:49.267Z\",\"serviceBusEndpoint\":\"https://anway-std-eus.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":4},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-ServiceBus-EastUS/providers/Microsoft.ServiceBus/namespaces/Ardsouza-BL-VAZ40001-ScaleSets-2\",\"name\":\"Ardsouza-BL-VAZ40001-ScaleSets-2\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-bl-vaz40001-scalesets-2\",\"createdAt\":\"2022-10-13T00:48:44.047Z\",\"updatedAt\":\"2022-10-13T00:50:59.927Z\",\"serviceBusEndpoint\":\"https://Ardsouza-BL-VAZ40001-ScaleSets-2.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":4},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-ServiceBus-EastUS/providers/Microsoft.ServiceBus/namespaces/Ardsouza-BL-VAZ40001-ScaleSets-3\",\"name\":\"Ardsouza-BL-VAZ40001-ScaleSets-3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-bl-vaz40001-scalesets-3\",\"createdAt\":\"2022-10-17T20:51:13.547Z\",\"updatedAt\":\"2022-10-17T20:52:50.7Z\",\"serviceBusEndpoint\":\"https://Ardsouza-BL-VAZ40001-ScaleSets-3.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":4},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/VMScaleSetsTesting/providers/Microsoft.ServiceBus/namespaces/ardsouza-eastus-scalesets-10-18-2022\",\"name\":\"ardsouza-eastus-scalesets-10-18-2022\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-eastus-scalesets-10-18-2022\",\"createdAt\":\"2022-10-18T22:55:27.997Z\",\"updatedAt\":\"2022-10-18T22:57:06.683Z\",\"serviceBusEndpoint\":\"https://ardsouza-eastus-scalesets-10-18-2022.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-ServiceBus-EASTUS2EUAP/providers/Microsoft.ServiceBus/namespaces/shsama-vmss-eastus2euap-1\",\"name\":\"shsama-vmss-eastus2euap-1\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"EAST US 2 EUAP\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:shsama-vmss-eastus2euap-1\",\"createdAt\":\"2022-10-20T23:29:28.473Z\",\"updatedAt\":\"2022-10-20T23:31:17.157Z\",\"serviceBusEndpoint\":\"https://shsama-vmss-eastus2euap-1.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":64},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/cesar-acc-demo/providers/Microsoft.ServiceBus/namespaces/acc-demo\",\"name\":\"acc-demo\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:acc-demo\",\"createdAt\":\"2022-10-28T01:19:09.197Z\",\"updatedAt\":\"2022-11-15T11:14:04.937Z\",\"serviceBusEndpoint\":\"https://acc-demo.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Basic\",\"tier\":\"Basic\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/suparame-rg/providers/Microsoft.ServiceBus/namespaces/SuparameEventTest\",\"name\":\"SuparameEventTest\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Central US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:suparameeventtest\",\"createdAt\":\"2022-10-28T01:30:54.627Z\",\"updatedAt\":\"2022-10-28T01:31:38.127Z\",\"serviceBusEndpoint\":\"https://SuparameEventTest.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/anqyan-rg/providers/Microsoft.ServiceBus/namespaces/anqyan-canary\",\"name\":\"anqyan-canary\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"Central US EUAP\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:anqyan-canary\",\"createdAt\":\"2022-10-28T23:01:03.347Z\",\"updatedAt\":\"2022-10-28T23:02:24.277Z\",\"serviceBusEndpoint\":\"https://anqyan-canary.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/anway/providers/Microsoft.ServiceBus/namespaces/syncprimary\",\"name\":\"syncprimary\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US 2\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:syncprimary\",\"createdAt\":\"2022-11-09T03:52:04.83Z\",\"updatedAt\":\"2022-11-09T03:57:41.863Z\",\"serviceBusEndpoint\":\"https://syncprimary.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/anway/providers/Microsoft.ServiceBus/namespaces/syncsecondary\",\"name\":\"syncsecondary\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West Europe\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:syncsecondary\",\"createdAt\":\"2022-11-09T03:52:58.013Z\",\"updatedAt\":\"2022-11-09T03:58:33.313Z\",\"serviceBusEndpoint\":\"https://syncsecondary.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/spsbusrg/providers/Microsoft.ServiceBus/namespaces/spsbusns11103\",\"name\":\"spsbusns11103\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:spsbusns11103\",\"createdAt\":\"2022-11-10T23:56:06.953Z\",\"updatedAt\":\"2022-11-10T23:56:50.06Z\",\"serviceBusEndpoint\":\"https://spsbusns11103.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubham-rg/providers/Microsoft.ServiceBus/namespaces/srcrg21\",\"name\":\"srcrg21\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:srcrg21\",\"createdAt\":\"2022-11-14T04:51:30.823Z\",\"updatedAt\":\"2022-11-14T04:52:14.34Z\",\"serviceBusEndpoint\":\"https://srcrg21.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubham-rg/providers/Microsoft.ServiceBus/namespaces/src-rg22\",\"name\":\"src-rg22\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:src-rg22\",\"createdAt\":\"2022-11-15T07:02:59.87Z\",\"updatedAt\":\"2022-11-15T07:03:43.807Z\",\"serviceBusEndpoint\":\"https://src-rg22.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Kala-test/providers/Microsoft.ServiceBus/namespaces/test-vmss-sb-std-1\",\"name\":\"test-vmss-sb-std-1\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"Central US EUAP\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:test-vmss-sb-std-1\",\"createdAt\":\"2022-11-15T21:41:04.71Z\",\"updatedAt\":\"2022-11-15T21:41:47.093Z\",\"serviceBusEndpoint\":\"https://test-vmss-sb-std-1.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubham-rg/providers/Microsoft.ServiceBus/namespaces/srcrg24\",\"name\":\"srcrg24\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k1\":\"v1\",\"k2\":\"v2\"},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:srcrg24\",\"createdAt\":\"2022-11-16T05:28:12.687Z\",\"updatedAt\":\"2022-11-18T09:19:54.957Z\",\"serviceBusEndpoint\":\"https://srcrg24.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubham-rg/providers/Microsoft.ServiceBus/namespaces/srcrg25\",\"name\":\"srcrg25\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"bffbb59a-6d50-4e8c-bb69-3effb4b0b2dd\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:srcrg25\",\"createdAt\":\"2022-11-16T05:32:18.267Z\",\"updatedAt\":\"2022-11-16T05:39:32.39Z\",\"serviceBusEndpoint\":\"https://srcrg25.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubham-rg/providers/Microsoft.ServiceBus/namespaces/srcrg26\",\"name\":\"srcrg26\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"079e7231-f9d0-40b0-b01e-1ff2e066e4d6\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:srcrg26\",\"createdAt\":\"2022-11-16T05:34:34.54Z\",\"updatedAt\":\"2022-11-16T05:41:41.743Z\",\"serviceBusEndpoint\":\"https://srcrg26.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubham-rg/providers/Microsoft.ServiceBus/namespaces/srcrg27\",\"name\":\"srcrg27\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubham-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/MSI-rg02\":{\"clientId\":\"1201f723-2b58-448d-9e5e-e302fcdfacbc\",\"principalId\":\"ceee4453-2c61-4e1b-bff7-87dedfb25103\"},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubham-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/MSI-rg01\":{\"clientId\":\"aeb590de-880a-494c-a9c4-eedd842272f0\",\"principalId\":\"723e19ad-62ca-4b38-af07-4d9b7c3261a3\"}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key4\",\"keyVaultUri\":\"https://keyvault-rg1.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubham-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/MSI-rg01\"}},{\"keyName\":\"key5\",\"keyVaultUri\":\"https://keyvault-rg1.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubham-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/MSI-rg01\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:srcrg27\",\"createdAt\":\"2022-11-16T06:16:59.707Z\",\"updatedAt\":\"2022-11-16T06:38:06.653Z\",\"serviceBusEndpoint\":\"https://srcrg27.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubham-rg/providers/Microsoft.ServiceBus/namespaces/srcrg31\",\"name\":\"srcrg31\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubham-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/MSI-rg02\":{\"clientId\":\"1201f723-2b58-448d-9e5e-e302fcdfacbc\",\"principalId\":\"ceee4453-2c61-4e1b-bff7-87dedfb25103\"},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubham-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/MSI-rg01\":{\"clientId\":\"aeb590de-880a-494c-a9c4-eedd842272f0\",\"principalId\":\"723e19ad-62ca-4b38-af07-4d9b7c3261a3\"}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key7\",\"keyVaultUri\":\"https://keyvault-rg1.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubham-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/MSI-rg01\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:srcrg31\",\"createdAt\":\"2022-11-16T09:11:41.517Z\",\"updatedAt\":\"2022-11-17T03:50:44.18Z\",\"serviceBusEndpoint\":\"https://srcrg31.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":16},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/bwpoc/providers/Microsoft.ServiceBus/namespaces/bwpocns1\",\"name\":\"bwpocns1\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:bwpocns1\",\"createdAt\":\"2022-11-17T02:33:45.87Z\",\"updatedAt\":\"2022-11-17T02:34:59.69Z\",\"serviceBusEndpoint\":\"https://bwpocns1.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubham-rg/providers/Microsoft.ServiceBus/namespaces/srcrg32\",\"name\":\"srcrg32\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:srcrg32\",\"createdAt\":\"2022-11-17T03:54:50.253Z\",\"updatedAt\":\"2022-11-21T10:00:28.463Z\",\"serviceBusEndpoint\":\"https://srcrg32.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubham-rg/providers/Microsoft.ServiceBus/namespaces/srcrg33\",\"name\":\"srcrg33\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"principalId\":\"fb7cf45a-5e21-405e-a02c-37538e22cfd6\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubham-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/MSI-rg02\":{\"clientId\":\"1201f723-2b58-448d-9e5e-e302fcdfacbc\",\"principalId\":\"ceee4453-2c61-4e1b-bff7-87dedfb25103\"},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubham-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/MSI-rg01\":{\"clientId\":\"aeb590de-880a-494c-a9c4-eedd842272f0\",\"principalId\":\"723e19ad-62ca-4b38-af07-4d9b7c3261a3\"}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvault-rg02.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:srcrg33\",\"createdAt\":\"2022-11-17T04:12:04.513Z\",\"updatedAt\":\"2022-11-17T05:22:19.78Z\",\"serviceBusEndpoint\":\"https://srcrg33.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":16},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubham-rg/providers/Microsoft.ServiceBus/namespaces/srcrg35\",\"name\":\"srcrg35\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.1\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:srcrg35\",\"createdAt\":\"2022-11-17T05:51:52.41Z\",\"updatedAt\":\"2022-11-21T05:01:22.313Z\",\"serviceBusEndpoint\":\"https://srcrg35.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubham-rg/providers/Microsoft.ServiceBus/namespaces/srcrg71\",\"name\":\"srcrg71\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k1\":\"v1\",\"k2\":\"v2\"},\"properties\":{\"minimumTlsVersion\":\"1.1\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:srcrg71\",\"createdAt\":\"2022-11-18T06:06:22.88Z\",\"updatedAt\":\"2022-11-18T06:07:06.917Z\",\"serviceBusEndpoint\":\"https://srcrg71.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubham-rg/providers/Microsoft.ServiceBus/namespaces/srcrg61\",\"name\":\"srcrg61\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubham-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/MSI-rg01\":{\"clientId\":\"aeb590de-880a-494c-a9c4-eedd842272f0\",\"principalId\":\"723e19ad-62ca-4b38-af07-4d9b7c3261a3\"}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key4\",\"keyVaultUri\":\"https://keyvault-rg1.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubham-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/MSI-rg01\"}},{\"keyName\":\"key6\",\"keyVaultUri\":\"https://keyvault-rg1.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubham-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/MSI-rg01\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:srcrg61\",\"createdAt\":\"2022-11-21T05:15:41.483Z\",\"updatedAt\":\"2022-11-22T12:28:48.87Z\",\"serviceBusEndpoint\":\"https://srcrg61.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubham-rg/providers/Microsoft.ServiceBus/namespaces/srcrg62\",\"name\":\"srcrg62\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"principalId\":\"f35de96f-0e66-4665-b78b-541704def9c7\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:srcrg62\",\"createdAt\":\"2022-11-21T05:33:10.95Z\",\"updatedAt\":\"2022-11-21T05:40:18.94Z\",\"serviceBusEndpoint\":\"https://srcrg62.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":64},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/vijayscalesetsloadtest/providers/Microsoft.ServiceBus/namespaces/bwpocssns2\",\"name\":\"bwpocssns2\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:bwpocssns2\",\"createdAt\":\"2022-11-22T01:15:59.343Z\",\"updatedAt\":\"2022-11-22T02:16:13.67Z\",\"serviceBusEndpoint\":\"https://bwpocssns2.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorest4i9zey/providers/Microsoft.ServiceBus/namespaces/secondaryNSe5sqx2\",\"name\":\"secondaryNSe5sqx2\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:secondarynse5sqx2\",\"createdAt\":\"2022-11-22T16:46:54.59Z\",\"updatedAt\":\"2022-11-22T16:59:12.363Z\",\"serviceBusEndpoint\":\"https://secondaryNSe5sqx2.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorest4i9zey/providers/Microsoft.ServiceBus/namespaces/primaryNSg2o85l\",\"name\":\"primaryNSg2o85l\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:primarynsg2o85l\",\"createdAt\":\"2022-11-22T16:46:54.713Z\",\"updatedAt\":\"2022-11-22T16:59:12.637Z\",\"serviceBusEndpoint\":\"https://primaryNSg2o85l.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutoresto859up/providers/Microsoft.ServiceBus/namespaces/primaryNSn6fmhu\",\"name\":\"primaryNSn6fmhu\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:primarynsn6fmhu\",\"createdAt\":\"2022-11-22T17:41:18.407Z\",\"updatedAt\":\"2022-11-22T19:02:40.557Z\",\"serviceBusEndpoint\":\"https://primaryNSn6fmhu.servicebus.windows.net:443/\",\"status\":\"Active\",\"alternateName\":\"postMigrationqt7hcd\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutoresto859up/providers/Microsoft.ServiceBus/namespaces/secondaryNSiqjvmr\",\"name\":\"secondaryNSiqjvmr\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:secondarynsiqjvmr\",\"createdAt\":\"2022-11-22T17:41:18.407Z\",\"updatedAt\":\"2022-11-22T19:03:33.6Z\",\"serviceBusEndpoint\":\"https://secondaryNSiqjvmr.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorest1lxftd/providers/Microsoft.ServiceBus/namespaces/primaryNSg2skfn\",\"name\":\"primaryNSg2skfn\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:primarynsg2skfn\",\"createdAt\":\"2022-11-23T06:44:18.907Z\",\"updatedAt\":\"2022-11-23T06:56:31.8Z\",\"serviceBusEndpoint\":\"https://primaryNSg2skfn.servicebus.windows.net:443/\",\"status\":\"Active\"}}],\"nextLink\":\"https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ServiceBus/namespaces?api-version=2022-01-01-preview\u0026$skipToken=2022-11-23T06:44:18.907Z\"}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":4},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/VMScaleSetsTesting/providers/Microsoft.ServiceBus/namespaces/ardsouza-eastus-scalesets-10-18-2022\",\"name\":\"ardsouza-eastus-scalesets-10-18-2022\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":4,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-eastus-scalesets-10-18-2022\",\"createdAt\":\"2022-10-18T22:55:27.997Z\",\"updatedAt\":\"2022-10-18T22:57:06.683Z\",\"serviceBusEndpoint\":\"https://ardsouza-eastus-scalesets-10-18-2022.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Basic\",\"tier\":\"Basic\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/suparame-rg/providers/Microsoft.ServiceBus/namespaces/SuparameEventTest\",\"name\":\"SuparameEventTest\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Central US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:suparameeventtest\",\"createdAt\":\"2022-10-28T01:30:54.627Z\",\"updatedAt\":\"2022-10-28T01:31:38.127Z\",\"serviceBusEndpoint\":\"https://SuparameEventTest.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/anway/providers/Microsoft.ServiceBus/namespaces/syncprimary\",\"name\":\"syncprimary\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US 2\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:syncprimary\",\"createdAt\":\"2022-11-09T03:52:04.83Z\",\"updatedAt\":\"2022-12-15T18:02:59.367Z\",\"serviceBusEndpoint\":\"https://syncprimary.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/anway/providers/Microsoft.ServiceBus/namespaces/syncsecondary\",\"name\":\"syncsecondary\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West Europe\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:syncsecondary\",\"createdAt\":\"2022-11-09T03:52:58.013Z\",\"updatedAt\":\"2022-12-15T18:02:57.23Z\",\"serviceBusEndpoint\":\"https://syncsecondary.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/spsbusrg/providers/Microsoft.ServiceBus/namespaces/spsbusns11103\",\"name\":\"spsbusns11103\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:spsbusns11103\",\"createdAt\":\"2022-11-10T23:56:06.953Z\",\"updatedAt\":\"2022-11-10T23:56:50.06Z\",\"serviceBusEndpoint\":\"https://spsbusns11103.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":16},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/bwpoc/providers/Microsoft.ServiceBus/namespaces/bwpocns1\",\"name\":\"bwpocns1\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:bwpocns1\",\"createdAt\":\"2022-11-17T02:33:45.87Z\",\"updatedAt\":\"2022-11-17T02:34:59.69Z\",\"serviceBusEndpoint\":\"https://bwpocns1.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":64},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/vijayscalesetsloadtest/providers/Microsoft.ServiceBus/namespaces/bwpocssns2\",\"name\":\"bwpocssns2\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":4,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:bwpocssns2\",\"createdAt\":\"2022-11-22T01:15:59.343Z\",\"updatedAt\":\"2022-11-22T02:16:13.67Z\",\"serviceBusEndpoint\":\"https://bwpocssns2.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorest4i9zey/providers/Microsoft.ServiceBus/namespaces/secondaryNSe5sqx2\",\"name\":\"secondaryNSe5sqx2\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:secondarynse5sqx2\",\"createdAt\":\"2022-11-22T16:46:54.59Z\",\"updatedAt\":\"2022-11-22T16:59:12.363Z\",\"serviceBusEndpoint\":\"https://secondaryNSe5sqx2.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorest4i9zey/providers/Microsoft.ServiceBus/namespaces/primaryNSg2o85l\",\"name\":\"primaryNSg2o85l\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:primarynsg2o85l\",\"createdAt\":\"2022-11-22T16:46:54.713Z\",\"updatedAt\":\"2022-11-22T16:59:12.637Z\",\"serviceBusEndpoint\":\"https://primaryNSg2o85l.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutoresto859up/providers/Microsoft.ServiceBus/namespaces/primaryNSn6fmhu\",\"name\":\"primaryNSn6fmhu\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:primarynsn6fmhu\",\"createdAt\":\"2022-11-22T17:41:18.407Z\",\"updatedAt\":\"2022-11-22T19:02:40.557Z\",\"serviceBusEndpoint\":\"https://primaryNSn6fmhu.servicebus.windows.net:443/\",\"status\":\"Active\",\"alternateName\":\"postMigrationqt7hcd\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutoresto859up/providers/Microsoft.ServiceBus/namespaces/secondaryNSiqjvmr\",\"name\":\"secondaryNSiqjvmr\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:secondarynsiqjvmr\",\"createdAt\":\"2022-11-22T17:41:18.407Z\",\"updatedAt\":\"2022-11-22T19:03:33.6Z\",\"serviceBusEndpoint\":\"https://secondaryNSiqjvmr.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorest1lxftd/providers/Microsoft.ServiceBus/namespaces/primaryNSg2skfn\",\"name\":\"primaryNSg2skfn\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:primarynsg2skfn\",\"createdAt\":\"2022-11-23T06:44:18.907Z\",\"updatedAt\":\"2022-11-23T06:56:31.8Z\",\"serviceBusEndpoint\":\"https://primaryNSg2skfn.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorest1lxftd/providers/Microsoft.ServiceBus/namespaces/secondaryNSud1hb2\",\"name\":\"secondaryNSud1hb2\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:secondarynsud1hb2\",\"createdAt\":\"2022-11-23T06:44:19.32Z\",\"updatedAt\":\"2022-11-23T06:56:33.823Z\",\"serviceBusEndpoint\":\"https://secondaryNSud1hb2.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestnqpzt9/providers/Microsoft.ServiceBus/namespaces/secondaryNScjqf18\",\"name\":\"secondaryNScjqf18\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:secondarynscjqf18\",\"createdAt\":\"2022-11-23T07:44:46.24Z\",\"updatedAt\":\"2022-11-23T07:55:58.033Z\",\"serviceBusEndpoint\":\"https://secondaryNScjqf18.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestnqpzt9/providers/Microsoft.ServiceBus/namespaces/primaryNS3ish9p\",\"name\":\"primaryNS3ish9p\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:primaryns3ish9p\",\"createdAt\":\"2022-11-23T07:44:46.317Z\",\"updatedAt\":\"2022-11-23T07:55:59.193Z\",\"serviceBusEndpoint\":\"https://primaryNS3ish9p.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestqb21vp/providers/Microsoft.ServiceBus/namespaces/secondaryNSaj9zhm\",\"name\":\"secondaryNSaj9zhm\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:secondarynsaj9zhm\",\"createdAt\":\"2022-11-23T08:14:48.83Z\",\"updatedAt\":\"2022-11-23T08:26:44.967Z\",\"serviceBusEndpoint\":\"https://secondaryNSaj9zhm.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestqb21vp/providers/Microsoft.ServiceBus/namespaces/primaryNSmf4b86\",\"name\":\"primaryNSmf4b86\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:primarynsmf4b86\",\"createdAt\":\"2022-11-23T08:14:49.007Z\",\"updatedAt\":\"2022-11-23T08:26:45.71Z\",\"serviceBusEndpoint\":\"https://primaryNSmf4b86.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestc3akwp/providers/Microsoft.ServiceBus/namespaces/namespaceNamek15sa7\",\"name\":\"namespaceNamek15sa7\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamek15sa7\",\"createdAt\":\"2022-11-23T10:33:09.827Z\",\"updatedAt\":\"2022-11-23T10:33:52.657Z\",\"serviceBusEndpoint\":\"https://namespaceNamek15sa7.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestc3akwp/providers/Microsoft.ServiceBus/namespaces/namespaceNameazit49\",\"name\":\"namespaceNameazit49\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"privateEndpointConnections\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ServiceBus/namespaces/privateEndpointConnections/67ed170e-22f4-45d5-88c2-65242051987e\",\"name\":\"67ed170e-22f4-45d5-88c2-65242051987e\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestc3akwp/providers/Microsoft.Network/privateEndpoints/pe1xb0e6w\"},\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"\"},\"groupIds\":[\"namespace\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ServiceBus/namespaces/privateEndpointConnections/1423d16b-9510-49c1-978f-ef0c2f1831f8\",\"name\":\"1423d16b-9510-49c1-978f-ef0c2f1831f8\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestc3akwp/providers/Microsoft.Network/privateEndpoints/pe2j07oca\"},\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"Bye\"},\"groupIds\":[\"namespace\"]}}],\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenameazit49\",\"createdAt\":\"2022-11-23T10:33:10.063Z\",\"updatedAt\":\"2022-11-23T10:37:11.773Z\",\"serviceBusEndpoint\":\"https://namespaceNameazit49.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestc3akwp/providers/Microsoft.ServiceBus/namespaces/namespaceName2qt8ag\",\"name\":\"namespaceName2qt8ag\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"4bedf168-dcb9-4d89-9b35-844869a85823\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacename2qt8ag\",\"createdAt\":\"2022-11-23T10:33:10.83Z\",\"updatedAt\":\"2023-01-08T10:28:09.28Z\",\"serviceBusEndpoint\":\"https://namespaceName2qt8ag.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestc3akwp/providers/Microsoft.ServiceBus/namespaces/secondaryNStilqso\",\"name\":\"secondaryNStilqso\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:secondarynstilqso\",\"createdAt\":\"2022-11-23T10:42:30.29Z\",\"updatedAt\":\"2022-11-23T10:44:33.083Z\",\"serviceBusEndpoint\":\"https://secondaryNStilqso.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestc3akwp/providers/Microsoft.ServiceBus/namespaces/primaryNS67mwe3\",\"name\":\"primaryNS67mwe3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:primaryns67mwe3\",\"createdAt\":\"2022-11-23T10:42:30.41Z\",\"updatedAt\":\"2022-11-23T10:43:14.363Z\",\"serviceBusEndpoint\":\"https://primaryNS67mwe3.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestc3akwp/providers/Microsoft.ServiceBus/namespaces/secondaryNSxg98uj\",\"name\":\"secondaryNSxg98uj\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:secondarynsxg98uj\",\"createdAt\":\"2022-11-23T10:42:30.63Z\",\"updatedAt\":\"2022-11-23T10:45:02.21Z\",\"serviceBusEndpoint\":\"https://secondaryNSxg98uj.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestc3akwp/providers/Microsoft.ServiceBus/namespaces/primaryNS9kh1r7\",\"name\":\"primaryNS9kh1r7\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:primaryns9kh1r7\",\"createdAt\":\"2022-11-23T10:42:30.71Z\",\"updatedAt\":\"2022-11-23T10:43:38.44Z\",\"serviceBusEndpoint\":\"https://primaryNS9kh1r7.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestel6pb5/providers/Microsoft.ServiceBus/namespaces/secondaryNS4qrb17\",\"name\":\"secondaryNS4qrb17\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:secondaryns4qrb17\",\"createdAt\":\"2022-11-23T12:03:35.037Z\",\"updatedAt\":\"2022-11-23T13:24:59.773Z\",\"serviceBusEndpoint\":\"https://secondaryNS4qrb17.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestel6pb5/providers/Microsoft.ServiceBus/namespaces/primaryNS6wbgdx\",\"name\":\"primaryNS6wbgdx\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:primaryns6wbgdx\",\"createdAt\":\"2022-11-23T12:03:35.123Z\",\"updatedAt\":\"2022-11-23T13:24:59.547Z\",\"serviceBusEndpoint\":\"https://primaryNS6wbgdx.servicebus.windows.net:443/\",\"status\":\"Active\",\"alternateName\":\"postMigrationajsixu\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/jbj-sb-testing/providers/Microsoft.ServiceBus/namespaces/jbj-sb-aad-test\",\"name\":\"jbj-sb-aad-test\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West Central US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:jbj-sb-aad-test\",\"createdAt\":\"2022-11-30T20:44:46.15Z\",\"updatedAt\":\"2022-11-30T20:45:29.853Z\",\"serviceBusEndpoint\":\"https://jbj-sb-aad-test.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/abhigarg-publicnetworkaccess-cbn/providers/Microsoft.ServiceBus/namespaces/abhigarg-publicnetwrkaccess-2022-12-02\",\"name\":\"abhigarg-publicnetwrkaccess-2022-12-02\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"EAST US 2 EUAP\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:abhigarg-publicnetwrkaccess-2022-12-02\",\"createdAt\":\"2022-12-02T21:35:16.203Z\",\"updatedAt\":\"2022-12-03T01:08:23.413Z\",\"serviceBusEndpoint\":\"https://abhigarg-publicnetwrkaccess-2022-12-02.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Basic\",\"tier\":\"Basic\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/klam-rg/providers/Microsoft.ServiceBus/namespaces/klam-test-deleteme\",\"name\":\"klam-test-deleteme\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"Brazil South\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:klam-test-deleteme\",\"createdAt\":\"2022-12-12T18:00:24.613Z\",\"updatedAt\":\"2022-12-12T18:01:08.077Z\",\"serviceBusEndpoint\":\"https://klam-test-deleteme.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/damorg/providers/Microsoft.ServiceBus/namespaces/testsbcompliance\",\"name\":\"testsbcompliance\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"Jio India West\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Disabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testsbcompliance\",\"createdAt\":\"2022-12-13T04:48:43.01Z\",\"updatedAt\":\"2022-12-13T07:37:52.777Z\",\"serviceBusEndpoint\":\"https://testsbcompliance.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Basic\",\"tier\":\"Basic\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/suparame-rg/providers/Microsoft.ServiceBus/namespaces/SuparameNamespaceTest1\",\"name\":\"SuparameNamespaceTest1\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:suparamenamespacetest1\",\"createdAt\":\"2022-12-16T05:52:14.85Z\",\"updatedAt\":\"2022-12-16T05:52:59.003Z\",\"serviceBusEndpoint\":\"https://SuparameNamespaceTest1.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ardsouza-testrg1/providers/Microsoft.ServiceBus/namespaces/ardsouza-polandcentral-12-21-22\",\"name\":\"ardsouza-polandcentral-12-21-22\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"Poland Central\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-polandcentral-12-21-22\",\"createdAt\":\"2022-12-21T22:12:02.127Z\",\"updatedAt\":\"2022-12-21T22:13:20.107Z\",\"serviceBusEndpoint\":\"https://ardsouza-polandcentral-12-21-22.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ardsouza-testrg1/providers/Microsoft.ServiceBus/namespaces/ardsouza-polandcentral-std-12-21-22\",\"name\":\"ardsouza-polandcentral-std-12-21-22\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"Poland Central\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-polandcentral-std-12-21-22\",\"createdAt\":\"2022-12-22T02:37:39.503Z\",\"updatedAt\":\"2022-12-22T02:38:24.017Z\",\"serviceBusEndpoint\":\"https://ardsouza-polandcentral-std-12-21-22.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/pablorod_new/providers/Microsoft.ServiceBus/namespaces/pablorod-suscription-rules-v2\",\"name\":\"pablorod-suscription-rules-v2\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:pablorod-suscription-rules-v2\",\"createdAt\":\"2022-12-28T21:24:03.74Z\",\"updatedAt\":\"2022-12-28T21:24:46.6Z\",\"serviceBusEndpoint\":\"https://pablorod-suscription-rules-v2.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/TestKaren/providers/Microsoft.ServiceBus/namespaces/jmsCanaryTest\",\"name\":\"jmsCanaryTest\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"Central US EUAP\",\"tags\":{},\"identity\":{\"principalId\":\"545fa6eb-4462-4f3b-8e03-1be333624068\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/TestKaren/providers/Microsoft.ManagedIdentity/userAssignedIdentities/aadJmsTest\":{\"clientId\":\"f7a1d0cd-b213-46ad-b00f-7b8da1ae32a9\",\"principalId\":\"8ef66c24-3d2d-4435-885c-18b4e02bbc41\"}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:jmscanarytest\",\"createdAt\":\"2022-12-29T02:49:54.477Z\",\"updatedAt\":\"2023-02-04T22:07:08.703Z\",\"serviceBusEndpoint\":\"https://jmsCanaryTest.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubham-rg/providers/Microsoft.ServiceBus/namespaces/srcauth01\",\"name\":\"srcauth01\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:srcauth01\",\"createdAt\":\"2023-01-05T09:26:00.26Z\",\"updatedAt\":\"2023-01-05T09:26:45.007Z\",\"serviceBusEndpoint\":\"https://srcauth01.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/suparame-rg/providers/Microsoft.ServiceBus/namespaces/Suparame-EG-test1\",\"name\":\"Suparame-EG-test1\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US 3\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:suparame-eg-test1\",\"createdAt\":\"2023-01-06T02:55:40.927Z\",\"updatedAt\":\"2023-01-06T02:56:51.367Z\",\"serviceBusEndpoint\":\"https://Suparame-EG-test1.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-ServiceBus-EASTUS2EUAP/providers/Microsoft.ServiceBus/namespaces/euapnoebs\",\"name\":\"euapnoebs\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"EAST US 2 EUAP\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:euapnoebs\",\"createdAt\":\"2023-01-11T04:06:37.373Z\",\"updatedAt\":\"2023-01-11T04:07:56.56Z\",\"serviceBusEndpoint\":\"https://euapnoebs.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/testservicebusRG-2484/providers/Microsoft.ServiceBus/namespaces/testnamespacemgmt7646\",\"name\":\"testnamespacemgmt7646\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":2,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testnamespacemgmt7646\",\"createdAt\":\"2023-01-12T08:22:57.34Z\",\"updatedAt\":\"2023-01-12T08:24:36.11Z\",\"serviceBusEndpoint\":\"https://testnamespacemgmt7646.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/anway/providers/Microsoft.ServiceBus/namespaces/highmemeus2\",\"name\":\"highmemeus2\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US 2\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:highmemeus2\",\"createdAt\":\"2023-01-12T21:42:02.56Z\",\"updatedAt\":\"2023-01-12T21:43:21.12Z\",\"serviceBusEndpoint\":\"https://highmemeus2.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubham-rg/providers/Microsoft.ServiceBus/namespaces/srcty110\",\"name\":\"srcty110\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"f41a1e1e-8e8b-4f7a-9e2b-281966a681f8\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubham-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/MSI-rg02\":{\"clientId\":\"1201f723-2b58-448d-9e5e-e302fcdfacbc\",\"principalId\":\"ceee4453-2c61-4e1b-bff7-87dedfb25103\"},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubham-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/MSI-rg01\":{\"clientId\":\"aeb590de-880a-494c-a9c4-eedd842272f0\",\"principalId\":\"723e19ad-62ca-4b38-af07-4d9b7c3261a3\"}}},\"properties\":{\"premiumMessagingPartitions\":2,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:srcty110\",\"createdAt\":\"2023-01-23T11:29:27.333Z\",\"updatedAt\":\"2023-01-23T11:36:43.7Z\",\"serviceBusEndpoint\":\"https://srcty110.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/TestKaren/providers/Microsoft.ServiceBus/namespaces/mqTestKa\",\"name\":\"mqTestKa\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US 2\",\"tags\":{},\"identity\":{\"principalId\":\"f063a397-de97-42f0-9a6d-bc48fb375597\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:mqtestka\",\"createdAt\":\"2023-01-27T01:29:51.76Z\",\"updatedAt\":\"2023-01-27T05:24:54.09Z\",\"serviceBusEndpoint\":\"https://mqTestKa.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/suparame-rg/providers/Microsoft.ServiceBus/namespaces/ServiceBusStandardNSSuparme\",\"name\":\"ServiceBusStandardNSSuparme\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US 3\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:servicebusstandardnssuparme\",\"createdAt\":\"2023-01-31T18:38:27.15Z\",\"updatedAt\":\"2023-01-31T18:39:09.853Z\",\"serviceBusEndpoint\":\"https://ServiceBusStandardNSSuparme.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/testservicebusRG-6260/providers/Microsoft.ServiceBus/namespaces/testnamespacemgmt7577\",\"name\":\"testnamespacemgmt7577\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US 2\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testnamespacemgmt7577\",\"createdAt\":\"2023-02-01T09:27:27.243Z\",\"updatedAt\":\"2023-02-01T09:28:38.053Z\",\"serviceBusEndpoint\":\"https://testnamespacemgmt7577.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/testservicebusRG-6260/providers/Microsoft.ServiceBus/namespaces/testnamespacemgmt1217\",\"name\":\"testnamespacemgmt1217\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testnamespacemgmt1217\",\"createdAt\":\"2023-02-01T09:29:09.047Z\",\"updatedAt\":\"2023-02-01T09:31:02.407Z\",\"serviceBusEndpoint\":\"https://testnamespacemgmt1217.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sharmavijay-la-verification/providers/Microsoft.ServiceBus/namespaces/sharmavijay-sb-std-la-verification\",\"name\":\"sharmavijay-sb-std-la-verification\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"EAST US 2 EUAP\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sharmavijay-sb-std-la-verification\",\"createdAt\":\"2023-02-01T11:00:09.857Z\",\"updatedAt\":\"2023-02-01T11:00:55.313Z\",\"serviceBusEndpoint\":\"https://sharmavijay-sb-std-la-verification.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":4},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/testvinsu718/providers/Microsoft.ServiceBus/namespaces/testsbpremvinsuwithHighMemoryFix\",\"name\":\"testsbpremvinsuwithHighMemoryFix\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"Central US EUAP\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:testsbpremvinsuwithhighmemoryfix\",\"createdAt\":\"2023-02-05T21:14:19.12Z\",\"updatedAt\":\"2023-02-09T00:27:34.767Z\",\"serviceBusEndpoint\":\"https://testsbpremvinsuwithHighMemoryFix.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/cli_test_sb_subscription6m27zc5rufs7xp34pis2phf5wfu2j7kk7lqieysmclma6iytq4r/providers/Microsoft.ServiceBus/namespaces/sb-nsclizscx2ebag64z\",\"name\":\"sb-nsclizscx2ebag64z\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US\",\"tags\":{\"{tag1: value1,\":\"\",\"tag2: value2}\":\"\"},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sb-nsclizscx2ebag64z\",\"createdAt\":\"2023-02-07T08:00:56.033Z\",\"updatedAt\":\"2023-02-07T08:01:38.447Z\",\"serviceBusEndpoint\":\"https://sb-nsclizscx2ebag64z.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/cli_test_sb_queueucmveinbbhtk5zmhw4unieyuns6duvjkbs3xk7ulpknno3umqqsxfewp7t/providers/Microsoft.ServiceBus/namespaces/sb-nscli54t4su6p5nrz\",\"name\":\"sb-nscli54t4su6p5nrz\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US\",\"tags\":{\"{tag2\":\"value2,\",\"tag1\":\"value1}\"},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli54t4su6p5nrz\",\"createdAt\":\"2023-02-07T08:11:32.08Z\",\"updatedAt\":\"2023-02-07T08:12:16.78Z\",\"serviceBusEndpoint\":\"https://sb-nscli54t4su6p5nrz.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/anqyan-rg/providers/Microsoft.ServiceBus/namespaces/anqyan-canary-premum\",\"name\":\"anqyan-canary-premum\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"Central US EUAP\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:anqyan-canary-premum\",\"createdAt\":\"2023-02-08T00:34:41.913Z\",\"updatedAt\":\"2023-02-08T00:36:00.77Z\",\"serviceBusEndpoint\":\"https://anqyan-canary-premum.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Kala-test/providers/Microsoft.ServiceBus/namespaces/kala-test-poland\",\"name\":\"kala-test-poland\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"Poland Central\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:kala-test-poland\",\"createdAt\":\"2023-02-09T22:33:45.233Z\",\"updatedAt\":\"2023-02-16T23:42:01.043Z\",\"serviceBusEndpoint\":\"https://kala-test-poland.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestc9psbq/providers/Microsoft.ServiceBus/namespaces/namespaceNameqau0ke\",\"name\":\"namespaceNameqau0ke\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenameqau0ke\",\"createdAt\":\"2023-02-10T17:17:35.547Z\",\"updatedAt\":\"2023-02-10T17:18:17.667Z\",\"serviceBusEndpoint\":\"https://namespaceNameqau0ke.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestc9psbq/providers/Microsoft.ServiceBus/namespaces/namespaceNameblajf8\",\"name\":\"namespaceNameblajf8\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenameblajf8\",\"createdAt\":\"2023-02-10T17:17:35.657Z\",\"updatedAt\":\"2023-02-10T17:18:45.427Z\",\"serviceBusEndpoint\":\"https://namespaceNameblajf8.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestc9psbq/providers/Microsoft.ServiceBus/namespaces/namespaceNamecyvb0a\",\"name\":\"namespaceNamecyvb0a\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"0798279e-3e21-4829-96f3-81262828ea3b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamecyvb0a\",\"createdAt\":\"2023-02-10T17:17:36.46Z\",\"updatedAt\":\"2023-02-10T17:24:44.783Z\",\"serviceBusEndpoint\":\"https://namespaceNamecyvb0a.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestc9psbq/providers/Microsoft.ServiceBus/namespaces/primaryNSzunbvq\",\"name\":\"primaryNSzunbvq\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:primarynszunbvq\",\"createdAt\":\"2023-02-10T17:25:08.113Z\",\"updatedAt\":\"2023-02-10T18:17:11.347Z\",\"serviceBusEndpoint\":\"https://primaryNSzunbvq.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestc9psbq/providers/Microsoft.ServiceBus/namespaces/secondaryNSgsa23z\",\"name\":\"secondaryNSgsa23z\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:secondarynsgsa23z\",\"createdAt\":\"2023-02-10T17:25:08.49Z\",\"updatedAt\":\"2023-02-10T17:37:32.227Z\",\"serviceBusEndpoint\":\"https://secondaryNSgsa23z.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestc9psbq/providers/Microsoft.ServiceBus/namespaces/primaryNS6bfi8t\",\"name\":\"primaryNS6bfi8t\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:primaryns6bfi8t\",\"createdAt\":\"2023-02-10T17:25:08.73Z\",\"updatedAt\":\"2023-02-10T17:25:51.82Z\",\"serviceBusEndpoint\":\"https://primaryNS6bfi8t.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestc9psbq/providers/Microsoft.ServiceBus/namespaces/secondaryNS4xj2hf\",\"name\":\"secondaryNS4xj2hf\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:secondaryns4xj2hf\",\"createdAt\":\"2023-02-10T17:25:09.733Z\",\"updatedAt\":\"2023-02-10T17:26:47.687Z\",\"serviceBusEndpoint\":\"https://secondaryNS4xj2hf.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestc9psbq/providers/Microsoft.ServiceBus/namespaces/namespaceV2gqx7eh\",\"name\":\"namespaceV2gqx7eh\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev2gqx7eh\",\"createdAt\":\"2023-02-10T17:39:41.903Z\",\"updatedAt\":\"2023-02-10T17:40:25.32Z\",\"serviceBusEndpoint\":\"https://namespaceV2gqx7eh.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestc9psbq/providers/Microsoft.ServiceBus/namespaces/namespaceV3s5q0n2\",\"name\":\"namespaceV3s5q0n2\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k1\":\"v1\",\"k2\":\"v2\"},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.1\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3s5q0n2\",\"createdAt\":\"2023-02-10T17:40:46.02Z\",\"updatedAt\":\"2023-02-10T17:41:28.37Z\",\"serviceBusEndpoint\":\"https://namespaceV3s5q0n2.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestc9psbq/providers/Microsoft.ServiceBus/namespaces/namespaceV4w7kpnq\",\"name\":\"namespaceV4w7kpnq\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"ad0065a0-6933-4db9-a287-7bbd15d36c04\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"premiumMessagingPartitions\":2,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev4w7kpnq\",\"createdAt\":\"2023-02-10T17:41:50.053Z\",\"updatedAt\":\"2023-02-10T17:49:00.633Z\",\"serviceBusEndpoint\":\"https://namespaceV4w7kpnq.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestc9psbq/providers/Microsoft.ServiceBus/namespaces/namespaceV5mdoiq0\",\"name\":\"namespaceV5mdoiq0\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{\"clientId\":\"38a989a1-3fab-4015-b546-cbcf7a67aa89\",\"principalId\":\"624205aa-192c-4303-9606-990d06cbd997\"},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{\"clientId\":\"440d7336-c408-4327-ad13-10a4e71aad64\",\"principalId\":\"1bdb6af0-4284-47f4-b049-94aa2868d90b\"}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamezy92k7.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamezy92k7.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev5mdoiq0\",\"createdAt\":\"2023-02-10T17:49:29.18Z\",\"updatedAt\":\"2023-02-10T17:56:45.86Z\",\"serviceBusEndpoint\":\"https://namespaceV5mdoiq0.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestc9psbq/providers/Microsoft.ServiceBus/namespaces/namespaceV9azx8yb\",\"name\":\"namespaceV9azx8yb\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{\"clientId\":\"38a989a1-3fab-4015-b546-cbcf7a67aa89\",\"principalId\":\"624205aa-192c-4303-9606-990d06cbd997\"},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{\"clientId\":\"440d7336-c408-4327-ad13-10a4e71aad64\",\"principalId\":\"1bdb6af0-4284-47f4-b049-94aa2868d90b\"}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamezy92k7.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamezy92k7.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":true},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev9azx8yb\",\"createdAt\":\"2023-02-10T17:57:08.977Z\",\"updatedAt\":\"2023-02-10T18:04:27.967Z\",\"serviceBusEndpoint\":\"https://namespaceV9azx8yb.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorest3gl8u0/providers/Microsoft.ServiceBus/namespaces/secondaryNSw9rzma\",\"name\":\"secondaryNSw9rzma\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:secondarynsw9rzma\",\"createdAt\":\"2023-02-10T18:33:19.68Z\",\"updatedAt\":\"2023-02-10T20:09:29.653Z\",\"serviceBusEndpoint\":\"https://secondaryNSw9rzma.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorest3gl8u0/providers/Microsoft.ServiceBus/namespaces/primaryNSut8xa0\",\"name\":\"primaryNSut8xa0\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:primarynsut8xa0\",\"createdAt\":\"2023-02-10T18:33:19.767Z\",\"updatedAt\":\"2023-02-10T20:09:27.89Z\",\"serviceBusEndpoint\":\"https://primaryNSut8xa0.servicebus.windows.net:443/\",\"status\":\"Active\",\"alternateName\":\"postMigrationulz9q8\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorest6a5ioc/providers/Microsoft.ServiceBus/namespaces/primaryNSfjarv9\",\"name\":\"primaryNSfjarv9\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:primarynsfjarv9\",\"createdAt\":\"2023-02-13T06:16:32.313Z\",\"updatedAt\":\"2023-02-13T07:48:12.32Z\",\"serviceBusEndpoint\":\"https://primaryNSfjarv9.servicebus.windows.net:443/\",\"status\":\"Active\",\"alternateName\":\"postMigration16it5x\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorest6a5ioc/providers/Microsoft.ServiceBus/namespaces/secondaryNS6zn7s8\",\"name\":\"secondaryNS6zn7s8\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:secondaryns6zn7s8\",\"createdAt\":\"2023-02-13T06:16:32.73Z\",\"updatedAt\":\"2023-02-13T07:48:12.423Z\",\"serviceBusEndpoint\":\"https://secondaryNS6zn7s8.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-ServiceBus-EASTUS2EUAP/providers/Microsoft.ServiceBus/namespaces/kala-test-sbprem-vmss-canary-1\",\"name\":\"kala-test-sbprem-vmss-canary-1\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"EAST US 2 EUAP\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:kala-test-sbprem-vmss-canary-1\",\"createdAt\":\"2023-02-14T01:28:05.25Z\",\"updatedAt\":\"2023-02-16T18:28:41.807Z\",\"serviceBusEndpoint\":\"https://kala-test-sbprem-vmss-canary-1.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ardsouza-test/providers/Microsoft.ServiceBus/namespaces/ardsouza-SBNS-2-14-2023-p-1\",\"name\":\"ardsouza-SBNS-2-14-2023-p-1\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"Poland Central\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-sbns-2-14-2023-p-1\",\"createdAt\":\"2023-02-15T01:37:52.193Z\",\"updatedAt\":\"2023-02-15T01:39:50.5Z\",\"serviceBusEndpoint\":\"https://ardsouza-SBNS-2-14-2023-p-1.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ardsouza-test/providers/Microsoft.ServiceBus/namespaces/ardsouza-SBNS-std-2-14-2023-p-1\",\"name\":\"ardsouza-SBNS-std-2-14-2023-p-1\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"Poland Central\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-sbns-std-2-14-2023-p-1\",\"createdAt\":\"2023-02-15T01:44:36.02Z\",\"updatedAt\":\"2023-02-15T01:45:21.823Z\",\"serviceBusEndpoint\":\"https://ardsouza-SBNS-std-2-14-2023-p-1.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/jupachol-rg/providers/Microsoft.ServiceBus/namespaces/jupachol-test\",\"name\":\"jupachol-test\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"West US 3\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:jupachol-test\",\"createdAt\":\"2023-02-16T22:16:08.51Z\",\"updatedAt\":\"2023-02-16T22:17:15.03Z\",\"serviceBusEndpoint\":\"https://jupachol-test.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Kala-test/providers/Microsoft.ServiceBus/namespaces/kala-test-poland-1\",\"name\":\"kala-test-poland-1\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"Poland Central\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:kala-test-poland-1\",\"createdAt\":\"2023-02-16T23:53:10.663Z\",\"updatedAt\":\"2023-02-16T23:57:08.007Z\",\"serviceBusEndpoint\":\"https://kala-test-poland-1.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNametkv0jq\",\"name\":\"namespaceNametkv0jq\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenametkv0jq\",\"createdAt\":\"2023-02-19T13:01:16.447Z\",\"updatedAt\":\"2023-02-19T13:01:58.797Z\",\"serviceBusEndpoint\":\"https://namespaceNametkv0jq.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09\",\"name\":\"namespaceNamehjil09\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"privateEndpointConnections\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ServiceBus/namespaces/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211\",\"name\":\"efc95bab-8a36-4368-bf40-071ec0dd3211\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe2otyvgf\"},\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"\"},\"groupIds\":[\"namespace\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ServiceBus/namespaces/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00\",\"name\":\"77566733-2ab6-455d-972d-793c5a451f00\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe1w0yv9t\"},\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"Bye\"},\"groupIds\":[\"namespace\"]}}],\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamehjil09\",\"createdAt\":\"2023-02-19T13:01:16.6Z\",\"updatedAt\":\"2023-02-19T13:02:26.58Z\",\"serviceBusEndpoint\":\"https://namespaceNamehjil09.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3\",\"name\":\"namespaceNamembaip3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"05ff947d-d140-41f0-8107-16ca5893799b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamembaip3\",\"createdAt\":\"2023-02-19T13:01:17.353Z\",\"updatedAt\":\"2023-02-19T13:08:35.657Z\",\"serviceBusEndpoint\":\"https://namespaceNamembaip3.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNS5doyqa\",\"name\":\"secondaryNS5doyqa\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:secondaryns5doyqa\",\"createdAt\":\"2023-02-19T13:08:55.377Z\",\"updatedAt\":\"2023-02-19T13:10:09.897Z\",\"serviceBusEndpoint\":\"https://secondaryNS5doyqa.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"name\":\"secondaryNSjazpct\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:secondarynsjazpct\",\"createdAt\":\"2023-02-19T13:08:55.4Z\",\"updatedAt\":\"2023-02-19T13:10:39.913Z\",\"serviceBusEndpoint\":\"https://secondaryNSjazpct.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3\",\"name\":\"primaryNSd7oma3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:primarynsd7oma3\",\"createdAt\":\"2023-02-19T13:08:55.42Z\",\"updatedAt\":\"2023-02-19T13:10:12.177Z\",\"serviceBusEndpoint\":\"https://primaryNSd7oma3.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a\",\"name\":\"primaryNSp1xb3a\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:primarynsp1xb3a\",\"createdAt\":\"2023-02-19T13:08:55.47Z\",\"updatedAt\":\"2023-02-19T13:09:38.503Z\",\"serviceBusEndpoint\":\"https://primaryNSp1xb3a.servicebus.windows.net:443/\",\"status\":\"Active\"}}]}", "isContentBase64": false } }, - "Get-AzServiceBusNamespaceV2+[NoContext]+List+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ServiceBus/namespaces?api-version=2022-01-01-preview\u0026$skipToken=2022-11-23T06:44:18.907Z+3": { + "Get-AzServiceBusNamespaceV2+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ServiceBus/namespaces?api-version=2022-01-01-preview\u0026$skipToken=2022-11-23T06:44:18.907Z", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "39" ], - "x-ms-client-request-id": [ "f171159a-ef7d-4550-8c00-c69b5886a394" ], - "CommandName": [ "Get-AzServiceBusNamespaceV2" ], - "FullCommandName": [ "Get-AzServiceBusNamespaceV2_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceBus/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-inline-count": [ "" ], - "x-ms-request-id": [ "2c1a3862-95fa-47d9-92b5-90cd4b7e6a33_M7SN1_M7SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11969" ], - "x-ms-correlation-request-id": [ "83380c8e-9a40-410b-a77b-68b9783c56ff" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095524Z:83380c8e-9a40-410b-a77b-68b9783c56ff" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:55:24 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "17779" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorest1lxftd/providers/Microsoft.ServiceBus/namespaces/secondaryNSud1hb2\",\"name\":\"secondaryNSud1hb2\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:secondarynsud1hb2\",\"createdAt\":\"2022-11-23T06:44:19.32Z\",\"updatedAt\":\"2022-11-23T06:56:33.823Z\",\"serviceBusEndpoint\":\"https://secondaryNSud1hb2.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestnqpzt9/providers/Microsoft.ServiceBus/namespaces/secondaryNScjqf18\",\"name\":\"secondaryNScjqf18\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:secondarynscjqf18\",\"createdAt\":\"2022-11-23T07:44:46.24Z\",\"updatedAt\":\"2022-11-23T07:55:58.033Z\",\"serviceBusEndpoint\":\"https://secondaryNScjqf18.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestnqpzt9/providers/Microsoft.ServiceBus/namespaces/primaryNS3ish9p\",\"name\":\"primaryNS3ish9p\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:primaryns3ish9p\",\"createdAt\":\"2022-11-23T07:44:46.317Z\",\"updatedAt\":\"2022-11-23T07:55:59.193Z\",\"serviceBusEndpoint\":\"https://primaryNS3ish9p.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestqb21vp/providers/Microsoft.ServiceBus/namespaces/secondaryNSaj9zhm\",\"name\":\"secondaryNSaj9zhm\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:secondarynsaj9zhm\",\"createdAt\":\"2022-11-23T08:14:48.83Z\",\"updatedAt\":\"2022-11-23T08:26:44.967Z\",\"serviceBusEndpoint\":\"https://secondaryNSaj9zhm.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestqb21vp/providers/Microsoft.ServiceBus/namespaces/primaryNSmf4b86\",\"name\":\"primaryNSmf4b86\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:primarynsmf4b86\",\"createdAt\":\"2022-11-23T08:14:49.007Z\",\"updatedAt\":\"2022-11-23T08:26:45.71Z\",\"serviceBusEndpoint\":\"https://primaryNSmf4b86.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubham-rg/providers/Microsoft.ServiceBus/namespaces/srcrg001\",\"name\":\"srcrg001\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubham-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/MSI-rg02\":{\"clientId\":\"1201f723-2b58-448d-9e5e-e302fcdfacbc\",\"principalId\":\"ceee4453-2c61-4e1b-bff7-87dedfb25103\"},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubham-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/MSI-rg01\":{\"clientId\":\"aeb590de-880a-494c-a9c4-eedd842272f0\",\"principalId\":\"723e19ad-62ca-4b38-af07-4d9b7c3261a3\"}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key4\",\"keyVaultUri\":\"https://keyvault-rg1.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubham-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/MSI-rg01\"}},{\"keyName\":\"key5\",\"keyVaultUri\":\"https://keyvault-rg1.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/shubham-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/MSI-rg01\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:srcrg001\",\"createdAt\":\"2022-11-23T08:33:10.36Z\",\"updatedAt\":\"2022-11-23T08:40:31.247Z\",\"serviceBusEndpoint\":\"https://srcrg001.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestc3akwp/providers/Microsoft.ServiceBus/namespaces/namespaceNamek15sa7\",\"name\":\"namespaceNamek15sa7\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamek15sa7\",\"createdAt\":\"2022-11-23T10:33:09.827Z\",\"updatedAt\":\"2022-11-23T10:33:52.657Z\",\"serviceBusEndpoint\":\"https://namespaceNamek15sa7.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestc3akwp/providers/Microsoft.ServiceBus/namespaces/namespaceNameazit49\",\"name\":\"namespaceNameazit49\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenameazit49\",\"createdAt\":\"2022-11-23T10:33:10.063Z\",\"updatedAt\":\"2022-11-23T10:37:11.773Z\",\"serviceBusEndpoint\":\"https://namespaceNameazit49.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestc3akwp/providers/Microsoft.ServiceBus/namespaces/namespaceName2qt8ag\",\"name\":\"namespaceName2qt8ag\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"4bedf168-dcb9-4d89-9b35-844869a85823\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacename2qt8ag\",\"createdAt\":\"2022-11-23T10:33:10.83Z\",\"updatedAt\":\"2022-11-23T10:40:18.64Z\",\"serviceBusEndpoint\":\"https://namespaceName2qt8ag.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestc3akwp/providers/Microsoft.ServiceBus/namespaces/secondaryNStilqso\",\"name\":\"secondaryNStilqso\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:secondarynstilqso\",\"createdAt\":\"2022-11-23T10:42:30.29Z\",\"updatedAt\":\"2022-11-23T10:44:33.083Z\",\"serviceBusEndpoint\":\"https://secondaryNStilqso.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestc3akwp/providers/Microsoft.ServiceBus/namespaces/primaryNS67mwe3\",\"name\":\"primaryNS67mwe3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:primaryns67mwe3\",\"createdAt\":\"2022-11-23T10:42:30.41Z\",\"updatedAt\":\"2022-11-23T10:43:14.363Z\",\"serviceBusEndpoint\":\"https://primaryNS67mwe3.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestc3akwp/providers/Microsoft.ServiceBus/namespaces/secondaryNSxg98uj\",\"name\":\"secondaryNSxg98uj\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:secondarynsxg98uj\",\"createdAt\":\"2022-11-23T10:42:30.63Z\",\"updatedAt\":\"2022-11-23T10:45:02.21Z\",\"serviceBusEndpoint\":\"https://secondaryNSxg98uj.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestc3akwp/providers/Microsoft.ServiceBus/namespaces/primaryNS9kh1r7\",\"name\":\"primaryNS9kh1r7\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:primaryns9kh1r7\",\"createdAt\":\"2022-11-23T10:42:30.71Z\",\"updatedAt\":\"2022-11-23T10:43:38.44Z\",\"serviceBusEndpoint\":\"https://primaryNS9kh1r7.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestel6pb5/providers/Microsoft.ServiceBus/namespaces/secondaryNS4qrb17\",\"name\":\"secondaryNS4qrb17\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:secondaryns4qrb17\",\"createdAt\":\"2022-11-23T12:03:35.037Z\",\"updatedAt\":\"2022-11-23T13:24:59.773Z\",\"serviceBusEndpoint\":\"https://secondaryNS4qrb17.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestel6pb5/providers/Microsoft.ServiceBus/namespaces/primaryNS6wbgdx\",\"name\":\"primaryNS6wbgdx\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:primaryns6wbgdx\",\"createdAt\":\"2022-11-23T12:03:35.123Z\",\"updatedAt\":\"2022-11-23T13:24:59.547Z\",\"serviceBusEndpoint\":\"https://primaryNS6wbgdx.servicebus.windows.net:443/\",\"status\":\"Active\",\"alternateName\":\"postMigrationajsixu\"}},{\"sku\":{\"name\":\"Basic\",\"tier\":\"Basic\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/damorg/providers/Microsoft.ServiceBus/namespaces/pstesting123\",\"name\":\"pstesting123\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:pstesting123\",\"createdAt\":\"2022-11-24T08:00:05.7Z\",\"updatedAt\":\"2022-11-24T08:00:51.497Z\",\"serviceBusEndpoint\":\"https://pstesting123.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNameck4gr6\",\"name\":\"namespaceNameck4gr6\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenameck4gr6\",\"createdAt\":\"2022-11-24T09:40:43.37Z\",\"updatedAt\":\"2022-11-24T09:41:26.7Z\",\"serviceBusEndpoint\":\"https://namespaceNameck4gr6.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc\",\"name\":\"namespaceNamepfxymc\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamepfxymc\",\"createdAt\":\"2022-11-24T09:40:43.37Z\",\"updatedAt\":\"2022-11-24T09:41:52.233Z\",\"serviceBusEndpoint\":\"https://namespaceNamepfxymc.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb\",\"name\":\"namespaceNamende8cb\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"b0cbb70a-a1a5-4253-a506-b5836ce29547\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamende8cb\",\"createdAt\":\"2022-11-24T09:40:43.853Z\",\"updatedAt\":\"2022-11-24T09:48:03.407Z\",\"serviceBusEndpoint\":\"https://namespaceNamende8cb.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4\",\"name\":\"primaryNSujona4\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:primarynsujona4\",\"createdAt\":\"2022-11-24T09:48:21.977Z\",\"updatedAt\":\"2022-11-24T09:49:06.757Z\",\"serviceBusEndpoint\":\"https://primaryNSujona4.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSpm7e8a\",\"name\":\"secondaryNSpm7e8a\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:secondarynspm7e8a\",\"createdAt\":\"2022-11-24T09:48:22.06Z\",\"updatedAt\":\"2022-11-24T09:49:56.003Z\",\"serviceBusEndpoint\":\"https://secondaryNSpm7e8a.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"name\":\"secondaryNSkl95do\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:secondarynskl95do\",\"createdAt\":\"2022-11-24T09:48:22.143Z\",\"updatedAt\":\"2022-11-24T09:49:29.907Z\",\"serviceBusEndpoint\":\"https://secondaryNSkl95do.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx\",\"name\":\"primaryNS9yownx\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:primaryns9yownx\",\"createdAt\":\"2022-11-24T09:48:22.16Z\",\"updatedAt\":\"2022-11-24T09:49:32.22Z\",\"serviceBusEndpoint\":\"https://primaryNS9yownx.servicebus.windows.net:443/\",\"status\":\"Active\"}}]}", - "isContentBase64": false - } - }, - "Get-AzServiceBusNamespaceV2+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc?api-version=2022-01-01-preview+1": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc?api-version=2022-01-01-preview", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "40" ], - "x-ms-client-request-id": [ "7c756d38-567b-4cf1-a4c8-0871dac73350" ], + "x-ms-client-request-id": [ "ee782287-f3e6-43b5-abfb-79e5ec5eb8a9" ], "CommandName": [ "Get-AzServiceBusNamespaceV2" ], "FullCommandName": [ "Get-AzServiceBusNamespaceV2_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -151,34 +108,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "f022ef09-1cb9-4277-b291-509687b4d968_M7SN1_M7SN1" ], + "x-ms-request-id": [ "d986420c-ab0d-42b4-a8ab-88df7dd8a73d_M4SN1_M4SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11968" ], - "x-ms-correlation-request-id": [ "b4f8d0b9-3eb2-43e0-9b51-3b76b10deb86" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095525Z:b4f8d0b9-3eb2-43e0-9b51-3b76b10deb86" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11937" ], + "x-ms-correlation-request-id": [ "7410c7fd-8509-4e0a-8f34-8d9d50931b8c" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131519Z:7410c7fd-8509-4e0a-8f34-8d9d50931b8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:55:24 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:15:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2128" ], + "Content-Length": [ "2158" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc\",\"name\":\"namespaceNamepfxymc\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"privateEndpointConnections\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd\",\"name\":\"c5e4d6c3-f38e-4834-929b-559e2d41d5cd\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Updating\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.Network/privateEndpoints/pe2cxqud3\"},\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"\"},\"groupIds\":[\"namespace\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94\",\"name\":\"b5d7b5d8-1b18-4afb-819a-706a0f3d6a94\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.Network/privateEndpoints/pe1jlbfx6\"},\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"Bye\"},\"groupIds\":[\"namespace\"]}}],\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamepfxymc\",\"createdAt\":\"2022-11-24T09:40:43.37Z\",\"updatedAt\":\"2022-11-24T09:41:52.233Z\",\"serviceBusEndpoint\":\"https://namespaceNamepfxymc.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09\",\"name\":\"namespaceNamehjil09\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"privateEndpointConnections\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211\",\"name\":\"efc95bab-8a36-4368-bf40-071ec0dd3211\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe2otyvgf\"},\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"\"},\"groupIds\":[\"namespace\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00\",\"name\":\"77566733-2ab6-455d-972d-793c5a451f00\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe1w0yv9t\"},\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"Bye\"},\"groupIds\":[\"namespace\"]}}],\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamehjil09\",\"createdAt\":\"2023-02-19T13:01:16.6Z\",\"updatedAt\":\"2023-02-19T13:02:26.58Z\",\"serviceBusEndpoint\":\"https://namespaceNamehjil09.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Get-AzServiceBusNamespaceV2+[NoContext]+List1+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces?api-version=2022-01-01-preview+1": { + "Get-AzServiceBusNamespaceV2+[NoContext]+List1+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "41" ], - "x-ms-client-request-id": [ "d2061c7c-46ea-4de3-8076-d856884b63d2" ], + "x-ms-unique-id": [ "40" ], + "x-ms-client-request-id": [ "b69d531e-550a-4f74-aa8c-cc279c51550d" ], "CommandName": [ "Get-AzServiceBusNamespaceV2" ], "FullCommandName": [ "Get-AzServiceBusNamespaceV2_List1" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -193,34 +150,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "1f00405c-49cf-4b49-98a9-99287ee9377d_M7SN1_M7SN1" ], + "x-ms-request-id": [ "a3fed18e-87d6-4f74-93d8-14dd8f3ffa8d_M4SN1_M4SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11967" ], - "x-ms-correlation-request-id": [ "e4995eed-d052-49fa-b4dc-351a0cc69210" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095525Z:e4995eed-d052-49fa-b4dc-351a0cc69210" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11936" ], + "x-ms-correlation-request-id": [ "78d6655b-8c5c-44c8-ac9a-28ea91f1c0e9" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131519Z:78d6655b-8c5c-44c8-ac9a-28ea91f1c0e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:55:24 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:15:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "5124" ], + "Content-Length": [ "6713" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNameck4gr6\",\"name\":\"namespaceNameck4gr6\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenameck4gr6\",\"createdAt\":\"2022-11-24T09:40:43.37Z\",\"updatedAt\":\"2022-11-24T09:41:26.7Z\",\"serviceBusEndpoint\":\"https://namespaceNameck4gr6.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc\",\"name\":\"namespaceNamepfxymc\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamepfxymc\",\"createdAt\":\"2022-11-24T09:40:43.37Z\",\"updatedAt\":\"2022-11-24T09:41:52.233Z\",\"serviceBusEndpoint\":\"https://namespaceNamepfxymc.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb\",\"name\":\"namespaceNamende8cb\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"b0cbb70a-a1a5-4253-a506-b5836ce29547\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamende8cb\",\"createdAt\":\"2022-11-24T09:40:43.853Z\",\"updatedAt\":\"2022-11-24T09:48:03.407Z\",\"serviceBusEndpoint\":\"https://namespaceNamende8cb.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4\",\"name\":\"primaryNSujona4\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:primarynsujona4\",\"createdAt\":\"2022-11-24T09:48:21.977Z\",\"updatedAt\":\"2022-11-24T09:49:06.757Z\",\"serviceBusEndpoint\":\"https://primaryNSujona4.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSpm7e8a\",\"name\":\"secondaryNSpm7e8a\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:secondarynspm7e8a\",\"createdAt\":\"2022-11-24T09:48:22.06Z\",\"updatedAt\":\"2022-11-24T09:49:56.003Z\",\"serviceBusEndpoint\":\"https://secondaryNSpm7e8a.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"name\":\"secondaryNSkl95do\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:secondarynskl95do\",\"createdAt\":\"2022-11-24T09:48:22.143Z\",\"updatedAt\":\"2022-11-24T09:49:29.907Z\",\"serviceBusEndpoint\":\"https://secondaryNSkl95do.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx\",\"name\":\"primaryNS9yownx\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:primaryns9yownx\",\"createdAt\":\"2022-11-24T09:48:22.16Z\",\"updatedAt\":\"2022-11-24T09:49:32.22Z\",\"serviceBusEndpoint\":\"https://primaryNS9yownx.servicebus.windows.net:443/\",\"status\":\"Active\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNametkv0jq\",\"name\":\"namespaceNametkv0jq\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenametkv0jq\",\"createdAt\":\"2023-02-19T13:01:16.447Z\",\"updatedAt\":\"2023-02-19T13:01:58.797Z\",\"serviceBusEndpoint\":\"https://namespaceNametkv0jq.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09\",\"name\":\"namespaceNamehjil09\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"privateEndpointConnections\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211\",\"name\":\"efc95bab-8a36-4368-bf40-071ec0dd3211\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe2otyvgf\"},\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"\"},\"groupIds\":[\"namespace\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00\",\"name\":\"77566733-2ab6-455d-972d-793c5a451f00\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe1w0yv9t\"},\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"Bye\"},\"groupIds\":[\"namespace\"]}}],\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamehjil09\",\"createdAt\":\"2023-02-19T13:01:16.6Z\",\"updatedAt\":\"2023-02-19T13:02:26.58Z\",\"serviceBusEndpoint\":\"https://namespaceNamehjil09.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3\",\"name\":\"namespaceNamembaip3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"05ff947d-d140-41f0-8107-16ca5893799b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamembaip3\",\"createdAt\":\"2023-02-19T13:01:17.353Z\",\"updatedAt\":\"2023-02-19T13:08:35.657Z\",\"serviceBusEndpoint\":\"https://namespaceNamembaip3.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNS5doyqa\",\"name\":\"secondaryNS5doyqa\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:secondaryns5doyqa\",\"createdAt\":\"2023-02-19T13:08:55.377Z\",\"updatedAt\":\"2023-02-19T13:10:09.897Z\",\"serviceBusEndpoint\":\"https://secondaryNS5doyqa.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"name\":\"secondaryNSjazpct\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:secondarynsjazpct\",\"createdAt\":\"2023-02-19T13:08:55.4Z\",\"updatedAt\":\"2023-02-19T13:10:39.913Z\",\"serviceBusEndpoint\":\"https://secondaryNSjazpct.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3\",\"name\":\"primaryNSd7oma3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:primarynsd7oma3\",\"createdAt\":\"2023-02-19T13:08:55.42Z\",\"updatedAt\":\"2023-02-19T13:10:12.177Z\",\"serviceBusEndpoint\":\"https://primaryNSd7oma3.servicebus.windows.net:443/\",\"status\":\"Active\"}},{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a\",\"name\":\"primaryNSp1xb3a\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:primarynsp1xb3a\",\"createdAt\":\"2023-02-19T13:08:55.47Z\",\"updatedAt\":\"2023-02-19T13:09:38.503Z\",\"serviceBusEndpoint\":\"https://primaryNSp1xb3a.servicebus.windows.net:443/\",\"status\":\"Active\"}}]}", "isContentBase64": false } }, - "Get-AzServiceBusNamespaceV2+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc?api-version=2022-01-01-preview+1": { + "Get-AzServiceBusNamespaceV2+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "42" ], - "x-ms-client-request-id": [ "9ecb0609-8bd5-47cf-9dde-10a19fd9898f" ], + "x-ms-unique-id": [ "41" ], + "x-ms-client-request-id": [ "7125bf7a-84ea-4f20-8c80-dc14658f5b02" ], "CommandName": [ "Get-AzServiceBusNamespaceV2" ], "FullCommandName": [ "Get-AzServiceBusNamespaceV2_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -235,34 +192,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "a3e9e5da-4c66-496c-8677-a9f86c2a5e1f_M7SN1_M7SN1" ], + "x-ms-request-id": [ "c06f7197-22b4-4659-a31b-889b765f0c93_M4SN1_M4SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11966" ], - "x-ms-correlation-request-id": [ "364d957f-eece-44eb-b087-9f1ea6eeb230" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095525Z:364d957f-eece-44eb-b087-9f1ea6eeb230" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11935" ], + "x-ms-correlation-request-id": [ "3e6ab5af-45e0-482a-a260-3af7bedfc975" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131520Z:3e6ab5af-45e0-482a-a260-3af7bedfc975" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:55:24 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:15:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2128" ], + "Content-Length": [ "2158" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc\",\"name\":\"namespaceNamepfxymc\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"privateEndpointConnections\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd\",\"name\":\"c5e4d6c3-f38e-4834-929b-559e2d41d5cd\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Updating\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.Network/privateEndpoints/pe2cxqud3\"},\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"\"},\"groupIds\":[\"namespace\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94\",\"name\":\"b5d7b5d8-1b18-4afb-819a-706a0f3d6a94\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.Network/privateEndpoints/pe1jlbfx6\"},\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"Bye\"},\"groupIds\":[\"namespace\"]}}],\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamepfxymc\",\"createdAt\":\"2022-11-24T09:40:43.37Z\",\"updatedAt\":\"2022-11-24T09:41:52.233Z\",\"serviceBusEndpoint\":\"https://namespaceNamepfxymc.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09\",\"name\":\"namespaceNamehjil09\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"privateEndpointConnections\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211\",\"name\":\"efc95bab-8a36-4368-bf40-071ec0dd3211\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe2otyvgf\"},\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"\"},\"groupIds\":[\"namespace\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00\",\"name\":\"77566733-2ab6-455d-972d-793c5a451f00\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe1w0yv9t\"},\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"Bye\"},\"groupIds\":[\"namespace\"]}}],\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamehjil09\",\"createdAt\":\"2023-02-19T13:01:16.6Z\",\"updatedAt\":\"2023-02-19T13:02:26.58Z\",\"serviceBusEndpoint\":\"https://namespaceNamehjil09.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Get-AzServiceBusNamespaceV2+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc?api-version=2022-01-01-preview+2": { + "Get-AzServiceBusNamespaceV2+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09?api-version=2022-10-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "43" ], - "x-ms-client-request-id": [ "fbdece17-ba3a-42d6-a575-5a88148faef2" ], + "x-ms-unique-id": [ "42" ], + "x-ms-client-request-id": [ "e1deabef-4b8e-4a4f-9947-938dd665c092" ], "CommandName": [ "Get-AzServiceBusNamespaceV2" ], "FullCommandName": [ "Get-AzServiceBusNamespaceV2_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -277,22 +234,22 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "3655036b-c070-4315-99dd-df8f631aba9c_M7SN1_M7SN1" ], + "x-ms-request-id": [ "f0355481-cb73-46b8-a894-5a81e9804ef9_M4SN1_M4SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11965" ], - "x-ms-correlation-request-id": [ "f4b0d2d0-8a74-49db-8ab5-f176755f2465" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095526Z:f4b0d2d0-8a74-49db-8ab5-f176755f2465" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11934" ], + "x-ms-correlation-request-id": [ "57c2061f-6ce8-405e-b752-f20118a3113a" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131521Z:57c2061f-6ce8-405e-b752-f20118a3113a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:55:25 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:15:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2128" ], + "Content-Length": [ "2158" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc\",\"name\":\"namespaceNamepfxymc\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"privateEndpointConnections\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd\",\"name\":\"c5e4d6c3-f38e-4834-929b-559e2d41d5cd\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Updating\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.Network/privateEndpoints/pe2cxqud3\"},\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"\"},\"groupIds\":[\"namespace\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94\",\"name\":\"b5d7b5d8-1b18-4afb-819a-706a0f3d6a94\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.Network/privateEndpoints/pe1jlbfx6\"},\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"Bye\"},\"groupIds\":[\"namespace\"]}}],\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamepfxymc\",\"createdAt\":\"2022-11-24T09:40:43.37Z\",\"updatedAt\":\"2022-11-24T09:41:52.233Z\",\"serviceBusEndpoint\":\"https://namespaceNamepfxymc.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09\",\"name\":\"namespaceNamehjil09\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"privateEndpointConnections\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211\",\"name\":\"efc95bab-8a36-4368-bf40-071ec0dd3211\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe2otyvgf\"},\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"\"},\"groupIds\":[\"namespace\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00\",\"name\":\"77566733-2ab6-455d-972d-793c5a451f00\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe1w0yv9t\"},\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"Bye\"},\"groupIds\":[\"namespace\"]}}],\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamehjil09\",\"createdAt\":\"2023-02-19T13:01:16.6Z\",\"updatedAt\":\"2023-02-19T13:02:26.58Z\",\"serviceBusEndpoint\":\"https://namespaceNamehjil09.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } } diff --git a/src/ServiceBus/ServiceBus.Autorest/test/Get-AzServiceBusNetworkRuleSet.Recording.json b/src/ServiceBus/ServiceBus.Autorest/test/Get-AzServiceBusNetworkRuleSet.Recording.json index b46142c21c78..e86c062a8061 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/Get-AzServiceBusNetworkRuleSet.Recording.json +++ b/src/ServiceBus/ServiceBus.Autorest/test/Get-AzServiceBusNetworkRuleSet.Recording.json @@ -1,13 +1,13 @@ { - "Get-AzServiceBusNetworkRuleSet+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/networkRuleSets/default?api-version=2022-01-01-preview+1": { + "Get-AzServiceBusNetworkRuleSet+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/networkRuleSets/default?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/networkRuleSets/default?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/networkRuleSets/default?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "44" ], - "x-ms-client-request-id": [ "28488e4e-40be-4c41-9332-c9d6eec231a5" ], + "x-ms-unique-id": [ "43" ], + "x-ms-client-request-id": [ "49dd9d74-b0a3-4848-8d75-9ad4e3dbf470" ], "CommandName": [ "Get-AzServiceBusNetworkRuleSet" ], "FullCommandName": [ "Get-AzServiceBusNetworkRuleSet_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -22,22 +22,22 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "e501bc5b-64a0-466e-b443-9ffad271e4c1_M7SN1_M7SN1" ], + "x-ms-request-id": [ "4fe22bc9-83d3-48db-8895-4ca67bd7a9f9_M4SN1_M4SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11964" ], - "x-ms-correlation-request-id": [ "e58b5a38-6f3c-43f6-9c0d-d97f27897ac8" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095547Z:e58b5a38-6f3c-43f6-9c0d-d97f27897ac8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11933" ], + "x-ms-correlation-request-id": [ "13e40128-084c-4b88-929e-aa700571e3f4" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131535Z:13e40128-084c-4b88-929e-aa700571e3f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:55:47 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:15:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "393" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/networkRuleSets/default\",\"name\":\"default\",\"type\":\"Microsoft.ServiceBus/Namespaces/NetworkRuleSets\",\"location\":\"East US\",\"properties\":{\"publicNetworkAccess\":\"Enabled\",\"defaultAction\":\"Allow\",\"virtualNetworkRules\":[],\"ipRules\":[]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/networkRuleSets/default\",\"name\":\"default\",\"type\":\"Microsoft.ServiceBus/Namespaces/NetworkRuleSets\",\"location\":\"East US\",\"properties\":{\"publicNetworkAccess\":\"Enabled\",\"defaultAction\":\"Allow\",\"virtualNetworkRules\":[],\"ipRules\":[]}}", "isContentBase64": false } } diff --git a/src/ServiceBus/ServiceBus.Autorest/test/Get-AzServiceBusPrivateEndpointConnection.Recording.json b/src/ServiceBus/ServiceBus.Autorest/test/Get-AzServiceBusPrivateEndpointConnection.Recording.json index b01405b2acd0..d387c623168a 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/Get-AzServiceBusPrivateEndpointConnection.Recording.json +++ b/src/ServiceBus/ServiceBus.Autorest/test/Get-AzServiceBusPrivateEndpointConnection.Recording.json @@ -1,13 +1,13 @@ { - "Get-AzServiceBusPrivateEndpointConnection+[NoContext]+[NoScenario]+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections?api-version=2022-01-01-preview+1": { + "Get-AzServiceBusPrivateEndpointConnection+[NoContext]+[NoScenario]+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "45" ], - "x-ms-client-request-id": [ "b2b6a80d-8578-413d-b27c-931083f661a9" ], + "x-ms-unique-id": [ "44" ], + "x-ms-client-request-id": [ "37c89a4e-0b5f-4e90-9303-9b56b1c6fa66" ], "CommandName": [ "Get-AzServiceBusPrivateEndpointConnection" ], "FullCommandName": [ "Get-AzServiceBusPrivateEndpointConnection_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -22,34 +22,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "bc73c9c8-9092-40a0-8367-65789ed204c8_M7SN1_M7SN1" ], + "x-ms-request-id": [ "db6b1439-9f79-4cc2-a2d9-c609ed709860_M4SN1_M4SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11963" ], - "x-ms-correlation-request-id": [ "c40e526c-45cc-4e63-8836-0592761439de" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095606Z:c40e526c-45cc-4e63-8836-0592761439de" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11932" ], + "x-ms-correlation-request-id": [ "27cd960e-ebd0-4b9e-9a27-338fb5eb2e5d" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131548Z:27cd960e-ebd0-4b9e-9a27-338fb5eb2e5d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:56:05 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:15:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1392" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd\",\"name\":\"c5e4d6c3-f38e-4834-929b-559e2d41d5cd\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.Network/privateEndpoints/pe2cxqud3\"},\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"\"},\"groupIds\":[\"namespace\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94\",\"name\":\"b5d7b5d8-1b18-4afb-819a-706a0f3d6a94\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.Network/privateEndpoints/pe1jlbfx6\"},\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"Bye\"},\"groupIds\":[\"namespace\"]}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211\",\"name\":\"efc95bab-8a36-4368-bf40-071ec0dd3211\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe2otyvgf\"},\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"\"},\"groupIds\":[\"namespace\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00\",\"name\":\"77566733-2ab6-455d-972d-793c5a451f00\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe1w0yv9t\"},\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"Bye\"},\"groupIds\":[\"namespace\"]}}]}", "isContentBase64": false } }, - "Get-AzServiceBusPrivateEndpointConnection+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd?api-version=2022-01-01-preview+1": { + "Get-AzServiceBusPrivateEndpointConnection+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "46" ], - "x-ms-client-request-id": [ "65cdd14c-10f7-4676-a367-370a133f2d00" ], + "x-ms-unique-id": [ "45" ], + "x-ms-client-request-id": [ "6a367811-386b-470a-9505-686bec9c0c13" ], "CommandName": [ "Get-AzServiceBusPrivateEndpointConnection" ], "FullCommandName": [ "Get-AzServiceBusPrivateEndpointConnection_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -64,34 +64,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "e26c3a41-eca9-4413-af42-3511af11b4a8_M7SN1_M7SN1" ], + "x-ms-request-id": [ "2f48e053-53a7-4907-9302-c09d42da22f4_M4SN1_M4SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11962" ], - "x-ms-correlation-request-id": [ "fea1af79-af83-47cf-864e-5964af86dcd0" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095606Z:fea1af79-af83-47cf-864e-5964af86dcd0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11931" ], + "x-ms-correlation-request-id": [ "30ba02bc-f764-40b3-8950-7756c119465f" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131549Z:30ba02bc-f764-40b3-8950-7756c119465f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:56:06 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:15:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "688" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd\",\"name\":\"c5e4d6c3-f38e-4834-929b-559e2d41d5cd\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.Network/privateEndpoints/pe2cxqud3\"},\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"\"},\"groupIds\":[\"namespace\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211\",\"name\":\"efc95bab-8a36-4368-bf40-071ec0dd3211\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe2otyvgf\"},\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"\"},\"groupIds\":[\"namespace\"]}}", "isContentBase64": false } }, - "Get-AzServiceBusPrivateEndpointConnection+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94?api-version=2022-01-01-preview+1": { + "Get-AzServiceBusPrivateEndpointConnection+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "47" ], - "x-ms-client-request-id": [ "c2c146f3-e431-4d37-be7e-2ae2e1b9ebdd" ], + "x-ms-unique-id": [ "46" ], + "x-ms-client-request-id": [ "21bcac48-0e04-4517-b255-6ed7d17db7de" ], "CommandName": [ "Get-AzServiceBusPrivateEndpointConnection" ], "FullCommandName": [ "Get-AzServiceBusPrivateEndpointConnection_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -106,34 +106,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "2d394e91-4130-4423-b4a4-0b72994c7bce_M7SN1_M7SN1" ], + "x-ms-request-id": [ "bc0d5e03-aa49-4d47-bc33-984a7be48c9a_M4SN1_M4SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11961" ], - "x-ms-correlation-request-id": [ "0c11ae22-fd85-4ddf-bcba-9f97a64f891e" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095606Z:0c11ae22-fd85-4ddf-bcba-9f97a64f891e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11930" ], + "x-ms-correlation-request-id": [ "30781027-ebe2-43ed-a6b0-62d422921588" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131550Z:30781027-ebe2-43ed-a6b0-62d422921588" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:56:06 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:15:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "691" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94\",\"name\":\"b5d7b5d8-1b18-4afb-819a-706a0f3d6a94\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.Network/privateEndpoints/pe1jlbfx6\"},\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"Bye\"},\"groupIds\":[\"namespace\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00\",\"name\":\"77566733-2ab6-455d-972d-793c5a451f00\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe1w0yv9t\"},\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"Bye\"},\"groupIds\":[\"namespace\"]}}", "isContentBase64": false } }, - "Get-AzServiceBusPrivateEndpointConnection+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94?api-version=2022-01-01-preview+2": { + "Get-AzServiceBusPrivateEndpointConnection+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00?api-version=2022-10-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "48" ], - "x-ms-client-request-id": [ "aefe0dea-3a17-4544-82f6-007655cd3c50" ], + "x-ms-unique-id": [ "47" ], + "x-ms-client-request-id": [ "185e9302-7be4-44a5-a33a-bebd8e88e2a0" ], "CommandName": [ "Get-AzServiceBusPrivateEndpointConnection" ], "FullCommandName": [ "Get-AzServiceBusPrivateEndpointConnection_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -148,22 +148,22 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "d5630c71-0e26-4fd3-9ee1-925eaf13de8c_M7SN1_M7SN1" ], + "x-ms-request-id": [ "8654c0d3-5bd0-4361-a6bc-d1b96b76d60a_M4SN1_M4SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11960" ], - "x-ms-correlation-request-id": [ "64531c9e-c4f9-4598-bf8e-ef48e6eb91d2" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095607Z:64531c9e-c4f9-4598-bf8e-ef48e6eb91d2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11929" ], + "x-ms-correlation-request-id": [ "e9db555c-9234-4047-a25d-54325841dfc9" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131550Z:e9db555c-9234-4047-a25d-54325841dfc9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:56:06 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:15:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "691" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94\",\"name\":\"b5d7b5d8-1b18-4afb-819a-706a0f3d6a94\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.Network/privateEndpoints/pe1jlbfx6\"},\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"Bye\"},\"groupIds\":[\"namespace\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00\",\"name\":\"77566733-2ab6-455d-972d-793c5a451f00\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe1w0yv9t\"},\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"Bye\"},\"groupIds\":[\"namespace\"]}}", "isContentBase64": false } } diff --git a/src/ServiceBus/ServiceBus.Autorest/test/Get-AzServiceBusPrivateLink.Recording.json b/src/ServiceBus/ServiceBus.Autorest/test/Get-AzServiceBusPrivateLink.Recording.json index 7207edde8e66..3824f13e58f3 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/Get-AzServiceBusPrivateLink.Recording.json +++ b/src/ServiceBus/ServiceBus.Autorest/test/Get-AzServiceBusPrivateLink.Recording.json @@ -1,13 +1,13 @@ { - "Get-AzServiceBusPrivateLink+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateLinkResources?api-version=2022-01-01-preview+1": { + "Get-AzServiceBusPrivateLink+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateLinkResources?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateLinkResources?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateLinkResources?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "49" ], - "x-ms-client-request-id": [ "b825268e-1e18-4d01-a128-a3844929d952" ], + "x-ms-unique-id": [ "48" ], + "x-ms-client-request-id": [ "f1c49c6c-e2ac-401a-90b0-df2fdbaf4685" ], "CommandName": [ "Get-AzServiceBusPrivateLink" ], "FullCommandName": [ "Get-AzServiceBusPrivateLink_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -22,22 +22,22 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "bd4e1c24-02ec-4301-9861-d2e2a6f578e3_M7SN1_M7SN1" ], + "x-ms-request-id": [ "1e33b49a-1205-4d09-a7e6-620ff12a593f_M4SN1_M4SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11959" ], - "x-ms-correlation-request-id": [ "ee5acfb3-5205-4529-bb33-79d70ad3643a" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095625Z:ee5acfb3-5205-4529-bb33-79d70ad3643a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11928" ], + "x-ms-correlation-request-id": [ "4db2cfd7-348e-4ca1-9858-d3b90a0363a7" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131603Z:4db2cfd7-348e-4ca1-9858-d3b90a0363a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:56:25 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:16:02 GMT" ] }, "ContentHeaders": { "Content-Length": [ "416" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateLinkResources/namespace\",\"name\":\"namespace\",\"type\":\"Microsoft.ServiceBus/namespaces/privateLinkResources\",\"properties\":{\"groupId\":\"namespace\",\"requiredMembers\":[\"namespace\"],\"requiredZoneNames\":[\"privatelink.servicebus.windows.net\"]}}]}", + "Content": "{\"value\":[{\"id\":\"subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateLinkResources/namespace\",\"name\":\"namespace\",\"type\":\"Microsoft.ServiceBus/namespaces/privateLinkResources\",\"properties\":{\"groupId\":\"namespace\",\"requiredMembers\":[\"namespace\"],\"requiredZoneNames\":[\"privatelink.servicebus.windows.net\"]}}]}", "isContentBase64": false } } diff --git a/src/ServiceBus/ServiceBus.Autorest/test/Get-AzServiceBusQueue.Recording.json b/src/ServiceBus/ServiceBus.Autorest/test/Get-AzServiceBusQueue.Recording.json index 40dd27b2e2ff..e7f250adc856 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/Get-AzServiceBusQueue.Recording.json +++ b/src/ServiceBus/ServiceBus.Autorest/test/Get-AzServiceBusQueue.Recording.json @@ -1,13 +1,13 @@ { - "Get-AzServiceBusQueue+[NoContext]+[NoScenario]+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1?api-version=2022-01-01-preview+1": { + "Get-AzServiceBusQueue+[NoContext]+[NoScenario]+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "50" ], - "x-ms-client-request-id": [ "3c2586b0-4336-41dc-8918-d91ad717fb57" ], + "x-ms-unique-id": [ "49" ], + "x-ms-client-request-id": [ "65a2deb7-e881-470e-9062-62914f1591d8" ], "CommandName": [ "Get-AzServiceBusQueue" ], "FullCommandName": [ "Get-AzServiceBusQueue_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -23,32 +23,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11958" ], - "x-ms-request-id": [ "1abccf3e-dfdf-4437-a48a-2c9f73f90ac3" ], - "x-ms-correlation-request-id": [ "1abccf3e-dfdf-4437-a48a-2c9f73f90ac3" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095646Z:1abccf3e-dfdf-4437-a48a-2c9f73f90ac3" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11927" ], + "x-ms-request-id": [ "e6c29e29-3e55-4745-8bdc-10ea134a38de" ], + "x-ms-correlation-request-id": [ "e6c29e29-3e55-4745-8bdc-10ea134a38de" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131617Z:e6c29e29-3e55-4745-8bdc-10ea134a38de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:56:45 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:16:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1037" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1\",\"name\":\"queue1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"lockDuration\":\"PT1M\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":true,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":10,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2022-11-24T09:42:04.5581068Z\",\"updatedAt\":\"2022-11-24T09:45:58.1558496Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1\",\"name\":\"queue1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"lockDuration\":\"PT1M\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":true,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":10,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2023-02-19T13:02:41.6727523Z\",\"updatedAt\":\"2023-02-19T13:07:32.0500292Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\"}}", "isContentBase64": false } }, - "Get-AzServiceBusQueue+[NoContext]+List+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues?api-version=2022-01-01-preview+1": { + "Get-AzServiceBusQueue+[NoContext]+List+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "51" ], - "x-ms-client-request-id": [ "aae95d7e-767d-45a0-b875-e04aa71eea24" ], + "x-ms-unique-id": [ "50" ], + "x-ms-client-request-id": [ "464b358d-030f-43a9-80bc-9d60227e979f" ], "CommandName": [ "Get-AzServiceBusQueue" ], "FullCommandName": [ "Get-AzServiceBusQueue_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -65,32 +65,32 @@ "Pragma": [ "no-cache" ], "x-ms-inline-count": [ "" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11957" ], - "x-ms-request-id": [ "71197b7b-08f1-4023-b219-e64917a0f89b" ], - "x-ms-correlation-request-id": [ "71197b7b-08f1-4023-b219-e64917a0f89b" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095646Z:71197b7b-08f1-4023-b219-e64917a0f89b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11926" ], + "x-ms-request-id": [ "720e25d0-cdbf-40f2-92c2-2d76e4da67d8" ], + "x-ms-correlation-request-id": [ "720e25d0-cdbf-40f2-92c2-2d76e4da67d8" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131618Z:720e25d0-cdbf-40f2-92c2-2d76e4da67d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:56:45 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:16:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1049" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1\",\"name\":\"queue1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"lockDuration\":\"PT1M\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":true,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":10,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2022-11-24T09:42:04.5581068Z\",\"updatedAt\":\"2022-11-24T09:45:58.1558496Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\"}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1\",\"name\":\"queue1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"lockDuration\":\"PT1M\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":true,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":10,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2023-02-19T13:02:41.6727523Z\",\"updatedAt\":\"2023-02-19T13:07:32.0500292Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\"}}]}", "isContentBase64": false } }, - "Get-AzServiceBusQueue+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1?api-version=2022-01-01-preview+1": { + "Get-AzServiceBusQueue+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "52" ], - "x-ms-client-request-id": [ "1f3835ad-7004-4d55-82cc-9d8d4a563ac2" ], + "x-ms-unique-id": [ "51" ], + "x-ms-client-request-id": [ "21e61015-7477-4d8a-a437-71f25aaa70c1" ], "CommandName": [ "Get-AzServiceBusQueue" ], "FullCommandName": [ "Get-AzServiceBusQueue_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -106,20 +106,20 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11956" ], - "x-ms-request-id": [ "33ca1912-179b-4445-8492-cbbb9e9b056c" ], - "x-ms-correlation-request-id": [ "33ca1912-179b-4445-8492-cbbb9e9b056c" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095646Z:33ca1912-179b-4445-8492-cbbb9e9b056c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11925" ], + "x-ms-request-id": [ "ef515ce7-85d8-476f-8c9e-5b2a34bb8be4" ], + "x-ms-correlation-request-id": [ "ef515ce7-85d8-476f-8c9e-5b2a34bb8be4" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131618Z:ef515ce7-85d8-476f-8c9e-5b2a34bb8be4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:56:46 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:16:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1037" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1\",\"name\":\"queue1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"lockDuration\":\"PT1M\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":true,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":10,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2022-11-24T09:42:04.5581068Z\",\"updatedAt\":\"2022-11-24T09:45:58.1558496Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1\",\"name\":\"queue1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"lockDuration\":\"PT1M\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":true,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":10,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2023-02-19T13:02:41.6727523Z\",\"updatedAt\":\"2023-02-19T13:07:32.0500292Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\"}}", "isContentBase64": false } } diff --git a/src/ServiceBus/ServiceBus.Autorest/test/Get-AzServiceBusRule.Recording.json b/src/ServiceBus/ServiceBus.Autorest/test/Get-AzServiceBusRule.Recording.json index bcb68885314b..400efdbe7c25 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/Get-AzServiceBusRule.Recording.json +++ b/src/ServiceBus/ServiceBus.Autorest/test/Get-AzServiceBusRule.Recording.json @@ -1,13 +1,13 @@ { - "Get-AzServiceBusRule+[NoContext]+[NoScenario]+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/sqlRule1?api-version=2022-01-01-preview+1": { + "Get-AzServiceBusRule+[NoContext]+[NoScenario]+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/sqlRule1?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/sqlRule1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/sqlRule1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "53" ], - "x-ms-client-request-id": [ "1ed0cb21-2a4a-4773-9a07-a3cd54fdb2d3" ], + "x-ms-unique-id": [ "52" ], + "x-ms-client-request-id": [ "fdda6202-649b-460f-a887-a5295fc27a00" ], "CommandName": [ "Get-AzServiceBusRule" ], "FullCommandName": [ "Get-AzServiceBusRule_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -23,32 +23,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11955" ], - "x-ms-request-id": [ "0ff8fbe6-2172-4ebb-bdea-d0d2b872499a" ], - "x-ms-correlation-request-id": [ "0ff8fbe6-2172-4ebb-bdea-d0d2b872499a" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095706Z:0ff8fbe6-2172-4ebb-bdea-d0d2b872499a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11924" ], + "x-ms-request-id": [ "273a346d-da68-452c-b6e7-7b7c3d08df6d" ], + "x-ms-correlation-request-id": [ "273a346d-da68-452c-b6e7-7b7c3d08df6d" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131632Z:273a346d-da68-452c-b6e7-7b7c3d08df6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:57:05 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:16:31 GMT" ] }, "ContentHeaders": { "Content-Length": [ "456" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/sqlRule1\",\"name\":\"sqlRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"SqlFilter\",\"sqlFilter\":{\"sqlExpression\":\"1=2\",\"compatibilityLevel\":20,\"parameters\":{}}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/sqlRule1\",\"name\":\"sqlRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"SqlFilter\",\"sqlFilter\":{\"sqlExpression\":\"1=2\",\"compatibilityLevel\":20,\"parameters\":{}}}}", "isContentBase64": false } }, - "Get-AzServiceBusRule+[NoContext]+List+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules?api-version=2022-01-01-preview+1": { + "Get-AzServiceBusRule+[NoContext]+List+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "54" ], - "x-ms-client-request-id": [ "605c81bc-fbe9-4c5b-a3a4-1816d315cdad" ], + "x-ms-unique-id": [ "53" ], + "x-ms-client-request-id": [ "9f02978a-c1c7-4bee-aa2f-a96d36de7ddf" ], "CommandName": [ "Get-AzServiceBusRule" ], "FullCommandName": [ "Get-AzServiceBusRule_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -65,32 +65,32 @@ "Pragma": [ "no-cache" ], "x-ms-inline-count": [ "" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11954" ], - "x-ms-request-id": [ "bfe89787-3f0a-4e7b-9561-638122467d55" ], - "x-ms-correlation-request-id": [ "bfe89787-3f0a-4e7b-9561-638122467d55" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095706Z:bfe89787-3f0a-4e7b-9561-638122467d55" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11923" ], + "x-ms-request-id": [ "5d25a3ef-49e0-4183-b9f5-d940d4cea1d7" ], + "x-ms-correlation-request-id": [ "5d25a3ef-49e0-4183-b9f5-d940d4cea1d7" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131632Z:5d25a3ef-49e0-4183-b9f5-d940d4cea1d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:57:05 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:16:32 GMT" ] }, "ContentHeaders": { "Content-Length": [ "468" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/sqlRule1\",\"name\":\"sqlRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"SqlFilter\",\"sqlFilter\":{\"sqlExpression\":\"1=2\",\"compatibilityLevel\":20,\"parameters\":{}}}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/sqlRule1\",\"name\":\"sqlRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"SqlFilter\",\"sqlFilter\":{\"sqlExpression\":\"1=2\",\"compatibilityLevel\":20,\"parameters\":{}}}}]}", "isContentBase64": false } }, - "Get-AzServiceBusRule+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/sqlRule1?api-version=2022-01-01-preview+1": { + "Get-AzServiceBusRule+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/sqlRule1?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/sqlRule1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/sqlRule1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "55" ], - "x-ms-client-request-id": [ "b1af24d6-2f0e-4bfc-b3f1-654cd37e4e43" ], + "x-ms-unique-id": [ "54" ], + "x-ms-client-request-id": [ "4041e66b-ec54-4577-b1ef-f78f922359f3" ], "CommandName": [ "Get-AzServiceBusRule" ], "FullCommandName": [ "Get-AzServiceBusRule_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -106,20 +106,20 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11953" ], - "x-ms-request-id": [ "51e689a5-90e3-4225-9917-39bbf3af3433" ], - "x-ms-correlation-request-id": [ "51e689a5-90e3-4225-9917-39bbf3af3433" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095706Z:51e689a5-90e3-4225-9917-39bbf3af3433" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11922" ], + "x-ms-request-id": [ "76cd8179-d149-4f85-b1b0-7b87f852ffbc" ], + "x-ms-correlation-request-id": [ "76cd8179-d149-4f85-b1b0-7b87f852ffbc" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131633Z:76cd8179-d149-4f85-b1b0-7b87f852ffbc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:57:06 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:16:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "456" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/sqlRule1\",\"name\":\"sqlRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"SqlFilter\",\"sqlFilter\":{\"sqlExpression\":\"1=2\",\"compatibilityLevel\":20,\"parameters\":{}}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/sqlRule1\",\"name\":\"sqlRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"SqlFilter\",\"sqlFilter\":{\"sqlExpression\":\"1=2\",\"compatibilityLevel\":20,\"parameters\":{}}}}", "isContentBase64": false } } diff --git a/src/ServiceBus/ServiceBus.Autorest/test/Get-AzServiceBusSubscription.Recording.json b/src/ServiceBus/ServiceBus.Autorest/test/Get-AzServiceBusSubscription.Recording.json index ef766f42dfe1..3360819796d8 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/Get-AzServiceBusSubscription.Recording.json +++ b/src/ServiceBus/ServiceBus.Autorest/test/Get-AzServiceBusSubscription.Recording.json @@ -1,13 +1,13 @@ { - "Get-AzServiceBusSubscription+[NoContext]+[NoScenario]+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1?api-version=2022-01-01-preview+1": { + "Get-AzServiceBusSubscription+[NoContext]+[NoScenario]+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "56" ], - "x-ms-client-request-id": [ "5d6a6003-8549-4468-a9b1-c932c914fd36" ], + "x-ms-unique-id": [ "55" ], + "x-ms-client-request-id": [ "e522f591-ef3f-40de-a397-b0528188cdff" ], "CommandName": [ "Get-AzServiceBusSubscription" ], "FullCommandName": [ "Get-AzServiceBusSubscription_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -23,32 +23,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11952" ], - "x-ms-request-id": [ "5318cd01-167b-4bc3-b5fb-72dbcc27c424" ], - "x-ms-correlation-request-id": [ "5318cd01-167b-4bc3-b5fb-72dbcc27c424" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095726Z:5318cd01-167b-4bc3-b5fb-72dbcc27c424" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11921" ], + "x-ms-request-id": [ "8faaafdd-fead-4d8f-a14d-c01cedb4d49b" ], + "x-ms-correlation-request-id": [ "8faaafdd-fead-4d8f-a14d-c01cedb4d49b" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131648Z:8faaafdd-fead-4d8f-a14d-c01cedb4d49b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:57:26 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:16:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "957" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1\",\"name\":\"subscription1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":10,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2022-11-24T09:42:06.8549861Z\",\"updatedAt\":\"2022-11-24T09:42:06.8549861Z\",\"accessedAt\":\"2022-11-24T09:42:06.854Z\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1\",\"name\":\"subscription1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":10,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2023-02-19T13:02:44.2354247Z\",\"updatedAt\":\"2023-02-19T13:02:44.2354247Z\",\"accessedAt\":\"2023-02-19T13:02:44.235Z\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\"}}", "isContentBase64": false } }, - "Get-AzServiceBusSubscription+[NoContext]+List+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions?api-version=2022-01-01-preview+1": { + "Get-AzServiceBusSubscription+[NoContext]+List+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "57" ], - "x-ms-client-request-id": [ "0f991dd9-74ab-4e9a-bcdd-42b4bbc5bf8c" ], + "x-ms-unique-id": [ "56" ], + "x-ms-client-request-id": [ "9dc8f82b-f0fb-4030-bef2-a6111193b79a" ], "CommandName": [ "Get-AzServiceBusSubscription" ], "FullCommandName": [ "Get-AzServiceBusSubscription_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -65,32 +65,32 @@ "Pragma": [ "no-cache" ], "x-ms-inline-count": [ "" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11951" ], - "x-ms-request-id": [ "da177078-74a9-488a-a972-4368145b1be5" ], - "x-ms-correlation-request-id": [ "da177078-74a9-488a-a972-4368145b1be5" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095726Z:da177078-74a9-488a-a972-4368145b1be5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11920" ], + "x-ms-request-id": [ "0123d3c6-a799-4fa7-874b-9c5c93248cfe" ], + "x-ms-correlation-request-id": [ "0123d3c6-a799-4fa7-874b-9c5c93248cfe" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131649Z:0123d3c6-a799-4fa7-874b-9c5c93248cfe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:57:26 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:16:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "969" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1\",\"name\":\"subscription1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":10,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2022-11-24T09:42:06.8549861Z\",\"updatedAt\":\"2022-11-24T09:42:06.8549861Z\",\"accessedAt\":\"2022-11-24T09:42:06.854Z\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\"}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1\",\"name\":\"subscription1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":10,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2023-02-19T13:02:44.2354247Z\",\"updatedAt\":\"2023-02-19T13:02:44.2354247Z\",\"accessedAt\":\"2023-02-19T13:02:44.235Z\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\"}}]}", "isContentBase64": false } }, - "Get-AzServiceBusSubscription+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1?api-version=2022-01-01-preview+1": { + "Get-AzServiceBusSubscription+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "58" ], - "x-ms-client-request-id": [ "25741679-7c4f-41b2-b8d2-449691513656" ], + "x-ms-unique-id": [ "57" ], + "x-ms-client-request-id": [ "51920ce6-5505-4c7c-a630-99c6c69f847c" ], "CommandName": [ "Get-AzServiceBusSubscription" ], "FullCommandName": [ "Get-AzServiceBusSubscription_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -106,20 +106,20 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11950" ], - "x-ms-request-id": [ "3a734ed8-3b31-4f42-9ca6-cec2cfa61fd5" ], - "x-ms-correlation-request-id": [ "3a734ed8-3b31-4f42-9ca6-cec2cfa61fd5" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095727Z:3a734ed8-3b31-4f42-9ca6-cec2cfa61fd5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11919" ], + "x-ms-request-id": [ "b11fcee9-2949-4b07-b7bb-04e077a1753c" ], + "x-ms-correlation-request-id": [ "b11fcee9-2949-4b07-b7bb-04e077a1753c" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131649Z:b11fcee9-2949-4b07-b7bb-04e077a1753c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:57:27 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:16:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "957" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1\",\"name\":\"subscription1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":10,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2022-11-24T09:42:06.8549861Z\",\"updatedAt\":\"2022-11-24T09:42:06.8549861Z\",\"accessedAt\":\"2022-11-24T09:42:06.854Z\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1\",\"name\":\"subscription1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":10,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2023-02-19T13:02:44.2354247Z\",\"updatedAt\":\"2023-02-19T13:02:44.2354247Z\",\"accessedAt\":\"2023-02-19T13:02:44.235Z\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\"}}", "isContentBase64": false } } diff --git a/src/ServiceBus/ServiceBus.Autorest/test/Get-AzServiceBusTopic.Recording.json b/src/ServiceBus/ServiceBus.Autorest/test/Get-AzServiceBusTopic.Recording.json index a9415531d5ea..a14c533cbb1c 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/Get-AzServiceBusTopic.Recording.json +++ b/src/ServiceBus/ServiceBus.Autorest/test/Get-AzServiceBusTopic.Recording.json @@ -1,13 +1,13 @@ { - "Get-AzServiceBusTopic+[NoContext]+[NoScenario]+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1?api-version=2022-01-01-preview+1": { + "Get-AzServiceBusTopic+[NoContext]+[NoScenario]+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "59" ], - "x-ms-client-request-id": [ "1c8892f5-65cf-4e7a-82f9-6d7f5ebf9c0d" ], + "x-ms-unique-id": [ "58" ], + "x-ms-client-request-id": [ "d042aadf-f589-4644-bc33-92a05ef8445e" ], "CommandName": [ "Get-AzServiceBusTopic" ], "FullCommandName": [ "Get-AzServiceBusTopic_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -23,32 +23,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11949" ], - "x-ms-request-id": [ "5ca87a05-21ab-4cae-8335-d72f153d4f92" ], - "x-ms-correlation-request-id": [ "5ca87a05-21ab-4cae-8335-d72f153d4f92" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095746Z:5ca87a05-21ab-4cae-8335-d72f153d4f92" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11918" ], + "x-ms-request-id": [ "fe7d1843-e381-492e-a769-2825481f258d" ], + "x-ms-correlation-request-id": [ "fe7d1843-e381-492e-a769-2825481f258d" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131703Z:fe7d1843-e381-492e-a769-2825481f258d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:57:46 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:17:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "960" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1\",\"name\":\"topic1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"2022-11-24T09:42:04.5112354Z\",\"updatedAt\":\"2022-11-24T09:45:42.1245914Z\",\"accessedAt\":\"2022-11-24T09:42:06.854Z\",\"subscriptionCount\":1,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1\",\"name\":\"topic1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"2023-02-19T13:02:41.6883314Z\",\"updatedAt\":\"2023-02-19T13:06:12.9556032Z\",\"accessedAt\":\"2023-02-19T13:02:44.235Z\",\"subscriptionCount\":1,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", "isContentBase64": false } }, - "Get-AzServiceBusTopic+[NoContext]+List+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics?api-version=2022-01-01-preview+1": { + "Get-AzServiceBusTopic+[NoContext]+List+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "60" ], - "x-ms-client-request-id": [ "5f160b0d-10cb-4a19-a4c5-218e6b78a249" ], + "x-ms-unique-id": [ "59" ], + "x-ms-client-request-id": [ "4d2b3be9-e11e-4266-8ec0-e60f9da52528" ], "CommandName": [ "Get-AzServiceBusTopic" ], "FullCommandName": [ "Get-AzServiceBusTopic_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -65,32 +65,32 @@ "Pragma": [ "no-cache" ], "x-ms-inline-count": [ "" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11948" ], - "x-ms-request-id": [ "e6c32db3-68b4-472b-8665-ddeb9a631fc4" ], - "x-ms-correlation-request-id": [ "e6c32db3-68b4-472b-8665-ddeb9a631fc4" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095747Z:e6c32db3-68b4-472b-8665-ddeb9a631fc4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11917" ], + "x-ms-request-id": [ "4164f867-e56d-4f72-8480-82906abe4b70" ], + "x-ms-correlation-request-id": [ "4164f867-e56d-4f72-8480-82906abe4b70" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131704Z:4164f867-e56d-4f72-8480-82906abe4b70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:57:46 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:17:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "972" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1\",\"name\":\"topic1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"2022-11-24T09:42:04.5112354Z\",\"updatedAt\":\"2022-11-24T09:45:42.1245914Z\",\"accessedAt\":\"2022-11-24T09:42:06.854Z\",\"subscriptionCount\":1,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1\",\"name\":\"topic1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"2023-02-19T13:02:41.6883314Z\",\"updatedAt\":\"2023-02-19T13:06:12.9556032Z\",\"accessedAt\":\"2023-02-19T13:02:44.235Z\",\"subscriptionCount\":1,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}]}", "isContentBase64": false } }, - "Get-AzServiceBusTopic+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1?api-version=2022-01-01-preview+1": { + "Get-AzServiceBusTopic+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "61" ], - "x-ms-client-request-id": [ "912a1e28-e92d-4052-9fbb-ebb58cd0da29" ], + "x-ms-unique-id": [ "60" ], + "x-ms-client-request-id": [ "c8495f04-4d06-45f5-99ac-98edb23279cd" ], "CommandName": [ "Get-AzServiceBusTopic" ], "FullCommandName": [ "Get-AzServiceBusTopic_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -106,20 +106,20 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11947" ], - "x-ms-request-id": [ "2665195b-cae8-4d57-afbe-c29ac8f112b2" ], - "x-ms-correlation-request-id": [ "2665195b-cae8-4d57-afbe-c29ac8f112b2" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095747Z:2665195b-cae8-4d57-afbe-c29ac8f112b2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11916" ], + "x-ms-request-id": [ "1e8da0eb-d3f2-4901-9e40-3b97503f65b3" ], + "x-ms-correlation-request-id": [ "1e8da0eb-d3f2-4901-9e40-3b97503f65b3" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131705Z:1e8da0eb-d3f2-4901-9e40-3b97503f65b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:57:47 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:17:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "960" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1\",\"name\":\"topic1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"2022-11-24T09:42:04.5112354Z\",\"updatedAt\":\"2022-11-24T09:45:42.1245914Z\",\"accessedAt\":\"2022-11-24T09:42:06.854Z\",\"subscriptionCount\":1,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1\",\"name\":\"topic1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"2023-02-19T13:02:41.6883314Z\",\"updatedAt\":\"2023-02-19T13:06:12.9556032Z\",\"accessedAt\":\"2023-02-19T13:02:44.235Z\",\"subscriptionCount\":1,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", "isContentBase64": false } } diff --git a/src/ServiceBus/ServiceBus.Autorest/test/New-AzServiceBusAuthorizationRule.Recording.json b/src/ServiceBus/ServiceBus.Autorest/test/New-AzServiceBusAuthorizationRule.Recording.json index e0192cbc1468..7a0258c0cf1e 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/New-AzServiceBusAuthorizationRule.Recording.json +++ b/src/ServiceBus/ServiceBus.Autorest/test/New-AzServiceBusAuthorizationRule.Recording.json @@ -1,8 +1,8 @@ { - "New-AzServiceBusAuthorizationRule+[NoContext]+NewExpandedNamespace+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules/namespaceAuthRule3?api-version=2022-01-01-preview+1": { + "New-AzServiceBusAuthorizationRule+[NoContext]+NewExpandedNamespace+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules/namespaceAuthRule3?api-version=2022-10-01-preview+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules/namespaceAuthRule3?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules/namespaceAuthRule3?api-version=2022-10-01-preview", "Content": "{\n \"properties\": {\n \"rights\": [ \"Send\", \"Manage\", \"Listen\" ]\n }\n}", "isContentBase64": false, "Headers": { @@ -18,32 +18,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], - "x-ms-request-id": [ "dc864bf3-b952-4aa1-8070-5374aa080ae8" ], - "x-ms-correlation-request-id": [ "dc864bf3-b952-4aa1-8070-5374aa080ae8" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095834Z:dc864bf3-b952-4aa1-8070-5374aa080ae8" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1194" ], + "x-ms-request-id": [ "9b303b4d-f6bc-48e4-81d9-affc676c14ed" ], + "x-ms-correlation-request-id": [ "9b303b4d-f6bc-48e4-81d9-affc676c14ed" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131737Z:9b303b4d-f6bc-48e4-81d9-affc676c14ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:58:33 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:17:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "362" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules/namespaceAuthRule3\",\"name\":\"namespaceAuthRule3\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Send\",\"Manage\",\"Listen\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules/namespaceAuthRule3\",\"name\":\"namespaceAuthRule3\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Send\",\"Manage\",\"Listen\"]}}", "isContentBase64": false } }, - "New-AzServiceBusAuthorizationRule+[NoContext]+NewExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules?api-version=2022-01-01-preview+2": { + "New-AzServiceBusAuthorizationRule+[NoContext]+NewExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules?api-version=2022-10-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "63" ], - "x-ms-client-request-id": [ "445627be-9c30-4f98-9c75-2a6ffa33e3c7" ], + "x-ms-unique-id": [ "62" ], + "x-ms-client-request-id": [ "f5e2e58e-1e23-4f62-870e-f5d49a781405" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusNamespaceAuthorizationRule_List" ], "FullCommandName": [ "Get-AzServiceBusNamespaceAuthorizationRule_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -59,27 +59,27 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11946" ], - "x-ms-request-id": [ "dbe62b08-ee18-461d-907c-2225fac15b7f" ], - "x-ms-correlation-request-id": [ "dbe62b08-ee18-461d-907c-2225fac15b7f" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095834Z:dbe62b08-ee18-461d-907c-2225fac15b7f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11915" ], + "x-ms-request-id": [ "2108298f-2954-45f5-ae3a-40307e7c731c" ], + "x-ms-correlation-request-id": [ "2108298f-2954-45f5-ae3a-40307e7c731c" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131738Z:2108298f-2954-45f5-ae3a-40307e7c731c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:58:34 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:17:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1459" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/authorizationrules/RootManageSharedAccessKey\",\"name\":\"RootManageSharedAccessKey\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Listen\",\"Manage\",\"Send\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/authorizationrules/namespaceAuthRule2\",\"name\":\"namespaceAuthRule2\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Send\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/authorizationrules/namespaceAuthRule1\",\"name\":\"namespaceAuthRule1\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/authorizationrules/namespaceAuthRule3\",\"name\":\"namespaceAuthRule3\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Send\",\"Manage\",\"Listen\"]}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/authorizationrules/RootManageSharedAccessKey\",\"name\":\"RootManageSharedAccessKey\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Listen\",\"Manage\",\"Send\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/authorizationrules/namespaceAuthRule2\",\"name\":\"namespaceAuthRule2\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Send\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/authorizationrules/namespaceAuthRule1\",\"name\":\"namespaceAuthRule1\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/authorizationrules/namespaceAuthRule3\",\"name\":\"namespaceAuthRule3\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Send\",\"Manage\",\"Listen\"]}}]}", "isContentBase64": false } }, - "New-AzServiceBusAuthorizationRule+[NoContext]+NewExpandedQueue+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules/queueAuthRule3?api-version=2022-01-01-preview+1": { + "New-AzServiceBusAuthorizationRule+[NoContext]+NewExpandedQueue+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules/queueAuthRule3?api-version=2022-10-01-preview+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules/queueAuthRule3?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules/queueAuthRule3?api-version=2022-10-01-preview", "Content": "{\n \"properties\": {\n \"rights\": [ \"Listen\" ]\n }\n}", "isContentBase64": false, "Headers": { @@ -95,32 +95,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1194" ], - "x-ms-request-id": [ "bf0c93b6-f7b0-4217-acd0-b16a43209a95" ], - "x-ms-correlation-request-id": [ "bf0c93b6-f7b0-4217-acd0-b16a43209a95" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095835Z:bf0c93b6-f7b0-4217-acd0-b16a43209a95" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1193" ], + "x-ms-request-id": [ "11ae5e01-00da-41f4-860e-e7b392166c0d" ], + "x-ms-correlation-request-id": [ "11ae5e01-00da-41f4-860e-e7b392166c0d" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131739Z:11ae5e01-00da-41f4-860e-e7b392166c0d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:58:34 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:17:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "339" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules/queueAuthRule3\",\"name\":\"queueAuthRule3\",\"type\":\"Microsoft.ServiceBus/namespaces/queues/authorizationrules\",\"properties\":{\"rights\":[\"Listen\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules/queueAuthRule3\",\"name\":\"queueAuthRule3\",\"type\":\"Microsoft.ServiceBus/namespaces/queues/authorizationrules\",\"properties\":{\"rights\":[\"Listen\"]}}", "isContentBase64": false } }, - "New-AzServiceBusAuthorizationRule+[NoContext]+NewExpandedQueue+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules?api-version=2022-01-01-preview+2": { + "New-AzServiceBusAuthorizationRule+[NoContext]+NewExpandedQueue+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules?api-version=2022-10-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "65" ], - "x-ms-client-request-id": [ "27d7a4ef-6ad8-4b7e-9ed9-9590078121ed" ], + "x-ms-unique-id": [ "64" ], + "x-ms-client-request-id": [ "76011012-4d54-45dd-b515-3e02106678aa" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusQueueAuthorizationRule_List" ], "FullCommandName": [ "Get-AzServiceBusQueueAuthorizationRule_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -136,27 +136,27 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11945" ], - "x-ms-request-id": [ "46d29c57-fff5-4fa2-8828-83caebd8b891" ], - "x-ms-correlation-request-id": [ "46d29c57-fff5-4fa2-8828-83caebd8b891" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095836Z:46d29c57-fff5-4fa2-8828-83caebd8b891" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11914" ], + "x-ms-request-id": [ "bfd893e8-5dca-4afe-812c-35f76d31e7e2" ], + "x-ms-correlation-request-id": [ "bfd893e8-5dca-4afe-812c-35f76d31e7e2" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131740Z:bfd893e8-5dca-4afe-812c-35f76d31e7e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:58:35 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:17:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1123" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationrules/queueAuthRule2\",\"name\":\"queueAuthRule2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationrules/queueAuthRule1\",\"name\":\"queueAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationrules/queueAuthRule3\",\"name\":\"queueAuthRule3\",\"type\":\"Microsoft.ServiceBus/namespaces/queues/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Listen\"]}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationrules/queueAuthRule1\",\"name\":\"queueAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationrules/queueAuthRule2\",\"name\":\"queueAuthRule2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationrules/queueAuthRule3\",\"name\":\"queueAuthRule3\",\"type\":\"Microsoft.ServiceBus/namespaces/queues/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Listen\"]}}]}", "isContentBase64": false } }, - "New-AzServiceBusAuthorizationRule+[NoContext]+NewExpandedTopic+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules/topicAuthRule3?api-version=2022-01-01-preview+1": { + "New-AzServiceBusAuthorizationRule+[NoContext]+NewExpandedTopic+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules/topicAuthRule3?api-version=2022-10-01-preview+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules/topicAuthRule3?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules/topicAuthRule3?api-version=2022-10-01-preview", "Content": "{\n \"properties\": {\n \"rights\": [ \"Send\" ]\n }\n}", "isContentBase64": false, "Headers": { @@ -172,32 +172,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1193" ], - "x-ms-request-id": [ "2cf43b38-e50e-4528-a696-1d416576aa4a" ], - "x-ms-correlation-request-id": [ "2cf43b38-e50e-4528-a696-1d416576aa4a" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095836Z:2cf43b38-e50e-4528-a696-1d416576aa4a" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1192" ], + "x-ms-request-id": [ "9846b6a7-1eb9-4b64-af5e-148e831554a5" ], + "x-ms-correlation-request-id": [ "9846b6a7-1eb9-4b64-af5e-148e831554a5" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131741Z:9846b6a7-1eb9-4b64-af5e-148e831554a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:58:35 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:17:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "337" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules/topicAuthRule3\",\"name\":\"topicAuthRule3\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/authorizationrules\",\"properties\":{\"rights\":[\"Send\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules/topicAuthRule3\",\"name\":\"topicAuthRule3\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/authorizationrules\",\"properties\":{\"rights\":[\"Send\"]}}", "isContentBase64": false } }, - "New-AzServiceBusAuthorizationRule+[NoContext]+NewExpandedTopic+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules?api-version=2022-01-01-preview+2": { + "New-AzServiceBusAuthorizationRule+[NoContext]+NewExpandedTopic+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules?api-version=2022-10-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "67" ], - "x-ms-client-request-id": [ "19be341e-1735-4f3b-a758-3835c75745a3" ], + "x-ms-unique-id": [ "66" ], + "x-ms-client-request-id": [ "337742e3-4875-4c29-8a05-802a34547956" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusTopicAuthorizationRule_List" ], "FullCommandName": [ "Get-AzServiceBusTopicAuthorizationRule_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -213,20 +213,20 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11944" ], - "x-ms-request-id": [ "f58c81d5-a90d-4bbb-b09f-55459f47eb43" ], - "x-ms-correlation-request-id": [ "f58c81d5-a90d-4bbb-b09f-55459f47eb43" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095837Z:f58c81d5-a90d-4bbb-b09f-55459f47eb43" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11913" ], + "x-ms-request-id": [ "c70fd9f6-12b4-44de-a3ab-dd875856fd7f" ], + "x-ms-correlation-request-id": [ "c70fd9f6-12b4-44de-a3ab-dd875856fd7f" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131742Z:c70fd9f6-12b4-44de-a3ab-dd875856fd7f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:58:36 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:17:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1105" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationrules/topicAuthRule2\",\"name\":\"topicAuthRule2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Listen\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationrules/topicAuthRule1\",\"name\":\"topicAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationrules/topicAuthRule3\",\"name\":\"topicAuthRule3\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Send\"]}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationrules/topicAuthRule2\",\"name\":\"topicAuthRule2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Listen\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationrules/topicAuthRule1\",\"name\":\"topicAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationrules/topicAuthRule3\",\"name\":\"topicAuthRule3\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Send\"]}}]}", "isContentBase64": false } } diff --git a/src/ServiceBus/ServiceBus.Autorest/test/New-AzServiceBusGeoDRConfiguration.Recording.json b/src/ServiceBus/ServiceBus.Autorest/test/New-AzServiceBusGeoDRConfiguration.Recording.json index 10eee48cffb6..a7e8f49312b2 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/New-AzServiceBusGeoDRConfiguration.Recording.json +++ b/src/ServiceBus/ServiceBus.Autorest/test/New-AzServiceBusGeoDRConfiguration.Recording.json @@ -1,9 +1,9 @@ { - "New-AzServiceBusGeoDRConfiguration+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+1": { + "New-AzServiceBusGeoDRConfiguration+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", - "Content": "{\n \"properties\": {\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", + "Content": "{\n \"properties\": {\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\"\n }\n}", "isContentBase64": false, "Headers": { }, @@ -17,34 +17,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "f3cbb3e4-acec-4177-8857-ce60e130d27c_M11SN1_M11SN1" ], + "x-ms-request-id": [ "fd14596c-f5f3-4c64-9169-9533ffa9be90_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1192" ], - "x-ms-correlation-request-id": [ "f85e3e30-923c-4e3c-aa3d-a77f6ed2d713" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095903Z:f85e3e30-923c-4e3c-aa3d-a77f6ed2d713" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1191" ], + "x-ms-correlation-request-id": [ "176301af-5a8f-4f7b-a2df-4e8c61221b1b" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131800Z:176301af-5a8f-4f7b-a2df-4e8c61221b1b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:59:02 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:18:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "New-AzServiceBusGeoDRConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+2": { + "New-AzServiceBusGeoDRConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "69" ], - "x-ms-client-request-id": [ "b032b56d-84a8-46a3-a6c5-2dab290e943f" ], + "x-ms-unique-id": [ "68" ], + "x-ms-client-request-id": [ "a12a9531-e957-43c3-a0d6-35a9f08ff48d" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -59,34 +59,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "4159dbdf-8465-4e8a-a395-8899f434001c_M11SN1_M11SN1" ], + "x-ms-request-id": [ "d6c13ac4-bad6-4538-be28-bcfa62caa4d1_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11943" ], - "x-ms-correlation-request-id": [ "2f19fbe5-abdf-4959-aad1-5a432d136712" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095903Z:2f19fbe5-abdf-4959-aad1-5a432d136712" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11912" ], + "x-ms-correlation-request-id": [ "e29dea9e-ccc2-4b5a-a3f6-43c720a56bb8" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131801Z:e29dea9e-ccc2-4b5a-a3f6-43c720a56bb8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:59:03 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:18:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "New-AzServiceBusGeoDRConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+3": { + "New-AzServiceBusGeoDRConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "70" ], - "x-ms-client-request-id": [ "f57db881-7091-4382-b2f2-41174be6165d" ], + "x-ms-unique-id": [ "69" ], + "x-ms-client-request-id": [ "ab394bab-213a-4b20-a021-c74d3fd0b87e" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -101,34 +101,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "87f8acc4-4451-4a5b-aca2-868179a7249b_M11SN1_M11SN1" ], + "x-ms-request-id": [ "75228768-96f3-401a-9f0b-cdad2c54cf3d_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11942" ], - "x-ms-correlation-request-id": [ "aa13f720-06b4-4c92-8693-a6dfbb5ba063" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095914Z:aa13f720-06b4-4c92-8693-a6dfbb5ba063" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11911" ], + "x-ms-correlation-request-id": [ "f92ad0b2-7508-4daf-b0ec-202e4d8797d7" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131812Z:f92ad0b2-7508-4daf-b0ec-202e4d8797d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:59:14 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:18:12 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "New-AzServiceBusGeoDRConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+4": { + "New-AzServiceBusGeoDRConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "71" ], - "x-ms-client-request-id": [ "6ad96515-0e96-4f87-9554-f4a7c1b16fed" ], + "x-ms-unique-id": [ "70" ], + "x-ms-client-request-id": [ "2fd230e3-3f96-40c0-9215-3059f23b906c" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -143,34 +143,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "913d9c76-54bb-4de6-a09e-6aa07c922b8f_M11SN1_M11SN1" ], + "x-ms-request-id": [ "42452986-2c18-427d-ab9d-00e42c601658_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11941" ], - "x-ms-correlation-request-id": [ "9f3f0d9f-e85a-4f7d-bf51-3bb637e728fa" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095924Z:9f3f0d9f-e85a-4f7d-bf51-3bb637e728fa" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11910" ], + "x-ms-correlation-request-id": [ "3939ef5e-06cc-4756-9dd2-7385fbbf8502" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131823Z:3939ef5e-06cc-4756-9dd2-7385fbbf8502" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:59:24 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:18:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "New-AzServiceBusGeoDRConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+5": { + "New-AzServiceBusGeoDRConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "72" ], - "x-ms-client-request-id": [ "0a30ed95-415d-4fe6-b6b5-2e11383eb149" ], + "x-ms-unique-id": [ "71" ], + "x-ms-client-request-id": [ "7761b180-6d0d-427b-a7d4-55e040c95813" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -185,34 +185,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "7beb510c-24ab-4610-8c84-7cdcbd98e466_M11SN1_M11SN1" ], + "x-ms-request-id": [ "b667d6ee-2074-416e-ab23-e7c0af7cf9fa_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11940" ], - "x-ms-correlation-request-id": [ "66cccdcb-73c9-4ce3-b6b6-2c7eee0584e5" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095935Z:66cccdcb-73c9-4ce3-b6b6-2c7eee0584e5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11909" ], + "x-ms-correlation-request-id": [ "3329ac3e-e513-4353-af3f-7b7aabaf2c94" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131833Z:3329ac3e-e513-4353-af3f-7b7aabaf2c94" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:59:35 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:18:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "New-AzServiceBusGeoDRConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+6": { + "New-AzServiceBusGeoDRConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "73" ], - "x-ms-client-request-id": [ "402e4e17-1ac6-47af-805c-7a63a9646918" ], + "x-ms-unique-id": [ "72" ], + "x-ms-client-request-id": [ "84b5196a-ee8b-4eb6-9b3d-ed0347c9ac58" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -227,34 +227,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "c585b72b-0bc5-42a5-8ea2-7e0d1bfcb070_M11SN1_M11SN1" ], + "x-ms-request-id": [ "b0f90b84-3912-4a9e-a3e1-f7a85256e352_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11939" ], - "x-ms-correlation-request-id": [ "82d292f1-021c-479a-bc7c-a18e746f0eaa" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095945Z:82d292f1-021c-479a-bc7c-a18e746f0eaa" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11908" ], + "x-ms-correlation-request-id": [ "f460f0cb-acce-4737-aea1-31c3ae20aaaf" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131844Z:f460f0cb-acce-4737-aea1-31c3ae20aaaf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:59:45 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:18:43 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "New-AzServiceBusGeoDRConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+7": { + "New-AzServiceBusGeoDRConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "74" ], - "x-ms-client-request-id": [ "a7c165ac-087e-4999-b401-1e27598e0f3a" ], + "x-ms-unique-id": [ "73" ], + "x-ms-client-request-id": [ "556b9a12-4881-432d-a0ff-716c9f67140d" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -269,34 +269,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "54db5c1d-a11c-4aec-9583-8c48d8585133_M11SN1_M11SN1" ], + "x-ms-request-id": [ "3e2fc7a0-704c-473b-a8e8-78304906a874_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11938" ], - "x-ms-correlation-request-id": [ "9d51c405-23ed-40c6-b69e-6717d2064e6b" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T095955Z:9d51c405-23ed-40c6-b69e-6717d2064e6b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11907" ], + "x-ms-correlation-request-id": [ "66c092a0-edb4-4e20-8285-18bfcf3ae9c6" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131855Z:66c092a0-edb4-4e20-8285-18bfcf3ae9c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 09:59:55 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:18:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "New-AzServiceBusGeoDRConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+8": { + "New-AzServiceBusGeoDRConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "75" ], - "x-ms-client-request-id": [ "3bc25849-ce8c-4ed0-8f32-e06684c68cf7" ], + "x-ms-unique-id": [ "74" ], + "x-ms-client-request-id": [ "cf249e32-a8d6-4313-bf8a-1daf734d7446" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -311,34 +311,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "a4aaa6dd-dd0a-4682-991e-72d1aa23a4d4_M5SN1_M5SN1" ], + "x-ms-request-id": [ "23f41620-6003-4756-ab9d-a71810a267ba_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11937" ], - "x-ms-correlation-request-id": [ "c3f6e884-10da-42b9-b288-482359c03d8f" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T100006Z:c3f6e884-10da-42b9-b288-482359c03d8f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11906" ], + "x-ms-correlation-request-id": [ "c002898a-197b-4ba3-9aa3-16d2143f72e0" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131906Z:c002898a-197b-4ba3-9aa3-16d2143f72e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:00:05 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:19:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "New-AzServiceBusGeoDRConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+9": { + "New-AzServiceBusGeoDRConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "76" ], - "x-ms-client-request-id": [ "dc805613-ab83-4f3c-bdde-c996a12e43f6" ], + "x-ms-unique-id": [ "75" ], + "x-ms-client-request-id": [ "fb056b4b-0658-4bf4-bce1-736a24b02efb" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -353,34 +353,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "018bf85e-cf3a-446c-afba-afc62fe78c11_M11SN1_M11SN1" ], + "x-ms-request-id": [ "d1552f85-5213-41fd-99aa-465b271ac399_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11936" ], - "x-ms-correlation-request-id": [ "a06866a6-1be5-4af4-bbbe-8d1bc6a5c3fb" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T100016Z:a06866a6-1be5-4af4-bbbe-8d1bc6a5c3fb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11905" ], + "x-ms-correlation-request-id": [ "1be2d1f4-7243-4bba-81a9-0f02f6c052fd" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131916Z:1be2d1f4-7243-4bba-81a9-0f02f6c052fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:00:16 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:19:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "New-AzServiceBusGeoDRConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+10": { + "New-AzServiceBusGeoDRConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "77" ], - "x-ms-client-request-id": [ "d3793546-6929-48aa-a687-7c00dab3c3ea" ], + "x-ms-unique-id": [ "76" ], + "x-ms-client-request-id": [ "c42fdf8d-2c3d-4177-93e4-dc1470567a87" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -395,34 +395,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "0d8846a9-3265-4c0d-9b20-2207ed931dc6_M11SN1_M11SN1" ], + "x-ms-request-id": [ "22a1d3c0-0a6a-43bf-bdd4-c4c65d67943a_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11935" ], - "x-ms-correlation-request-id": [ "718c40c8-5dd2-44c1-b7c7-13563d40ccc1" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T100027Z:718c40c8-5dd2-44c1-b7c7-13563d40ccc1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11904" ], + "x-ms-correlation-request-id": [ "44736492-2cec-4db1-9782-8e25a1312053" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131927Z:44736492-2cec-4db1-9782-8e25a1312053" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:00:27 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:19:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "New-AzServiceBusGeoDRConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+11": { + "New-AzServiceBusGeoDRConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "78" ], - "x-ms-client-request-id": [ "d3b6e35a-5c27-4900-bfc8-37cd36bced16" ], + "x-ms-unique-id": [ "77" ], + "x-ms-client-request-id": [ "47e758e7-6315-408b-bf44-3bff66c242b0" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -437,34 +437,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "5243921e-a75d-4c24-b642-96ccc1e7936c_M11SN1_M11SN1" ], + "x-ms-request-id": [ "9e06da20-27f1-47ad-8841-e0095b4c7c9e_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11934" ], - "x-ms-correlation-request-id": [ "0b2822c6-1f20-467d-a323-3e17a739a28d" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T100038Z:0b2822c6-1f20-467d-a323-3e17a739a28d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11903" ], + "x-ms-correlation-request-id": [ "2e71f7b5-ca44-41da-852c-54c110cf7998" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131938Z:2e71f7b5-ca44-41da-852c-54c110cf7998" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:00:38 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:19:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "590" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Succeeded\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\",\"pendingReplicationOperationsCount\":0}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Succeeded\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\",\"pendingReplicationOperationsCount\":0}}", "isContentBase64": false } }, - "New-AzServiceBusGeoDRConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+12": { + "New-AzServiceBusGeoDRConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "79" ], - "x-ms-client-request-id": [ "d9a34324-2c5b-4481-88e5-afb25b416199" ], + "x-ms-unique-id": [ "78" ], + "x-ms-client-request-id": [ "f874e2e1-cf1c-4845-aa10-2ee69a30bb41" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -479,34 +479,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "bad3f9e7-4136-4c1b-8080-06f37ad6b528_M11SN1_M11SN1" ], + "x-ms-request-id": [ "65141664-c9b0-4d79-9d72-8a80d360351c_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11933" ], - "x-ms-correlation-request-id": [ "f467b78e-bcfd-4bf3-b1a0-b8004a65c148" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T100048Z:f467b78e-bcfd-4bf3-b1a0-b8004a65c148" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11902" ], + "x-ms-correlation-request-id": [ "30f8487c-fa96-4f1e-b120-c510070262b1" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131949Z:30f8487c-fa96-4f1e-b120-c510070262b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:00:48 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:19:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "554" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Succeeded\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx\",\"role\":\"Secondary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Succeeded\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3\",\"role\":\"Secondary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "New-AzServiceBusGeoDRConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/AuthorizationRules?api-version=2022-01-01-preview+13": { + "New-AzServiceBusGeoDRConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/AuthorizationRules?api-version=2022-10-01-preview+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/AuthorizationRules?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/AuthorizationRules?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "80" ], - "x-ms-client-request-id": [ "ce114675-14dc-43dd-9f31-9c5f67cae13f" ], + "x-ms-unique-id": [ "79" ], + "x-ms-client-request-id": [ "414bb73f-b807-48bc-a403-ce89c6e4a6eb" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusNamespaceAuthorizationRule_List" ], "FullCommandName": [ "Get-AzServiceBusNamespaceAuthorizationRule_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -522,32 +522,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11932" ], - "x-ms-request-id": [ "13b2a03e-1267-43bd-aa20-8535345d86fe" ], - "x-ms-correlation-request-id": [ "13b2a03e-1267-43bd-aa20-8535345d86fe" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T100049Z:13b2a03e-1267-43bd-aa20-8535345d86fe" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11901" ], + "x-ms-request-id": [ "2d42ed21-f660-4c29-9135-0459f985ba82" ], + "x-ms-correlation-request-id": [ "2d42ed21-f660-4c29-9135-0459f985ba82" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131951Z:2d42ed21-f660-4c29-9135-0459f985ba82" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:00:48 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:19:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "384" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/authorizationrules/RootManageSharedAccessKey\",\"name\":\"RootManageSharedAccessKey\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Listen\",\"Manage\",\"Send\"]}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/authorizationrules/RootManageSharedAccessKey\",\"name\":\"RootManageSharedAccessKey\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Listen\",\"Manage\",\"Send\"]}}]}", "isContentBase64": false } }, - "New-AzServiceBusGeoDRConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up/authorizationRules?api-version=2022-01-01-preview+14": { + "New-AzServiceBusGeoDRConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1/authorizationRules?api-version=2022-10-01-preview+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up/authorizationRules?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1/authorizationRules?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "81" ], - "x-ms-client-request-id": [ "30e474b4-387d-4562-bd3d-eb4f14a1a29f" ], + "x-ms-unique-id": [ "80" ], + "x-ms-client-request-id": [ "253f3537-00c0-4841-8552-c75c95ed993a" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusDisasterRecoveryConfigAuthorizationRule_List" ], "FullCommandName": [ "Get-AzServiceBusDisasterRecoveryConfigAuthorizationRule_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -562,34 +562,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "e9b521a1-49da-4959-bac9-0c0d32dad6c6_M11SN1_M11SN1" ], + "x-ms-request-id": [ "c1f9a8a1-3ee3-4681-9b6b-25475cabd227_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11931" ], - "x-ms-correlation-request-id": [ "2a2ff7f1-9fba-4e20-a936-a0f9d3902848" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T100050Z:2a2ff7f1-9fba-4e20-a936-a0f9d3902848" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11900" ], + "x-ms-correlation-request-id": [ "d9284f98-f02c-4d73-9c7f-d0e0f378c1c9" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131952Z:d9284f98-f02c-4d73-9c7f-d0e0f378c1c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:00:49 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:19:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "421" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up/authorizationRules/RootManageSharedAccessKey\",\"name\":\"RootManageSharedAccessKey\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"East US\",\"properties\":{\"rights\":[\"Listen\",\"Manage\",\"Send\"]}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1/authorizationRules/RootManageSharedAccessKey\",\"name\":\"RootManageSharedAccessKey\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"East US\",\"properties\":{\"rights\":[\"Listen\",\"Manage\",\"Send\"]}}]}", "isContentBase64": false } }, - "New-AzServiceBusGeoDRConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up/authorizationRules/RootManageSharedAccessKey?api-version=2022-01-01-preview+15": { + "New-AzServiceBusGeoDRConfiguration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1/authorizationRules/RootManageSharedAccessKey?api-version=2022-10-01-preview+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up/authorizationRules/RootManageSharedAccessKey?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1/authorizationRules/RootManageSharedAccessKey?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "82" ], - "x-ms-client-request-id": [ "9a27d057-f648-47b0-80ad-c8aea665c106" ], + "x-ms-unique-id": [ "81" ], + "x-ms-client-request-id": [ "8c7211b5-1b2e-4f2c-add2-01cc1e098ae8" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusDisasterRecoveryConfigAuthorizationRule_Get" ], "FullCommandName": [ "Get-AzServiceBusDisasterRecoveryConfigAuthorizationRule_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -604,34 +604,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "dd08395e-6b25-496a-9cb2-49c6562ae4b6_M11SN1_M11SN1" ], + "x-ms-request-id": [ "1a37bfbf-e965-4d8c-8178-55bc89a336ec_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11930" ], - "x-ms-correlation-request-id": [ "647069ba-1762-47af-a43c-66feddad2ab9" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T100050Z:647069ba-1762-47af-a43c-66feddad2ab9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11899" ], + "x-ms-correlation-request-id": [ "46afbb52-42a0-41b8-ba06-c8f6cda60ac2" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131954Z:46afbb52-42a0-41b8-ba06-c8f6cda60ac2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:00:50 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:19:53 GMT" ] }, "ContentHeaders": { "Content-Length": [ "409" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up/authorizationRules/RootManageSharedAccessKey\",\"name\":\"RootManageSharedAccessKey\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"East US\",\"properties\":{\"rights\":[\"Listen\",\"Manage\",\"Send\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1/authorizationRules/RootManageSharedAccessKey\",\"name\":\"RootManageSharedAccessKey\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"East US\",\"properties\":{\"rights\":[\"Listen\",\"Manage\",\"Send\"]}}", "isContentBase64": false } }, - "New-AzServiceBusGeoDRConfiguration+[NoContext]+CreateExpanded+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up/authorizationRules/RootManageSharedAccessKey/listKeys?api-version=2022-01-01-preview+16": { + "New-AzServiceBusGeoDRConfiguration+[NoContext]+CreateExpanded+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1/authorizationRules/RootManageSharedAccessKey/listKeys?api-version=2022-10-01-preview+16": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up/authorizationRules/RootManageSharedAccessKey/listKeys?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1/authorizationRules/RootManageSharedAccessKey/listKeys?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "83" ], - "x-ms-client-request-id": [ "1ec27ca8-22b3-45c0-88af-28e5c2837157" ], + "x-ms-unique-id": [ "82" ], + "x-ms-client-request-id": [ "7b831e84-c0b0-4921-aecf-acfb91af6527" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusDisasterRecoveryConfigKey_List" ], "FullCommandName": [ "Get-AzServiceBusDisasterRecoveryConfigKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -646,34 +646,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "212130c6-b49d-465c-a2b2-fceb4608b06d_M11SN1_M11SN1" ], + "x-ms-request-id": [ "0e33c707-da92-49e2-9f2c-42ae242502b9_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], - "x-ms-correlation-request-id": [ "b904ce41-aef8-4a09-bd35-fe7342372710" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T100051Z:b904ce41-aef8-4a09-bd35-fe7342372710" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], + "x-ms-correlation-request-id": [ "5cd65285-59fc-4ee0-8e2b-449b3e7f4a14" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131955Z:5cd65285-59fc-4ee0-8e2b-449b3e7f4a14" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:00:51 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:19:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "543" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"aliasPrimaryConnectionString\":\"Endpoint=sb://aliass875up.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=WER24zO+SEgOyZ9uBpu3O+YqeyDA5lsDo2e2btwWxZQ=\",\"aliasSecondaryConnectionString\":\"Endpoint=sb://aliass875up.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=ImdoZxVDwWGhRnCVyoWS8hyFoMHcbVRgiDOd7Wp8zRs=\",\"primaryKey\":\"WER24zO+SEgOyZ9uBpu3O+YqeyDA5lsDo2e2btwWxZQ=\",\"secondaryKey\":\"ImdoZxVDwWGhRnCVyoWS8hyFoMHcbVRgiDOd7Wp8zRs=\",\"keyName\":\"RootManageSharedAccessKey\"}", + "Content": "{\"aliasPrimaryConnectionString\":\"Endpoint=sb://aliasq6x0t1.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=HNrXc7IiHxxeHD7x5iYDiyLfLpkRP0sBk+ASbFD8bYQ=\",\"aliasSecondaryConnectionString\":\"Endpoint=sb://aliasq6x0t1.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=VAu5g+N3k3O7rGlhPzDXU+PXo9ISCsNs3+ASbNbJzmA=\",\"primaryKey\":\"HNrXc7IiHxxeHD7x5iYDiyLfLpkRP0sBk+ASbFD8bYQ=\",\"secondaryKey\":\"VAu5g+N3k3O7rGlhPzDXU+PXo9ISCsNs3+ASbNbJzmA=\",\"keyName\":\"RootManageSharedAccessKey\"}", "isContentBase64": false } }, - "New-AzServiceBusGeoDRConfiguration+[NoContext]+CreateExpanded+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/AuthorizationRules/RootManageSharedAccessKey/listKeys?api-version=2022-01-01-preview+17": { + "New-AzServiceBusGeoDRConfiguration+[NoContext]+CreateExpanded+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/AuthorizationRules/RootManageSharedAccessKey/listKeys?api-version=2022-10-01-preview+17": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/AuthorizationRules/RootManageSharedAccessKey/listKeys?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/AuthorizationRules/RootManageSharedAccessKey/listKeys?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "84" ], - "x-ms-client-request-id": [ "c6084c3d-ce8a-4ee1-8220-749ec667b37a" ], + "x-ms-unique-id": [ "83" ], + "x-ms-client-request-id": [ "b61d71ae-b4e7-41db-a26b-1946ce079991" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusNamespaceKey_List" ], "FullCommandName": [ "Get-AzServiceBusNamespaceKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -689,20 +689,20 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], - "x-ms-request-id": [ "dce860a5-fea2-4fe5-96e9-b8c09b60084f" ], - "x-ms-correlation-request-id": [ "dce860a5-fea2-4fe5-96e9-b8c09b60084f" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T100052Z:dce860a5-fea2-4fe5-96e9-b8c09b60084f" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1194" ], + "x-ms-request-id": [ "26543899-893c-439d-8dcb-99601c1187e8" ], + "x-ms-correlation-request-id": [ "26543899-893c-439d-8dcb-99601c1187e8" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T131956Z:26543899-893c-439d-8dcb-99601c1187e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:00:51 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:19:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "923" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"primaryConnectionString\":\"Endpoint=sb://primaryns9yownx.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=WER24zO+SEgOyZ9uBpu3O+YqeyDA5lsDo2e2btwWxZQ=\",\"secondaryConnectionString\":\"Endpoint=sb://primaryns9yownx.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=ImdoZxVDwWGhRnCVyoWS8hyFoMHcbVRgiDOd7Wp8zRs=\",\"primaryKey\":\"WER24zO+SEgOyZ9uBpu3O+YqeyDA5lsDo2e2btwWxZQ=\",\"secondaryKey\":\"ImdoZxVDwWGhRnCVyoWS8hyFoMHcbVRgiDOd7Wp8zRs=\",\"keyName\":\"RootManageSharedAccessKey\",\"aliasPrimaryConnectionString\":\"Endpoint=sb://aliass875up.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=WER24zO+SEgOyZ9uBpu3O+YqeyDA5lsDo2e2btwWxZQ=\",\"aliasSecondaryConnectionString\":\"Endpoint=sb://aliass875up.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=ImdoZxVDwWGhRnCVyoWS8hyFoMHcbVRgiDOd7Wp8zRs=\"}", + "Content": "{\"primaryConnectionString\":\"Endpoint=sb://primarynsd7oma3.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=HNrXc7IiHxxeHD7x5iYDiyLfLpkRP0sBk+ASbFD8bYQ=\",\"secondaryConnectionString\":\"Endpoint=sb://primarynsd7oma3.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=VAu5g+N3k3O7rGlhPzDXU+PXo9ISCsNs3+ASbNbJzmA=\",\"primaryKey\":\"HNrXc7IiHxxeHD7x5iYDiyLfLpkRP0sBk+ASbFD8bYQ=\",\"secondaryKey\":\"VAu5g+N3k3O7rGlhPzDXU+PXo9ISCsNs3+ASbNbJzmA=\",\"keyName\":\"RootManageSharedAccessKey\",\"aliasPrimaryConnectionString\":\"Endpoint=sb://aliasq6x0t1.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=HNrXc7IiHxxeHD7x5iYDiyLfLpkRP0sBk+ASbFD8bYQ=\",\"aliasSecondaryConnectionString\":\"Endpoint=sb://aliasq6x0t1.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=VAu5g+N3k3O7rGlhPzDXU+PXo9ISCsNs3+ASbNbJzmA=\"}", "isContentBase64": false } } diff --git a/src/ServiceBus/ServiceBus.Autorest/test/New-AzServiceBusKey.Recording.json b/src/ServiceBus/ServiceBus.Autorest/test/New-AzServiceBusKey.Recording.json index 307ae7153141..aca64d313b6b 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/New-AzServiceBusKey.Recording.json +++ b/src/ServiceBus/ServiceBus.Autorest/test/New-AzServiceBusKey.Recording.json @@ -1,13 +1,13 @@ { - "New-AzServiceBusKey+[NoContext]+NewExpandedNamespace+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules/namespaceAuthRule1/listKeys?api-version=2022-01-01-preview+1": { + "New-AzServiceBusKey+[NoContext]+NewExpandedNamespace+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules/namespaceAuthRule1/listKeys?api-version=2022-10-01-preview+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules/namespaceAuthRule1/listKeys?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules/namespaceAuthRule1/listKeys?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "85" ], - "x-ms-client-request-id": [ "607e6256-771f-4d0a-9b22-accb8f69c045" ], + "x-ms-unique-id": [ "84" ], + "x-ms-client-request-id": [ "9d9fddbb-1c75-4ce4-a4f7-ffc71a6bbe76" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusNamespaceKey_List" ], "FullCommandName": [ "Get-AzServiceBusNamespaceKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -23,27 +23,27 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1194" ], - "x-ms-request-id": [ "5424a247-9212-4ef3-9556-8cffb77d341b" ], - "x-ms-correlation-request-id": [ "5424a247-9212-4ef3-9556-8cffb77d341b" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T100131Z:5424a247-9212-4ef3-9556-8cffb77d341b" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1193" ], + "x-ms-request-id": [ "57f98227-a25c-4a12-afc8-a8eb6f5891bb" ], + "x-ms-correlation-request-id": [ "57f98227-a25c-4a12-afc8-a8eb6f5891bb" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T132022Z:57f98227-a25c-4a12-afc8-a8eb6f5891bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:01:31 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:20:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "528" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"primaryConnectionString\":\"Endpoint=sb://namespacenamepfxymc.servicebus.windows.net/;SharedAccessKeyName=namespaceAuthRule1;SharedAccessKey=9LEKThbPszzv0wP4FrDsglMFKxaEISVH5Um/iWfMtJY=\",\"secondaryConnectionString\":\"Endpoint=sb://namespacenamepfxymc.servicebus.windows.net/;SharedAccessKeyName=namespaceAuthRule1;SharedAccessKey=cP6vFylar4a331UOLMgu5ALq3d3pfwlDXBXU2UYRBic=\",\"primaryKey\":\"9LEKThbPszzv0wP4FrDsglMFKxaEISVH5Um/iWfMtJY=\",\"secondaryKey\":\"cP6vFylar4a331UOLMgu5ALq3d3pfwlDXBXU2UYRBic=\",\"keyName\":\"namespaceAuthRule1\"}", + "Content": "{\"primaryConnectionString\":\"Endpoint=sb://namespacenamehjil09.servicebus.windows.net/;SharedAccessKeyName=namespaceAuthRule1;SharedAccessKey=x6oIGJ4kG+21Tg8d8Q68Hz3nnygn5ebHy+ASbCB3YvE=\",\"secondaryConnectionString\":\"Endpoint=sb://namespacenamehjil09.servicebus.windows.net/;SharedAccessKeyName=namespaceAuthRule1;SharedAccessKey=XVfSwAW8/2zZ0gMmpeE5sRx3ern/rKCv7+ASbGdJ0is=\",\"primaryKey\":\"x6oIGJ4kG+21Tg8d8Q68Hz3nnygn5ebHy+ASbCB3YvE=\",\"secondaryKey\":\"XVfSwAW8/2zZ0gMmpeE5sRx3ern/rKCv7+ASbGdJ0is=\",\"keyName\":\"namespaceAuthRule1\"}", "isContentBase64": false } }, - "New-AzServiceBusKey+[NoContext]+NewExpandedNamespace+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules/namespaceAuthRule1/regenerateKeys?api-version=2022-01-01-preview+2": { + "New-AzServiceBusKey+[NoContext]+NewExpandedNamespace+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules/namespaceAuthRule1/regenerateKeys?api-version=2022-10-01-preview+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules/namespaceAuthRule1/regenerateKeys?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules/namespaceAuthRule1/regenerateKeys?api-version=2022-10-01-preview", "Content": "{\n \"keyType\": \"PrimaryKey\"\n}", "isContentBase64": false, "Headers": { @@ -59,27 +59,27 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1193" ], - "x-ms-request-id": [ "3f0640fb-4964-4f83-8c7e-62b45f82214b" ], - "x-ms-correlation-request-id": [ "3f0640fb-4964-4f83-8c7e-62b45f82214b" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T100138Z:3f0640fb-4964-4f83-8c7e-62b45f82214b" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1192" ], + "x-ms-request-id": [ "096733ab-f188-43a2-aeb1-ebadf2ad605f" ], + "x-ms-correlation-request-id": [ "096733ab-f188-43a2-aeb1-ebadf2ad605f" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T132028Z:096733ab-f188-43a2-aeb1-ebadf2ad605f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:01:37 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:20:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "528" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"primaryConnectionString\":\"Endpoint=sb://namespacenamepfxymc.servicebus.windows.net/;SharedAccessKeyName=namespaceAuthRule1;SharedAccessKey=2yLeCRI/wRa9ybZDtfGxKDod7YfUgQyC4ehKwdRRtEE=\",\"secondaryConnectionString\":\"Endpoint=sb://namespacenamepfxymc.servicebus.windows.net/;SharedAccessKeyName=namespaceAuthRule1;SharedAccessKey=cP6vFylar4a331UOLMgu5ALq3d3pfwlDXBXU2UYRBic=\",\"primaryKey\":\"2yLeCRI/wRa9ybZDtfGxKDod7YfUgQyC4ehKwdRRtEE=\",\"secondaryKey\":\"cP6vFylar4a331UOLMgu5ALq3d3pfwlDXBXU2UYRBic=\",\"keyName\":\"namespaceAuthRule1\"}", + "Content": "{\"primaryConnectionString\":\"Endpoint=sb://namespacenamehjil09.servicebus.windows.net/;SharedAccessKeyName=namespaceAuthRule1;SharedAccessKey=0Z3rjRhrkqqfBptc4wqxkJjK7oZqiU3xD+ASbIB4lfA=\",\"secondaryConnectionString\":\"Endpoint=sb://namespacenamehjil09.servicebus.windows.net/;SharedAccessKeyName=namespaceAuthRule1;SharedAccessKey=XVfSwAW8/2zZ0gMmpeE5sRx3ern/rKCv7+ASbGdJ0is=\",\"primaryKey\":\"0Z3rjRhrkqqfBptc4wqxkJjK7oZqiU3xD+ASbIB4lfA=\",\"secondaryKey\":\"XVfSwAW8/2zZ0gMmpeE5sRx3ern/rKCv7+ASbGdJ0is=\",\"keyName\":\"namespaceAuthRule1\"}", "isContentBase64": false } }, - "New-AzServiceBusKey+[NoContext]+NewExpandedNamespace+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules/namespaceAuthRule1/regenerateKeys?api-version=2022-01-01-preview+3": { + "New-AzServiceBusKey+[NoContext]+NewExpandedNamespace+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules/namespaceAuthRule1/regenerateKeys?api-version=2022-10-01-preview+3": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules/namespaceAuthRule1/regenerateKeys?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules/namespaceAuthRule1/regenerateKeys?api-version=2022-10-01-preview", "Content": "{\n \"keyType\": \"SecondaryKey\"\n}", "isContentBase64": false, "Headers": { @@ -95,28 +95,28 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1192" ], - "x-ms-request-id": [ "3d712c81-e87c-4397-9b69-7d1df87d51b7" ], - "x-ms-correlation-request-id": [ "3d712c81-e87c-4397-9b69-7d1df87d51b7" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T100145Z:3d712c81-e87c-4397-9b69-7d1df87d51b7" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1191" ], + "x-ms-request-id": [ "853b3f55-462f-4ad0-85bf-815718269baa" ], + "x-ms-correlation-request-id": [ "853b3f55-462f-4ad0-85bf-815718269baa" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T132035Z:853b3f55-462f-4ad0-85bf-815718269baa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:01:44 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:20:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "528" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"primaryConnectionString\":\"Endpoint=sb://namespacenamepfxymc.servicebus.windows.net/;SharedAccessKeyName=namespaceAuthRule1;SharedAccessKey=2yLeCRI/wRa9ybZDtfGxKDod7YfUgQyC4ehKwdRRtEE=\",\"secondaryConnectionString\":\"Endpoint=sb://namespacenamepfxymc.servicebus.windows.net/;SharedAccessKeyName=namespaceAuthRule1;SharedAccessKey=v9AiIYt+zURY4DVfHu/e7Ebr/GZZR3Rtdhzkcp0mfbA=\",\"primaryKey\":\"2yLeCRI/wRa9ybZDtfGxKDod7YfUgQyC4ehKwdRRtEE=\",\"secondaryKey\":\"v9AiIYt+zURY4DVfHu/e7Ebr/GZZR3Rtdhzkcp0mfbA=\",\"keyName\":\"namespaceAuthRule1\"}", + "Content": "{\"primaryConnectionString\":\"Endpoint=sb://namespacenamehjil09.servicebus.windows.net/;SharedAccessKeyName=namespaceAuthRule1;SharedAccessKey=0Z3rjRhrkqqfBptc4wqxkJjK7oZqiU3xD+ASbIB4lfA=\",\"secondaryConnectionString\":\"Endpoint=sb://namespacenamehjil09.servicebus.windows.net/;SharedAccessKeyName=namespaceAuthRule1;SharedAccessKey=l3sDYEXJv+msVJF8RLObbbrFYCnEjxsJC+ASbK1HKTA=\",\"primaryKey\":\"0Z3rjRhrkqqfBptc4wqxkJjK7oZqiU3xD+ASbIB4lfA=\",\"secondaryKey\":\"l3sDYEXJv+msVJF8RLObbbrFYCnEjxsJC+ASbK1HKTA=\",\"keyName\":\"namespaceAuthRule1\"}", "isContentBase64": false } }, - "New-AzServiceBusKey+[NoContext]+NewExpandedNamespace+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules/namespaceAuthRule1/regenerateKeys?api-version=2022-01-01-preview+4": { + "New-AzServiceBusKey+[NoContext]+NewExpandedNamespace+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules/namespaceAuthRule1/regenerateKeys?api-version=2022-10-01-preview+4": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules/namespaceAuthRule1/regenerateKeys?api-version=2022-01-01-preview", - "Content": "{\n \"keyType\": \"PrimaryKey\",\n \"key\": \"q/cFi7aATxe+vgzYZ4qqlAM3FtgLakhyPNmUh9YdHgE=\"\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules/namespaceAuthRule1/regenerateKeys?api-version=2022-10-01-preview", + "Content": "{\n \"keyType\": \"PrimaryKey\",\n \"key\": \"0LEcx/yFU8sXDd2zckHjaGoPK2eXXdO2uaOftyKomHw=\"\n}", "isContentBase64": false, "Headers": { }, @@ -131,28 +131,28 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1191" ], - "x-ms-request-id": [ "34972794-b131-4981-9e92-0fafd3caf5a1" ], - "x-ms-correlation-request-id": [ "34972794-b131-4981-9e92-0fafd3caf5a1" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T100151Z:34972794-b131-4981-9e92-0fafd3caf5a1" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1190" ], + "x-ms-request-id": [ "3d6e49e7-f244-49d9-8683-5ba8ce8f16a8" ], + "x-ms-correlation-request-id": [ "3d6e49e7-f244-49d9-8683-5ba8ce8f16a8" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T132042Z:3d6e49e7-f244-49d9-8683-5ba8ce8f16a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:01:50 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:20:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "528" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"primaryConnectionString\":\"Endpoint=sb://namespacenamepfxymc.servicebus.windows.net/;SharedAccessKeyName=namespaceAuthRule1;SharedAccessKey=q/cFi7aATxe+vgzYZ4qqlAM3FtgLakhyPNmUh9YdHgE=\",\"secondaryConnectionString\":\"Endpoint=sb://namespacenamepfxymc.servicebus.windows.net/;SharedAccessKeyName=namespaceAuthRule1;SharedAccessKey=v9AiIYt+zURY4DVfHu/e7Ebr/GZZR3Rtdhzkcp0mfbA=\",\"primaryKey\":\"q/cFi7aATxe+vgzYZ4qqlAM3FtgLakhyPNmUh9YdHgE=\",\"secondaryKey\":\"v9AiIYt+zURY4DVfHu/e7Ebr/GZZR3Rtdhzkcp0mfbA=\",\"keyName\":\"namespaceAuthRule1\"}", + "Content": "{\"primaryConnectionString\":\"Endpoint=sb://namespacenamehjil09.servicebus.windows.net/;SharedAccessKeyName=namespaceAuthRule1;SharedAccessKey=0LEcx/yFU8sXDd2zckHjaGoPK2eXXdO2uaOftyKomHw=\",\"secondaryConnectionString\":\"Endpoint=sb://namespacenamehjil09.servicebus.windows.net/;SharedAccessKeyName=namespaceAuthRule1;SharedAccessKey=l3sDYEXJv+msVJF8RLObbbrFYCnEjxsJC+ASbK1HKTA=\",\"primaryKey\":\"0LEcx/yFU8sXDd2zckHjaGoPK2eXXdO2uaOftyKomHw=\",\"secondaryKey\":\"l3sDYEXJv+msVJF8RLObbbrFYCnEjxsJC+ASbK1HKTA=\",\"keyName\":\"namespaceAuthRule1\"}", "isContentBase64": false } }, - "New-AzServiceBusKey+[NoContext]+NewExpandedNamespace+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules/namespaceAuthRule1/regenerateKeys?api-version=2022-01-01-preview+5": { + "New-AzServiceBusKey+[NoContext]+NewExpandedNamespace+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules/namespaceAuthRule1/regenerateKeys?api-version=2022-10-01-preview+5": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules/namespaceAuthRule1/regenerateKeys?api-version=2022-01-01-preview", - "Content": "{\n \"keyType\": \"SecondaryKey\",\n \"key\": \"q/cFi7aATxe+vgzYZ4qqlAM3FtgLakhyPNmUh9YdHgE=\"\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules/namespaceAuthRule1/regenerateKeys?api-version=2022-10-01-preview", + "Content": "{\n \"keyType\": \"SecondaryKey\",\n \"key\": \"0LEcx/yFU8sXDd2zckHjaGoPK2eXXdO2uaOftyKomHw=\"\n}", "isContentBase64": false, "Headers": { }, @@ -167,32 +167,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1190" ], - "x-ms-request-id": [ "9598cfe8-7b62-464d-adbc-7bf4811bf09f" ], - "x-ms-correlation-request-id": [ "9598cfe8-7b62-464d-adbc-7bf4811bf09f" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T100158Z:9598cfe8-7b62-464d-adbc-7bf4811bf09f" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1189" ], + "x-ms-request-id": [ "cd34eed1-80b8-4dbe-b2b7-173f1e8c0f3d" ], + "x-ms-correlation-request-id": [ "cd34eed1-80b8-4dbe-b2b7-173f1e8c0f3d" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T132049Z:cd34eed1-80b8-4dbe-b2b7-173f1e8c0f3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:01:58 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:20:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "528" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"primaryConnectionString\":\"Endpoint=sb://namespacenamepfxymc.servicebus.windows.net/;SharedAccessKeyName=namespaceAuthRule1;SharedAccessKey=q/cFi7aATxe+vgzYZ4qqlAM3FtgLakhyPNmUh9YdHgE=\",\"secondaryConnectionString\":\"Endpoint=sb://namespacenamepfxymc.servicebus.windows.net/;SharedAccessKeyName=namespaceAuthRule1;SharedAccessKey=q/cFi7aATxe+vgzYZ4qqlAM3FtgLakhyPNmUh9YdHgE=\",\"primaryKey\":\"q/cFi7aATxe+vgzYZ4qqlAM3FtgLakhyPNmUh9YdHgE=\",\"secondaryKey\":\"q/cFi7aATxe+vgzYZ4qqlAM3FtgLakhyPNmUh9YdHgE=\",\"keyName\":\"namespaceAuthRule1\"}", + "Content": "{\"primaryConnectionString\":\"Endpoint=sb://namespacenamehjil09.servicebus.windows.net/;SharedAccessKeyName=namespaceAuthRule1;SharedAccessKey=0LEcx/yFU8sXDd2zckHjaGoPK2eXXdO2uaOftyKomHw=\",\"secondaryConnectionString\":\"Endpoint=sb://namespacenamehjil09.servicebus.windows.net/;SharedAccessKeyName=namespaceAuthRule1;SharedAccessKey=0LEcx/yFU8sXDd2zckHjaGoPK2eXXdO2uaOftyKomHw=\",\"primaryKey\":\"0LEcx/yFU8sXDd2zckHjaGoPK2eXXdO2uaOftyKomHw=\",\"secondaryKey\":\"0LEcx/yFU8sXDd2zckHjaGoPK2eXXdO2uaOftyKomHw=\",\"keyName\":\"namespaceAuthRule1\"}", "isContentBase64": false } }, - "New-AzServiceBusKey+[NoContext]+NewExpandedQueue+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules/queueAuthRule1/ListKeys?api-version=2022-01-01-preview+1": { + "New-AzServiceBusKey+[NoContext]+NewExpandedQueue+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules/queueAuthRule1/ListKeys?api-version=2022-10-01-preview+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules/queueAuthRule1/ListKeys?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules/queueAuthRule1/ListKeys?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "90" ], - "x-ms-client-request-id": [ "d8d89929-caef-4c12-94f4-f6eb8dc25671" ], + "x-ms-unique-id": [ "89" ], + "x-ms-client-request-id": [ "d15cfed2-3574-45ca-b694-b3ea327281e0" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusQueueKey_List" ], "FullCommandName": [ "Get-AzServiceBusQueueKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -208,27 +208,27 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1189" ], - "x-ms-request-id": [ "3987085e-b971-456e-8fa9-7698cb68f3bb" ], - "x-ms-correlation-request-id": [ "3987085e-b971-456e-8fa9-7698cb68f3bb" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T100158Z:3987085e-b971-456e-8fa9-7698cb68f3bb" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1188" ], + "x-ms-request-id": [ "d5e4888f-331f-4805-9057-4d3db8d1ef6d" ], + "x-ms-correlation-request-id": [ "d5e4888f-331f-4805-9057-4d3db8d1ef6d" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T132050Z:d5e4888f-331f-4805-9057-4d3db8d1ef6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:01:58 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:20:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "552" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"primaryConnectionString\":\"Endpoint=sb://namespacenamepfxymc.servicebus.windows.net/;SharedAccessKeyName=queueAuthRule1;SharedAccessKey=NZd5+RSOSa8SFRqDTo/sZu8Ev8IazRg0WBWYw9zJYr8=;EntityPath=queue1\",\"secondaryConnectionString\":\"Endpoint=sb://namespacenamepfxymc.servicebus.windows.net/;SharedAccessKeyName=queueAuthRule1;SharedAccessKey=G6HRUQMl2FC3Q+wuUbjfEkFB/MyrfaGvM70kR4mfHR4=;EntityPath=queue1\",\"primaryKey\":\"NZd5+RSOSa8SFRqDTo/sZu8Ev8IazRg0WBWYw9zJYr8=\",\"secondaryKey\":\"G6HRUQMl2FC3Q+wuUbjfEkFB/MyrfaGvM70kR4mfHR4=\",\"keyName\":\"queueAuthRule1\"}", + "Content": "{\"primaryConnectionString\":\"Endpoint=sb://namespacenamehjil09.servicebus.windows.net/;SharedAccessKeyName=queueAuthRule1;SharedAccessKey=TuGK3T3dv9NQC1Ga7KezLgzpV5x/3NCRs+ASbNm52ok=;EntityPath=queue1\",\"secondaryConnectionString\":\"Endpoint=sb://namespacenamehjil09.servicebus.windows.net/;SharedAccessKeyName=queueAuthRule1;SharedAccessKey=jzpzNASrPw8MizwCbMpQLXBEbFaTGgyjo+ASbI+BS5c=;EntityPath=queue1\",\"primaryKey\":\"TuGK3T3dv9NQC1Ga7KezLgzpV5x/3NCRs+ASbNm52ok=\",\"secondaryKey\":\"jzpzNASrPw8MizwCbMpQLXBEbFaTGgyjo+ASbI+BS5c=\",\"keyName\":\"queueAuthRule1\"}", "isContentBase64": false } }, - "New-AzServiceBusKey+[NoContext]+NewExpandedQueue+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules/queueAuthRule1/regenerateKeys?api-version=2022-01-01-preview+2": { + "New-AzServiceBusKey+[NoContext]+NewExpandedQueue+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules/queueAuthRule1/regenerateKeys?api-version=2022-10-01-preview+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules/queueAuthRule1/regenerateKeys?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules/queueAuthRule1/regenerateKeys?api-version=2022-10-01-preview", "Content": "{\n \"keyType\": \"PrimaryKey\"\n}", "isContentBase64": false, "Headers": { @@ -244,27 +244,27 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1188" ], - "x-ms-request-id": [ "7e6b841f-9581-47c2-8e38-7eab17f3a53e" ], - "x-ms-correlation-request-id": [ "7e6b841f-9581-47c2-8e38-7eab17f3a53e" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T100159Z:7e6b841f-9581-47c2-8e38-7eab17f3a53e" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1187" ], + "x-ms-request-id": [ "8224fbe0-7dbb-4f06-9690-1ccbf6abf5c9" ], + "x-ms-correlation-request-id": [ "8224fbe0-7dbb-4f06-9690-1ccbf6abf5c9" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T132051Z:8224fbe0-7dbb-4f06-9690-1ccbf6abf5c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:01:59 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:20:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "552" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"primaryConnectionString\":\"Endpoint=sb://namespacenamepfxymc.servicebus.windows.net/;SharedAccessKeyName=queueAuthRule1;SharedAccessKey=WasO60v8O73qSCsrdfrpXXl9CXbSXNaSsKUnAmeGpOg=;EntityPath=queue1\",\"secondaryConnectionString\":\"Endpoint=sb://namespacenamepfxymc.servicebus.windows.net/;SharedAccessKeyName=queueAuthRule1;SharedAccessKey=G6HRUQMl2FC3Q+wuUbjfEkFB/MyrfaGvM70kR4mfHR4=;EntityPath=queue1\",\"primaryKey\":\"WasO60v8O73qSCsrdfrpXXl9CXbSXNaSsKUnAmeGpOg=\",\"secondaryKey\":\"G6HRUQMl2FC3Q+wuUbjfEkFB/MyrfaGvM70kR4mfHR4=\",\"keyName\":\"queueAuthRule1\"}", + "Content": "{\"primaryConnectionString\":\"Endpoint=sb://namespacenamehjil09.servicebus.windows.net/;SharedAccessKeyName=queueAuthRule1;SharedAccessKey=s1hNR5vPOkICdO9HlN5u+LOeJK2amMUXh+ASbIbFpIM=;EntityPath=queue1\",\"secondaryConnectionString\":\"Endpoint=sb://namespacenamehjil09.servicebus.windows.net/;SharedAccessKeyName=queueAuthRule1;SharedAccessKey=jzpzNASrPw8MizwCbMpQLXBEbFaTGgyjo+ASbI+BS5c=;EntityPath=queue1\",\"primaryKey\":\"s1hNR5vPOkICdO9HlN5u+LOeJK2amMUXh+ASbIbFpIM=\",\"secondaryKey\":\"jzpzNASrPw8MizwCbMpQLXBEbFaTGgyjo+ASbI+BS5c=\",\"keyName\":\"queueAuthRule1\"}", "isContentBase64": false } }, - "New-AzServiceBusKey+[NoContext]+NewExpandedQueue+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules/queueAuthRule1/regenerateKeys?api-version=2022-01-01-preview+3": { + "New-AzServiceBusKey+[NoContext]+NewExpandedQueue+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules/queueAuthRule1/regenerateKeys?api-version=2022-10-01-preview+3": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules/queueAuthRule1/regenerateKeys?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules/queueAuthRule1/regenerateKeys?api-version=2022-10-01-preview", "Content": "{\n \"keyType\": \"SecondaryKey\"\n}", "isContentBase64": false, "Headers": { @@ -280,28 +280,28 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1187" ], - "x-ms-request-id": [ "ff7e9511-97d5-4300-983b-44071f085189" ], - "x-ms-correlation-request-id": [ "ff7e9511-97d5-4300-983b-44071f085189" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T100200Z:ff7e9511-97d5-4300-983b-44071f085189" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1186" ], + "x-ms-request-id": [ "01aebe66-6699-435b-9073-727650467a96" ], + "x-ms-correlation-request-id": [ "01aebe66-6699-435b-9073-727650467a96" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T132052Z:01aebe66-6699-435b-9073-727650467a96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:02:00 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:20:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "552" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"primaryConnectionString\":\"Endpoint=sb://namespacenamepfxymc.servicebus.windows.net/;SharedAccessKeyName=queueAuthRule1;SharedAccessKey=WasO60v8O73qSCsrdfrpXXl9CXbSXNaSsKUnAmeGpOg=;EntityPath=queue1\",\"secondaryConnectionString\":\"Endpoint=sb://namespacenamepfxymc.servicebus.windows.net/;SharedAccessKeyName=queueAuthRule1;SharedAccessKey=x5IHuAnL28EKKIKr2LuW4bhBPu5O+/3sWcv12gfukuA=;EntityPath=queue1\",\"primaryKey\":\"WasO60v8O73qSCsrdfrpXXl9CXbSXNaSsKUnAmeGpOg=\",\"secondaryKey\":\"x5IHuAnL28EKKIKr2LuW4bhBPu5O+/3sWcv12gfukuA=\",\"keyName\":\"queueAuthRule1\"}", + "Content": "{\"primaryConnectionString\":\"Endpoint=sb://namespacenamehjil09.servicebus.windows.net/;SharedAccessKeyName=queueAuthRule1;SharedAccessKey=s1hNR5vPOkICdO9HlN5u+LOeJK2amMUXh+ASbIbFpIM=;EntityPath=queue1\",\"secondaryConnectionString\":\"Endpoint=sb://namespacenamehjil09.servicebus.windows.net/;SharedAccessKeyName=queueAuthRule1;SharedAccessKey=WWjX8zt0DuD5bHWeBU0Uh8TqV4E20akN6+ASbMgUU4I=;EntityPath=queue1\",\"primaryKey\":\"s1hNR5vPOkICdO9HlN5u+LOeJK2amMUXh+ASbIbFpIM=\",\"secondaryKey\":\"WWjX8zt0DuD5bHWeBU0Uh8TqV4E20akN6+ASbMgUU4I=\",\"keyName\":\"queueAuthRule1\"}", "isContentBase64": false } }, - "New-AzServiceBusKey+[NoContext]+NewExpandedQueue+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules/queueAuthRule1/regenerateKeys?api-version=2022-01-01-preview+4": { + "New-AzServiceBusKey+[NoContext]+NewExpandedQueue+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules/queueAuthRule1/regenerateKeys?api-version=2022-10-01-preview+4": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules/queueAuthRule1/regenerateKeys?api-version=2022-01-01-preview", - "Content": "{\n \"keyType\": \"PrimaryKey\",\n \"key\": \"q/cFi7aATxe+vgzYZ4qqlAM3FtgLakhyPNmUh9YdHgE=\"\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules/queueAuthRule1/regenerateKeys?api-version=2022-10-01-preview", + "Content": "{\n \"keyType\": \"PrimaryKey\",\n \"key\": \"0LEcx/yFU8sXDd2zckHjaGoPK2eXXdO2uaOftyKomHw=\"\n}", "isContentBase64": false, "Headers": { }, @@ -316,28 +316,28 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1186" ], - "x-ms-request-id": [ "4dc46778-c159-425a-b20a-8d1dc398013e" ], - "x-ms-correlation-request-id": [ "4dc46778-c159-425a-b20a-8d1dc398013e" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T100201Z:4dc46778-c159-425a-b20a-8d1dc398013e" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1185" ], + "x-ms-request-id": [ "3b5669a3-f4a4-4ee3-a948-bbedcc6b672f" ], + "x-ms-correlation-request-id": [ "3b5669a3-f4a4-4ee3-a948-bbedcc6b672f" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T132053Z:3b5669a3-f4a4-4ee3-a948-bbedcc6b672f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:02:01 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:20:53 GMT" ] }, "ContentHeaders": { "Content-Length": [ "552" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"primaryConnectionString\":\"Endpoint=sb://namespacenamepfxymc.servicebus.windows.net/;SharedAccessKeyName=queueAuthRule1;SharedAccessKey=q/cFi7aATxe+vgzYZ4qqlAM3FtgLakhyPNmUh9YdHgE=;EntityPath=queue1\",\"secondaryConnectionString\":\"Endpoint=sb://namespacenamepfxymc.servicebus.windows.net/;SharedAccessKeyName=queueAuthRule1;SharedAccessKey=x5IHuAnL28EKKIKr2LuW4bhBPu5O+/3sWcv12gfukuA=;EntityPath=queue1\",\"primaryKey\":\"q/cFi7aATxe+vgzYZ4qqlAM3FtgLakhyPNmUh9YdHgE=\",\"secondaryKey\":\"x5IHuAnL28EKKIKr2LuW4bhBPu5O+/3sWcv12gfukuA=\",\"keyName\":\"queueAuthRule1\"}", + "Content": "{\"primaryConnectionString\":\"Endpoint=sb://namespacenamehjil09.servicebus.windows.net/;SharedAccessKeyName=queueAuthRule1;SharedAccessKey=0LEcx/yFU8sXDd2zckHjaGoPK2eXXdO2uaOftyKomHw=;EntityPath=queue1\",\"secondaryConnectionString\":\"Endpoint=sb://namespacenamehjil09.servicebus.windows.net/;SharedAccessKeyName=queueAuthRule1;SharedAccessKey=WWjX8zt0DuD5bHWeBU0Uh8TqV4E20akN6+ASbMgUU4I=;EntityPath=queue1\",\"primaryKey\":\"0LEcx/yFU8sXDd2zckHjaGoPK2eXXdO2uaOftyKomHw=\",\"secondaryKey\":\"WWjX8zt0DuD5bHWeBU0Uh8TqV4E20akN6+ASbMgUU4I=\",\"keyName\":\"queueAuthRule1\"}", "isContentBase64": false } }, - "New-AzServiceBusKey+[NoContext]+NewExpandedQueue+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules/queueAuthRule1/regenerateKeys?api-version=2022-01-01-preview+5": { + "New-AzServiceBusKey+[NoContext]+NewExpandedQueue+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules/queueAuthRule1/regenerateKeys?api-version=2022-10-01-preview+5": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules/queueAuthRule1/regenerateKeys?api-version=2022-01-01-preview", - "Content": "{\n \"keyType\": \"SecondaryKey\",\n \"key\": \"q/cFi7aATxe+vgzYZ4qqlAM3FtgLakhyPNmUh9YdHgE=\"\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules/queueAuthRule1/regenerateKeys?api-version=2022-10-01-preview", + "Content": "{\n \"keyType\": \"SecondaryKey\",\n \"key\": \"0LEcx/yFU8sXDd2zckHjaGoPK2eXXdO2uaOftyKomHw=\"\n}", "isContentBase64": false, "Headers": { }, @@ -352,32 +352,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1185" ], - "x-ms-request-id": [ "a8efe598-7b35-4b2f-9cfe-57d9024b1134" ], - "x-ms-correlation-request-id": [ "a8efe598-7b35-4b2f-9cfe-57d9024b1134" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T100201Z:a8efe598-7b35-4b2f-9cfe-57d9024b1134" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1184" ], + "x-ms-request-id": [ "b7c4021f-4843-4272-8868-a9b06b196936" ], + "x-ms-correlation-request-id": [ "b7c4021f-4843-4272-8868-a9b06b196936" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T132054Z:b7c4021f-4843-4272-8868-a9b06b196936" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:02:01 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:20:53 GMT" ] }, "ContentHeaders": { "Content-Length": [ "552" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"primaryConnectionString\":\"Endpoint=sb://namespacenamepfxymc.servicebus.windows.net/;SharedAccessKeyName=queueAuthRule1;SharedAccessKey=q/cFi7aATxe+vgzYZ4qqlAM3FtgLakhyPNmUh9YdHgE=;EntityPath=queue1\",\"secondaryConnectionString\":\"Endpoint=sb://namespacenamepfxymc.servicebus.windows.net/;SharedAccessKeyName=queueAuthRule1;SharedAccessKey=q/cFi7aATxe+vgzYZ4qqlAM3FtgLakhyPNmUh9YdHgE=;EntityPath=queue1\",\"primaryKey\":\"q/cFi7aATxe+vgzYZ4qqlAM3FtgLakhyPNmUh9YdHgE=\",\"secondaryKey\":\"q/cFi7aATxe+vgzYZ4qqlAM3FtgLakhyPNmUh9YdHgE=\",\"keyName\":\"queueAuthRule1\"}", + "Content": "{\"primaryConnectionString\":\"Endpoint=sb://namespacenamehjil09.servicebus.windows.net/;SharedAccessKeyName=queueAuthRule1;SharedAccessKey=0LEcx/yFU8sXDd2zckHjaGoPK2eXXdO2uaOftyKomHw=;EntityPath=queue1\",\"secondaryConnectionString\":\"Endpoint=sb://namespacenamehjil09.servicebus.windows.net/;SharedAccessKeyName=queueAuthRule1;SharedAccessKey=0LEcx/yFU8sXDd2zckHjaGoPK2eXXdO2uaOftyKomHw=;EntityPath=queue1\",\"primaryKey\":\"0LEcx/yFU8sXDd2zckHjaGoPK2eXXdO2uaOftyKomHw=\",\"secondaryKey\":\"0LEcx/yFU8sXDd2zckHjaGoPK2eXXdO2uaOftyKomHw=\",\"keyName\":\"queueAuthRule1\"}", "isContentBase64": false } }, - "New-AzServiceBusKey+[NoContext]+NewExpandedTopic+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules/topicAuthRule1/ListKeys?api-version=2022-01-01-preview+1": { + "New-AzServiceBusKey+[NoContext]+NewExpandedTopic+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules/topicAuthRule1/ListKeys?api-version=2022-10-01-preview+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules/topicAuthRule1/ListKeys?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules/topicAuthRule1/ListKeys?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "95" ], - "x-ms-client-request-id": [ "8a12d419-7f0c-4f92-bbc3-5a33b8435cf9" ], + "x-ms-unique-id": [ "94" ], + "x-ms-client-request-id": [ "0d642ba4-4229-4b80-87c6-7c5163b6dc94" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusTopicKey_List" ], "FullCommandName": [ "Get-AzServiceBusTopicKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -393,27 +393,27 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1184" ], - "x-ms-request-id": [ "cb6d7f7a-ba43-4dc9-8fbf-7652f8d1ee85" ], - "x-ms-correlation-request-id": [ "cb6d7f7a-ba43-4dc9-8fbf-7652f8d1ee85" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T100202Z:cb6d7f7a-ba43-4dc9-8fbf-7652f8d1ee85" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1183" ], + "x-ms-request-id": [ "f3020133-655c-4f88-8eaf-d5e213a1744a" ], + "x-ms-correlation-request-id": [ "f3020133-655c-4f88-8eaf-d5e213a1744a" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T132055Z:f3020133-655c-4f88-8eaf-d5e213a1744a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:02:02 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:20:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "552" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"primaryConnectionString\":\"Endpoint=sb://namespacenamepfxymc.servicebus.windows.net/;SharedAccessKeyName=topicAuthRule1;SharedAccessKey=aJ9M+gKzSNoQ6k25RYOBE+eF8IF4W6oY5LRVlRFz51A=;EntityPath=topic1\",\"secondaryConnectionString\":\"Endpoint=sb://namespacenamepfxymc.servicebus.windows.net/;SharedAccessKeyName=topicAuthRule1;SharedAccessKey=4i0j6YwSI8ehDbxZvIi5uFHMw9r1Hv1yw+Y//ryrns0=;EntityPath=topic1\",\"primaryKey\":\"aJ9M+gKzSNoQ6k25RYOBE+eF8IF4W6oY5LRVlRFz51A=\",\"secondaryKey\":\"4i0j6YwSI8ehDbxZvIi5uFHMw9r1Hv1yw+Y//ryrns0=\",\"keyName\":\"topicAuthRule1\"}", + "Content": "{\"primaryConnectionString\":\"Endpoint=sb://namespacenamehjil09.servicebus.windows.net/;SharedAccessKeyName=topicAuthRule1;SharedAccessKey=f33rSyiL7n/z1Z6G+y3HdBjHEXVeZAboF+ASbHaw1ug=;EntityPath=topic1\",\"secondaryConnectionString\":\"Endpoint=sb://namespacenamehjil09.servicebus.windows.net/;SharedAccessKeyName=topicAuthRule1;SharedAccessKey=mpNbl3j14kx4+D5cH636PArtxDhUG6iNP+ASbP/FPQk=;EntityPath=topic1\",\"primaryKey\":\"f33rSyiL7n/z1Z6G+y3HdBjHEXVeZAboF+ASbHaw1ug=\",\"secondaryKey\":\"mpNbl3j14kx4+D5cH636PArtxDhUG6iNP+ASbP/FPQk=\",\"keyName\":\"topicAuthRule1\"}", "isContentBase64": false } }, - "New-AzServiceBusKey+[NoContext]+NewExpandedTopic+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules/topicAuthRule1/regenerateKeys?api-version=2022-01-01-preview+2": { + "New-AzServiceBusKey+[NoContext]+NewExpandedTopic+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules/topicAuthRule1/regenerateKeys?api-version=2022-10-01-preview+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules/topicAuthRule1/regenerateKeys?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules/topicAuthRule1/regenerateKeys?api-version=2022-10-01-preview", "Content": "{\n \"keyType\": \"PrimaryKey\"\n}", "isContentBase64": false, "Headers": { @@ -429,27 +429,27 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1183" ], - "x-ms-request-id": [ "9add2a1e-d5e1-44c3-b607-a463f4906aa0" ], - "x-ms-correlation-request-id": [ "9add2a1e-d5e1-44c3-b607-a463f4906aa0" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T100203Z:9add2a1e-d5e1-44c3-b607-a463f4906aa0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1182" ], + "x-ms-request-id": [ "539be0d6-ec52-4eed-b64c-1581d435b7fb" ], + "x-ms-correlation-request-id": [ "539be0d6-ec52-4eed-b64c-1581d435b7fb" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T132056Z:539be0d6-ec52-4eed-b64c-1581d435b7fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:02:03 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:20:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "552" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"primaryConnectionString\":\"Endpoint=sb://namespacenamepfxymc.servicebus.windows.net/;SharedAccessKeyName=topicAuthRule1;SharedAccessKey=cvcGTI7OUOrIndihVSqkI648gee5nr5f7+mjMtt2CKI=;EntityPath=topic1\",\"secondaryConnectionString\":\"Endpoint=sb://namespacenamepfxymc.servicebus.windows.net/;SharedAccessKeyName=topicAuthRule1;SharedAccessKey=4i0j6YwSI8ehDbxZvIi5uFHMw9r1Hv1yw+Y//ryrns0=;EntityPath=topic1\",\"primaryKey\":\"cvcGTI7OUOrIndihVSqkI648gee5nr5f7+mjMtt2CKI=\",\"secondaryKey\":\"4i0j6YwSI8ehDbxZvIi5uFHMw9r1Hv1yw+Y//ryrns0=\",\"keyName\":\"topicAuthRule1\"}", + "Content": "{\"primaryConnectionString\":\"Endpoint=sb://namespacenamehjil09.servicebus.windows.net/;SharedAccessKeyName=topicAuthRule1;SharedAccessKey=ymhvl4Pcm/+NwNbMy5DdKBkLwifstAUlN+ASbBany2s=;EntityPath=topic1\",\"secondaryConnectionString\":\"Endpoint=sb://namespacenamehjil09.servicebus.windows.net/;SharedAccessKeyName=topicAuthRule1;SharedAccessKey=mpNbl3j14kx4+D5cH636PArtxDhUG6iNP+ASbP/FPQk=;EntityPath=topic1\",\"primaryKey\":\"ymhvl4Pcm/+NwNbMy5DdKBkLwifstAUlN+ASbBany2s=\",\"secondaryKey\":\"mpNbl3j14kx4+D5cH636PArtxDhUG6iNP+ASbP/FPQk=\",\"keyName\":\"topicAuthRule1\"}", "isContentBase64": false } }, - "New-AzServiceBusKey+[NoContext]+NewExpandedTopic+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules/topicAuthRule1/regenerateKeys?api-version=2022-01-01-preview+3": { + "New-AzServiceBusKey+[NoContext]+NewExpandedTopic+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules/topicAuthRule1/regenerateKeys?api-version=2022-10-01-preview+3": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules/topicAuthRule1/regenerateKeys?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules/topicAuthRule1/regenerateKeys?api-version=2022-10-01-preview", "Content": "{\n \"keyType\": \"SecondaryKey\"\n}", "isContentBase64": false, "Headers": { @@ -465,28 +465,28 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1182" ], - "x-ms-request-id": [ "1f7cc851-f610-4b54-99d2-5e0b3c58b2eb" ], - "x-ms-correlation-request-id": [ "1f7cc851-f610-4b54-99d2-5e0b3c58b2eb" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T100203Z:1f7cc851-f610-4b54-99d2-5e0b3c58b2eb" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1181" ], + "x-ms-request-id": [ "d4cfa497-f862-4dbc-9882-6239b6562d37" ], + "x-ms-correlation-request-id": [ "d4cfa497-f862-4dbc-9882-6239b6562d37" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T132057Z:d4cfa497-f862-4dbc-9882-6239b6562d37" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:02:03 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:20:56 GMT" ] }, "ContentHeaders": { "Content-Length": [ "552" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"primaryConnectionString\":\"Endpoint=sb://namespacenamepfxymc.servicebus.windows.net/;SharedAccessKeyName=topicAuthRule1;SharedAccessKey=cvcGTI7OUOrIndihVSqkI648gee5nr5f7+mjMtt2CKI=;EntityPath=topic1\",\"secondaryConnectionString\":\"Endpoint=sb://namespacenamepfxymc.servicebus.windows.net/;SharedAccessKeyName=topicAuthRule1;SharedAccessKey=0NYt4FbAYu7N52LK7zYf34lzclza6Dsy8xLp6z28g8k=;EntityPath=topic1\",\"primaryKey\":\"cvcGTI7OUOrIndihVSqkI648gee5nr5f7+mjMtt2CKI=\",\"secondaryKey\":\"0NYt4FbAYu7N52LK7zYf34lzclza6Dsy8xLp6z28g8k=\",\"keyName\":\"topicAuthRule1\"}", + "Content": "{\"primaryConnectionString\":\"Endpoint=sb://namespacenamehjil09.servicebus.windows.net/;SharedAccessKeyName=topicAuthRule1;SharedAccessKey=ymhvl4Pcm/+NwNbMy5DdKBkLwifstAUlN+ASbBany2s=;EntityPath=topic1\",\"secondaryConnectionString\":\"Endpoint=sb://namespacenamehjil09.servicebus.windows.net/;SharedAccessKeyName=topicAuthRule1;SharedAccessKey=sLmza7WIitVxVpqY5vVcw2wdu1weZAgOD+ASbEmPzZk=;EntityPath=topic1\",\"primaryKey\":\"ymhvl4Pcm/+NwNbMy5DdKBkLwifstAUlN+ASbBany2s=\",\"secondaryKey\":\"sLmza7WIitVxVpqY5vVcw2wdu1weZAgOD+ASbEmPzZk=\",\"keyName\":\"topicAuthRule1\"}", "isContentBase64": false } }, - "New-AzServiceBusKey+[NoContext]+NewExpandedTopic+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules/topicAuthRule1/regenerateKeys?api-version=2022-01-01-preview+4": { + "New-AzServiceBusKey+[NoContext]+NewExpandedTopic+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules/topicAuthRule1/regenerateKeys?api-version=2022-10-01-preview+4": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules/topicAuthRule1/regenerateKeys?api-version=2022-01-01-preview", - "Content": "{\n \"keyType\": \"PrimaryKey\",\n \"key\": \"q/cFi7aATxe+vgzYZ4qqlAM3FtgLakhyPNmUh9YdHgE=\"\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules/topicAuthRule1/regenerateKeys?api-version=2022-10-01-preview", + "Content": "{\n \"keyType\": \"PrimaryKey\",\n \"key\": \"0LEcx/yFU8sXDd2zckHjaGoPK2eXXdO2uaOftyKomHw=\"\n}", "isContentBase64": false, "Headers": { }, @@ -501,28 +501,28 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1181" ], - "x-ms-request-id": [ "5d6c5fba-a315-4059-ba4d-9a09abc69102" ], - "x-ms-correlation-request-id": [ "5d6c5fba-a315-4059-ba4d-9a09abc69102" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T100204Z:5d6c5fba-a315-4059-ba4d-9a09abc69102" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1180" ], + "x-ms-request-id": [ "0a91d2fe-3f5b-4572-bdb9-729ca9c37bb9" ], + "x-ms-correlation-request-id": [ "0a91d2fe-3f5b-4572-bdb9-729ca9c37bb9" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T132058Z:0a91d2fe-3f5b-4572-bdb9-729ca9c37bb9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:02:04 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:20:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "552" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"primaryConnectionString\":\"Endpoint=sb://namespacenamepfxymc.servicebus.windows.net/;SharedAccessKeyName=topicAuthRule1;SharedAccessKey=q/cFi7aATxe+vgzYZ4qqlAM3FtgLakhyPNmUh9YdHgE=;EntityPath=topic1\",\"secondaryConnectionString\":\"Endpoint=sb://namespacenamepfxymc.servicebus.windows.net/;SharedAccessKeyName=topicAuthRule1;SharedAccessKey=0NYt4FbAYu7N52LK7zYf34lzclza6Dsy8xLp6z28g8k=;EntityPath=topic1\",\"primaryKey\":\"q/cFi7aATxe+vgzYZ4qqlAM3FtgLakhyPNmUh9YdHgE=\",\"secondaryKey\":\"0NYt4FbAYu7N52LK7zYf34lzclza6Dsy8xLp6z28g8k=\",\"keyName\":\"topicAuthRule1\"}", + "Content": "{\"primaryConnectionString\":\"Endpoint=sb://namespacenamehjil09.servicebus.windows.net/;SharedAccessKeyName=topicAuthRule1;SharedAccessKey=0LEcx/yFU8sXDd2zckHjaGoPK2eXXdO2uaOftyKomHw=;EntityPath=topic1\",\"secondaryConnectionString\":\"Endpoint=sb://namespacenamehjil09.servicebus.windows.net/;SharedAccessKeyName=topicAuthRule1;SharedAccessKey=sLmza7WIitVxVpqY5vVcw2wdu1weZAgOD+ASbEmPzZk=;EntityPath=topic1\",\"primaryKey\":\"0LEcx/yFU8sXDd2zckHjaGoPK2eXXdO2uaOftyKomHw=\",\"secondaryKey\":\"sLmza7WIitVxVpqY5vVcw2wdu1weZAgOD+ASbEmPzZk=\",\"keyName\":\"topicAuthRule1\"}", "isContentBase64": false } }, - "New-AzServiceBusKey+[NoContext]+NewExpandedTopic+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules/topicAuthRule1/regenerateKeys?api-version=2022-01-01-preview+5": { + "New-AzServiceBusKey+[NoContext]+NewExpandedTopic+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules/topicAuthRule1/regenerateKeys?api-version=2022-10-01-preview+5": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules/topicAuthRule1/regenerateKeys?api-version=2022-01-01-preview", - "Content": "{\n \"keyType\": \"SecondaryKey\",\n \"key\": \"q/cFi7aATxe+vgzYZ4qqlAM3FtgLakhyPNmUh9YdHgE=\"\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules/topicAuthRule1/regenerateKeys?api-version=2022-10-01-preview", + "Content": "{\n \"keyType\": \"SecondaryKey\",\n \"key\": \"0LEcx/yFU8sXDd2zckHjaGoPK2eXXdO2uaOftyKomHw=\"\n}", "isContentBase64": false, "Headers": { }, @@ -537,20 +537,20 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1180" ], - "x-ms-request-id": [ "70e8d054-c101-4530-92ae-09d744fa9987" ], - "x-ms-correlation-request-id": [ "70e8d054-c101-4530-92ae-09d744fa9987" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T100205Z:70e8d054-c101-4530-92ae-09d744fa9987" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1179" ], + "x-ms-request-id": [ "24135dd0-8506-4160-931e-4b311151c344" ], + "x-ms-correlation-request-id": [ "24135dd0-8506-4160-931e-4b311151c344" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T132058Z:24135dd0-8506-4160-931e-4b311151c344" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:02:05 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:20:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "552" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"primaryConnectionString\":\"Endpoint=sb://namespacenamepfxymc.servicebus.windows.net/;SharedAccessKeyName=topicAuthRule1;SharedAccessKey=q/cFi7aATxe+vgzYZ4qqlAM3FtgLakhyPNmUh9YdHgE=;EntityPath=topic1\",\"secondaryConnectionString\":\"Endpoint=sb://namespacenamepfxymc.servicebus.windows.net/;SharedAccessKeyName=topicAuthRule1;SharedAccessKey=q/cFi7aATxe+vgzYZ4qqlAM3FtgLakhyPNmUh9YdHgE=;EntityPath=topic1\",\"primaryKey\":\"q/cFi7aATxe+vgzYZ4qqlAM3FtgLakhyPNmUh9YdHgE=\",\"secondaryKey\":\"q/cFi7aATxe+vgzYZ4qqlAM3FtgLakhyPNmUh9YdHgE=\",\"keyName\":\"topicAuthRule1\"}", + "Content": "{\"primaryConnectionString\":\"Endpoint=sb://namespacenamehjil09.servicebus.windows.net/;SharedAccessKeyName=topicAuthRule1;SharedAccessKey=0LEcx/yFU8sXDd2zckHjaGoPK2eXXdO2uaOftyKomHw=;EntityPath=topic1\",\"secondaryConnectionString\":\"Endpoint=sb://namespacenamehjil09.servicebus.windows.net/;SharedAccessKeyName=topicAuthRule1;SharedAccessKey=0LEcx/yFU8sXDd2zckHjaGoPK2eXXdO2uaOftyKomHw=;EntityPath=topic1\",\"primaryKey\":\"0LEcx/yFU8sXDd2zckHjaGoPK2eXXdO2uaOftyKomHw=\",\"secondaryKey\":\"0LEcx/yFU8sXDd2zckHjaGoPK2eXXdO2uaOftyKomHw=\",\"keyName\":\"topicAuthRule1\"}", "isContentBase64": false } } diff --git a/src/ServiceBus/ServiceBus.Autorest/test/New-AzServiceBusNamespaceV2.Recording.json b/src/ServiceBus/ServiceBus.Autorest/test/New-AzServiceBusNamespaceV2.Recording.json index 284f161c1b38..4f895ccc78c6 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/New-AzServiceBusNamespaceV2.Recording.json +++ b/src/ServiceBus/ServiceBus.Autorest/test/New-AzServiceBusNamespaceV2.Recording.json @@ -1,8 +1,8 @@ { - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV2dnku5s?api-version=2022-01-01-preview+1": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV26ovc29?api-version=2022-10-01-preview+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV2dnku5s?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV26ovc29?api-version=2022-10-01-preview", "Content": "{\n \"location\": \"eastus\",\n \"sku\": {\n \"name\": \"Standard\",\n \"tier\": \"Standard\"\n }\n}", "isContentBase64": false, "Headers": { @@ -17,35 +17,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "a510f2bf-b105-46ab-b548-d6d15b8f4db1_M5SN1_M5SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1191" ], - "x-ms-correlation-request-id": [ "fa91baaf-6e50-4f4f-bee8-8d5a92bd696d" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T100246Z:fa91baaf-6e50-4f4f-bee8-8d5a92bd696d" ], + "x-ms-request-id": [ "f36b01ae-ca72-4cd9-a029-9cac5747c10c_M2CH3_M2CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1190" ], + "x-ms-correlation-request-id": [ "29064617-9db1-4faf-8570-758b5bfd242e" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T132130Z:29064617-9db1-4faf-8570-758b5bfd242e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:02:46 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:21:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "701" ], + "Content-Length": [ "732" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV2dnku5s\",\"name\":\"namespaceV2dnku5s\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Created\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev2dnku5s\",\"createdAt\":\"2022-11-24T10:02:45.977Z\",\"updatedAt\":\"2022-11-24T10:02:45.977Z\",\"serviceBusEndpoint\":\"https://namespaceV2dnku5s.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", + "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV26ovc29\",\"name\":\"namespaceV26ovc29\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Created\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev26ovc29\",\"createdAt\":\"2023-02-19T13:21:29.033Z\",\"updatedAt\":\"2023-02-19T13:21:29.033Z\",\"serviceBusEndpoint\":\"https://namespaceV26ovc29.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV2dnku5s?api-version=2022-01-01-preview+2": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV26ovc29?api-version=2022-10-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV2dnku5s?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV26ovc29?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "101" ], - "x-ms-client-request-id": [ "dadd1088-afbe-4e0e-8391-d4b3ab9d112f" ], + "x-ms-unique-id": [ "100" ], + "x-ms-client-request-id": [ "e7a5f3d8-95c3-4e44-9137-ecd29ef18861" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -59,35 +59,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "423bed0b-e91c-4b56-a9c8-d604196dfc98_M5SN1_M5SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11929" ], - "x-ms-correlation-request-id": [ "6ee3da82-5811-474a-9d3b-2cf760a1ecdd" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T100316Z:6ee3da82-5811-474a-9d3b-2cf760a1ecdd" ], + "x-ms-request-id": [ "0ca9ba9f-2b4b-422b-be4c-7af28df47bbd_M2CH3_M2CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11898" ], + "x-ms-correlation-request-id": [ "29334bf2-91f1-47ee-93dc-eb421741ce2e" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T132200Z:29334bf2-91f1-47ee-93dc-eb421741ce2e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:03:16 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:22:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "701" ], + "Content-Length": [ "732" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV2dnku5s\",\"name\":\"namespaceV2dnku5s\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Created\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev2dnku5s\",\"createdAt\":\"2022-11-24T10:02:45.977Z\",\"updatedAt\":\"2022-11-24T10:02:45.977Z\",\"serviceBusEndpoint\":\"https://namespaceV2dnku5s.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", + "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV26ovc29\",\"name\":\"namespaceV26ovc29\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Created\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev26ovc29\",\"createdAt\":\"2023-02-19T13:21:29.033Z\",\"updatedAt\":\"2023-02-19T13:21:29.033Z\",\"serviceBusEndpoint\":\"https://namespaceV26ovc29.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV2dnku5s?api-version=2022-01-01-preview+3": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV26ovc29?api-version=2022-10-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV2dnku5s?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV26ovc29?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "102" ], - "x-ms-client-request-id": [ "dadd1088-afbe-4e0e-8391-d4b3ab9d112f" ], + "x-ms-unique-id": [ "101" ], + "x-ms-client-request-id": [ "e7a5f3d8-95c3-4e44-9137-ecd29ef18861" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -101,35 +101,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "3e55c146-4e1f-4d4b-8636-010ca3c9a997_M5SN1_M5SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11928" ], - "x-ms-correlation-request-id": [ "b7254890-6748-4c36-81ec-6e94f3696c06" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T100347Z:b7254890-6748-4c36-81ec-6e94f3696c06" ], + "x-ms-request-id": [ "9242c4b9-c23b-4bb1-9d1e-1cfdae5814d5_M9CH3_M9CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11897" ], + "x-ms-correlation-request-id": [ "f6b851c6-66ac-409b-a44c-32fcb99f50bc" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T132231Z:f6b851c6-66ac-409b-a44c-32fcb99f50bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:03:46 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:22:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "699" ], + "Content-Length": [ "728" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV2dnku5s\",\"name\":\"namespaceV2dnku5s\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev2dnku5s\",\"createdAt\":\"2022-11-24T10:02:45.977Z\",\"updatedAt\":\"2022-11-24T10:03:30.423Z\",\"serviceBusEndpoint\":\"https://namespaceV2dnku5s.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV26ovc29\",\"name\":\"namespaceV26ovc29\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev26ovc29\",\"createdAt\":\"2023-02-19T13:21:29.033Z\",\"updatedAt\":\"2023-02-19T13:22:12.2Z\",\"serviceBusEndpoint\":\"https://namespaceV26ovc29.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV2dnku5s?api-version=2022-01-01-preview+4": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV26ovc29?api-version=2022-10-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV2dnku5s?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV26ovc29?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "103" ], - "x-ms-client-request-id": [ "dadd1088-afbe-4e0e-8391-d4b3ab9d112f" ], + "x-ms-unique-id": [ "102" ], + "x-ms-client-request-id": [ "e7a5f3d8-95c3-4e44-9137-ecd29ef18861" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -143,30 +143,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "2789a6f0-226f-40e6-a6ed-18e540e8efce_M5SN1_M5SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11927" ], - "x-ms-correlation-request-id": [ "b93e6baa-97bc-4180-a265-cc9a43048ae0" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T100347Z:b93e6baa-97bc-4180-a265-cc9a43048ae0" ], + "x-ms-request-id": [ "e83d29b7-2921-48f8-94e7-7f7f8bb43fe7_M9CH3_M9CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11896" ], + "x-ms-correlation-request-id": [ "b4008ad1-a478-41e7-bb3a-fb0a85be46f3" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T132232Z:b4008ad1-a478-41e7-bb3a-fb0a85be46f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:03:46 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:22:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "699" ], + "Content-Length": [ "728" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV2dnku5s\",\"name\":\"namespaceV2dnku5s\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev2dnku5s\",\"createdAt\":\"2022-11-24T10:02:45.977Z\",\"updatedAt\":\"2022-11-24T10:03:30.423Z\",\"serviceBusEndpoint\":\"https://namespaceV2dnku5s.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV26ovc29\",\"name\":\"namespaceV26ovc29\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev26ovc29\",\"createdAt\":\"2023-02-19T13:21:29.033Z\",\"updatedAt\":\"2023-02-19T13:22:12.2Z\",\"serviceBusEndpoint\":\"https://namespaceV26ovc29.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview+5": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview+5": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview", - "Content": "{\n \"location\": \"southcentralus\",\n \"tags\": {\n \"k1\": \"v1\",\n \"k2\": \"v2\"\n },\n \"sku\": {\n \"name\": \"Standard\",\n \"tier\": \"Standard\"\n },\n \"properties\": {\n \"minimumTlsVersion\": \"1.1\",\n \"disableLocalAuth\": true\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview", + "Content": "{\n \"location\": \"southcentralus\",\n \"tags\": {\n \"k2\": \"v2\",\n \"k1\": \"v1\"\n },\n \"sku\": {\n \"name\": \"Standard\",\n \"tier\": \"Standard\"\n },\n \"properties\": {\n \"minimumTlsVersion\": \"1.1\",\n \"disableLocalAuth\": true\n }\n}", "isContentBase64": false, "Headers": { }, @@ -180,35 +180,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "aa612923-9e1c-4a92-835f-3d1844afd92b_M5SN1_M5SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1190" ], - "x-ms-correlation-request-id": [ "6ec5c707-d3d5-4ece-bc35-526b3076b7b5" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T100349Z:6ec5c707-d3d5-4ece-bc35-526b3076b7b5" ], + "x-ms-request-id": [ "687ba696-4443-4e49-8f81-3df1fafcba01_M9CH3_M9CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1189" ], + "x-ms-correlation-request-id": [ "d98a4d4b-aa97-4ce1-892c-f464c858b2db" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T132238Z:d98a4d4b-aa97-4ce1-892c-f464c858b2db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:03:49 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:22:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "728" ], + "Content-Length": [ "757" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u\",\"name\":\"namespaceV3mt0g8u\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k1\":\"v1\",\"k2\":\"v2\"},\"properties\":{\"minimumTlsVersion\":\"1.1\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Created\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3mt0g8u\",\"createdAt\":\"2022-11-24T10:03:49.013Z\",\"updatedAt\":\"2022-11-24T10:03:49.013Z\",\"serviceBusEndpoint\":\"https://namespaceV3mt0g8u.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", + "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui\",\"name\":\"namespaceV3279pui\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k2\":\"v2\",\"k1\":\"v1\"},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.1\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Created\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3279pui\",\"createdAt\":\"2023-02-19T13:22:36.43Z\",\"updatedAt\":\"2023-02-19T13:22:36.43Z\",\"serviceBusEndpoint\":\"https://namespaceV3279pui.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview+6": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "105" ], - "x-ms-client-request-id": [ "09c8884d-33f0-4632-bb9e-f940d5012a4c" ], + "x-ms-unique-id": [ "104" ], + "x-ms-client-request-id": [ "43e03a08-d68c-4720-9d68-d80412711d52" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -222,35 +222,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "30788699-5c15-4b63-803a-5ea5bd47050e_M5SN1_M5SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11926" ], - "x-ms-correlation-request-id": [ "f2b6abdc-48a3-49ec-9270-c390352ff6d0" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T100420Z:f2b6abdc-48a3-49ec-9270-c390352ff6d0" ], + "x-ms-request-id": [ "3436bc8d-7d31-43f6-ae96-358f775f44de_M9CH3_M9CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11895" ], + "x-ms-correlation-request-id": [ "503bda2b-182d-4a0e-9204-40392d1eaeda" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T132308Z:503bda2b-182d-4a0e-9204-40392d1eaeda" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:04:19 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:23:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "728" ], + "Content-Length": [ "757" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u\",\"name\":\"namespaceV3mt0g8u\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k1\":\"v1\",\"k2\":\"v2\"},\"properties\":{\"minimumTlsVersion\":\"1.1\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Created\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3mt0g8u\",\"createdAt\":\"2022-11-24T10:03:49.013Z\",\"updatedAt\":\"2022-11-24T10:03:49.013Z\",\"serviceBusEndpoint\":\"https://namespaceV3mt0g8u.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", + "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui\",\"name\":\"namespaceV3279pui\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k2\":\"v2\",\"k1\":\"v1\"},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.1\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Created\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3279pui\",\"createdAt\":\"2023-02-19T13:22:36.43Z\",\"updatedAt\":\"2023-02-19T13:22:36.43Z\",\"serviceBusEndpoint\":\"https://namespaceV3279pui.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview+7": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "106" ], - "x-ms-client-request-id": [ "09c8884d-33f0-4632-bb9e-f940d5012a4c" ], + "x-ms-unique-id": [ "105" ], + "x-ms-client-request-id": [ "43e03a08-d68c-4720-9d68-d80412711d52" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -264,35 +264,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "18aca434-9ac1-4b3b-88a6-7e8a01ee04fa_M5SN1_M5SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11925" ], - "x-ms-correlation-request-id": [ "ae711476-75f9-476b-b7d0-f097a36ccfb1" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T100450Z:ae711476-75f9-476b-b7d0-f097a36ccfb1" ], + "x-ms-request-id": [ "bd3238dd-fdf2-4dfa-a65a-0243f22b722a_M9CH3_M9CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11894" ], + "x-ms-correlation-request-id": [ "f6aa074b-888c-4074-96da-dd428b7fe4a0" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T132339Z:f6aa074b-888c-4074-96da-dd428b7fe4a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:04:50 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:23:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "725" ], + "Content-Length": [ "756" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u\",\"name\":\"namespaceV3mt0g8u\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k1\":\"v1\",\"k2\":\"v2\"},\"properties\":{\"minimumTlsVersion\":\"1.1\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3mt0g8u\",\"createdAt\":\"2022-11-24T10:03:49.013Z\",\"updatedAt\":\"2022-11-24T10:04:31.46Z\",\"serviceBusEndpoint\":\"https://namespaceV3mt0g8u.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui\",\"name\":\"namespaceV3279pui\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k2\":\"v2\",\"k1\":\"v1\"},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.1\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3279pui\",\"createdAt\":\"2023-02-19T13:22:36.43Z\",\"updatedAt\":\"2023-02-19T13:23:20.603Z\",\"serviceBusEndpoint\":\"https://namespaceV3279pui.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview+8": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "107" ], - "x-ms-client-request-id": [ "09c8884d-33f0-4632-bb9e-f940d5012a4c" ], + "x-ms-unique-id": [ "106" ], + "x-ms-client-request-id": [ "43e03a08-d68c-4720-9d68-d80412711d52" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -306,78 +306,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "bed97c8a-9686-4ae3-8d4d-ad63ad01dfc7_M5SN1_M5SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11924" ], - "x-ms-correlation-request-id": [ "34b5d472-cfc5-4866-82b4-001e28aa1e60" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T100450Z:34b5d472-cfc5-4866-82b4-001e28aa1e60" ], + "x-ms-request-id": [ "60f05030-ffa7-44ab-9396-ef2f1d37d1b0_M9CH3_M9CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11893" ], + "x-ms-correlation-request-id": [ "eba1f98b-6615-465a-bf8c-bbe5eb6c8dec" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T132339Z:eba1f98b-6615-465a-bf8c-bbe5eb6c8dec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:04:50 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:23:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "725" ], + "Content-Length": [ "756" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u\",\"name\":\"namespaceV3mt0g8u\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k1\":\"v1\",\"k2\":\"v2\"},\"properties\":{\"minimumTlsVersion\":\"1.1\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3mt0g8u\",\"createdAt\":\"2022-11-24T10:03:49.013Z\",\"updatedAt\":\"2022-11-24T10:04:31.46Z\",\"serviceBusEndpoint\":\"https://namespaceV3mt0g8u.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui\",\"name\":\"namespaceV3279pui\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k2\":\"v2\",\"k1\":\"v1\"},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.1\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3279pui\",\"createdAt\":\"2023-02-19T13:22:36.43Z\",\"updatedAt\":\"2023-02-19T13:23:20.603Z\",\"serviceBusEndpoint\":\"https://namespaceV3279pui.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26?api-version=2022-01-01-preview+9": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3?api-version=2022-10-01-preview+9": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26?api-version=2022-01-01-preview", - "Content": "{\n \"location\": \"eastus\",\n \"sku\": {\n \"name\": \"Premium\",\n \"tier\": \"Premium\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\"\n },\n \"properties\": {\n \"zoneRedundant\": true\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3?api-version=2022-10-01-preview", + "Content": "{\n \"location\": \"eastus\",\n \"sku\": {\n \"name\": \"Premium\",\n \"tier\": \"Premium\",\n \"capacity\": 2\n },\n \"identity\": {\n \"type\": \"SystemAssigned\"\n },\n \"properties\": {\n \"zoneRedundant\": true,\n \"premiumMessagingPartitions\": 2\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "186" ] - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "6cd76b8c-e7a8-4c88-871f-613ecc1b55c0_M5SN1_M5SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1189" ], - "x-ms-correlation-request-id": [ "cc0b318e-dd66-418e-9596-5125cb7a6944" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T100454Z:cc0b318e-dd66-418e-9596-5125cb7a6944" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:04:54 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "862" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26\",\"name\":\"namespaceV47aly26\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"1247ecb3-5b7a-4b93-9450-645cb6677151\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev47aly26\",\"createdAt\":\"2022-11-24T10:04:53.567Z\",\"updatedAt\":\"2022-11-24T10:04:53.567Z\",\"serviceBusEndpoint\":\"https://namespaceV47aly26.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", - "isContentBase64": false - } - }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26?api-version=2022-01-01-preview+10": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26?api-version=2022-01-01-preview", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "109" ], - "x-ms-client-request-id": [ "cb1de972-17db-40de-a139-6f0fec0efcf8" ], - "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], - "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceBus/0.1.0" ] - }, - "ContentHeaders": { + "Content-Length": [ "242" ] } }, "Response": { @@ -385,35 +343,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "414979c6-503e-4bc5-9794-961d0cb078c8_M4SN1_M4SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11923" ], - "x-ms-correlation-request-id": [ "2a4efdc9-a1d7-4f2d-b505-879b7f05b446" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T100524Z:2a4efdc9-a1d7-4f2d-b505-879b7f05b446" ], + "x-ms-request-id": [ "9cb33e36-170e-44c1-81cd-9c6e112f71b2_M9CH3_M9CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1188" ], + "x-ms-correlation-request-id": [ "ae88e24b-969d-4511-885d-cab115d93d33" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T132346Z:ae88e24b-969d-4511-885d-cab115d93d33" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:05:24 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:23:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "862" ], + "Content-Length": [ "893" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26\",\"name\":\"namespaceV47aly26\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"1247ecb3-5b7a-4b93-9450-645cb6677151\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev47aly26\",\"createdAt\":\"2022-11-24T10:04:53.567Z\",\"updatedAt\":\"2022-11-24T10:04:53.567Z\",\"serviceBusEndpoint\":\"https://namespaceV47aly26.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3\",\"name\":\"namespaceV4du8ar3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"2a305b03-0d60-43cc-a5a0-0d7854bcbca1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"premiumMessagingPartitions\":2,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev4du8ar3\",\"createdAt\":\"2023-02-19T13:23:44.963Z\",\"updatedAt\":\"2023-02-19T13:23:44.963Z\",\"serviceBusEndpoint\":\"https://namespaceV4du8ar3.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26?api-version=2022-01-01-preview+11": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3?api-version=2022-10-01-preview+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "110" ], - "x-ms-client-request-id": [ "cb1de972-17db-40de-a139-6f0fec0efcf8" ], + "x-ms-unique-id": [ "108" ], + "x-ms-client-request-id": [ "d30ede55-b065-4477-837b-069146ec6db6" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -427,35 +385,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "a60df214-6ec3-4005-bc3f-a5e02365ebbf_M4SN1_M4SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11922" ], - "x-ms-correlation-request-id": [ "5bcd4bd1-8fbd-4758-8baa-1b925ca5d097" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T100555Z:5bcd4bd1-8fbd-4758-8baa-1b925ca5d097" ], + "x-ms-request-id": [ "1909f2fa-61a7-4149-9321-04ed664589fd_M9CH3_M9CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11892" ], + "x-ms-correlation-request-id": [ "c5828384-5cd0-4787-a839-eca5e1be2c2a" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T132416Z:c5828384-5cd0-4787-a839-eca5e1be2c2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:05:54 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:24:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "862" ], + "Content-Length": [ "893" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26\",\"name\":\"namespaceV47aly26\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"1247ecb3-5b7a-4b93-9450-645cb6677151\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev47aly26\",\"createdAt\":\"2022-11-24T10:04:53.567Z\",\"updatedAt\":\"2022-11-24T10:04:53.567Z\",\"serviceBusEndpoint\":\"https://namespaceV47aly26.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3\",\"name\":\"namespaceV4du8ar3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"2a305b03-0d60-43cc-a5a0-0d7854bcbca1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"premiumMessagingPartitions\":2,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev4du8ar3\",\"createdAt\":\"2023-02-19T13:23:44.963Z\",\"updatedAt\":\"2023-02-19T13:23:44.963Z\",\"serviceBusEndpoint\":\"https://namespaceV4du8ar3.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26?api-version=2022-01-01-preview+12": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3?api-version=2022-10-01-preview+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "111" ], - "x-ms-client-request-id": [ "cb1de972-17db-40de-a139-6f0fec0efcf8" ], + "x-ms-unique-id": [ "109" ], + "x-ms-client-request-id": [ "d30ede55-b065-4477-837b-069146ec6db6" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -469,35 +427,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "07ac7b0b-f0b4-470c-aa6d-2d8115df2ce8_M4SN1_M4SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11921" ], - "x-ms-correlation-request-id": [ "b2273226-258f-4a96-81b8-53410f6144ca" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T100625Z:b2273226-258f-4a96-81b8-53410f6144ca" ], + "x-ms-request-id": [ "9376b4d3-72ae-4471-918f-e808513e2ce7_M9CH3_M9CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11891" ], + "x-ms-correlation-request-id": [ "541a5173-4856-4e59-a3e8-6cfeca0eb012" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T132447Z:541a5173-4856-4e59-a3e8-6cfeca0eb012" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:06:24 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:24:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "858" ], + "Content-Length": [ "893" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26\",\"name\":\"namespaceV47aly26\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"1247ecb3-5b7a-4b93-9450-645cb6677151\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev47aly26\",\"createdAt\":\"2022-11-24T10:04:53.567Z\",\"updatedAt\":\"2022-11-24T10:06:03.757Z\",\"serviceBusEndpoint\":\"https://namespaceV47aly26.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3\",\"name\":\"namespaceV4du8ar3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"2a305b03-0d60-43cc-a5a0-0d7854bcbca1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"premiumMessagingPartitions\":2,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev4du8ar3\",\"createdAt\":\"2023-02-19T13:23:44.963Z\",\"updatedAt\":\"2023-02-19T13:23:44.963Z\",\"serviceBusEndpoint\":\"https://namespaceV4du8ar3.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26?api-version=2022-01-01-preview+13": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3?api-version=2022-10-01-preview+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "112" ], - "x-ms-client-request-id": [ "cb1de972-17db-40de-a139-6f0fec0efcf8" ], + "x-ms-unique-id": [ "110" ], + "x-ms-client-request-id": [ "d30ede55-b065-4477-837b-069146ec6db6" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -511,35 +469,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "f97fcc1a-3dec-49bb-b0e9-ffb30a03470b_M4SN1_M4SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11920" ], - "x-ms-correlation-request-id": [ "c98eb702-30c0-4766-8643-3bc25aecb965" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T100655Z:c98eb702-30c0-4766-8643-3bc25aecb965" ], + "x-ms-request-id": [ "98cc9fac-8be2-411d-8144-1f0e1a97663f_M9CH3_M9CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11890" ], + "x-ms-correlation-request-id": [ "832bce11-ca53-4101-8fc7-e6982efb9eaf" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T132517Z:832bce11-ca53-4101-8fc7-e6982efb9eaf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:06:54 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:25:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "858" ], + "Content-Length": [ "889" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26\",\"name\":\"namespaceV47aly26\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"1247ecb3-5b7a-4b93-9450-645cb6677151\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev47aly26\",\"createdAt\":\"2022-11-24T10:04:53.567Z\",\"updatedAt\":\"2022-11-24T10:06:03.757Z\",\"serviceBusEndpoint\":\"https://namespaceV47aly26.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3\",\"name\":\"namespaceV4du8ar3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"2a305b03-0d60-43cc-a5a0-0d7854bcbca1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"premiumMessagingPartitions\":2,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev4du8ar3\",\"createdAt\":\"2023-02-19T13:23:44.963Z\",\"updatedAt\":\"2023-02-19T13:25:07.497Z\",\"serviceBusEndpoint\":\"https://namespaceV4du8ar3.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26?api-version=2022-01-01-preview+14": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3?api-version=2022-10-01-preview+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "113" ], - "x-ms-client-request-id": [ "cb1de972-17db-40de-a139-6f0fec0efcf8" ], + "x-ms-unique-id": [ "111" ], + "x-ms-client-request-id": [ "d30ede55-b065-4477-837b-069146ec6db6" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -553,35 +511,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "3d1b9de1-d01b-4004-8f3b-f5b7475dbf78_M5SN1_M5SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11919" ], - "x-ms-correlation-request-id": [ "b34f8400-2056-492f-8091-c69883b61cb5" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T100725Z:b34f8400-2056-492f-8091-c69883b61cb5" ], + "x-ms-request-id": [ "6c41a204-d876-4436-8f6f-2e62560fe440_M9CH3_M9CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11889" ], + "x-ms-correlation-request-id": [ "68569303-93cf-43bd-be0c-cf96ee747fb8" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T132547Z:68569303-93cf-43bd-be0c-cf96ee747fb8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:07:24 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:25:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "858" ], + "Content-Length": [ "889" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26\",\"name\":\"namespaceV47aly26\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"1247ecb3-5b7a-4b93-9450-645cb6677151\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev47aly26\",\"createdAt\":\"2022-11-24T10:04:53.567Z\",\"updatedAt\":\"2022-11-24T10:06:03.757Z\",\"serviceBusEndpoint\":\"https://namespaceV47aly26.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3\",\"name\":\"namespaceV4du8ar3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"2a305b03-0d60-43cc-a5a0-0d7854bcbca1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"premiumMessagingPartitions\":2,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev4du8ar3\",\"createdAt\":\"2023-02-19T13:23:44.963Z\",\"updatedAt\":\"2023-02-19T13:25:07.497Z\",\"serviceBusEndpoint\":\"https://namespaceV4du8ar3.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26?api-version=2022-01-01-preview+15": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3?api-version=2022-10-01-preview+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "114" ], - "x-ms-client-request-id": [ "cb1de972-17db-40de-a139-6f0fec0efcf8" ], + "x-ms-unique-id": [ "112" ], + "x-ms-client-request-id": [ "d30ede55-b065-4477-837b-069146ec6db6" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -595,35 +553,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "70a89774-8fc3-413a-a335-f81ed61b1ec3_M3SN1_M3SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11918" ], - "x-ms-correlation-request-id": [ "20bea739-4b73-4509-bad1-9e62852294cf" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T100756Z:20bea739-4b73-4509-bad1-9e62852294cf" ], + "x-ms-request-id": [ "467874d7-289d-4d52-9e6f-aa14a8dccbc4_M9CH3_M9CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11888" ], + "x-ms-correlation-request-id": [ "929346db-0b85-48a3-b3b9-1a3b1ed4a9fb" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T132618Z:929346db-0b85-48a3-b3b9-1a3b1ed4a9fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:07:56 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:26:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "858" ], + "Content-Length": [ "889" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26\",\"name\":\"namespaceV47aly26\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"1247ecb3-5b7a-4b93-9450-645cb6677151\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev47aly26\",\"createdAt\":\"2022-11-24T10:04:53.567Z\",\"updatedAt\":\"2022-11-24T10:06:03.757Z\",\"serviceBusEndpoint\":\"https://namespaceV47aly26.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3\",\"name\":\"namespaceV4du8ar3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"2a305b03-0d60-43cc-a5a0-0d7854bcbca1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"premiumMessagingPartitions\":2,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev4du8ar3\",\"createdAt\":\"2023-02-19T13:23:44.963Z\",\"updatedAt\":\"2023-02-19T13:25:07.497Z\",\"serviceBusEndpoint\":\"https://namespaceV4du8ar3.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26?api-version=2022-01-01-preview+16": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3?api-version=2022-10-01-preview+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "115" ], - "x-ms-client-request-id": [ "cb1de972-17db-40de-a139-6f0fec0efcf8" ], + "x-ms-unique-id": [ "113" ], + "x-ms-client-request-id": [ "d30ede55-b065-4477-837b-069146ec6db6" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -637,35 +595,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "00c11c3b-7504-496b-afc4-1a43a6a0e894_M3SN1_M3SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11917" ], - "x-ms-correlation-request-id": [ "ef55d222-50c3-447b-a993-18bf69dfee23" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T100826Z:ef55d222-50c3-447b-a993-18bf69dfee23" ], + "x-ms-request-id": [ "d076d473-239d-4bab-90a1-cb89174384ff_M9CH3_M9CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11887" ], + "x-ms-correlation-request-id": [ "5cf82e68-18ad-4d9b-a2cd-e97287fbc0d0" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T132648Z:5cf82e68-18ad-4d9b-a2cd-e97287fbc0d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:08:26 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:26:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "858" ], + "Content-Length": [ "889" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26\",\"name\":\"namespaceV47aly26\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"1247ecb3-5b7a-4b93-9450-645cb6677151\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev47aly26\",\"createdAt\":\"2022-11-24T10:04:53.567Z\",\"updatedAt\":\"2022-11-24T10:06:03.757Z\",\"serviceBusEndpoint\":\"https://namespaceV47aly26.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3\",\"name\":\"namespaceV4du8ar3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"2a305b03-0d60-43cc-a5a0-0d7854bcbca1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"premiumMessagingPartitions\":2,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev4du8ar3\",\"createdAt\":\"2023-02-19T13:23:44.963Z\",\"updatedAt\":\"2023-02-19T13:25:07.497Z\",\"serviceBusEndpoint\":\"https://namespaceV4du8ar3.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26?api-version=2022-01-01-preview+17": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3?api-version=2022-10-01-preview+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "116" ], - "x-ms-client-request-id": [ "cb1de972-17db-40de-a139-6f0fec0efcf8" ], + "x-ms-unique-id": [ "114" ], + "x-ms-client-request-id": [ "d30ede55-b065-4477-837b-069146ec6db6" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -679,35 +637,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "4183bfc0-64c2-4348-8f83-7f2495ea050a_M0SN1_M0SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11916" ], - "x-ms-correlation-request-id": [ "012aae10-69a9-484b-a6ba-7ce547f5bb0a" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T100856Z:012aae10-69a9-484b-a6ba-7ce547f5bb0a" ], + "x-ms-request-id": [ "40ee00fb-71f4-43e0-80d1-a689426cf60e_M9CH3_M9CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11886" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-correlation-request-id": [ "651e4f6e-d9e6-4761-b846-f1ab95e0b5a9" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T132719Z:651e4f6e-d9e6-4761-b846-f1ab95e0b5a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:08:56 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:27:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "858" ], + "Content-Length": [ "889" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26\",\"name\":\"namespaceV47aly26\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"1247ecb3-5b7a-4b93-9450-645cb6677151\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev47aly26\",\"createdAt\":\"2022-11-24T10:04:53.567Z\",\"updatedAt\":\"2022-11-24T10:06:03.757Z\",\"serviceBusEndpoint\":\"https://namespaceV47aly26.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3\",\"name\":\"namespaceV4du8ar3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"2a305b03-0d60-43cc-a5a0-0d7854bcbca1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"premiumMessagingPartitions\":2,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev4du8ar3\",\"createdAt\":\"2023-02-19T13:23:44.963Z\",\"updatedAt\":\"2023-02-19T13:25:07.497Z\",\"serviceBusEndpoint\":\"https://namespaceV4du8ar3.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26?api-version=2022-01-01-preview+18": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3?api-version=2022-10-01-preview+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "117" ], - "x-ms-client-request-id": [ "cb1de972-17db-40de-a139-6f0fec0efcf8" ], + "x-ms-unique-id": [ "115" ], + "x-ms-client-request-id": [ "d30ede55-b065-4477-837b-069146ec6db6" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -721,35 +679,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "ba0434a0-f9de-430f-9a68-d607c5b9a1d8_M0SN1_M0SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11915" ], - "x-ms-correlation-request-id": [ "04f6e452-af57-4cff-afb5-db620f35f394" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T100926Z:04f6e452-af57-4cff-afb5-db620f35f394" ], + "x-ms-request-id": [ "57314b6c-6991-4116-8c66-ee52b429d87b_M1CH3_M1CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11885" ], + "x-ms-correlation-request-id": [ "629dd864-498e-4cff-bfe5-d990e911c756" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T132750Z:629dd864-498e-4cff-bfe5-d990e911c756" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:09:26 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:27:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "858" ], + "Content-Length": [ "889" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26\",\"name\":\"namespaceV47aly26\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"1247ecb3-5b7a-4b93-9450-645cb6677151\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev47aly26\",\"createdAt\":\"2022-11-24T10:04:53.567Z\",\"updatedAt\":\"2022-11-24T10:06:03.757Z\",\"serviceBusEndpoint\":\"https://namespaceV47aly26.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3\",\"name\":\"namespaceV4du8ar3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"2a305b03-0d60-43cc-a5a0-0d7854bcbca1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"premiumMessagingPartitions\":2,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev4du8ar3\",\"createdAt\":\"2023-02-19T13:23:44.963Z\",\"updatedAt\":\"2023-02-19T13:25:07.497Z\",\"serviceBusEndpoint\":\"https://namespaceV4du8ar3.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26?api-version=2022-01-01-preview+19": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3?api-version=2022-10-01-preview+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "118" ], - "x-ms-client-request-id": [ "cb1de972-17db-40de-a139-6f0fec0efcf8" ], + "x-ms-unique-id": [ "116" ], + "x-ms-client-request-id": [ "d30ede55-b065-4477-837b-069146ec6db6" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -763,35 +721,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "5fb6021a-3c20-4b04-8c19-f3156d406eea_M0SN1_M0SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11914" ], - "x-ms-correlation-request-id": [ "33025692-3f57-43a2-be4b-d3b38681872a" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T100956Z:33025692-3f57-43a2-be4b-d3b38681872a" ], + "x-ms-request-id": [ "9e3baf7d-a8ef-4235-9b16-0200213dfb7a_M1CH3_M1CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11884" ], + "x-ms-correlation-request-id": [ "f37a0048-f37e-42c9-bbb3-9b9279ee8b1c" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T132821Z:f37a0048-f37e-42c9-bbb3-9b9279ee8b1c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:09:56 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:28:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "858" ], + "Content-Length": [ "889" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26\",\"name\":\"namespaceV47aly26\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"1247ecb3-5b7a-4b93-9450-645cb6677151\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev47aly26\",\"createdAt\":\"2022-11-24T10:04:53.567Z\",\"updatedAt\":\"2022-11-24T10:06:03.757Z\",\"serviceBusEndpoint\":\"https://namespaceV47aly26.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3\",\"name\":\"namespaceV4du8ar3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"2a305b03-0d60-43cc-a5a0-0d7854bcbca1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"premiumMessagingPartitions\":2,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev4du8ar3\",\"createdAt\":\"2023-02-19T13:23:44.963Z\",\"updatedAt\":\"2023-02-19T13:25:07.497Z\",\"serviceBusEndpoint\":\"https://namespaceV4du8ar3.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26?api-version=2022-01-01-preview+20": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3?api-version=2022-10-01-preview+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "119" ], - "x-ms-client-request-id": [ "cb1de972-17db-40de-a139-6f0fec0efcf8" ], + "x-ms-unique-id": [ "117" ], + "x-ms-client-request-id": [ "d30ede55-b065-4477-837b-069146ec6db6" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -805,35 +763,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "69ef6251-f166-4f39-9f1c-fe94485770de_M0SN1_M0SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11913" ], - "x-ms-correlation-request-id": [ "00a1d2fa-7d75-4a47-bd29-f0f02a5ce752" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T101027Z:00a1d2fa-7d75-4a47-bd29-f0f02a5ce752" ], + "x-ms-request-id": [ "6bbc5de6-225a-411f-aa79-9df89956c850_M1CH3_M1CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11883" ], + "x-ms-correlation-request-id": [ "792e3aea-188e-4754-8b72-8004c0f21729" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T132851Z:792e3aea-188e-4754-8b72-8004c0f21729" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:10:26 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:28:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "858" ], + "Content-Length": [ "889" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26\",\"name\":\"namespaceV47aly26\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"1247ecb3-5b7a-4b93-9450-645cb6677151\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev47aly26\",\"createdAt\":\"2022-11-24T10:04:53.567Z\",\"updatedAt\":\"2022-11-24T10:06:03.757Z\",\"serviceBusEndpoint\":\"https://namespaceV47aly26.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3\",\"name\":\"namespaceV4du8ar3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"2a305b03-0d60-43cc-a5a0-0d7854bcbca1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"premiumMessagingPartitions\":2,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev4du8ar3\",\"createdAt\":\"2023-02-19T13:23:44.963Z\",\"updatedAt\":\"2023-02-19T13:25:07.497Z\",\"serviceBusEndpoint\":\"https://namespaceV4du8ar3.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26?api-version=2022-01-01-preview+21": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3?api-version=2022-10-01-preview+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "120" ], - "x-ms-client-request-id": [ "cb1de972-17db-40de-a139-6f0fec0efcf8" ], + "x-ms-unique-id": [ "118" ], + "x-ms-client-request-id": [ "d30ede55-b065-4477-837b-069146ec6db6" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -847,35 +805,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "1ca9d33e-aea1-4832-a90c-2b2b69ae5a15_M0SN1_M0SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11912" ], - "x-ms-correlation-request-id": [ "2391b991-bfa9-4868-acab-517c5e82d808" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T101057Z:2391b991-bfa9-4868-acab-517c5e82d808" ], + "x-ms-request-id": [ "9aeba76b-9396-4522-a4e1-f88a2c1e8b07_M1CH3_M1CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11882" ], + "x-ms-correlation-request-id": [ "cf8cb7ca-9984-4a42-8e85-125629d27810" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T132922Z:cf8cb7ca-9984-4a42-8e85-125629d27810" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:10:57 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:29:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "858" ], + "Content-Length": [ "889" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26\",\"name\":\"namespaceV47aly26\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"1247ecb3-5b7a-4b93-9450-645cb6677151\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev47aly26\",\"createdAt\":\"2022-11-24T10:04:53.567Z\",\"updatedAt\":\"2022-11-24T10:06:03.757Z\",\"serviceBusEndpoint\":\"https://namespaceV47aly26.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3\",\"name\":\"namespaceV4du8ar3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"2a305b03-0d60-43cc-a5a0-0d7854bcbca1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"premiumMessagingPartitions\":2,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev4du8ar3\",\"createdAt\":\"2023-02-19T13:23:44.963Z\",\"updatedAt\":\"2023-02-19T13:25:07.497Z\",\"serviceBusEndpoint\":\"https://namespaceV4du8ar3.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26?api-version=2022-01-01-preview+22": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3?api-version=2022-10-01-preview+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "121" ], - "x-ms-client-request-id": [ "cb1de972-17db-40de-a139-6f0fec0efcf8" ], + "x-ms-unique-id": [ "119" ], + "x-ms-client-request-id": [ "d30ede55-b065-4477-837b-069146ec6db6" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -889,35 +847,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "3fc75cd7-0025-4f88-a4a0-aafbe06597d9_M0SN1_M0SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11911" ], - "x-ms-correlation-request-id": [ "c161764a-7bf4-410c-a4dd-6cddb6221e70" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T101127Z:c161764a-7bf4-410c-a4dd-6cddb6221e70" ], + "x-ms-request-id": [ "6b650258-4c5a-402a-9836-0cd3b88ae0c7_M4CH3_M4CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11881" ], + "x-ms-correlation-request-id": [ "ac9f1d1b-d596-444b-982e-22d0deed4b80" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T132953Z:ac9f1d1b-d596-444b-982e-22d0deed4b80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:11:27 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:29:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "858" ], + "Content-Length": [ "889" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26\",\"name\":\"namespaceV47aly26\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"1247ecb3-5b7a-4b93-9450-645cb6677151\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev47aly26\",\"createdAt\":\"2022-11-24T10:04:53.567Z\",\"updatedAt\":\"2022-11-24T10:06:03.757Z\",\"serviceBusEndpoint\":\"https://namespaceV47aly26.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3\",\"name\":\"namespaceV4du8ar3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"2a305b03-0d60-43cc-a5a0-0d7854bcbca1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"premiumMessagingPartitions\":2,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev4du8ar3\",\"createdAt\":\"2023-02-19T13:23:44.963Z\",\"updatedAt\":\"2023-02-19T13:25:07.497Z\",\"serviceBusEndpoint\":\"https://namespaceV4du8ar3.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26?api-version=2022-01-01-preview+23": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3?api-version=2022-10-01-preview+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "122" ], - "x-ms-client-request-id": [ "cb1de972-17db-40de-a139-6f0fec0efcf8" ], + "x-ms-unique-id": [ "120" ], + "x-ms-client-request-id": [ "d30ede55-b065-4477-837b-069146ec6db6" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -931,35 +889,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "1dd5e271-ee04-4f81-b77d-cca06fc943ea_M0SN1_M0SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11910" ], - "x-ms-correlation-request-id": [ "faaab34f-bdc0-4bc4-88f7-755c8e005736" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T101157Z:faaab34f-bdc0-4bc4-88f7-755c8e005736" ], + "x-ms-request-id": [ "380070ff-266a-4cae-9c4e-217cf1caff6c_M4CH3_M4CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11880" ], + "x-ms-correlation-request-id": [ "77872402-a441-486f-a0d2-4349c2cb7f9b" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T133023Z:77872402-a441-486f-a0d2-4349c2cb7f9b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:11:56 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:30:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "858" ], + "Content-Length": [ "889" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26\",\"name\":\"namespaceV47aly26\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"1247ecb3-5b7a-4b93-9450-645cb6677151\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev47aly26\",\"createdAt\":\"2022-11-24T10:04:53.567Z\",\"updatedAt\":\"2022-11-24T10:06:03.757Z\",\"serviceBusEndpoint\":\"https://namespaceV47aly26.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3\",\"name\":\"namespaceV4du8ar3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"2a305b03-0d60-43cc-a5a0-0d7854bcbca1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"premiumMessagingPartitions\":2,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev4du8ar3\",\"createdAt\":\"2023-02-19T13:23:44.963Z\",\"updatedAt\":\"2023-02-19T13:25:07.497Z\",\"serviceBusEndpoint\":\"https://namespaceV4du8ar3.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26?api-version=2022-01-01-preview+24": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3?api-version=2022-10-01-preview+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "123" ], - "x-ms-client-request-id": [ "cb1de972-17db-40de-a139-6f0fec0efcf8" ], + "x-ms-unique-id": [ "121" ], + "x-ms-client-request-id": [ "d30ede55-b065-4477-837b-069146ec6db6" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -973,35 +931,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "f88d406a-4c67-41bd-90d6-78fbc84b969b_M5SN1_M5SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11909" ], - "x-ms-correlation-request-id": [ "da21614a-580a-4df3-90fc-d3160b3cfa7a" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T101228Z:da21614a-580a-4df3-90fc-d3160b3cfa7a" ], + "x-ms-request-id": [ "ba8247e6-f34f-4855-9520-5b55c4e94c66_M4CH3_M4CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11879" ], + "x-ms-correlation-request-id": [ "cc47d052-aee0-4081-af21-9a52661c99ec" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T133054Z:cc47d052-aee0-4081-af21-9a52661c99ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:12:27 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:30:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "849" ], + "Content-Length": [ "880" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26\",\"name\":\"namespaceV47aly26\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"1247ecb3-5b7a-4b93-9450-645cb6677151\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev47aly26\",\"createdAt\":\"2022-11-24T10:04:53.567Z\",\"updatedAt\":\"2022-11-24T10:12:08.553Z\",\"serviceBusEndpoint\":\"https://namespaceV47aly26.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3\",\"name\":\"namespaceV4du8ar3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"2a305b03-0d60-43cc-a5a0-0d7854bcbca1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"premiumMessagingPartitions\":2,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev4du8ar3\",\"createdAt\":\"2023-02-19T13:23:44.963Z\",\"updatedAt\":\"2023-02-19T13:30:52.143Z\",\"serviceBusEndpoint\":\"https://namespaceV4du8ar3.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26?api-version=2022-01-01-preview+25": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3?api-version=2022-10-01-preview+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "124" ], - "x-ms-client-request-id": [ "cb1de972-17db-40de-a139-6f0fec0efcf8" ], + "x-ms-unique-id": [ "122" ], + "x-ms-client-request-id": [ "d30ede55-b065-4477-837b-069146ec6db6" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1015,30 +973,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "b0c231fc-df1d-419f-b82f-5ad4ab9ffd6d_M5SN1_M5SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11908" ], - "x-ms-correlation-request-id": [ "071eee92-47cd-4ef9-aea0-cec667c75915" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T101228Z:071eee92-47cd-4ef9-aea0-cec667c75915" ], + "x-ms-request-id": [ "7992b9d8-9141-4d8a-b226-17fd997614c4_M4CH3_M4CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11878" ], + "x-ms-correlation-request-id": [ "029629be-96b9-42ff-b038-7a69371a30db" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T133054Z:029629be-96b9-42ff-b038-7a69371a30db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:12:28 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:30:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "849" ], + "Content-Length": [ "880" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26\",\"name\":\"namespaceV47aly26\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"1247ecb3-5b7a-4b93-9450-645cb6677151\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev47aly26\",\"createdAt\":\"2022-11-24T10:04:53.567Z\",\"updatedAt\":\"2022-11-24T10:12:08.553Z\",\"serviceBusEndpoint\":\"https://namespaceV47aly26.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3\",\"name\":\"namespaceV4du8ar3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"2a305b03-0d60-43cc-a5a0-0d7854bcbca1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"premiumMessagingPartitions\":2,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev4du8ar3\",\"createdAt\":\"2023-02-19T13:23:44.963Z\",\"updatedAt\":\"2023-02-19T13:30:52.143Z\",\"serviceBusEndpoint\":\"https://namespaceV4du8ar3.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk?api-version=2022-01-01-preview+26": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25?api-version=2022-10-01-preview+25": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk?api-version=2022-01-01-preview", - "Content": "{\n \"location\": \"northeurope\",\n \"sku\": {\n \"name\": \"Premium\",\n \"tier\": \"Premium\"\n },\n \"identity\": {\n \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\": {\n },\n \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\": {\n }\n }\n },\n \"properties\": {\n \"encryption\": {\n \"keyVaultProperties\": [\n {\n \"identity\": {\n \"userAssignedIdentity\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"\n },\n \"keyName\": \"key1\",\n \"keyVaultUri\": \"https://keyVaultNamexdjtwk.vault.azure.net/\"\n },\n {\n \"identity\": {\n \"userAssignedIdentity\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"\n },\n \"keyName\": \"key2\",\n \"keyVaultUri\": \"https://keyVaultNamexdjtwk.vault.azure.net/\"\n }\n ],\n \"keySource\": \"Microsoft.KeyVault\"\n }\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25?api-version=2022-10-01-preview", + "Content": "{\n \"location\": \"northeurope\",\n \"sku\": {\n \"name\": \"Premium\",\n \"tier\": \"Premium\"\n },\n \"identity\": {\n \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\": {\n },\n \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\": {\n }\n }\n },\n \"properties\": {\n \"encryption\": {\n \"keyVaultProperties\": [\n {\n \"identity\": {\n \"userAssignedIdentity\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"\n },\n \"keyName\": \"key1\",\n \"keyVaultUri\": \"https://keyVaultNamedur8ab.vault.azure.net/\"\n },\n {\n \"identity\": {\n \"userAssignedIdentity\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"\n },\n \"keyName\": \"key2\",\n \"keyVaultUri\": \"https://keyVaultNamedur8ab.vault.azure.net/\"\n }\n ],\n \"keySource\": \"Microsoft.KeyVault\"\n }\n }\n}", "isContentBase64": false, "Headers": { }, @@ -1052,35 +1010,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "29d7ec61-1930-4ff0-9006-444351b579b2_M5SN1_M5SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1188" ], - "x-ms-correlation-request-id": [ "494fbf4b-ef2b-4ee1-9c03-bc2d8467949d" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T101234Z:494fbf4b-ef2b-4ee1-9c03-bc2d8467949d" ], + "x-ms-request-id": [ "7f7cf727-e751-43b4-a480-bfc69c9a04cc_M4CH3_M4CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1187" ], + "x-ms-correlation-request-id": [ "59d25d6c-9ce0-43ca-ad03-58ed6843a4ca" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T133103Z:59d25d6c-9ce0-43ca-ad03-58ed6843a4ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:12:34 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:31:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1787" ], + "Content-Length": [ "1818" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk\",\"name\":\"namespaceV59mqfhk\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev59mqfhk\",\"createdAt\":\"2022-11-24T10:12:33.723Z\",\"updatedAt\":\"2022-11-24T10:12:33.723Z\",\"serviceBusEndpoint\":\"https://namespaceV59mqfhk.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25\",\"name\":\"namespaceV5xdns25\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev5xdns25\",\"createdAt\":\"2023-02-19T13:31:01.857Z\",\"updatedAt\":\"2023-02-19T13:31:01.857Z\",\"serviceBusEndpoint\":\"https://namespaceV5xdns25.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk?api-version=2022-01-01-preview+27": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25?api-version=2022-10-01-preview+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "126" ], - "x-ms-client-request-id": [ "9132cfae-58f0-4665-94f8-04199ad7c8d9" ], + "x-ms-unique-id": [ "124" ], + "x-ms-client-request-id": [ "5d2d4d4c-ab4b-4f2f-999f-feef083042f9" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1094,35 +1052,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "2b9f6332-7d21-4214-80e6-4fd90cd3f7f9_M5SN1_M5SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11907" ], - "x-ms-correlation-request-id": [ "648dd00b-c6a4-4b65-9185-f194feb61882" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T101305Z:648dd00b-c6a4-4b65-9185-f194feb61882" ], + "x-ms-request-id": [ "d71d21b1-e8f9-4af1-a2b2-cfea0319a73b_M4CH3_M4CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11877" ], + "x-ms-correlation-request-id": [ "94e3c278-911d-499b-ad6c-b5f910cf3645" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T133134Z:94e3c278-911d-499b-ad6c-b5f910cf3645" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:13:04 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:31:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1787" ], + "Content-Length": [ "1818" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk\",\"name\":\"namespaceV59mqfhk\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev59mqfhk\",\"createdAt\":\"2022-11-24T10:12:33.723Z\",\"updatedAt\":\"2022-11-24T10:12:33.723Z\",\"serviceBusEndpoint\":\"https://namespaceV59mqfhk.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25\",\"name\":\"namespaceV5xdns25\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev5xdns25\",\"createdAt\":\"2023-02-19T13:31:01.857Z\",\"updatedAt\":\"2023-02-19T13:31:01.857Z\",\"serviceBusEndpoint\":\"https://namespaceV5xdns25.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk?api-version=2022-01-01-preview+28": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25?api-version=2022-10-01-preview+27": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "127" ], - "x-ms-client-request-id": [ "9132cfae-58f0-4665-94f8-04199ad7c8d9" ], + "x-ms-unique-id": [ "125" ], + "x-ms-client-request-id": [ "5d2d4d4c-ab4b-4f2f-999f-feef083042f9" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1136,35 +1094,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "cc259780-bbdf-4892-a2e2-e1cadfb31f94_M5SN1_M5SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11906" ], - "x-ms-correlation-request-id": [ "fa68c44b-b1d3-4ca9-b96e-11b864757f9c" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T101335Z:fa68c44b-b1d3-4ca9-b96e-11b864757f9c" ], + "x-ms-request-id": [ "801783fd-dd7d-489e-93c5-4bc5dcd7eceb_M4CH3_M4CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11876" ], + "x-ms-correlation-request-id": [ "73bb59a0-1cd2-4ba0-a6bc-3667088f4fd3" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T133204Z:73bb59a0-1cd2-4ba0-a6bc-3667088f4fd3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:13:34 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:32:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1787" ], + "Content-Length": [ "1818" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk\",\"name\":\"namespaceV59mqfhk\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev59mqfhk\",\"createdAt\":\"2022-11-24T10:12:33.723Z\",\"updatedAt\":\"2022-11-24T10:12:33.723Z\",\"serviceBusEndpoint\":\"https://namespaceV59mqfhk.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25\",\"name\":\"namespaceV5xdns25\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev5xdns25\",\"createdAt\":\"2023-02-19T13:31:01.857Z\",\"updatedAt\":\"2023-02-19T13:31:01.857Z\",\"serviceBusEndpoint\":\"https://namespaceV5xdns25.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk?api-version=2022-01-01-preview+29": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25?api-version=2022-10-01-preview+28": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "128" ], - "x-ms-client-request-id": [ "9132cfae-58f0-4665-94f8-04199ad7c8d9" ], + "x-ms-unique-id": [ "126" ], + "x-ms-client-request-id": [ "5d2d4d4c-ab4b-4f2f-999f-feef083042f9" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1178,35 +1136,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "be4e41b6-eff3-41b1-948b-cf584b3cf99e_M5SN1_M5SN1" ], + "x-ms-request-id": [ "eac0abbc-d9df-4679-901e-b99c81128f16_M8SN1_M8SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11905" ], - "x-ms-correlation-request-id": [ "9a265b7b-c532-460d-9432-9c6fde124734" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T101406Z:9a265b7b-c532-460d-9432-9c6fde124734" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11875" ], + "x-ms-correlation-request-id": [ "663b3d81-5da8-4c92-b52f-32c1c8ad4ff4" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T133235Z:663b3d81-5da8-4c92-b52f-32c1c8ad4ff4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:14:05 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:32:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1782" ], + "Content-Length": [ "1814" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk\",\"name\":\"namespaceV59mqfhk\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev59mqfhk\",\"createdAt\":\"2022-11-24T10:12:33.723Z\",\"updatedAt\":\"2022-11-24T10:13:47.83Z\",\"serviceBusEndpoint\":\"https://namespaceV59mqfhk.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25\",\"name\":\"namespaceV5xdns25\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev5xdns25\",\"createdAt\":\"2023-02-19T13:31:01.857Z\",\"updatedAt\":\"2023-02-19T13:32:17.537Z\",\"serviceBusEndpoint\":\"https://namespaceV5xdns25.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk?api-version=2022-01-01-preview+30": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25?api-version=2022-10-01-preview+29": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "129" ], - "x-ms-client-request-id": [ "9132cfae-58f0-4665-94f8-04199ad7c8d9" ], + "x-ms-unique-id": [ "127" ], + "x-ms-client-request-id": [ "5d2d4d4c-ab4b-4f2f-999f-feef083042f9" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1220,35 +1178,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "fbe5235d-5240-4b04-82a1-1946cbd03cac_M5SN1_M5SN1" ], + "x-ms-request-id": [ "ce2079ff-de59-4de7-af63-fbe3fb45229b_M8SN1_M8SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11904" ], - "x-ms-correlation-request-id": [ "4d502035-c8d4-4127-865d-b21d993142fa" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T101436Z:4d502035-c8d4-4127-865d-b21d993142fa" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11874" ], + "x-ms-correlation-request-id": [ "c18bdb38-0c0a-44e2-af60-b84e5a11da7e" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T133306Z:c18bdb38-0c0a-44e2-af60-b84e5a11da7e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:14:35 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:33:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1782" ], + "Content-Length": [ "1814" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk\",\"name\":\"namespaceV59mqfhk\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev59mqfhk\",\"createdAt\":\"2022-11-24T10:12:33.723Z\",\"updatedAt\":\"2022-11-24T10:13:47.83Z\",\"serviceBusEndpoint\":\"https://namespaceV59mqfhk.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25\",\"name\":\"namespaceV5xdns25\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev5xdns25\",\"createdAt\":\"2023-02-19T13:31:01.857Z\",\"updatedAt\":\"2023-02-19T13:32:17.537Z\",\"serviceBusEndpoint\":\"https://namespaceV5xdns25.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk?api-version=2022-01-01-preview+31": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25?api-version=2022-10-01-preview+30": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "130" ], - "x-ms-client-request-id": [ "9132cfae-58f0-4665-94f8-04199ad7c8d9" ], + "x-ms-unique-id": [ "128" ], + "x-ms-client-request-id": [ "5d2d4d4c-ab4b-4f2f-999f-feef083042f9" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1262,35 +1220,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "59dea473-252d-4343-af67-3cfb98636eac_M5SN1_M5SN1" ], + "x-ms-request-id": [ "b6bba916-521c-4802-a866-d7f8b7291870_M8SN1_M8SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11903" ], - "x-ms-correlation-request-id": [ "d961437a-3497-4e24-a3d5-8e6d6e62bdb7" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T101506Z:d961437a-3497-4e24-a3d5-8e6d6e62bdb7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11873" ], + "x-ms-correlation-request-id": [ "fe3344fe-0f70-43d5-9514-792b2ed2cb87" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T133336Z:fe3344fe-0f70-43d5-9514-792b2ed2cb87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:15:05 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:33:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1782" ], + "Content-Length": [ "1814" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk\",\"name\":\"namespaceV59mqfhk\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev59mqfhk\",\"createdAt\":\"2022-11-24T10:12:33.723Z\",\"updatedAt\":\"2022-11-24T10:13:47.83Z\",\"serviceBusEndpoint\":\"https://namespaceV59mqfhk.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25\",\"name\":\"namespaceV5xdns25\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev5xdns25\",\"createdAt\":\"2023-02-19T13:31:01.857Z\",\"updatedAt\":\"2023-02-19T13:32:17.537Z\",\"serviceBusEndpoint\":\"https://namespaceV5xdns25.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk?api-version=2022-01-01-preview+32": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25?api-version=2022-10-01-preview+31": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "131" ], - "x-ms-client-request-id": [ "9132cfae-58f0-4665-94f8-04199ad7c8d9" ], + "x-ms-unique-id": [ "129" ], + "x-ms-client-request-id": [ "5d2d4d4c-ab4b-4f2f-999f-feef083042f9" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1304,35 +1262,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "e4736a01-911d-426e-9a90-0af99d53a926_M5SN1_M5SN1" ], + "x-ms-request-id": [ "ec5d38f0-61ce-4b15-a58c-f655ffeb736d_M10SN1_M10SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11902" ], - "x-ms-correlation-request-id": [ "30f698b1-9ab5-4c2b-9dba-698c4c31286a" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T101537Z:30f698b1-9ab5-4c2b-9dba-698c4c31286a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11872" ], + "x-ms-correlation-request-id": [ "1703791e-e799-4ae1-88a2-dac8e09552a9" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T133408Z:1703791e-e799-4ae1-88a2-dac8e09552a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:15:36 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:34:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1782" ], + "Content-Length": [ "1814" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk\",\"name\":\"namespaceV59mqfhk\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev59mqfhk\",\"createdAt\":\"2022-11-24T10:12:33.723Z\",\"updatedAt\":\"2022-11-24T10:13:47.83Z\",\"serviceBusEndpoint\":\"https://namespaceV59mqfhk.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25\",\"name\":\"namespaceV5xdns25\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev5xdns25\",\"createdAt\":\"2023-02-19T13:31:01.857Z\",\"updatedAt\":\"2023-02-19T13:32:17.537Z\",\"serviceBusEndpoint\":\"https://namespaceV5xdns25.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk?api-version=2022-01-01-preview+33": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25?api-version=2022-10-01-preview+32": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "132" ], - "x-ms-client-request-id": [ "9132cfae-58f0-4665-94f8-04199ad7c8d9" ], + "x-ms-unique-id": [ "130" ], + "x-ms-client-request-id": [ "5d2d4d4c-ab4b-4f2f-999f-feef083042f9" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1346,35 +1304,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "796ab122-63c1-49ed-88c0-a7d8d19971cf_M5SN1_M5SN1" ], + "x-ms-request-id": [ "0b2854d4-7a5d-46eb-aad8-a9887077c395_M6SN1_M6SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11901" ], - "x-ms-correlation-request-id": [ "02026bd4-21dc-428c-8f78-15c1effb088e" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T101607Z:02026bd4-21dc-428c-8f78-15c1effb088e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11871" ], + "x-ms-correlation-request-id": [ "3cf539d1-380e-4814-8d91-7ab9ec68e448" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T133438Z:3cf539d1-380e-4814-8d91-7ab9ec68e448" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:16:06 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:34:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1782" ], + "Content-Length": [ "1814" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk\",\"name\":\"namespaceV59mqfhk\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev59mqfhk\",\"createdAt\":\"2022-11-24T10:12:33.723Z\",\"updatedAt\":\"2022-11-24T10:13:47.83Z\",\"serviceBusEndpoint\":\"https://namespaceV59mqfhk.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25\",\"name\":\"namespaceV5xdns25\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev5xdns25\",\"createdAt\":\"2023-02-19T13:31:01.857Z\",\"updatedAt\":\"2023-02-19T13:32:17.537Z\",\"serviceBusEndpoint\":\"https://namespaceV5xdns25.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk?api-version=2022-01-01-preview+34": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25?api-version=2022-10-01-preview+33": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "133" ], - "x-ms-client-request-id": [ "9132cfae-58f0-4665-94f8-04199ad7c8d9" ], + "x-ms-unique-id": [ "131" ], + "x-ms-client-request-id": [ "5d2d4d4c-ab4b-4f2f-999f-feef083042f9" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1388,35 +1346,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "83563ae0-98e0-4a79-9b10-855e0b4ae309_M5SN1_M5SN1" ], + "x-ms-request-id": [ "586512c4-ee28-4369-97f3-5ee180630516_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11900" ], - "x-ms-correlation-request-id": [ "fb90ba27-c07b-4859-84b7-9bc467f7b8ef" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T101637Z:fb90ba27-c07b-4859-84b7-9bc467f7b8ef" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11870" ], + "x-ms-correlation-request-id": [ "f529308c-0fdf-4b51-938b-70902f3b58d0" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T133510Z:f529308c-0fdf-4b51-938b-70902f3b58d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:16:37 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:35:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1782" ], + "Content-Length": [ "1814" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk\",\"name\":\"namespaceV59mqfhk\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev59mqfhk\",\"createdAt\":\"2022-11-24T10:12:33.723Z\",\"updatedAt\":\"2022-11-24T10:13:47.83Z\",\"serviceBusEndpoint\":\"https://namespaceV59mqfhk.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25\",\"name\":\"namespaceV5xdns25\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev5xdns25\",\"createdAt\":\"2023-02-19T13:31:01.857Z\",\"updatedAt\":\"2023-02-19T13:32:17.537Z\",\"serviceBusEndpoint\":\"https://namespaceV5xdns25.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk?api-version=2022-01-01-preview+35": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25?api-version=2022-10-01-preview+34": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "134" ], - "x-ms-client-request-id": [ "9132cfae-58f0-4665-94f8-04199ad7c8d9" ], + "x-ms-unique-id": [ "132" ], + "x-ms-client-request-id": [ "5d2d4d4c-ab4b-4f2f-999f-feef083042f9" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1430,35 +1388,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "4f477001-c4b3-4903-a606-52ebe2677a9f_M5SN1_M5SN1" ], + "x-ms-request-id": [ "e3f038cc-c1e1-44c2-95d6-4bb5193865c2_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11899" ], - "x-ms-correlation-request-id": [ "13e34196-d16c-4379-8044-a34ba6dfb18d" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T101707Z:13e34196-d16c-4379-8044-a34ba6dfb18d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11869" ], + "x-ms-correlation-request-id": [ "c5d9cd79-f51e-453f-95bd-5a8aba911573" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T133541Z:c5d9cd79-f51e-453f-95bd-5a8aba911573" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:17:07 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:35:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1782" ], + "Content-Length": [ "1814" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk\",\"name\":\"namespaceV59mqfhk\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev59mqfhk\",\"createdAt\":\"2022-11-24T10:12:33.723Z\",\"updatedAt\":\"2022-11-24T10:13:47.83Z\",\"serviceBusEndpoint\":\"https://namespaceV59mqfhk.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25\",\"name\":\"namespaceV5xdns25\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev5xdns25\",\"createdAt\":\"2023-02-19T13:31:01.857Z\",\"updatedAt\":\"2023-02-19T13:32:17.537Z\",\"serviceBusEndpoint\":\"https://namespaceV5xdns25.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk?api-version=2022-01-01-preview+36": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25?api-version=2022-10-01-preview+35": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "135" ], - "x-ms-client-request-id": [ "9132cfae-58f0-4665-94f8-04199ad7c8d9" ], + "x-ms-unique-id": [ "133" ], + "x-ms-client-request-id": [ "5d2d4d4c-ab4b-4f2f-999f-feef083042f9" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1472,35 +1430,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "5a7cee1b-0726-4322-ae3d-93b788c2733c_M5SN1_M5SN1" ], + "x-ms-request-id": [ "7ac6f917-62d2-4135-8a08-12c68777a783_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11898" ], - "x-ms-correlation-request-id": [ "dc868f4c-1857-4f38-8390-61cc83ed50df" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T101738Z:dc868f4c-1857-4f38-8390-61cc83ed50df" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11868" ], + "x-ms-correlation-request-id": [ "30401ed0-52c0-4b0d-9671-f0a692c92bdc" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T133611Z:30401ed0-52c0-4b0d-9671-f0a692c92bdc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:17:38 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:36:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1782" ], + "Content-Length": [ "1814" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk\",\"name\":\"namespaceV59mqfhk\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev59mqfhk\",\"createdAt\":\"2022-11-24T10:12:33.723Z\",\"updatedAt\":\"2022-11-24T10:13:47.83Z\",\"serviceBusEndpoint\":\"https://namespaceV59mqfhk.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25\",\"name\":\"namespaceV5xdns25\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev5xdns25\",\"createdAt\":\"2023-02-19T13:31:01.857Z\",\"updatedAt\":\"2023-02-19T13:32:17.537Z\",\"serviceBusEndpoint\":\"https://namespaceV5xdns25.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk?api-version=2022-01-01-preview+37": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25?api-version=2022-10-01-preview+36": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "136" ], - "x-ms-client-request-id": [ "9132cfae-58f0-4665-94f8-04199ad7c8d9" ], + "x-ms-unique-id": [ "134" ], + "x-ms-client-request-id": [ "5d2d4d4c-ab4b-4f2f-999f-feef083042f9" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1514,35 +1472,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "bc1515fd-bc84-4d9f-9d8e-286644d7da76_M5SN1_M5SN1" ], + "x-ms-request-id": [ "afea7238-c3fc-498e-a63b-f2650dbc8f1b_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11897" ], - "x-ms-correlation-request-id": [ "908416c3-e294-4937-ad85-9664028e2896" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T101808Z:908416c3-e294-4937-ad85-9664028e2896" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11867" ], + "x-ms-correlation-request-id": [ "9700cfe1-3ec6-4672-93cc-67b4173c0633" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T133642Z:9700cfe1-3ec6-4672-93cc-67b4173c0633" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:18:08 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:36:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1782" ], + "Content-Length": [ "1814" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk\",\"name\":\"namespaceV59mqfhk\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev59mqfhk\",\"createdAt\":\"2022-11-24T10:12:33.723Z\",\"updatedAt\":\"2022-11-24T10:13:47.83Z\",\"serviceBusEndpoint\":\"https://namespaceV59mqfhk.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25\",\"name\":\"namespaceV5xdns25\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev5xdns25\",\"createdAt\":\"2023-02-19T13:31:01.857Z\",\"updatedAt\":\"2023-02-19T13:32:17.537Z\",\"serviceBusEndpoint\":\"https://namespaceV5xdns25.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk?api-version=2022-01-01-preview+38": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25?api-version=2022-10-01-preview+37": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "137" ], - "x-ms-client-request-id": [ "9132cfae-58f0-4665-94f8-04199ad7c8d9" ], + "x-ms-unique-id": [ "135" ], + "x-ms-client-request-id": [ "5d2d4d4c-ab4b-4f2f-999f-feef083042f9" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1556,35 +1514,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "1cb1dcd8-1011-48d0-8f05-9b032f971ae0_M8SN1_M8SN1" ], + "x-ms-request-id": [ "fcd1ee92-9bcd-4aed-8ec9-0415a810030a_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11896" ], - "x-ms-correlation-request-id": [ "f1dad4bc-e0a8-48d1-bf13-e0fd87a926a1" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T101838Z:f1dad4bc-e0a8-48d1-bf13-e0fd87a926a1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11866" ], + "x-ms-correlation-request-id": [ "d8690780-17f7-465e-8a3c-bd396361f77d" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T133712Z:d8690780-17f7-465e-8a3c-bd396361f77d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:18:38 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:37:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1782" ], + "Content-Length": [ "1814" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk\",\"name\":\"namespaceV59mqfhk\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev59mqfhk\",\"createdAt\":\"2022-11-24T10:12:33.723Z\",\"updatedAt\":\"2022-11-24T10:13:47.83Z\",\"serviceBusEndpoint\":\"https://namespaceV59mqfhk.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25\",\"name\":\"namespaceV5xdns25\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev5xdns25\",\"createdAt\":\"2023-02-19T13:31:01.857Z\",\"updatedAt\":\"2023-02-19T13:32:17.537Z\",\"serviceBusEndpoint\":\"https://namespaceV5xdns25.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk?api-version=2022-01-01-preview+39": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25?api-version=2022-10-01-preview+38": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "138" ], - "x-ms-client-request-id": [ "9132cfae-58f0-4665-94f8-04199ad7c8d9" ], + "x-ms-unique-id": [ "136" ], + "x-ms-client-request-id": [ "5d2d4d4c-ab4b-4f2f-999f-feef083042f9" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1598,35 +1556,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "aa0eaa4a-2acc-4461-aeea-0717b56d347c_M8SN1_M8SN1" ], + "x-ms-request-id": [ "de6f2a13-52a0-4f9b-8be2-1e33c3952764_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11895" ], - "x-ms-correlation-request-id": [ "a72ffb3c-db79-441e-a566-e44ea4d205a5" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T101909Z:a72ffb3c-db79-441e-a566-e44ea4d205a5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11865" ], + "x-ms-correlation-request-id": [ "8a52098b-3651-4294-868a-e581f11776c2" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T133743Z:8a52098b-3651-4294-868a-e581f11776c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:19:08 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:37:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1782" ], + "Content-Length": [ "1814" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk\",\"name\":\"namespaceV59mqfhk\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev59mqfhk\",\"createdAt\":\"2022-11-24T10:12:33.723Z\",\"updatedAt\":\"2022-11-24T10:13:47.83Z\",\"serviceBusEndpoint\":\"https://namespaceV59mqfhk.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25\",\"name\":\"namespaceV5xdns25\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev5xdns25\",\"createdAt\":\"2023-02-19T13:31:01.857Z\",\"updatedAt\":\"2023-02-19T13:32:17.537Z\",\"serviceBusEndpoint\":\"https://namespaceV5xdns25.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk?api-version=2022-01-01-preview+40": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25?api-version=2022-10-01-preview+39": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "139" ], - "x-ms-client-request-id": [ "9132cfae-58f0-4665-94f8-04199ad7c8d9" ], + "x-ms-unique-id": [ "137" ], + "x-ms-client-request-id": [ "5d2d4d4c-ab4b-4f2f-999f-feef083042f9" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1640,35 +1598,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "6be38c2c-1862-40ff-99f8-dc67ca95bb0e_M8SN1_M8SN1" ], + "x-ms-request-id": [ "1541d943-a790-4b42-be65-ffcf6e5b009f_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11894" ], - "x-ms-correlation-request-id": [ "8e990bcf-1858-4858-a054-8c3681a09757" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T101939Z:8e990bcf-1858-4858-a054-8c3681a09757" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11864" ], + "x-ms-correlation-request-id": [ "09beae28-21dc-491d-ba0b-f976a559df36" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T133814Z:09beae28-21dc-491d-ba0b-f976a559df36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:19:38 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:38:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1885" ], + "Content-Length": [ "1916" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk\",\"name\":\"namespaceV59mqfhk\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{\"clientId\":\"440d7336-c408-4327-ad13-10a4e71aad64\",\"principalId\":\"1bdb6af0-4284-47f4-b049-94aa2868d90b\"}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev59mqfhk\",\"createdAt\":\"2022-11-24T10:12:33.723Z\",\"updatedAt\":\"2022-11-24T10:19:37.153Z\",\"serviceBusEndpoint\":\"https://namespaceV59mqfhk.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25\",\"name\":\"namespaceV5xdns25\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{\"clientId\":\"440d7336-c408-4327-ad13-10a4e71aad64\",\"principalId\":\"1bdb6af0-4284-47f4-b049-94aa2868d90b\"}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev5xdns25\",\"createdAt\":\"2023-02-19T13:31:01.857Z\",\"updatedAt\":\"2023-02-19T13:38:11.273Z\",\"serviceBusEndpoint\":\"https://namespaceV5xdns25.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk?api-version=2022-01-01-preview+41": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25?api-version=2022-10-01-preview+40": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "140" ], - "x-ms-client-request-id": [ "9132cfae-58f0-4665-94f8-04199ad7c8d9" ], + "x-ms-unique-id": [ "138" ], + "x-ms-client-request-id": [ "5d2d4d4c-ab4b-4f2f-999f-feef083042f9" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1682,35 +1640,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "820ea1cd-645a-435c-a8ef-45774bfad605_M8SN1_M8SN1" ], + "x-ms-request-id": [ "fdfeb7b0-49f4-4302-a776-20ec3ac5c72a_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11893" ], - "x-ms-correlation-request-id": [ "5350e93e-7e26-4aee-98ce-0c60a6cff178" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T102009Z:5350e93e-7e26-4aee-98ce-0c60a6cff178" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11863" ], + "x-ms-correlation-request-id": [ "b9840a3c-63ed-4f1a-a265-f1d184296139" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T133844Z:b9840a3c-63ed-4f1a-a265-f1d184296139" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:20:09 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:38:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1978" ], + "Content-Length": [ "2009" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk\",\"name\":\"namespaceV59mqfhk\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{\"clientId\":\"38a989a1-3fab-4015-b546-cbcf7a67aa89\",\"principalId\":\"624205aa-192c-4303-9606-990d06cbd997\"},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{\"clientId\":\"440d7336-c408-4327-ad13-10a4e71aad64\",\"principalId\":\"1bdb6af0-4284-47f4-b049-94aa2868d90b\"}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev59mqfhk\",\"createdAt\":\"2022-11-24T10:12:33.723Z\",\"updatedAt\":\"2022-11-24T10:19:50.483Z\",\"serviceBusEndpoint\":\"https://namespaceV59mqfhk.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25\",\"name\":\"namespaceV5xdns25\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{\"clientId\":\"38a989a1-3fab-4015-b546-cbcf7a67aa89\",\"principalId\":\"624205aa-192c-4303-9606-990d06cbd997\"},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{\"clientId\":\"440d7336-c408-4327-ad13-10a4e71aad64\",\"principalId\":\"1bdb6af0-4284-47f4-b049-94aa2868d90b\"}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev5xdns25\",\"createdAt\":\"2023-02-19T13:31:01.857Z\",\"updatedAt\":\"2023-02-19T13:38:24.377Z\",\"serviceBusEndpoint\":\"https://namespaceV5xdns25.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk?api-version=2022-01-01-preview+42": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25?api-version=2022-10-01-preview+41": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "141" ], - "x-ms-client-request-id": [ "9132cfae-58f0-4665-94f8-04199ad7c8d9" ], + "x-ms-unique-id": [ "139" ], + "x-ms-client-request-id": [ "5d2d4d4c-ab4b-4f2f-999f-feef083042f9" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1724,30 +1682,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "fc37a8ba-3eba-4707-b316-4e1e45f9aa4d_M8SN1_M8SN1" ], + "x-ms-request-id": [ "b7227484-c4c2-4dd8-812e-f44271603df0_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11892" ], - "x-ms-correlation-request-id": [ "e07f64f3-0c38-48b9-aadb-8b721d1463ea" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T102010Z:e07f64f3-0c38-48b9-aadb-8b721d1463ea" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11862" ], + "x-ms-correlation-request-id": [ "6a7eaf2e-9aeb-410c-9ec8-258b31c911d2" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T133845Z:6a7eaf2e-9aeb-410c-9ec8-258b31c911d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:20:09 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:38:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1978" ], + "Content-Length": [ "2009" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk\",\"name\":\"namespaceV59mqfhk\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{\"clientId\":\"38a989a1-3fab-4015-b546-cbcf7a67aa89\",\"principalId\":\"624205aa-192c-4303-9606-990d06cbd997\"},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{\"clientId\":\"440d7336-c408-4327-ad13-10a4e71aad64\",\"principalId\":\"1bdb6af0-4284-47f4-b049-94aa2868d90b\"}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev59mqfhk\",\"createdAt\":\"2022-11-24T10:12:33.723Z\",\"updatedAt\":\"2022-11-24T10:19:50.483Z\",\"serviceBusEndpoint\":\"https://namespaceV59mqfhk.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25\",\"name\":\"namespaceV5xdns25\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{\"clientId\":\"38a989a1-3fab-4015-b546-cbcf7a67aa89\",\"principalId\":\"624205aa-192c-4303-9606-990d06cbd997\"},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{\"clientId\":\"440d7336-c408-4327-ad13-10a4e71aad64\",\"principalId\":\"1bdb6af0-4284-47f4-b049-94aa2868d90b\"}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev5xdns25\",\"createdAt\":\"2023-02-19T13:31:01.857Z\",\"updatedAt\":\"2023-02-19T13:38:24.377Z\",\"serviceBusEndpoint\":\"https://namespaceV5xdns25.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73?api-version=2022-01-01-preview+43": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm?api-version=2022-10-01-preview+42": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73?api-version=2022-01-01-preview", - "Content": "{\n \"location\": \"northeurope\",\n \"sku\": {\n \"name\": \"Premium\",\n \"tier\": \"Premium\"\n },\n \"identity\": {\n \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\": {\n },\n \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\": {\n }\n }\n },\n \"properties\": {\n \"encryption\": {\n \"keyVaultProperties\": [\n {\n \"identity\": {\n \"userAssignedIdentity\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"\n },\n \"keyName\": \"key1\",\n \"keyVaultUri\": \"https://keyVaultNamexdjtwk.vault.azure.net/\"\n },\n {\n \"identity\": {\n \"userAssignedIdentity\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"\n },\n \"keyName\": \"key2\",\n \"keyVaultUri\": \"https://keyVaultNamexdjtwk.vault.azure.net/\"\n }\n ],\n \"keySource\": \"Microsoft.KeyVault\",\n \"requireInfrastructureEncryption\": true\n }\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm?api-version=2022-10-01-preview", + "Content": "{\n \"location\": \"northeurope\",\n \"sku\": {\n \"name\": \"Premium\",\n \"tier\": \"Premium\"\n },\n \"identity\": {\n \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\": {\n },\n \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\": {\n }\n }\n },\n \"properties\": {\n \"encryption\": {\n \"keyVaultProperties\": [\n {\n \"identity\": {\n \"userAssignedIdentity\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"\n },\n \"keyName\": \"key1\",\n \"keyVaultUri\": \"https://keyVaultNamedur8ab.vault.azure.net/\"\n },\n {\n \"identity\": {\n \"userAssignedIdentity\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"\n },\n \"keyName\": \"key2\",\n \"keyVaultUri\": \"https://keyVaultNamedur8ab.vault.azure.net/\"\n }\n ],\n \"keySource\": \"Microsoft.KeyVault\",\n \"requireInfrastructureEncryption\": true\n }\n }\n}", "isContentBase64": false, "Headers": { }, @@ -1761,35 +1719,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "bd0f150a-c65f-4745-b297-f3444382d528_M0SN1_M0SN1" ], + "x-ms-request-id": [ "20134136-b720-4870-9d25-99055b3abf1a_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1187" ], - "x-ms-correlation-request-id": [ "7c658e6e-dd65-40e5-9390-3ed8e6be70ff" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T102017Z:7c658e6e-dd65-40e5-9390-3ed8e6be70ff" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1186" ], + "x-ms-correlation-request-id": [ "c6594f58-d31a-43fa-ad8b-8068ddcc8ec4" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T133854Z:c6594f58-d31a-43fa-ad8b-8068ddcc8ec4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:20:16 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:38:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1784" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73\",\"name\":\"namespaceV9ua0z73\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":true},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev9ua0z73\",\"createdAt\":\"2022-11-24T10:20:16.18Z\",\"updatedAt\":\"2022-11-24T10:20:16.18Z\",\"serviceBusEndpoint\":\"https://namespaceV9ua0z73.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm\",\"name\":\"namespaceV94qljkm\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":true},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev94qljkm\",\"createdAt\":\"2023-02-19T13:38:52.187Z\",\"updatedAt\":\"2023-02-19T13:38:52.187Z\",\"serviceBusEndpoint\":\"https://namespaceV94qljkm.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73?api-version=2022-01-01-preview+44": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm?api-version=2022-10-01-preview+43": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "143" ], - "x-ms-client-request-id": [ "6759d0e0-15d0-4634-a4c0-b39df8c7adc8" ], + "x-ms-unique-id": [ "141" ], + "x-ms-client-request-id": [ "7d8ec5c5-0a6d-43e3-8803-daa2f4f08e38" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1803,35 +1761,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "12f2b8b4-1d6b-45b1-ae29-a44b98081b5f_M8SN1_M8SN1" ], + "x-ms-request-id": [ "47cc3507-1810-4749-970d-2599864264e4_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11891" ], - "x-ms-correlation-request-id": [ "9d20fba6-4fa0-4596-bc77-25ea538788df" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T102047Z:9d20fba6-4fa0-4596-bc77-25ea538788df" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11861" ], + "x-ms-correlation-request-id": [ "4cce6ba5-87c0-428f-be4e-8016fa18825f" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T133924Z:4cce6ba5-87c0-428f-be4e-8016fa18825f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:20:47 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:39:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1784" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73\",\"name\":\"namespaceV9ua0z73\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":true},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev9ua0z73\",\"createdAt\":\"2022-11-24T10:20:16.18Z\",\"updatedAt\":\"2022-11-24T10:20:16.18Z\",\"serviceBusEndpoint\":\"https://namespaceV9ua0z73.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm\",\"name\":\"namespaceV94qljkm\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":true},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev94qljkm\",\"createdAt\":\"2023-02-19T13:38:52.187Z\",\"updatedAt\":\"2023-02-19T13:38:52.187Z\",\"serviceBusEndpoint\":\"https://namespaceV94qljkm.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73?api-version=2022-01-01-preview+45": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm?api-version=2022-10-01-preview+44": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "144" ], - "x-ms-client-request-id": [ "6759d0e0-15d0-4634-a4c0-b39df8c7adc8" ], + "x-ms-unique-id": [ "142" ], + "x-ms-client-request-id": [ "7d8ec5c5-0a6d-43e3-8803-daa2f4f08e38" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1845,35 +1803,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "6f0bd539-73a7-46d6-8213-6f4049e24859_M8SN1_M8SN1" ], + "x-ms-request-id": [ "aae138f0-244c-48d8-8ed7-0dd73b7f4b91_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11860" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11890" ], - "x-ms-correlation-request-id": [ "bb54ab6f-96a5-401f-8cf8-f9d23932611b" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T102117Z:bb54ab6f-96a5-401f-8cf8-f9d23932611b" ], + "x-ms-correlation-request-id": [ "a2def486-f36c-4abb-822a-bab3f527ea44" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T133955Z:a2def486-f36c-4abb-822a-bab3f527ea44" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:21:17 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:39:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1784" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73\",\"name\":\"namespaceV9ua0z73\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":true},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev9ua0z73\",\"createdAt\":\"2022-11-24T10:20:16.18Z\",\"updatedAt\":\"2022-11-24T10:20:16.18Z\",\"serviceBusEndpoint\":\"https://namespaceV9ua0z73.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm\",\"name\":\"namespaceV94qljkm\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":true},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev94qljkm\",\"createdAt\":\"2023-02-19T13:38:52.187Z\",\"updatedAt\":\"2023-02-19T13:38:52.187Z\",\"serviceBusEndpoint\":\"https://namespaceV94qljkm.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73?api-version=2022-01-01-preview+46": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm?api-version=2022-10-01-preview+45": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "145" ], - "x-ms-client-request-id": [ "6759d0e0-15d0-4634-a4c0-b39df8c7adc8" ], + "x-ms-unique-id": [ "143" ], + "x-ms-client-request-id": [ "7d8ec5c5-0a6d-43e3-8803-daa2f4f08e38" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1887,35 +1845,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "ca33b9d6-cab4-41c6-bdec-291476deaf3f_M8SN1_M8SN1" ], + "x-ms-request-id": [ "6567f200-90bd-4115-a882-880cf01868af_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11889" ], - "x-ms-correlation-request-id": [ "d4105dc2-6f74-47b9-9fbd-bb0923993583" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T102147Z:d4105dc2-6f74-47b9-9fbd-bb0923993583" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11859" ], + "x-ms-correlation-request-id": [ "5e85b53b-f576-4eb9-bcc4-244fb3208b11" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134026Z:5e85b53b-f576-4eb9-bcc4-244fb3208b11" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:21:47 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:40:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1780" ], + "Content-Length": [ "1812" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73\",\"name\":\"namespaceV9ua0z73\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":true},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev9ua0z73\",\"createdAt\":\"2022-11-24T10:20:16.18Z\",\"updatedAt\":\"2022-11-24T10:21:29.58Z\",\"serviceBusEndpoint\":\"https://namespaceV9ua0z73.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm\",\"name\":\"namespaceV94qljkm\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":true},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev94qljkm\",\"createdAt\":\"2023-02-19T13:38:52.187Z\",\"updatedAt\":\"2023-02-19T13:40:06.65Z\",\"serviceBusEndpoint\":\"https://namespaceV94qljkm.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73?api-version=2022-01-01-preview+47": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm?api-version=2022-10-01-preview+46": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "146" ], - "x-ms-client-request-id": [ "6759d0e0-15d0-4634-a4c0-b39df8c7adc8" ], + "x-ms-unique-id": [ "144" ], + "x-ms-client-request-id": [ "7d8ec5c5-0a6d-43e3-8803-daa2f4f08e38" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1929,35 +1887,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "b588b4ae-1b0c-4cd8-9bac-d1c6c19c3307_M7SN1_M7SN1" ], + "x-ms-request-id": [ "5683c9a3-7f37-4e1d-98f2-0fec663e8abd_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11888" ], - "x-ms-correlation-request-id": [ "1ad05610-9d4b-439a-9683-62dae921d272" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T102218Z:1ad05610-9d4b-439a-9683-62dae921d272" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11858" ], + "x-ms-correlation-request-id": [ "a85a238d-53c1-42de-ad86-d16b58c032a2" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134056Z:a85a238d-53c1-42de-ad86-d16b58c032a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:22:17 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:40:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1780" ], + "Content-Length": [ "1812" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73\",\"name\":\"namespaceV9ua0z73\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":true},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev9ua0z73\",\"createdAt\":\"2022-11-24T10:20:16.18Z\",\"updatedAt\":\"2022-11-24T10:21:29.58Z\",\"serviceBusEndpoint\":\"https://namespaceV9ua0z73.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm\",\"name\":\"namespaceV94qljkm\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":true},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev94qljkm\",\"createdAt\":\"2023-02-19T13:38:52.187Z\",\"updatedAt\":\"2023-02-19T13:40:06.65Z\",\"serviceBusEndpoint\":\"https://namespaceV94qljkm.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73?api-version=2022-01-01-preview+48": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm?api-version=2022-10-01-preview+47": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "147" ], - "x-ms-client-request-id": [ "6759d0e0-15d0-4634-a4c0-b39df8c7adc8" ], + "x-ms-unique-id": [ "145" ], + "x-ms-client-request-id": [ "7d8ec5c5-0a6d-43e3-8803-daa2f4f08e38" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1971,35 +1929,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "91a29886-0a98-403e-8dd8-5f853222d7c1_M7SN1_M7SN1" ], + "x-ms-request-id": [ "29d5a4c9-fb8c-420f-a2cf-7c6ea6975631_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11887" ], - "x-ms-correlation-request-id": [ "592b63a3-779e-48cb-8eb6-1bedd986bb1e" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T102248Z:592b63a3-779e-48cb-8eb6-1bedd986bb1e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11857" ], + "x-ms-correlation-request-id": [ "92eb6ea0-e5a1-40b3-b1ef-df57a95e872a" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134127Z:92eb6ea0-e5a1-40b3-b1ef-df57a95e872a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:22:48 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:41:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1780" ], + "Content-Length": [ "1812" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73\",\"name\":\"namespaceV9ua0z73\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":true},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev9ua0z73\",\"createdAt\":\"2022-11-24T10:20:16.18Z\",\"updatedAt\":\"2022-11-24T10:21:29.58Z\",\"serviceBusEndpoint\":\"https://namespaceV9ua0z73.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm\",\"name\":\"namespaceV94qljkm\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":true},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev94qljkm\",\"createdAt\":\"2023-02-19T13:38:52.187Z\",\"updatedAt\":\"2023-02-19T13:40:06.65Z\",\"serviceBusEndpoint\":\"https://namespaceV94qljkm.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73?api-version=2022-01-01-preview+49": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm?api-version=2022-10-01-preview+48": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "148" ], - "x-ms-client-request-id": [ "6759d0e0-15d0-4634-a4c0-b39df8c7adc8" ], + "x-ms-unique-id": [ "146" ], + "x-ms-client-request-id": [ "7d8ec5c5-0a6d-43e3-8803-daa2f4f08e38" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2013,35 +1971,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "564bdec8-ed8c-46a0-b24c-7cd4e2c243c3_M7SN1_M7SN1" ], + "x-ms-request-id": [ "54b95b8d-10fc-4c4a-8526-fe0bd6798239_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11886" ], - "x-ms-correlation-request-id": [ "2684c49e-8abe-455b-ac16-2d3fdaf62fcb" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T102318Z:2684c49e-8abe-455b-ac16-2d3fdaf62fcb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11856" ], + "x-ms-correlation-request-id": [ "42c77bd1-30f8-4cf1-8f94-824e8d4c89de" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134157Z:42c77bd1-30f8-4cf1-8f94-824e8d4c89de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:23:18 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:41:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1780" ], + "Content-Length": [ "1812" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73\",\"name\":\"namespaceV9ua0z73\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":true},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev9ua0z73\",\"createdAt\":\"2022-11-24T10:20:16.18Z\",\"updatedAt\":\"2022-11-24T10:21:29.58Z\",\"serviceBusEndpoint\":\"https://namespaceV9ua0z73.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm\",\"name\":\"namespaceV94qljkm\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":true},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev94qljkm\",\"createdAt\":\"2023-02-19T13:38:52.187Z\",\"updatedAt\":\"2023-02-19T13:40:06.65Z\",\"serviceBusEndpoint\":\"https://namespaceV94qljkm.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73?api-version=2022-01-01-preview+50": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm?api-version=2022-10-01-preview+49": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "149" ], - "x-ms-client-request-id": [ "6759d0e0-15d0-4634-a4c0-b39df8c7adc8" ], + "x-ms-unique-id": [ "147" ], + "x-ms-client-request-id": [ "7d8ec5c5-0a6d-43e3-8803-daa2f4f08e38" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2055,35 +2013,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "f5e4db50-e05b-46ec-bbce-44488afed1c7_M7SN1_M7SN1" ], + "x-ms-request-id": [ "e98f9e64-8ad8-427b-b4b2-04e09393b917_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11885" ], - "x-ms-correlation-request-id": [ "dcc45044-da84-4220-bb50-b370ed7be180" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T102349Z:dcc45044-da84-4220-bb50-b370ed7be180" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11855" ], + "x-ms-correlation-request-id": [ "1f6077dc-b994-4ba9-8e44-9d554eedd775" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134228Z:1f6077dc-b994-4ba9-8e44-9d554eedd775" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:23:48 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:42:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1780" ], + "Content-Length": [ "1812" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73\",\"name\":\"namespaceV9ua0z73\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":true},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev9ua0z73\",\"createdAt\":\"2022-11-24T10:20:16.18Z\",\"updatedAt\":\"2022-11-24T10:21:29.58Z\",\"serviceBusEndpoint\":\"https://namespaceV9ua0z73.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm\",\"name\":\"namespaceV94qljkm\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":true},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev94qljkm\",\"createdAt\":\"2023-02-19T13:38:52.187Z\",\"updatedAt\":\"2023-02-19T13:40:06.65Z\",\"serviceBusEndpoint\":\"https://namespaceV94qljkm.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73?api-version=2022-01-01-preview+51": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm?api-version=2022-10-01-preview+50": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "150" ], - "x-ms-client-request-id": [ "6759d0e0-15d0-4634-a4c0-b39df8c7adc8" ], + "x-ms-unique-id": [ "148" ], + "x-ms-client-request-id": [ "7d8ec5c5-0a6d-43e3-8803-daa2f4f08e38" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2097,35 +2055,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "1038f577-0768-4cc6-bd99-687ce1826c54_M7SN1_M7SN1" ], + "x-ms-request-id": [ "646d10e2-2b58-4509-8975-cd822893e327_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11884" ], - "x-ms-correlation-request-id": [ "da69f31c-22d7-4898-97d6-7685ffabae83" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T102420Z:da69f31c-22d7-4898-97d6-7685ffabae83" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11854" ], + "x-ms-correlation-request-id": [ "28282579-8717-4aed-985d-97f09b390f62" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134300Z:28282579-8717-4aed-985d-97f09b390f62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:24:19 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:42:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1780" ], + "Content-Length": [ "1812" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73\",\"name\":\"namespaceV9ua0z73\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":true},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev9ua0z73\",\"createdAt\":\"2022-11-24T10:20:16.18Z\",\"updatedAt\":\"2022-11-24T10:21:29.58Z\",\"serviceBusEndpoint\":\"https://namespaceV9ua0z73.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm\",\"name\":\"namespaceV94qljkm\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":true},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev94qljkm\",\"createdAt\":\"2023-02-19T13:38:52.187Z\",\"updatedAt\":\"2023-02-19T13:40:06.65Z\",\"serviceBusEndpoint\":\"https://namespaceV94qljkm.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73?api-version=2022-01-01-preview+52": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm?api-version=2022-10-01-preview+51": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "151" ], - "x-ms-client-request-id": [ "6759d0e0-15d0-4634-a4c0-b39df8c7adc8" ], + "x-ms-unique-id": [ "149" ], + "x-ms-client-request-id": [ "7d8ec5c5-0a6d-43e3-8803-daa2f4f08e38" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2139,35 +2097,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "a96c799e-48e6-4f99-ab21-df468a4317b3_M7SN1_M7SN1" ], + "x-ms-request-id": [ "60cb8522-5b9c-4dab-9254-9bb556a4b8c5_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11883" ], - "x-ms-correlation-request-id": [ "925ff907-389f-4010-87ae-85c2c799ea1b" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T102450Z:925ff907-389f-4010-87ae-85c2c799ea1b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11853" ], + "x-ms-correlation-request-id": [ "61fbad43-47ac-41b2-82c9-4e283d73dceb" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134330Z:61fbad43-47ac-41b2-82c9-4e283d73dceb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:24:50 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:43:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1780" ], + "Content-Length": [ "1812" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73\",\"name\":\"namespaceV9ua0z73\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":true},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev9ua0z73\",\"createdAt\":\"2022-11-24T10:20:16.18Z\",\"updatedAt\":\"2022-11-24T10:21:29.58Z\",\"serviceBusEndpoint\":\"https://namespaceV9ua0z73.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm\",\"name\":\"namespaceV94qljkm\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":true},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev94qljkm\",\"createdAt\":\"2023-02-19T13:38:52.187Z\",\"updatedAt\":\"2023-02-19T13:40:06.65Z\",\"serviceBusEndpoint\":\"https://namespaceV94qljkm.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73?api-version=2022-01-01-preview+53": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm?api-version=2022-10-01-preview+52": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "152" ], - "x-ms-client-request-id": [ "6759d0e0-15d0-4634-a4c0-b39df8c7adc8" ], + "x-ms-unique-id": [ "150" ], + "x-ms-client-request-id": [ "7d8ec5c5-0a6d-43e3-8803-daa2f4f08e38" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2181,35 +2139,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "138a050d-e13e-4306-bfbd-9d565addb2a6_M7SN1_M7SN1" ], + "x-ms-request-id": [ "723c3fe9-89a8-46a3-9099-d4bd2e412e3f_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11882" ], - "x-ms-correlation-request-id": [ "7605e788-0f95-47dd-818a-3edb22258d19" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T102520Z:7605e788-0f95-47dd-818a-3edb22258d19" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11852" ], + "x-ms-correlation-request-id": [ "00728276-0697-486a-b6d5-59c6681616e8" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134401Z:00728276-0697-486a-b6d5-59c6681616e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:25:20 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:44:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1780" ], + "Content-Length": [ "1812" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73\",\"name\":\"namespaceV9ua0z73\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":true},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev9ua0z73\",\"createdAt\":\"2022-11-24T10:20:16.18Z\",\"updatedAt\":\"2022-11-24T10:21:29.58Z\",\"serviceBusEndpoint\":\"https://namespaceV9ua0z73.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm\",\"name\":\"namespaceV94qljkm\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":true},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev94qljkm\",\"createdAt\":\"2023-02-19T13:38:52.187Z\",\"updatedAt\":\"2023-02-19T13:40:06.65Z\",\"serviceBusEndpoint\":\"https://namespaceV94qljkm.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73?api-version=2022-01-01-preview+54": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm?api-version=2022-10-01-preview+53": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "153" ], - "x-ms-client-request-id": [ "6759d0e0-15d0-4634-a4c0-b39df8c7adc8" ], + "x-ms-unique-id": [ "151" ], + "x-ms-client-request-id": [ "7d8ec5c5-0a6d-43e3-8803-daa2f4f08e38" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2223,35 +2181,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "d5a4709f-4c57-4d2f-abe5-771ef1eea465_M7SN1_M7SN1" ], + "x-ms-request-id": [ "0ae4b6d3-1670-4a85-937d-f94c4498777e_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11881" ], - "x-ms-correlation-request-id": [ "1b7e0906-07f9-4b21-809d-48eef81b912b" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T102551Z:1b7e0906-07f9-4b21-809d-48eef81b912b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11851" ], + "x-ms-correlation-request-id": [ "2a6b7a08-5b76-465f-b795-3b8259d72cc6" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134431Z:2a6b7a08-5b76-465f-b795-3b8259d72cc6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:25:50 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:44:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1780" ], + "Content-Length": [ "1812" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73\",\"name\":\"namespaceV9ua0z73\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":true},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev9ua0z73\",\"createdAt\":\"2022-11-24T10:20:16.18Z\",\"updatedAt\":\"2022-11-24T10:21:29.58Z\",\"serviceBusEndpoint\":\"https://namespaceV9ua0z73.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm\",\"name\":\"namespaceV94qljkm\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":true},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev94qljkm\",\"createdAt\":\"2023-02-19T13:38:52.187Z\",\"updatedAt\":\"2023-02-19T13:40:06.65Z\",\"serviceBusEndpoint\":\"https://namespaceV94qljkm.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73?api-version=2022-01-01-preview+55": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm?api-version=2022-10-01-preview+54": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "154" ], - "x-ms-client-request-id": [ "6759d0e0-15d0-4634-a4c0-b39df8c7adc8" ], + "x-ms-unique-id": [ "152" ], + "x-ms-client-request-id": [ "7d8ec5c5-0a6d-43e3-8803-daa2f4f08e38" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2265,35 +2223,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "1246f59e-5bfc-4841-afd7-c177e0a08e73_M7SN1_M7SN1" ], + "x-ms-request-id": [ "fa086fac-4353-4734-a29d-dc2e23206c3b_M6SN1_M6SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11880" ], - "x-ms-correlation-request-id": [ "68540d69-5fa3-4308-8fe3-9cd75026b131" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T102621Z:68540d69-5fa3-4308-8fe3-9cd75026b131" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11850" ], + "x-ms-correlation-request-id": [ "497beead-f230-473a-9ed5-277f8e1cb448" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134503Z:497beead-f230-473a-9ed5-277f8e1cb448" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:26:20 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:45:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1780" ], + "Content-Length": [ "1812" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73\",\"name\":\"namespaceV9ua0z73\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":true},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev9ua0z73\",\"createdAt\":\"2022-11-24T10:20:16.18Z\",\"updatedAt\":\"2022-11-24T10:21:29.58Z\",\"serviceBusEndpoint\":\"https://namespaceV9ua0z73.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm\",\"name\":\"namespaceV94qljkm\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":true},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev94qljkm\",\"createdAt\":\"2023-02-19T13:38:52.187Z\",\"updatedAt\":\"2023-02-19T13:40:06.65Z\",\"serviceBusEndpoint\":\"https://namespaceV94qljkm.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73?api-version=2022-01-01-preview+56": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm?api-version=2022-10-01-preview+55": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "155" ], - "x-ms-client-request-id": [ "6759d0e0-15d0-4634-a4c0-b39df8c7adc8" ], + "x-ms-unique-id": [ "153" ], + "x-ms-client-request-id": [ "7d8ec5c5-0a6d-43e3-8803-daa2f4f08e38" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2307,35 +2265,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "f704d33e-27bd-4253-8a13-26bf6ba098a6_M7SN1_M7SN1" ], + "x-ms-request-id": [ "90f6117e-e041-4242-afdd-dea6cc0718c1_M6SN1_M6SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11879" ], - "x-ms-correlation-request-id": [ "37116fbb-00ff-46a1-adfd-266c193cc54a" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T102651Z:37116fbb-00ff-46a1-adfd-266c193cc54a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11849" ], + "x-ms-correlation-request-id": [ "54720146-2af0-44f2-bd11-c51cb76baf81" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134533Z:54720146-2af0-44f2-bd11-c51cb76baf81" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:26:51 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:45:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1780" ], + "Content-Length": [ "1812" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73\",\"name\":\"namespaceV9ua0z73\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":true},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev9ua0z73\",\"createdAt\":\"2022-11-24T10:20:16.18Z\",\"updatedAt\":\"2022-11-24T10:21:29.58Z\",\"serviceBusEndpoint\":\"https://namespaceV9ua0z73.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm\",\"name\":\"namespaceV94qljkm\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":true},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev94qljkm\",\"createdAt\":\"2023-02-19T13:38:52.187Z\",\"updatedAt\":\"2023-02-19T13:40:06.65Z\",\"serviceBusEndpoint\":\"https://namespaceV94qljkm.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73?api-version=2022-01-01-preview+57": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm?api-version=2022-10-01-preview+56": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "156" ], - "x-ms-client-request-id": [ "6759d0e0-15d0-4634-a4c0-b39df8c7adc8" ], + "x-ms-unique-id": [ "154" ], + "x-ms-client-request-id": [ "7d8ec5c5-0a6d-43e3-8803-daa2f4f08e38" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2349,35 +2307,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "b884b928-491f-4e73-8f99-836ccba8e096_M7SN1_M7SN1" ], + "x-ms-request-id": [ "f796c219-5e22-4be0-a3cc-62a7cf47beb1_M6SN1_M6SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11878" ], - "x-ms-correlation-request-id": [ "5101b7b2-2811-4041-a454-e190b90b152c" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T102721Z:5101b7b2-2811-4041-a454-e190b90b152c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11848" ], + "x-ms-correlation-request-id": [ "1412dd5e-a9ce-4c92-8779-806f95a8cec0" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134604Z:1412dd5e-a9ce-4c92-8779-806f95a8cec0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:27:21 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:46:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1780" ], + "Content-Length": [ "1915" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73\",\"name\":\"namespaceV9ua0z73\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":true},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev9ua0z73\",\"createdAt\":\"2022-11-24T10:20:16.18Z\",\"updatedAt\":\"2022-11-24T10:27:21.66Z\",\"serviceBusEndpoint\":\"https://namespaceV9ua0z73.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm\",\"name\":\"namespaceV94qljkm\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{\"clientId\":\"440d7336-c408-4327-ad13-10a4e71aad64\",\"principalId\":\"1bdb6af0-4284-47f4-b049-94aa2868d90b\"}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":true},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev94qljkm\",\"createdAt\":\"2023-02-19T13:38:52.187Z\",\"updatedAt\":\"2023-02-19T13:45:59.087Z\",\"serviceBusEndpoint\":\"https://namespaceV94qljkm.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73?api-version=2022-01-01-preview+58": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm?api-version=2022-10-01-preview+57": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "157" ], - "x-ms-client-request-id": [ "6759d0e0-15d0-4634-a4c0-b39df8c7adc8" ], + "x-ms-unique-id": [ "155" ], + "x-ms-client-request-id": [ "7d8ec5c5-0a6d-43e3-8803-daa2f4f08e38" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2391,35 +2349,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "04d77cac-3401-4a3a-b4f9-7a63e067781f_M7SN1_M7SN1" ], + "x-ms-request-id": [ "569ec46d-4062-41dc-b04a-5858093c5f74_M6SN1_M6SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11877" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "46f8132c-c887-4f7b-b7ca-50a6c03c29e9" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T102752Z:46f8132c-c887-4f7b-b7ca-50a6c03c29e9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11847" ], + "x-ms-correlation-request-id": [ "7872a8ef-5735-49d6-bc36-ef8e2de811c8" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134635Z:7872a8ef-5735-49d6-bc36-ef8e2de811c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:27:51 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:46:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1976" ], + "Content-Length": [ "2007" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73\",\"name\":\"namespaceV9ua0z73\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{\"clientId\":\"38a989a1-3fab-4015-b546-cbcf7a67aa89\",\"principalId\":\"624205aa-192c-4303-9606-990d06cbd997\"},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{\"clientId\":\"440d7336-c408-4327-ad13-10a4e71aad64\",\"principalId\":\"1bdb6af0-4284-47f4-b049-94aa2868d90b\"}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":true},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev9ua0z73\",\"createdAt\":\"2022-11-24T10:20:16.18Z\",\"updatedAt\":\"2022-11-24T10:27:34.523Z\",\"serviceBusEndpoint\":\"https://namespaceV9ua0z73.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm\",\"name\":\"namespaceV94qljkm\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{\"clientId\":\"38a989a1-3fab-4015-b546-cbcf7a67aa89\",\"principalId\":\"624205aa-192c-4303-9606-990d06cbd997\"},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{\"clientId\":\"440d7336-c408-4327-ad13-10a4e71aad64\",\"principalId\":\"1bdb6af0-4284-47f4-b049-94aa2868d90b\"}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":true},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev94qljkm\",\"createdAt\":\"2023-02-19T13:38:52.187Z\",\"updatedAt\":\"2023-02-19T13:46:11.65Z\",\"serviceBusEndpoint\":\"https://namespaceV94qljkm.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73?api-version=2022-01-01-preview+59": { + "New-AzServiceBusNamespaceV2+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm?api-version=2022-10-01-preview+58": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "158" ], - "x-ms-client-request-id": [ "6759d0e0-15d0-4634-a4c0-b39df8c7adc8" ], + "x-ms-unique-id": [ "156" ], + "x-ms-client-request-id": [ "7d8ec5c5-0a6d-43e3-8803-daa2f4f08e38" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2433,22 +2391,22 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "412c981c-b839-49fb-b131-4194b7de8518_M10SN1_M10SN1" ], + "x-ms-request-id": [ "025e509c-444b-4225-97f5-a9fd754bc9ca_M6SN1_M6SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11876" ], - "x-ms-correlation-request-id": [ "23cad73b-c4e9-44c6-a8ce-c2e0315c9cb6" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T102752Z:23cad73b-c4e9-44c6-a8ce-c2e0315c9cb6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11846" ], + "x-ms-correlation-request-id": [ "0e86e7c8-1f82-471c-927b-e886c07e74e5" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134635Z:0e86e7c8-1f82-471c-927b-e886c07e74e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:27:51 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:46:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1976" ], + "Content-Length": [ "2007" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV9ua0z73\",\"name\":\"namespaceV9ua0z73\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{\"clientId\":\"38a989a1-3fab-4015-b546-cbcf7a67aa89\",\"principalId\":\"624205aa-192c-4303-9606-990d06cbd997\"},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{\"clientId\":\"440d7336-c408-4327-ad13-10a4e71aad64\",\"principalId\":\"1bdb6af0-4284-47f4-b049-94aa2868d90b\"}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":true},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev9ua0z73\",\"createdAt\":\"2022-11-24T10:20:16.18Z\",\"updatedAt\":\"2022-11-24T10:27:34.523Z\",\"serviceBusEndpoint\":\"https://namespaceV9ua0z73.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV94qljkm\",\"name\":\"namespaceV94qljkm\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{\"clientId\":\"38a989a1-3fab-4015-b546-cbcf7a67aa89\",\"principalId\":\"624205aa-192c-4303-9606-990d06cbd997\"},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{\"clientId\":\"440d7336-c408-4327-ad13-10a4e71aad64\",\"principalId\":\"1bdb6af0-4284-47f4-b049-94aa2868d90b\"}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":true},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev94qljkm\",\"createdAt\":\"2023-02-19T13:38:52.187Z\",\"updatedAt\":\"2023-02-19T13:46:11.65Z\",\"serviceBusEndpoint\":\"https://namespaceV94qljkm.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } } diff --git a/src/ServiceBus/ServiceBus.Autorest/test/New-AzServiceBusNamespaceV2.Tests.ps1 b/src/ServiceBus/ServiceBus.Autorest/test/New-AzServiceBusNamespaceV2.Tests.ps1 index 71186caf9a6a..6511622914c6 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/New-AzServiceBusNamespaceV2.Tests.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/test/New-AzServiceBusNamespaceV2.Tests.ps1 @@ -30,11 +30,13 @@ Describe 'New-AzServiceBusNamespaceV2' { $serviceBusNamespace.DisableLocalAuth | Should -Be $true $serviceBusNamespace.Tag.Count | should -Be 2 - $serviceBusNamespace = New-AzServiceBusNamespaceV2 -ResourceGroupName $env.resourceGroup -Name $env.namespaceV4 -SkuName Premium -Location eastus -IdentityType SystemAssigned -ZoneRedundant + $serviceBusNamespace = New-AzServiceBusNamespaceV2 -ResourceGroupName $env.resourceGroup -Name $env.namespaceV4 -SkuName Premium -Location eastus -IdentityType SystemAssigned -ZoneRedundant -PremiumMessagingPartition 2 -SkuCapacity 2 $serviceBusNamespace.Name | Should -Be $env.namespaceV4 $serviceBusNamespace.IdentityType | Should -Be SystemAssigned $serviceBusNamespace.SkuName | Should -Be Premium $serviceBusNamespace.SkuTier | Should -Be Premium + $serviceBusNamespace.SkuCapacity | Should -Be 2 + $serviceBusNamespace.PremiumMessagingPartition | Should -Be 2 $serviceBusNamespace.Location | Should -Be "East Us" $serviceBusNamespace.ZoneRedundant | Should be $true diff --git a/src/ServiceBus/ServiceBus.Autorest/test/New-AzServiceBusQueue.Recording.json b/src/ServiceBus/ServiceBus.Autorest/test/New-AzServiceBusQueue.Recording.json index ef96fffa66fc..b8b336a7d090 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/New-AzServiceBusQueue.Recording.json +++ b/src/ServiceBus/ServiceBus.Autorest/test/New-AzServiceBusQueue.Recording.json @@ -1,8 +1,8 @@ { - "New-AzServiceBusQueue+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview+1": { + "New-AzServiceBusQueue+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview", "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT4M\",\n \"maxSizeInMegabytes\": 4096,\n \"maxMessageSizeInKilobytes\": 102400,\n \"requiresDuplicateDetection\": true,\n \"defaultMessageTimeToLive\": \"P428DT3H11M10S\",\n \"deadLetteringOnMessageExpiration\": true,\n \"duplicateDetectionHistoryTimeWindow\": \"PT10M\",\n \"maxDeliveryCount\": 8,\n \"status\": \"Active\",\n \"enableBatchedOperations\": false,\n \"forwardTo\": \"queue1\",\n \"forwardDeadLetteredMessagesTo\": \"queue1\"\n }\n}", "isContentBase64": false, "Headers": { @@ -18,27 +18,27 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1186" ], - "x-ms-request-id": [ "ce7f284a-16b7-430b-8f37-f9fb575c7380" ], - "x-ms-correlation-request-id": [ "ce7f284a-16b7-430b-8f37-f9fb575c7380" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T102833Z:ce7f284a-16b7-430b-8f37-f9fb575c7380" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1185" ], + "x-ms-request-id": [ "825a3dc3-2cb6-4eaf-bd63-f1d02dc888fe" ], + "x-ms-correlation-request-id": [ "825a3dc3-2cb6-4eaf-bd63-f1d02dc888fe" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134706Z:825a3dc3-2cb6-4eaf-bd63-f1d02dc888fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:28:33 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:47:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1078" ], + "Content-Length": [ "1077" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT4M\",\"maxSizeInMegabytes\":4096,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P428DT3H11M10S\",\"deadLetteringOnMessageExpiration\":true,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":8,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2022-11-24T10:28:33.247Z\",\"updatedAt\":\"2022-11-24T10:28:33.457Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT4M\",\"maxSizeInMegabytes\":4096,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P428DT3H11M10S\",\"deadLetteringOnMessageExpiration\":true,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":8,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2023-02-19T13:47:05.607Z\",\"updatedAt\":\"2023-02-19T13:47:05.77Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", "isContentBase64": false } }, - "New-AzServiceBusQueue+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue3?api-version=2022-01-01-preview+2": { + "New-AzServiceBusQueue+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue3?api-version=2022-10-01-preview+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue3?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue3?api-version=2022-10-01-preview", "Content": "{\n \"properties\": {\n \"requiresSession\": true,\n \"autoDeleteOnIdle\": \"P7D\"\n }\n}", "isContentBase64": false, "Headers": { @@ -54,32 +54,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1185" ], - "x-ms-request-id": [ "0a0b21b5-4108-462c-b24f-ea14278f2bc1" ], - "x-ms-correlation-request-id": [ "0a0b21b5-4108-462c-b24f-ea14278f2bc1" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T102835Z:0a0b21b5-4108-462c-b24f-ea14278f2bc1" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1184" ], + "x-ms-request-id": [ "0183910f-fab8-4c36-a1e9-803415efb546" ], + "x-ms-correlation-request-id": [ "0183910f-fab8-4c36-a1e9-803415efb546" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134708Z:0183910f-fab8-4c36-a1e9-803415efb546" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:28:35 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:47:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1004" ], + "Content-Length": [ "1001" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue3\",\"name\":\"queue3\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"lockDuration\":\"PT1M\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":true,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":true,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":10,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P7D\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2022-11-24T10:28:35.397Z\",\"updatedAt\":\"2022-11-24T10:28:35.477Z\",\"accessedAt\":\"0001-01-01T00:00:00\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue3\",\"name\":\"queue3\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"lockDuration\":\"PT1M\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":true,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":true,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":10,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P7D\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2023-02-19T13:47:08.13Z\",\"updatedAt\":\"2023-02-19T13:47:08.2Z\",\"accessedAt\":\"0001-01-01T00:00:00\"}}", "isContentBase64": false } }, - "New-AzServiceBusQueue+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues?api-version=2022-01-01-preview+3": { + "New-AzServiceBusQueue+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues?api-version=2022-10-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "161" ], - "x-ms-client-request-id": [ "55c24714-2f46-481c-b7ba-5799bfd10407" ], + "x-ms-unique-id": [ "159" ], + "x-ms-client-request-id": [ "1f2047de-efee-4337-bfe8-8179e63e56cb" ], "CommandName": [ "Get-AzServiceBusQueue" ], "FullCommandName": [ "Get-AzServiceBusQueue_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -96,27 +96,27 @@ "Pragma": [ "no-cache" ], "x-ms-inline-count": [ "" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11875" ], - "x-ms-request-id": [ "91203dc5-b2d2-47af-b268-10abef67962e" ], - "x-ms-correlation-request-id": [ "91203dc5-b2d2-47af-b268-10abef67962e" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T102836Z:91203dc5-b2d2-47af-b268-10abef67962e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11845" ], + "x-ms-request-id": [ "bb67acfe-fa4b-453a-9d59-dad244f75483" ], + "x-ms-correlation-request-id": [ "bb67acfe-fa4b-453a-9d59-dad244f75483" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134709Z:bb67acfe-fa4b-453a-9d59-dad244f75483" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:28:35 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:47:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "3134" ], + "Content-Length": [ "3131" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1\",\"name\":\"queue1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"lockDuration\":\"PT1M\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":true,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":10,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2022-11-24T09:42:04.5581068Z\",\"updatedAt\":\"2022-11-24T10:02:01.762059Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\"}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT4M\",\"maxSizeInMegabytes\":4096,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P428DT3H11M10S\",\"deadLetteringOnMessageExpiration\":true,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":8,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2022-11-24T10:28:33.247Z\",\"updatedAt\":\"2022-11-24T10:28:33.457Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue3\",\"name\":\"queue3\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"lockDuration\":\"PT1M\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":true,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":true,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":10,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P7D\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2022-11-24T10:28:35.397Z\",\"updatedAt\":\"2022-11-24T10:28:35.477Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\"}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1\",\"name\":\"queue1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"lockDuration\":\"PT1M\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":true,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":10,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2023-02-19T13:02:41.6727523Z\",\"updatedAt\":\"2023-02-19T13:20:54.0533289Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\"}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT4M\",\"maxSizeInMegabytes\":4096,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P428DT3H11M10S\",\"deadLetteringOnMessageExpiration\":true,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":8,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2023-02-19T13:47:05.607Z\",\"updatedAt\":\"2023-02-19T13:47:05.77Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue3\",\"name\":\"queue3\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"lockDuration\":\"PT1M\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":true,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":true,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":10,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P7D\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2023-02-19T13:47:08.13Z\",\"updatedAt\":\"2023-02-19T13:47:08.2Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\"}}]}", "isContentBase64": false } }, - "New-AzServiceBusQueue+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNameck4gr6/queues/queue1?api-version=2022-01-01-preview+4": { + "New-AzServiceBusQueue+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNametkv0jq/queues/queue1?api-version=2022-10-01-preview+4": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNameck4gr6/queues/queue1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNametkv0jq/queues/queue1?api-version=2022-10-01-preview", "Content": "{\n \"properties\": {\n \"enableExpress\": true\n }\n}", "isContentBase64": false, "Headers": { @@ -132,20 +132,20 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1184" ], - "x-ms-request-id": [ "802b5cfa-8b17-46dd-a815-66bb8279e6e0" ], - "x-ms-correlation-request-id": [ "802b5cfa-8b17-46dd-a815-66bb8279e6e0" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T102838Z:802b5cfa-8b17-46dd-a815-66bb8279e6e0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1183" ], + "x-ms-request-id": [ "25a8ff3e-f3fb-42a3-b08e-286c4f1ba489" ], + "x-ms-correlation-request-id": [ "25a8ff3e-f3fb-42a3-b08e-286c4f1ba489" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134711Z:25a8ff3e-f3fb-42a3-b08e-286c4f1ba489" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:28:37 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:47:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1025" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNameck4gr6/queues/queue1\",\"name\":\"queue1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":256,\"lockDuration\":\"PT1M\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":true,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":10,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":true,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2022-11-24T10:28:37.89Z\",\"updatedAt\":\"2022-11-24T10:28:37.913Z\",\"accessedAt\":\"0001-01-01T00:00:00\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNametkv0jq/queues/queue1\",\"name\":\"queue1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":256,\"lockDuration\":\"PT1M\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":true,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":10,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":true,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2023-02-19T13:47:11.44Z\",\"updatedAt\":\"2023-02-19T13:47:11.463Z\",\"accessedAt\":\"0001-01-01T00:00:00\"}}", "isContentBase64": false } } diff --git a/src/ServiceBus/ServiceBus.Autorest/test/New-AzServiceBusRule.Recording.json b/src/ServiceBus/ServiceBus.Autorest/test/New-AzServiceBusRule.Recording.json index 0fc3008f296d..36bb250065fc 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/New-AzServiceBusRule.Recording.json +++ b/src/ServiceBus/ServiceBus.Autorest/test/New-AzServiceBusRule.Recording.json @@ -1,8 +1,8 @@ { - "New-AzServiceBusRule+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/sqlRule2?api-version=2022-01-01-preview+1": { + "New-AzServiceBusRule+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/sqlRule2?api-version=2022-10-01-preview+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/sqlRule2?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/sqlRule2?api-version=2022-10-01-preview", "Content": "{\n \"properties\": {\n \"action\": {\n \"sqlExpression\": \"SET a=b\"\n },\n \"sqlFilter\": {\n \"sqlExpression\": \"1=2\"\n },\n \"filterType\": \"SqlFilter\"\n }\n}", "isContentBase64": false, "Headers": { @@ -18,27 +18,27 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1183" ], - "x-ms-request-id": [ "9c42996a-f682-433d-83b5-8c36a13b3b93" ], - "x-ms-correlation-request-id": [ "9c42996a-f682-433d-83b5-8c36a13b3b93" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T102859Z:9c42996a-f682-433d-83b5-8c36a13b3b93" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1182" ], + "x-ms-request-id": [ "906b39e7-244d-4efe-88fd-bf34e0f44117" ], + "x-ms-correlation-request-id": [ "906b39e7-244d-4efe-88fd-bf34e0f44117" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134725Z:906b39e7-244d-4efe-88fd-bf34e0f44117" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:28:59 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:47:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "489" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/sqlRule2\",\"name\":\"sqlRule2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{\"sqlExpression\":\"SET a=b\",\"compatibilityLevel\":20},\"filterType\":\"SqlFilter\",\"sqlFilter\":{\"sqlExpression\":\"1=2\",\"compatibilityLevel\":20}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/sqlRule2\",\"name\":\"sqlRule2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{\"sqlExpression\":\"SET a=b\",\"compatibilityLevel\":20},\"filterType\":\"SqlFilter\",\"sqlFilter\":{\"sqlExpression\":\"1=2\",\"compatibilityLevel\":20}}}", "isContentBase64": false } }, - "New-AzServiceBusRule+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-01-01-preview+2": { + "New-AzServiceBusRule+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-10-01-preview+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-10-01-preview", "Content": "{\n \"properties\": {\n \"correlationFilter\": {\n \"properties\": {\n \"c\": \"d\",\n \"a\": \"b\"\n },\n \"correlationId\": \"correlationid\",\n \"messageId\": \"messageid\",\n \"replyTo\": \"replyto\",\n \"label\": \"label\",\n \"sessionId\": \"sessionid\",\n \"replyToSessionId\": \"replytosessionid\",\n \"contentType\": \"contenttype\"\n },\n \"filterType\": \"CorrelationFilter\"\n }\n}", "isContentBase64": false, "Headers": { @@ -54,20 +54,20 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1182" ], - "x-ms-request-id": [ "17e9aa02-5dec-4ecd-9467-7cdab5adb105" ], - "x-ms-correlation-request-id": [ "17e9aa02-5dec-4ecd-9467-7cdab5adb105" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T102902Z:17e9aa02-5dec-4ecd-9467-7cdab5adb105" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1181" ], + "x-ms-request-id": [ "77db29f2-fefc-4563-a799-20461cc4c613" ], + "x-ms-correlation-request-id": [ "77db29f2-fefc-4563-a799-20461cc4c613" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134728Z:77db29f2-fefc-4563-a799-20461cc4c613" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:29:01 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:47:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "639" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1\",\"name\":\"correlationRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"CorrelationFilter\",\"correlationFilter\":{\"correlationId\":\"correlationid\",\"messageId\":\"messageid\",\"replyTo\":\"replyto\",\"label\":\"label\",\"sessionId\":\"sessionid\",\"replyToSessionId\":\"replytosessionid\",\"contentType\":\"contenttype\",\"properties\":{\"c\":\"d\",\"a\":\"b\"}}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1\",\"name\":\"correlationRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"CorrelationFilter\",\"correlationFilter\":{\"correlationId\":\"correlationid\",\"messageId\":\"messageid\",\"replyTo\":\"replyto\",\"label\":\"label\",\"sessionId\":\"sessionid\",\"replyToSessionId\":\"replytosessionid\",\"contentType\":\"contenttype\",\"properties\":{\"c\":\"d\",\"a\":\"b\"}}}}", "isContentBase64": false } } diff --git a/src/ServiceBus/ServiceBus.Autorest/test/New-AzServiceBusSubscription.Recording.json b/src/ServiceBus/ServiceBus.Autorest/test/New-AzServiceBusSubscription.Recording.json index 74a3b144a200..5f8b43999c0a 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/New-AzServiceBusSubscription.Recording.json +++ b/src/ServiceBus/ServiceBus.Autorest/test/New-AzServiceBusSubscription.Recording.json @@ -1,8 +1,8 @@ { - "New-AzServiceBusSubscription+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2?api-version=2022-01-01-preview+1": { + "New-AzServiceBusSubscription+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2?api-version=2022-10-01-preview+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2?api-version=2022-10-01-preview", "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT3M\",\n \"defaultMessageTimeToLive\": \"P428DT3H11M10S\",\n \"deadLetteringOnMessageExpiration\": true,\n \"maxDeliveryCount\": 12,\n \"status\": \"Active\",\n \"enableBatchedOperations\": true,\n \"forwardTo\": \"queue1\",\n \"forwardDeadLetteredMessagesTo\": \"queue1\"\n }\n}", "isContentBase64": false, "Headers": { @@ -18,27 +18,27 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1181" ], - "x-ms-request-id": [ "11af7018-b491-49fd-9d29-a73895ad74cf" ], - "x-ms-correlation-request-id": [ "11af7018-b491-49fd-9d29-a73895ad74cf" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T102923Z:11af7018-b491-49fd-9d29-a73895ad74cf" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1180" ], + "x-ms-request-id": [ "b783467e-7e92-41f0-9d79-459b853fa39b" ], + "x-ms-correlation-request-id": [ "b783467e-7e92-41f0-9d79-459b853fa39b" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134742Z:b783467e-7e92-41f0-9d79-459b853fa39b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:29:23 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:47:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1001" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2\",\"name\":\"subscription2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT3M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P428DT3H11M10S\",\"deadLetteringOnMessageExpiration\":true,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":12,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2022-11-24T10:29:23.0269247Z\",\"updatedAt\":\"2022-11-24T10:29:23.0269247Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2\",\"name\":\"subscription2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT3M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P428DT3H11M10S\",\"deadLetteringOnMessageExpiration\":true,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":12,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2023-02-19T13:47:42.6331877Z\",\"updatedAt\":\"2023-02-19T13:47:42.6331877Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", "isContentBase64": false } }, - "New-AzServiceBusSubscription+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription3%24%24D?api-version=2022-01-01-preview+2": { + "New-AzServiceBusSubscription+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription3%24%24D?api-version=2022-10-01-preview+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription3%24%24D?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription3%24%24D?api-version=2022-10-01-preview", "Content": "{\n \"properties\": {\n \"clientAffineProperties\": {\n \"clientId\": \"clientid\",\n \"isDurable\": true,\n \"isShared\": true\n },\n \"requiresSession\": true,\n \"deadLetteringOnFilterEvaluationExceptions\": true,\n \"autoDeleteOnIdle\": \"P7D\",\n \"isClientAffine\": true\n }\n}", "isContentBase64": false, "Headers": { @@ -54,32 +54,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1180" ], - "x-ms-request-id": [ "91862746-5583-452a-be2d-57dbd05f2762" ], - "x-ms-correlation-request-id": [ "91862746-5583-452a-be2d-57dbd05f2762" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T102924Z:91862746-5583-452a-be2d-57dbd05f2762" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1179" ], + "x-ms-request-id": [ "23a99802-f762-42b2-b3e3-36441963ceb5" ], + "x-ms-correlation-request-id": [ "23a99802-f762-42b2-b3e3-36441963ceb5" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134744Z:23a99802-f762-42b2-b3e3-36441963ceb5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:29:24 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:47:43 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1015" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription3$$D\",\"name\":\"subscription3$$D\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":true,\"clientAffineProperties\":{\"clientId\":\"clientid\",\"isDurable\":true,\"isShared\":true},\"lockDuration\":\"PT1M\",\"requiresSession\":true,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":10,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2022-11-24T10:29:24.3238008Z\",\"updatedAt\":\"2022-11-24T10:29:24.3238008Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P7D\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription3$$D\",\"name\":\"subscription3$$D\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":true,\"clientAffineProperties\":{\"clientId\":\"clientid\",\"isDurable\":true,\"isShared\":true},\"lockDuration\":\"PT1M\",\"requiresSession\":true,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":10,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2023-02-19T13:47:44.3365374Z\",\"updatedAt\":\"2023-02-19T13:47:44.3365374Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P7D\"}}", "isContentBase64": false } }, - "New-AzServiceBusSubscription+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions?api-version=2022-01-01-preview+3": { + "New-AzServiceBusSubscription+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions?api-version=2022-10-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "167" ], - "x-ms-client-request-id": [ "efbed1d2-edaf-4f6c-bdf6-3558e47a7294" ], + "x-ms-unique-id": [ "165" ], + "x-ms-client-request-id": [ "df21ce9e-03a7-4022-b5b4-c9d2a8e2e4cd" ], "CommandName": [ "Get-AzServiceBusSubscription" ], "FullCommandName": [ "Get-AzServiceBusSubscription_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -96,20 +96,20 @@ "Pragma": [ "no-cache" ], "x-ms-inline-count": [ "" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11874" ], - "x-ms-request-id": [ "be9d216a-ad62-4f7f-aa34-c7012602b574" ], - "x-ms-correlation-request-id": [ "be9d216a-ad62-4f7f-aa34-c7012602b574" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T102924Z:be9d216a-ad62-4f7f-aa34-c7012602b574" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11844" ], + "x-ms-request-id": [ "2b730026-e0bb-4451-b439-5fcf85105fc2" ], + "x-ms-correlation-request-id": [ "2b730026-e0bb-4451-b439-5fcf85105fc2" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134745Z:2b730026-e0bb-4451-b439-5fcf85105fc2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:29:24 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:47:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "3005" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1\",\"name\":\"subscription1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":10,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2022-11-24T09:42:06.8549861Z\",\"updatedAt\":\"2022-11-24T09:42:06.8549861Z\",\"accessedAt\":\"2022-11-24T09:42:06.854Z\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\"}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2\",\"name\":\"subscription2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT3M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P428DT3H11M10S\",\"deadLetteringOnMessageExpiration\":true,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":12,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2022-11-24T10:29:23.0301941Z\",\"updatedAt\":\"2022-11-24T10:29:23.0301941Z\",\"accessedAt\":\"2022-11-24T10:29:23.0301941Z\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription3$$D\",\"name\":\"subscription3$$D\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":true,\"clientAffineProperties\":{\"clientId\":\"clientid\",\"isDurable\":true,\"isShared\":true},\"lockDuration\":\"PT1M\",\"requiresSession\":true,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":10,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2022-11-24T10:29:24.3270771Z\",\"updatedAt\":\"2022-11-24T10:29:24.3270771Z\",\"accessedAt\":\"2022-11-24T10:29:24.3270771Z\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P7D\"}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1\",\"name\":\"subscription1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":10,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2023-02-19T13:02:44.2354247Z\",\"updatedAt\":\"2023-02-19T13:02:44.2354247Z\",\"accessedAt\":\"2023-02-19T13:02:44.235Z\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\"}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2\",\"name\":\"subscription2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT3M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P428DT3H11M10S\",\"deadLetteringOnMessageExpiration\":true,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":12,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2023-02-19T13:47:42.6427506Z\",\"updatedAt\":\"2023-02-19T13:47:42.6427506Z\",\"accessedAt\":\"2023-02-19T13:47:42.6427506Z\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription3$$D\",\"name\":\"subscription3$$D\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":true,\"clientAffineProperties\":{\"clientId\":\"clientid\",\"isDurable\":true,\"isShared\":true},\"lockDuration\":\"PT1M\",\"requiresSession\":true,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":10,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2023-02-19T13:47:44.3459436Z\",\"updatedAt\":\"2023-02-19T13:47:44.3459436Z\",\"accessedAt\":\"2023-02-19T13:47:44.3459436Z\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P7D\"}}]}", "isContentBase64": false } } diff --git a/src/ServiceBus/ServiceBus.Autorest/test/New-AzServiceBusTopic.Recording.json b/src/ServiceBus/ServiceBus.Autorest/test/New-AzServiceBusTopic.Recording.json index 97fbc224da4e..7347836c302a 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/New-AzServiceBusTopic.Recording.json +++ b/src/ServiceBus/ServiceBus.Autorest/test/New-AzServiceBusTopic.Recording.json @@ -1,8 +1,8 @@ { - "New-AzServiceBusTopic+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic2?api-version=2022-01-01-preview+1": { + "New-AzServiceBusTopic+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic2?api-version=2022-10-01-preview+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic2?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic2?api-version=2022-10-01-preview", "Content": "{\n \"properties\": {\n \"defaultMessageTimeToLive\": \"P365D\",\n \"maxMessageSizeInKilobytes\": 102400,\n \"requiresDuplicateDetection\": true,\n \"duplicateDetectionHistoryTimeWindow\": \"P1DT3M4S\",\n \"enableBatchedOperations\": true,\n \"supportOrdering\": true,\n \"autoDeleteOnIdle\": \"P428DT3H11M2S\"\n }\n}", "isContentBase64": false, "Headers": { @@ -18,27 +18,27 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1179" ], - "x-ms-request-id": [ "06b1a193-668d-441d-b821-1c098d610ae0" ], - "x-ms-correlation-request-id": [ "06b1a193-668d-441d-b821-1c098d610ae0" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T102946Z:06b1a193-668d-441d-b821-1c098d610ae0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1178" ], + "x-ms-request-id": [ "f74ff64f-5f3c-42bd-a0c3-2ca36cc10aa3" ], + "x-ms-correlation-request-id": [ "f74ff64f-5f3c-42bd-a0c3-2ca36cc10aa3" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134759Z:f74ff64f-5f3c-42bd-a0c3-2ca36cc10aa3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:29:46 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:47:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "917" ], + "Content-Length": [ "914" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic2\",\"name\":\"topic2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"defaultMessageTimeToLive\":\"P365D\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":true,\"duplicateDetectionHistoryTimeWindow\":\"P1DT3M4S\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P428DT3H11M2S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"2022-11-24T10:29:45.793Z\",\"updatedAt\":\"2022-11-24T10:29:45.877Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic2\",\"name\":\"topic2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"defaultMessageTimeToLive\":\"P365D\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":true,\"duplicateDetectionHistoryTimeWindow\":\"P1DT3M4S\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P428DT3H11M2S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"2023-02-19T13:47:59.1Z\",\"updatedAt\":\"2023-02-19T13:47:59.18Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", "isContentBase64": false } }, - "New-AzServiceBusTopic+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic3?api-version=2022-01-01-preview+2": { + "New-AzServiceBusTopic+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic3?api-version=2022-10-01-preview+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic3?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic3?api-version=2022-10-01-preview", "Content": "{\n \"properties\": {\n \"maxSizeInMegabytes\": 2048\n }\n}", "isContentBase64": false, "Headers": { @@ -54,32 +54,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1178" ], - "x-ms-request-id": [ "fee54862-97f3-4e26-8c85-bbf2cd1329b7" ], - "x-ms-correlation-request-id": [ "fee54862-97f3-4e26-8c85-bbf2cd1329b7" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T102948Z:fee54862-97f3-4e26-8c85-bbf2cd1329b7" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1177" ], + "x-ms-request-id": [ "f7743c92-c193-477b-a58f-b00839ee376f" ], + "x-ms-correlation-request-id": [ "f7743c92-c193-477b-a58f-b00839ee376f" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134802Z:f7743c92-c193-477b-a58f-b00839ee376f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:29:48 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:48:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "946" ], + "Content-Length": [ "947" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic3\",\"name\":\"topic3\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"2022-11-24T10:29:47.93Z\",\"updatedAt\":\"2022-11-24T10:29:48.037Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic3\",\"name\":\"topic3\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"2023-02-19T13:48:01.507Z\",\"updatedAt\":\"2023-02-19T13:48:01.583Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", "isContentBase64": false } }, - "New-AzServiceBusTopic+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics?api-version=2022-01-01-preview+3": { + "New-AzServiceBusTopic+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics?api-version=2022-10-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "170" ], - "x-ms-client-request-id": [ "7c3207f7-b92f-4866-b0f8-6d4682e25f69" ], + "x-ms-unique-id": [ "168" ], + "x-ms-client-request-id": [ "2155464b-1355-4748-ae7e-4a39ce028afc" ], "CommandName": [ "Get-AzServiceBusTopic" ], "FullCommandName": [ "Get-AzServiceBusTopic_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -96,27 +96,27 @@ "Pragma": [ "no-cache" ], "x-ms-inline-count": [ "" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11873" ], - "x-ms-request-id": [ "0fef3432-6aa2-4de2-9944-6ea0117f629d" ], - "x-ms-correlation-request-id": [ "0fef3432-6aa2-4de2-9944-6ea0117f629d" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T102949Z:0fef3432-6aa2-4de2-9944-6ea0117f629d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11843" ], + "x-ms-request-id": [ "ef7692bd-4068-4bec-9b61-05037fac41db" ], + "x-ms-correlation-request-id": [ "ef7692bd-4068-4bec-9b61-05037fac41db" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134803Z:ef7692bd-4068-4bec-9b61-05037fac41db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:29:48 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:48:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2842" ], + "Content-Length": [ "2841" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1\",\"name\":\"topic1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"2022-11-24T09:42:04.5112354Z\",\"updatedAt\":\"2022-11-24T10:02:05.402686Z\",\"accessedAt\":\"2022-11-24T10:29:24.3270771Z\",\"subscriptionCount\":3,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic2\",\"name\":\"topic2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"defaultMessageTimeToLive\":\"P365D\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":true,\"duplicateDetectionHistoryTimeWindow\":\"P1DT3M4S\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P428DT3H11M2S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"2022-11-24T10:29:45.793Z\",\"updatedAt\":\"2022-11-24T10:29:45.877Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic3\",\"name\":\"topic3\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"2022-11-24T10:29:47.93Z\",\"updatedAt\":\"2022-11-24T10:29:48.037Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1\",\"name\":\"topic1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"2023-02-19T13:02:41.6883314Z\",\"updatedAt\":\"2023-02-19T13:20:58.8033687Z\",\"accessedAt\":\"2023-02-19T13:47:44.3459436Z\",\"subscriptionCount\":3,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic2\",\"name\":\"topic2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"defaultMessageTimeToLive\":\"P365D\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":true,\"duplicateDetectionHistoryTimeWindow\":\"P1DT3M4S\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P428DT3H11M2S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"2023-02-19T13:47:59.1Z\",\"updatedAt\":\"2023-02-19T13:47:59.18Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic3\",\"name\":\"topic3\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"2023-02-19T13:48:01.507Z\",\"updatedAt\":\"2023-02-19T13:48:01.583Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}]}", "isContentBase64": false } }, - "New-AzServiceBusTopic+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNameck4gr6/topics/topic1?api-version=2022-01-01-preview+4": { + "New-AzServiceBusTopic+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNametkv0jq/topics/topic1?api-version=2022-10-01-preview+4": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNameck4gr6/topics/topic1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNametkv0jq/topics/topic1?api-version=2022-10-01-preview", "Content": "{\n \"properties\": {\n \"enableExpress\": true\n }\n}", "isContentBase64": false, "Headers": { @@ -132,20 +132,20 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1177" ], - "x-ms-request-id": [ "da534c46-03e6-4716-aa06-90a1d76a5e66" ], - "x-ms-correlation-request-id": [ "da534c46-03e6-4716-aa06-90a1d76a5e66" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T102951Z:da534c46-03e6-4716-aa06-90a1d76a5e66" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1176" ], + "x-ms-request-id": [ "1aa41fb2-89d5-425b-a8c7-7eb313769af4" ], + "x-ms-correlation-request-id": [ "1aa41fb2-89d5-425b-a8c7-7eb313769af4" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134805Z:1aa41fb2-89d5-425b-a8c7-7eb313769af4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:29:50 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:48:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "943" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNameck4gr6/topics/topic1\",\"name\":\"topic1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":256,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":true,\"createdAt\":\"2022-11-24T10:29:50.65Z\",\"updatedAt\":\"2022-11-24T10:29:50.67Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNametkv0jq/topics/topic1\",\"name\":\"topic1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":256,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":true,\"createdAt\":\"2023-02-19T13:48:04.82Z\",\"updatedAt\":\"2023-02-19T13:48:04.84Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", "isContentBase64": false } } diff --git a/src/ServiceBus/ServiceBus.Autorest/test/Remove-AzServiceBusAuthorizationRule.Recording.json b/src/ServiceBus/ServiceBus.Autorest/test/Remove-AzServiceBusAuthorizationRule.Recording.json index 0af45c91322a..3bb94189af72 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/Remove-AzServiceBusAuthorizationRule.Recording.json +++ b/src/ServiceBus/ServiceBus.Autorest/test/Remove-AzServiceBusAuthorizationRule.Recording.json @@ -1,13 +1,13 @@ { - "Remove-AzServiceBusAuthorizationRule+[NoContext]+[NoScenario]+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules?api-version=2022-01-01-preview+1": { + "Remove-AzServiceBusAuthorizationRule+[NoContext]+[NoScenario]+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "172" ], - "x-ms-client-request-id": [ "0b59a48b-ccac-4241-a5b8-e251ab98a956" ], + "x-ms-unique-id": [ "170" ], + "x-ms-client-request-id": [ "ddb96d7b-83d5-42ec-89ae-7775851cba31" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusNamespaceAuthorizationRule_List" ], "FullCommandName": [ "Get-AzServiceBusNamespaceAuthorizationRule_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -23,32 +23,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11872" ], - "x-ms-request-id": [ "21d334b9-095f-4184-9b98-980feaeb62c2" ], - "x-ms-correlation-request-id": [ "21d334b9-095f-4184-9b98-980feaeb62c2" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103048Z:21d334b9-095f-4184-9b98-980feaeb62c2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11842" ], + "x-ms-request-id": [ "86ad9bf5-b513-4951-9030-0b66c3feef89" ], + "x-ms-correlation-request-id": [ "86ad9bf5-b513-4951-9030-0b66c3feef89" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134839Z:86ad9bf5-b513-4951-9030-0b66c3feef89" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:30:47 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:48:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1459" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/authorizationrules/RootManageSharedAccessKey\",\"name\":\"RootManageSharedAccessKey\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Listen\",\"Manage\",\"Send\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/authorizationrules/namespaceAuthRule2\",\"name\":\"namespaceAuthRule2\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Send\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/authorizationrules/namespaceAuthRule1\",\"name\":\"namespaceAuthRule1\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/authorizationrules/namespaceAuthRule3\",\"name\":\"namespaceAuthRule3\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Send\",\"Manage\",\"Listen\"]}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/authorizationrules/RootManageSharedAccessKey\",\"name\":\"RootManageSharedAccessKey\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Listen\",\"Manage\",\"Send\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/authorizationrules/namespaceAuthRule2\",\"name\":\"namespaceAuthRule2\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Send\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/authorizationrules/namespaceAuthRule1\",\"name\":\"namespaceAuthRule1\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/authorizationrules/namespaceAuthRule3\",\"name\":\"namespaceAuthRule3\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Send\",\"Manage\",\"Listen\"]}}]}", "isContentBase64": false } }, - "Remove-AzServiceBusAuthorizationRule+[NoContext]+[NoScenario]+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules?api-version=2022-01-01-preview+2": { + "Remove-AzServiceBusAuthorizationRule+[NoContext]+[NoScenario]+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules?api-version=2022-10-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "173" ], - "x-ms-client-request-id": [ "219daa48-237e-4def-8b06-5b46119180ce" ], + "x-ms-unique-id": [ "171" ], + "x-ms-client-request-id": [ "3ff0ceed-6ad1-455c-8ddc-1925aeadf5b1" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusQueueAuthorizationRule_List" ], "FullCommandName": [ "Get-AzServiceBusQueueAuthorizationRule_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -64,32 +64,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11871" ], - "x-ms-request-id": [ "625ae271-18e5-4aa0-838d-03020b8c73ac" ], - "x-ms-correlation-request-id": [ "625ae271-18e5-4aa0-838d-03020b8c73ac" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103048Z:625ae271-18e5-4aa0-838d-03020b8c73ac" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11841" ], + "x-ms-request-id": [ "f38cdc43-824d-4b6b-9202-ace069302c8b" ], + "x-ms-correlation-request-id": [ "f38cdc43-824d-4b6b-9202-ace069302c8b" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134839Z:f38cdc43-824d-4b6b-9202-ace069302c8b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:30:47 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:48:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1123" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationrules/queueAuthRule2\",\"name\":\"queueAuthRule2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationrules/queueAuthRule3\",\"name\":\"queueAuthRule3\",\"type\":\"Microsoft.ServiceBus/namespaces/queues/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Listen\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationrules/queueAuthRule1\",\"name\":\"queueAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationrules/queueAuthRule2\",\"name\":\"queueAuthRule2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationrules/queueAuthRule3\",\"name\":\"queueAuthRule3\",\"type\":\"Microsoft.ServiceBus/namespaces/queues/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Listen\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationrules/queueAuthRule1\",\"name\":\"queueAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}]}", "isContentBase64": false } }, - "Remove-AzServiceBusAuthorizationRule+[NoContext]+[NoScenario]+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules?api-version=2022-01-01-preview+3": { + "Remove-AzServiceBusAuthorizationRule+[NoContext]+[NoScenario]+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules?api-version=2022-10-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "174" ], - "x-ms-client-request-id": [ "96e826fe-5827-4816-aca4-601e3629a8f7" ], + "x-ms-unique-id": [ "172" ], + "x-ms-client-request-id": [ "70d4b31d-edc6-4867-8a9f-71a82e12aef3" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusTopicAuthorizationRule_List" ], "FullCommandName": [ "Get-AzServiceBusTopicAuthorizationRule_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -105,32 +105,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11870" ], - "x-ms-request-id": [ "eacb6a9f-fb3c-4598-b6d3-3d505188707f" ], - "x-ms-correlation-request-id": [ "eacb6a9f-fb3c-4598-b6d3-3d505188707f" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103048Z:eacb6a9f-fb3c-4598-b6d3-3d505188707f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11840" ], + "x-ms-request-id": [ "4cb0b1f8-f108-4c5c-a13d-e317d2d687ba" ], + "x-ms-correlation-request-id": [ "4cb0b1f8-f108-4c5c-a13d-e317d2d687ba" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134840Z:4cb0b1f8-f108-4c5c-a13d-e317d2d687ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:30:47 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:48:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1105" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationrules/topicAuthRule2\",\"name\":\"topicAuthRule2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Listen\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationrules/topicAuthRule3\",\"name\":\"topicAuthRule3\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Send\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationrules/topicAuthRule1\",\"name\":\"topicAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationrules/topicAuthRule2\",\"name\":\"topicAuthRule2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Listen\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationrules/topicAuthRule3\",\"name\":\"topicAuthRule3\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Send\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationrules/topicAuthRule1\",\"name\":\"topicAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}]}", "isContentBase64": false } }, - "Remove-AzServiceBusAuthorizationRule+[NoContext]+RemoveExpandedNamespace+$DELETE+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules/namespaceAuthRule3?api-version=2022-01-01-preview+1": { + "Remove-AzServiceBusAuthorizationRule+[NoContext]+RemoveExpandedNamespace+$DELETE+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules/namespaceAuthRule3?api-version=2022-10-01-preview+1": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules/namespaceAuthRule3?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules/namespaceAuthRule3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "175" ], - "x-ms-client-request-id": [ "6892c6e1-1286-4ec9-b033-9ae5e4517635" ], + "x-ms-unique-id": [ "173" ], + "x-ms-client-request-id": [ "06e5bdaa-9482-417f-9460-0fc0c86bf775" ], "CommandName": [ "Az.ServiceBus.private\\Remove-AzServiceBusNamespaceAuthorizationRule_Delete" ], "FullCommandName": [ "Remove-AzServiceBusNamespaceAuthorizationRule_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -147,12 +147,12 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-request-id": [ "ff7b8c51-314c-4ce3-b6c8-83ee469f6aa1" ], - "x-ms-correlation-request-id": [ "ff7b8c51-314c-4ce3-b6c8-83ee469f6aa1" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103056Z:ff7b8c51-314c-4ce3-b6c8-83ee469f6aa1" ], + "x-ms-request-id": [ "382563d0-4000-469c-96e1-753bb3a978f8" ], + "x-ms-correlation-request-id": [ "382563d0-4000-469c-96e1-753bb3a978f8" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134848Z:382563d0-4000-469c-96e1-753bb3a978f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:30:55 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:48:48 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -162,15 +162,15 @@ "isContentBase64": false } }, - "Remove-AzServiceBusAuthorizationRule+[NoContext]+RemoveExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules/namespaceAuthRule3?api-version=2022-01-01-preview+2": { + "Remove-AzServiceBusAuthorizationRule+[NoContext]+RemoveExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules/namespaceAuthRule3?api-version=2022-10-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules/namespaceAuthRule3?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules/namespaceAuthRule3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "176" ], - "x-ms-client-request-id": [ "c11e857a-a387-40f6-a4d0-9939ad869459" ], + "x-ms-unique-id": [ "174" ], + "x-ms-client-request-id": [ "201afc82-bdb2-49a7-9250-baf269922ec8" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusNamespaceAuthorizationRule_Get" ], "FullCommandName": [ "Get-AzServiceBusNamespaceAuthorizationRule_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -186,13 +186,13 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11869" ], - "x-ms-request-id": [ "e84e32ff-a878-4331-96f8-6844d3c5de8e" ], - "x-ms-correlation-request-id": [ "e84e32ff-a878-4331-96f8-6844d3c5de8e" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103057Z:e84e32ff-a878-4331-96f8-6844d3c5de8e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11839" ], + "x-ms-request-id": [ "ea2d91e4-4cc9-40ee-a53a-243e985c157f" ], + "x-ms-correlation-request-id": [ "ea2d91e4-4cc9-40ee-a53a-243e985c157f" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134850Z:ea2d91e4-4cc9-40ee-a53a-243e985c157f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:30:56 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:48:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "87" ], @@ -203,15 +203,15 @@ "isContentBase64": false } }, - "Remove-AzServiceBusAuthorizationRule+[NoContext]+RemoveExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules?api-version=2022-01-01-preview+3": { + "Remove-AzServiceBusAuthorizationRule+[NoContext]+RemoveExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules?api-version=2022-10-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "177" ], - "x-ms-client-request-id": [ "b9f03b6d-af38-42cb-a3da-383c1b7e2e06" ], + "x-ms-unique-id": [ "175" ], + "x-ms-client-request-id": [ "02d0e228-f103-42f1-89d5-c71a48a85972" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusNamespaceAuthorizationRule_List" ], "FullCommandName": [ "Get-AzServiceBusNamespaceAuthorizationRule_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -227,32 +227,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11868" ], - "x-ms-request-id": [ "59650d9b-2764-45bd-aeed-e88f17371218" ], - "x-ms-correlation-request-id": [ "59650d9b-2764-45bd-aeed-e88f17371218" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103057Z:59650d9b-2764-45bd-aeed-e88f17371218" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11838" ], + "x-ms-request-id": [ "aff17fdd-380d-4115-9b18-1491f590aaf5" ], + "x-ms-correlation-request-id": [ "aff17fdd-380d-4115-9b18-1491f590aaf5" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134851Z:aff17fdd-380d-4115-9b18-1491f590aaf5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:30:57 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:48:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1096" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/authorizationrules/RootManageSharedAccessKey\",\"name\":\"RootManageSharedAccessKey\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Listen\",\"Manage\",\"Send\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/authorizationrules/namespaceAuthRule2\",\"name\":\"namespaceAuthRule2\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Send\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/authorizationrules/namespaceAuthRule1\",\"name\":\"namespaceAuthRule1\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/authorizationrules/RootManageSharedAccessKey\",\"name\":\"RootManageSharedAccessKey\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Listen\",\"Manage\",\"Send\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/authorizationrules/namespaceAuthRule2\",\"name\":\"namespaceAuthRule2\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Send\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/authorizationrules/namespaceAuthRule1\",\"name\":\"namespaceAuthRule1\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}]}", "isContentBase64": false } }, - "Remove-AzServiceBusAuthorizationRule+[NoContext]+RemoveExpandedTopic+$DELETE+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules/topicAuthRule3?api-version=2022-01-01-preview+1": { + "Remove-AzServiceBusAuthorizationRule+[NoContext]+RemoveExpandedTopic+$DELETE+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules/topicAuthRule3?api-version=2022-10-01-preview+1": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules/topicAuthRule3?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules/topicAuthRule3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "178" ], - "x-ms-client-request-id": [ "f29fda50-3315-4659-aeda-a1efcb8b63da" ], + "x-ms-unique-id": [ "176" ], + "x-ms-client-request-id": [ "ffc38923-e644-460d-99aa-12271a6f9d46" ], "CommandName": [ "Az.ServiceBus.private\\Remove-AzServiceBusTopicAuthorizationRule_Delete" ], "FullCommandName": [ "Remove-AzServiceBusTopicAuthorizationRule_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -269,12 +269,12 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], - "x-ms-request-id": [ "ef1ddd34-4b38-4fe2-9903-b6a56202afcc" ], - "x-ms-correlation-request-id": [ "ef1ddd34-4b38-4fe2-9903-b6a56202afcc" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103058Z:ef1ddd34-4b38-4fe2-9903-b6a56202afcc" ], + "x-ms-request-id": [ "ddc0f94d-0860-4a23-8343-e8046d6f0bef" ], + "x-ms-correlation-request-id": [ "ddc0f94d-0860-4a23-8343-e8046d6f0bef" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134851Z:ddc0f94d-0860-4a23-8343-e8046d6f0bef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:30:57 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:48:51 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -284,15 +284,15 @@ "isContentBase64": false } }, - "Remove-AzServiceBusAuthorizationRule+[NoContext]+RemoveExpandedTopic+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules/topicAuthRule3?api-version=2022-01-01-preview+2": { + "Remove-AzServiceBusAuthorizationRule+[NoContext]+RemoveExpandedTopic+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules/topicAuthRule3?api-version=2022-10-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules/topicAuthRule3?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules/topicAuthRule3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "179" ], - "x-ms-client-request-id": [ "929dd321-9b9c-4cc4-9a77-6f348777a8df" ], + "x-ms-unique-id": [ "177" ], + "x-ms-client-request-id": [ "ade88079-c8c4-47b3-8137-489889fad2cf" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusTopicAuthorizationRule_Get" ], "FullCommandName": [ "Get-AzServiceBusTopicAuthorizationRule_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -308,13 +308,13 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11867" ], - "x-ms-request-id": [ "631c75bd-272c-4810-be69-668f57d1a484" ], - "x-ms-correlation-request-id": [ "631c75bd-272c-4810-be69-668f57d1a484" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103059Z:631c75bd-272c-4810-be69-668f57d1a484" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11837" ], + "x-ms-request-id": [ "b773db21-1062-458f-8e88-2173b3d44a81" ], + "x-ms-correlation-request-id": [ "b773db21-1062-458f-8e88-2173b3d44a81" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134852Z:b773db21-1062-458f-8e88-2173b3d44a81" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:30:58 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:48:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "87" ], @@ -325,15 +325,15 @@ "isContentBase64": false } }, - "Remove-AzServiceBusAuthorizationRule+[NoContext]+RemoveExpandedTopic+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules?api-version=2022-01-01-preview+3": { + "Remove-AzServiceBusAuthorizationRule+[NoContext]+RemoveExpandedTopic+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules?api-version=2022-10-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "180" ], - "x-ms-client-request-id": [ "9d8b0a39-21b6-4b87-befe-636056f82ed3" ], + "x-ms-unique-id": [ "178" ], + "x-ms-client-request-id": [ "aba086e4-9565-4eb6-a72c-2c9d3a893bde" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusTopicAuthorizationRule_List" ], "FullCommandName": [ "Get-AzServiceBusTopicAuthorizationRule_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -349,32 +349,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11866" ], - "x-ms-request-id": [ "21b7cdc7-7d3e-463f-a9cd-684ed5940f08" ], - "x-ms-correlation-request-id": [ "21b7cdc7-7d3e-463f-a9cd-684ed5940f08" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103059Z:21b7cdc7-7d3e-463f-a9cd-684ed5940f08" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11836" ], + "x-ms-request-id": [ "53f18b05-0009-434e-8029-bba9ef844134" ], + "x-ms-correlation-request-id": [ "53f18b05-0009-434e-8029-bba9ef844134" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134853Z:53f18b05-0009-434e-8029-bba9ef844134" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:30:58 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:48:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "747" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationrules/topicAuthRule2\",\"name\":\"topicAuthRule2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Listen\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationrules/topicAuthRule1\",\"name\":\"topicAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationrules/topicAuthRule2\",\"name\":\"topicAuthRule2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Listen\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationrules/topicAuthRule1\",\"name\":\"topicAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}]}", "isContentBase64": false } }, - "Remove-AzServiceBusAuthorizationRule+[NoContext]+RemoveExpandedQueue+$DELETE+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules/queueAuthRule3?api-version=2022-01-01-preview+1": { + "Remove-AzServiceBusAuthorizationRule+[NoContext]+RemoveExpandedQueue+$DELETE+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules/queueAuthRule3?api-version=2022-10-01-preview+1": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules/queueAuthRule3?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules/queueAuthRule3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "181" ], - "x-ms-client-request-id": [ "06fb2c07-2724-42c6-a8fa-7cb6943a52c7" ], + "x-ms-unique-id": [ "179" ], + "x-ms-client-request-id": [ "91d011e6-c550-4bff-9130-f8beb5013a30" ], "CommandName": [ "Az.ServiceBus.private\\Remove-AzServiceBusQueueAuthorizationRule_Delete" ], "FullCommandName": [ "Remove-AzServiceBusQueueAuthorizationRule_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -391,12 +391,12 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], - "x-ms-request-id": [ "81e1b9d3-fbb6-4a33-aefa-77d6542e3a12" ], - "x-ms-correlation-request-id": [ "81e1b9d3-fbb6-4a33-aefa-77d6542e3a12" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103059Z:81e1b9d3-fbb6-4a33-aefa-77d6542e3a12" ], + "x-ms-request-id": [ "caa079a1-4810-4da3-b358-8256d5e9673e" ], + "x-ms-correlation-request-id": [ "caa079a1-4810-4da3-b358-8256d5e9673e" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134854Z:caa079a1-4810-4da3-b358-8256d5e9673e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:30:59 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:48:53 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -406,15 +406,15 @@ "isContentBase64": false } }, - "Remove-AzServiceBusAuthorizationRule+[NoContext]+RemoveExpandedQueue+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules/queueAuthRule3?api-version=2022-01-01-preview+2": { + "Remove-AzServiceBusAuthorizationRule+[NoContext]+RemoveExpandedQueue+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules/queueAuthRule3?api-version=2022-10-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules/queueAuthRule3?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules/queueAuthRule3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "182" ], - "x-ms-client-request-id": [ "26a42794-a7ac-40aa-9207-9cae0910898f" ], + "x-ms-unique-id": [ "180" ], + "x-ms-client-request-id": [ "74c710c3-e5ee-45a3-a06d-96c8a997d7a3" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusQueueAuthorizationRule_Get" ], "FullCommandName": [ "Get-AzServiceBusQueueAuthorizationRule_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -430,13 +430,13 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11865" ], - "x-ms-request-id": [ "865b4c3d-9ced-46b6-b197-10660456159d" ], - "x-ms-correlation-request-id": [ "865b4c3d-9ced-46b6-b197-10660456159d" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103100Z:865b4c3d-9ced-46b6-b197-10660456159d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11835" ], + "x-ms-request-id": [ "3dc11f30-2f70-4fa9-951c-d344ce953b3a" ], + "x-ms-correlation-request-id": [ "3dc11f30-2f70-4fa9-951c-d344ce953b3a" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134855Z:3dc11f30-2f70-4fa9-951c-d344ce953b3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:30:59 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:48:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "87" ], @@ -447,15 +447,15 @@ "isContentBase64": false } }, - "Remove-AzServiceBusAuthorizationRule+[NoContext]+RemoveExpandedQueue+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules?api-version=2022-01-01-preview+3": { + "Remove-AzServiceBusAuthorizationRule+[NoContext]+RemoveExpandedQueue+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules?api-version=2022-10-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "183" ], - "x-ms-client-request-id": [ "5d92e132-7514-4ea7-9d27-6bcb48be0bf6" ], + "x-ms-unique-id": [ "181" ], + "x-ms-client-request-id": [ "c1561b41-27e2-485d-962c-f7b1abeed47f" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusQueueAuthorizationRule_List" ], "FullCommandName": [ "Get-AzServiceBusQueueAuthorizationRule_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -471,32 +471,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11864" ], - "x-ms-request-id": [ "2e11e253-0e36-4361-9a5a-0812794da690" ], - "x-ms-correlation-request-id": [ "2e11e253-0e36-4361-9a5a-0812794da690" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103100Z:2e11e253-0e36-4361-9a5a-0812794da690" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11834" ], + "x-ms-request-id": [ "e93716d6-3342-40c5-a0b9-edc5713c2d52" ], + "x-ms-correlation-request-id": [ "e93716d6-3342-40c5-a0b9-edc5713c2d52" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134856Z:e93716d6-3342-40c5-a0b9-edc5713c2d52" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:31:00 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:48:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "763" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationrules/queueAuthRule2\",\"name\":\"queueAuthRule2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationrules/queueAuthRule1\",\"name\":\"queueAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationrules/queueAuthRule2\",\"name\":\"queueAuthRule2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationrules/queueAuthRule1\",\"name\":\"queueAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}]}", "isContentBase64": false } }, - "Remove-AzServiceBusAuthorizationRule+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules/namespaceAuthRule2?api-version=2022-01-01-preview+1": { + "Remove-AzServiceBusAuthorizationRule+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules/namespaceAuthRule2?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules/namespaceAuthRule2?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules/namespaceAuthRule2?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "184" ], - "x-ms-client-request-id": [ "15d9c6d1-d75a-4364-9491-473ccdce8d38" ], + "x-ms-unique-id": [ "182" ], + "x-ms-client-request-id": [ "c8a6d678-4363-4687-a174-e737539f0e95" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusNamespaceAuthorizationRule_Get" ], "FullCommandName": [ "Get-AzServiceBusNamespaceAuthorizationRule_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -512,32 +512,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11863" ], - "x-ms-request-id": [ "886dddd0-9b6b-4a92-86dd-3b56ab9c1b71" ], - "x-ms-correlation-request-id": [ "886dddd0-9b6b-4a92-86dd-3b56ab9c1b71" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103101Z:886dddd0-9b6b-4a92-86dd-3b56ab9c1b71" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11833" ], + "x-ms-request-id": [ "1f5046fa-0b31-4b23-9558-5c7b08f16ce6" ], + "x-ms-correlation-request-id": [ "1f5046fa-0b31-4b23-9558-5c7b08f16ce6" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134857Z:1f5046fa-0b31-4b23-9558-5c7b08f16ce6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:31:00 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:48:56 GMT" ] }, "ContentHeaders": { "Content-Length": [ "344" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/authorizationrules/namespaceAuthRule2\",\"name\":\"namespaceAuthRule2\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Send\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/authorizationrules/namespaceAuthRule2\",\"name\":\"namespaceAuthRule2\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Send\"]}}", "isContentBase64": false } }, - "Remove-AzServiceBusAuthorizationRule+[NoContext]+RemoveViaIdentityExpanded+$DELETE+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules/namespaceAuthRule2?api-version=2022-01-01-preview+2": { + "Remove-AzServiceBusAuthorizationRule+[NoContext]+RemoveViaIdentityExpanded+$DELETE+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules/namespaceAuthRule2?api-version=2022-10-01-preview+2": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules/namespaceAuthRule2?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules/namespaceAuthRule2?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "185" ], - "x-ms-client-request-id": [ "e8240d61-375c-4ff5-9b0b-286d66eb88cf" ], + "x-ms-unique-id": [ "183" ], + "x-ms-client-request-id": [ "66c94cb8-f694-4dcf-884c-3224f4793a0a" ], "CommandName": [ "Az.ServiceBus.private\\Remove-AzServiceBusNamespaceAuthorizationRule_DeleteViaIdentity" ], "FullCommandName": [ "Remove-AzServiceBusNamespaceAuthorizationRule_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -554,12 +554,12 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14996" ], - "x-ms-request-id": [ "af60fffd-de0e-4ba0-ac9b-794f24a0852f" ], - "x-ms-correlation-request-id": [ "af60fffd-de0e-4ba0-ac9b-794f24a0852f" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103108Z:af60fffd-de0e-4ba0-ac9b-794f24a0852f" ], + "x-ms-request-id": [ "2160726a-067d-4240-9642-511dc2d54aa8" ], + "x-ms-correlation-request-id": [ "2160726a-067d-4240-9642-511dc2d54aa8" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134903Z:2160726a-067d-4240-9642-511dc2d54aa8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:31:07 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:49:02 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -569,15 +569,15 @@ "isContentBase64": false } }, - "Remove-AzServiceBusAuthorizationRule+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules/namespaceAuthRule2?api-version=2022-01-01-preview+3": { + "Remove-AzServiceBusAuthorizationRule+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules/namespaceAuthRule2?api-version=2022-10-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules/namespaceAuthRule2?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules/namespaceAuthRule2?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "186" ], - "x-ms-client-request-id": [ "3c5fcfca-d377-4849-a8d7-0be8727ba4b0" ], + "x-ms-unique-id": [ "184" ], + "x-ms-client-request-id": [ "cea6c880-66c1-418e-8bdf-99d116a5a474" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusNamespaceAuthorizationRule_GetViaIdentity" ], "FullCommandName": [ "Get-AzServiceBusNamespaceAuthorizationRule_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -593,13 +593,13 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11862" ], - "x-ms-request-id": [ "5b056db1-9200-4b67-b148-7f3669e5016a" ], - "x-ms-correlation-request-id": [ "5b056db1-9200-4b67-b148-7f3669e5016a" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103108Z:5b056db1-9200-4b67-b148-7f3669e5016a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11832" ], + "x-ms-request-id": [ "c966d156-d244-4ae1-949b-868840f8c169" ], + "x-ms-correlation-request-id": [ "c966d156-d244-4ae1-949b-868840f8c169" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134904Z:c966d156-d244-4ae1-949b-868840f8c169" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:31:07 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:49:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "87" ], @@ -610,15 +610,15 @@ "isContentBase64": false } }, - "Remove-AzServiceBusAuthorizationRule+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules?api-version=2022-01-01-preview+4": { + "Remove-AzServiceBusAuthorizationRule+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules?api-version=2022-10-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "187" ], - "x-ms-client-request-id": [ "e1ad65d3-034c-4af8-b9e2-5f5459e8c448" ], + "x-ms-unique-id": [ "185" ], + "x-ms-client-request-id": [ "d95759fb-a009-4e49-bd44-a3ce8fe2156a" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusNamespaceAuthorizationRule_List" ], "FullCommandName": [ "Get-AzServiceBusNamespaceAuthorizationRule_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -634,32 +634,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11861" ], - "x-ms-request-id": [ "1bc7b473-fd45-4c00-a237-c9444604d218" ], - "x-ms-correlation-request-id": [ "1bc7b473-fd45-4c00-a237-c9444604d218" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103109Z:1bc7b473-fd45-4c00-a237-c9444604d218" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11831" ], + "x-ms-request-id": [ "b9b20e9d-1db0-4e01-91f3-816a07ce957e" ], + "x-ms-correlation-request-id": [ "b9b20e9d-1db0-4e01-91f3-816a07ce957e" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134905Z:b9b20e9d-1db0-4e01-91f3-816a07ce957e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:31:08 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:49:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "751" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/authorizationrules/RootManageSharedAccessKey\",\"name\":\"RootManageSharedAccessKey\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Listen\",\"Manage\",\"Send\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/authorizationrules/namespaceAuthRule1\",\"name\":\"namespaceAuthRule1\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/authorizationrules/RootManageSharedAccessKey\",\"name\":\"RootManageSharedAccessKey\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Listen\",\"Manage\",\"Send\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/authorizationrules/namespaceAuthRule1\",\"name\":\"namespaceAuthRule1\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}]}", "isContentBase64": false } }, - "Remove-AzServiceBusAuthorizationRule+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules/queueAuthRule2?api-version=2022-01-01-preview+5": { + "Remove-AzServiceBusAuthorizationRule+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules/queueAuthRule2?api-version=2022-10-01-preview+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules/queueAuthRule2?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules/queueAuthRule2?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "188" ], - "x-ms-client-request-id": [ "dce5a06f-5c86-4a26-b719-3bd9df0fde0c" ], + "x-ms-unique-id": [ "186" ], + "x-ms-client-request-id": [ "259388c0-3bef-4369-b0c2-5a1d4d9428c2" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusQueueAuthorizationRule_Get" ], "FullCommandName": [ "Get-AzServiceBusQueueAuthorizationRule_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -675,32 +675,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11860" ], - "x-ms-request-id": [ "95adf54d-9410-4bb5-afaa-4e9bee6fef46" ], - "x-ms-correlation-request-id": [ "95adf54d-9410-4bb5-afaa-4e9bee6fef46" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103109Z:95adf54d-9410-4bb5-afaa-4e9bee6fef46" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11830" ], + "x-ms-request-id": [ "3d635ecc-c5e1-41ab-8b99-70d21427f739" ], + "x-ms-correlation-request-id": [ "3d635ecc-c5e1-41ab-8b99-70d21427f739" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134906Z:3d635ecc-c5e1-41ab-8b99-70d21427f739" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:31:08 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:49:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "375" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationrules/queueAuthRule2\",\"name\":\"queueAuthRule2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationrules/queueAuthRule2\",\"name\":\"queueAuthRule2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}", "isContentBase64": false } }, - "Remove-AzServiceBusAuthorizationRule+[NoContext]+RemoveViaIdentityExpanded+$DELETE+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules/queueAuthRule2?api-version=2022-01-01-preview+6": { + "Remove-AzServiceBusAuthorizationRule+[NoContext]+RemoveViaIdentityExpanded+$DELETE+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules/queueAuthRule2?api-version=2022-10-01-preview+6": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules/queueAuthRule2?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules/queueAuthRule2?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "189" ], - "x-ms-client-request-id": [ "6494b920-4667-4c2a-8cc2-73c820748b70" ], + "x-ms-unique-id": [ "187" ], + "x-ms-client-request-id": [ "5bf20a85-a47b-40c2-af04-36c1aede4899" ], "CommandName": [ "Az.ServiceBus.private\\Remove-AzServiceBusQueueAuthorizationRule_DeleteViaIdentity" ], "FullCommandName": [ "Remove-AzServiceBusQueueAuthorizationRule_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -717,12 +717,12 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14995" ], - "x-ms-request-id": [ "44770480-e1e3-4c06-a461-13ec36cf094d" ], - "x-ms-correlation-request-id": [ "44770480-e1e3-4c06-a461-13ec36cf094d" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103110Z:44770480-e1e3-4c06-a461-13ec36cf094d" ], + "x-ms-request-id": [ "3749c98f-7c6f-46e4-aaba-b35ebd8f20b9" ], + "x-ms-correlation-request-id": [ "3749c98f-7c6f-46e4-aaba-b35ebd8f20b9" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134907Z:3749c98f-7c6f-46e4-aaba-b35ebd8f20b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:31:09 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:49:06 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -732,15 +732,15 @@ "isContentBase64": false } }, - "Remove-AzServiceBusAuthorizationRule+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules/queueAuthRule2?api-version=2022-01-01-preview+7": { + "Remove-AzServiceBusAuthorizationRule+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules/queueAuthRule2?api-version=2022-10-01-preview+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules/queueAuthRule2?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules/queueAuthRule2?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "190" ], - "x-ms-client-request-id": [ "280742ef-f22f-492b-a0d4-c4e4ebe52a66" ], + "x-ms-unique-id": [ "188" ], + "x-ms-client-request-id": [ "fa35010e-140d-44c2-8414-9a1cd227f652" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusQueueAuthorizationRule_GetViaIdentity" ], "FullCommandName": [ "Get-AzServiceBusQueueAuthorizationRule_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -756,13 +756,13 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11859" ], - "x-ms-request-id": [ "ee1e26a5-2775-4042-ab08-7ec2744e9175" ], - "x-ms-correlation-request-id": [ "ee1e26a5-2775-4042-ab08-7ec2744e9175" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103111Z:ee1e26a5-2775-4042-ab08-7ec2744e9175" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11829" ], + "x-ms-request-id": [ "d016fb70-b411-4115-bcc2-f8f0f9390bd3" ], + "x-ms-correlation-request-id": [ "d016fb70-b411-4115-bcc2-f8f0f9390bd3" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134907Z:d016fb70-b411-4115-bcc2-f8f0f9390bd3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:31:10 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:49:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "87" ], @@ -773,15 +773,15 @@ "isContentBase64": false } }, - "Remove-AzServiceBusAuthorizationRule+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules?api-version=2022-01-01-preview+8": { + "Remove-AzServiceBusAuthorizationRule+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules?api-version=2022-10-01-preview+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "191" ], - "x-ms-client-request-id": [ "496d1e04-a40b-4a1e-b210-bda48c8f3f9b" ], + "x-ms-unique-id": [ "189" ], + "x-ms-client-request-id": [ "19922032-0957-4cd3-a4bc-89156dc86c55" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusQueueAuthorizationRule_List" ], "FullCommandName": [ "Get-AzServiceBusQueueAuthorizationRule_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -797,32 +797,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11858" ], - "x-ms-request-id": [ "7cef4e4f-7a06-4c42-9f01-1f9524c04ada" ], - "x-ms-correlation-request-id": [ "7cef4e4f-7a06-4c42-9f01-1f9524c04ada" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103111Z:7cef4e4f-7a06-4c42-9f01-1f9524c04ada" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11828" ], + "x-ms-request-id": [ "727cdb98-b6e8-46d1-bb1a-e35c011692ad" ], + "x-ms-correlation-request-id": [ "727cdb98-b6e8-46d1-bb1a-e35c011692ad" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134908Z:727cdb98-b6e8-46d1-bb1a-e35c011692ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:31:10 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:49:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "387" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationrules/queueAuthRule1\",\"name\":\"queueAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationrules/queueAuthRule1\",\"name\":\"queueAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}]}", "isContentBase64": false } }, - "Remove-AzServiceBusAuthorizationRule+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules/topicAuthRule2?api-version=2022-01-01-preview+9": { + "Remove-AzServiceBusAuthorizationRule+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules/topicAuthRule2?api-version=2022-10-01-preview+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules/topicAuthRule2?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules/topicAuthRule2?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "192" ], - "x-ms-client-request-id": [ "a256872d-a538-432b-bff9-8e7a53d14481" ], + "x-ms-unique-id": [ "190" ], + "x-ms-client-request-id": [ "93912262-1660-48bd-b277-a01e1c743566" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusTopicAuthorizationRule_Get" ], "FullCommandName": [ "Get-AzServiceBusTopicAuthorizationRule_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -838,32 +838,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11857" ], - "x-ms-request-id": [ "1ed48ff6-f227-4bb8-bd09-1a055a53baef" ], - "x-ms-correlation-request-id": [ "1ed48ff6-f227-4bb8-bd09-1a055a53baef" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103112Z:1ed48ff6-f227-4bb8-bd09-1a055a53baef" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11827" ], + "x-ms-request-id": [ "a2e5c07a-6e32-41db-aea2-e2530e79fb75" ], + "x-ms-correlation-request-id": [ "a2e5c07a-6e32-41db-aea2-e2530e79fb75" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134909Z:a2e5c07a-6e32-41db-aea2-e2530e79fb75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:31:11 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:49:08 GMT" ] }, "ContentHeaders": { "Content-Length": [ "359" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationrules/topicAuthRule2\",\"name\":\"topicAuthRule2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Listen\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationrules/topicAuthRule2\",\"name\":\"topicAuthRule2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Listen\"]}}", "isContentBase64": false } }, - "Remove-AzServiceBusAuthorizationRule+[NoContext]+RemoveViaIdentityExpanded+$DELETE+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules/topicAuthRule2?api-version=2022-01-01-preview+10": { + "Remove-AzServiceBusAuthorizationRule+[NoContext]+RemoveViaIdentityExpanded+$DELETE+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules/topicAuthRule2?api-version=2022-10-01-preview+10": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules/topicAuthRule2?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules/topicAuthRule2?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "193" ], - "x-ms-client-request-id": [ "a0a55f0e-24c5-4aec-8606-2456571a8101" ], + "x-ms-unique-id": [ "191" ], + "x-ms-client-request-id": [ "f615fcd0-2f52-4e34-b2c6-10f78f4aeacf" ], "CommandName": [ "Az.ServiceBus.private\\Remove-AzServiceBusTopicAuthorizationRule_DeleteViaIdentity" ], "FullCommandName": [ "Remove-AzServiceBusTopicAuthorizationRule_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -880,12 +880,12 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14994" ], - "x-ms-request-id": [ "07e783ea-4954-4717-a774-98541d1491b9" ], - "x-ms-correlation-request-id": [ "07e783ea-4954-4717-a774-98541d1491b9" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103113Z:07e783ea-4954-4717-a774-98541d1491b9" ], + "x-ms-request-id": [ "dc302428-b13c-4afd-8877-4d5d24401307" ], + "x-ms-correlation-request-id": [ "dc302428-b13c-4afd-8877-4d5d24401307" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134910Z:dc302428-b13c-4afd-8877-4d5d24401307" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:31:12 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:49:09 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -895,15 +895,15 @@ "isContentBase64": false } }, - "Remove-AzServiceBusAuthorizationRule+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules/topicAuthRule2?api-version=2022-01-01-preview+11": { + "Remove-AzServiceBusAuthorizationRule+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules/topicAuthRule2?api-version=2022-10-01-preview+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules/topicAuthRule2?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules/topicAuthRule2?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "194" ], - "x-ms-client-request-id": [ "ca3e53c2-6abb-4a6a-b18e-e049072d9dc9" ], + "x-ms-unique-id": [ "192" ], + "x-ms-client-request-id": [ "e06fbc74-0b97-4320-8516-576030c5c478" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusTopicAuthorizationRule_GetViaIdentity" ], "FullCommandName": [ "Get-AzServiceBusTopicAuthorizationRule_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -919,13 +919,13 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11856" ], - "x-ms-request-id": [ "dd984f7b-92cf-46c4-b3c2-90b9f8aa842a" ], - "x-ms-correlation-request-id": [ "dd984f7b-92cf-46c4-b3c2-90b9f8aa842a" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103113Z:dd984f7b-92cf-46c4-b3c2-90b9f8aa842a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11826" ], + "x-ms-request-id": [ "46bd678a-1a95-435a-9fbf-a9ee7cc4b2ca" ], + "x-ms-correlation-request-id": [ "46bd678a-1a95-435a-9fbf-a9ee7cc4b2ca" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134910Z:46bd678a-1a95-435a-9fbf-a9ee7cc4b2ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:31:13 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:49:09 GMT" ] }, "ContentHeaders": { "Content-Length": [ "87" ], @@ -936,15 +936,15 @@ "isContentBase64": false } }, - "Remove-AzServiceBusAuthorizationRule+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules?api-version=2022-01-01-preview+12": { + "Remove-AzServiceBusAuthorizationRule+[NoContext]+RemoveViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules?api-version=2022-10-01-preview+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "195" ], - "x-ms-client-request-id": [ "1d16052d-4ddd-4d2b-8327-758fb42deb04" ], + "x-ms-unique-id": [ "193" ], + "x-ms-client-request-id": [ "63022bf3-eaf8-4d38-a388-b19bfdd2f103" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusTopicAuthorizationRule_List" ], "FullCommandName": [ "Get-AzServiceBusTopicAuthorizationRule_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -960,20 +960,20 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11855" ], - "x-ms-request-id": [ "383d6b33-8d02-4e58-8ec7-9d5c495294ae" ], - "x-ms-correlation-request-id": [ "383d6b33-8d02-4e58-8ec7-9d5c495294ae" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103114Z:383d6b33-8d02-4e58-8ec7-9d5c495294ae" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11825" ], + "x-ms-request-id": [ "4f988b2b-5d45-4997-adfc-00327bfe52ff" ], + "x-ms-correlation-request-id": [ "4f988b2b-5d45-4997-adfc-00327bfe52ff" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T134911Z:4f988b2b-5d45-4997-adfc-00327bfe52ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:31:13 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:49:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "387" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationrules/topicAuthRule1\",\"name\":\"topicAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationrules/topicAuthRule1\",\"name\":\"topicAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}]}", "isContentBase64": false } } diff --git a/src/ServiceBus/ServiceBus.Autorest/test/Remove-AzServiceBusNamespaceV2.Recording.json b/src/ServiceBus/ServiceBus.Autorest/test/Remove-AzServiceBusNamespaceV2.Recording.json index f74fee0b9e2e..5c0c10e10839 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/Remove-AzServiceBusNamespaceV2.Recording.json +++ b/src/ServiceBus/ServiceBus.Autorest/test/Remove-AzServiceBusNamespaceV2.Recording.json @@ -1,8 +1,8 @@ { - "Remove-AzServiceBusNamespaceV2+[NoContext]+Delete+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV7gt1uke?api-version=2022-01-01-preview+1": { + "Remove-AzServiceBusNamespaceV2+[NoContext]+Delete+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV7qbxiho?api-version=2022-10-01-preview+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV7gt1uke?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV7qbxiho?api-version=2022-10-01-preview", "Content": "{\n \"location\": \"eastus\",\n \"sku\": {\n \"name\": \"Standard\",\n \"tier\": \"Standard\"\n }\n}", "isContentBase64": false, "Headers": { @@ -17,35 +17,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "56ac616d-c74a-4b3a-b39d-9abaf9aaa573_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1176" ], - "x-ms-correlation-request-id": [ "1cca4be0-35ab-4e0c-914a-0e4c3ddd247c" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103213Z:1cca4be0-35ab-4e0c-914a-0e4c3ddd247c" ], + "x-ms-request-id": [ "e46efbbe-edf8-4b46-b42f-a2964bea79aa_M6CH3_M6CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1175" ], + "x-ms-correlation-request-id": [ "95d4a6c5-8ada-4efd-a41a-2a8830d799d9" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135004Z:95d4a6c5-8ada-4efd-a41a-2a8830d799d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:32:13 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:50:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "699" ], + "Content-Length": [ "732" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV7gt1uke\",\"name\":\"namespaceV7gt1uke\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Created\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev7gt1uke\",\"createdAt\":\"2022-11-24T10:32:13.23Z\",\"updatedAt\":\"2022-11-24T10:32:13.23Z\",\"serviceBusEndpoint\":\"https://namespaceV7gt1uke.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", + "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV7qbxiho\",\"name\":\"namespaceV7qbxiho\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Created\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev7qbxiho\",\"createdAt\":\"2023-02-19T13:50:02.843Z\",\"updatedAt\":\"2023-02-19T13:50:02.843Z\",\"serviceBusEndpoint\":\"https://namespaceV7qbxiho.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", "isContentBase64": false } }, - "Remove-AzServiceBusNamespaceV2+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV7gt1uke?api-version=2022-01-01-preview+2": { + "Remove-AzServiceBusNamespaceV2+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV7qbxiho?api-version=2022-10-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV7gt1uke?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV7qbxiho?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "197" ], - "x-ms-client-request-id": [ "46c0abc0-888c-46c6-ab5f-abd6696dfdbe" ], + "x-ms-unique-id": [ "195" ], + "x-ms-client-request-id": [ "93e181b9-1cbc-4ef6-87e3-57c72e651051" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -59,35 +59,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "2c214172-c7c7-4494-9ac3-8fa2b0e493d5_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11854" ], - "x-ms-correlation-request-id": [ "b57d7d7f-3392-46b2-b8c5-0337bb7a7bb4" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103244Z:b57d7d7f-3392-46b2-b8c5-0337bb7a7bb4" ], + "x-ms-request-id": [ "bdd67e5c-8e75-408e-9482-55c627801e14_M6CH3_M6CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11824" ], + "x-ms-correlation-request-id": [ "0a75f994-48ae-4282-9096-e82540a9b523" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135034Z:0a75f994-48ae-4282-9096-e82540a9b523" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:32:43 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:50:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "699" ], + "Content-Length": [ "732" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV7gt1uke\",\"name\":\"namespaceV7gt1uke\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Created\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev7gt1uke\",\"createdAt\":\"2022-11-24T10:32:13.23Z\",\"updatedAt\":\"2022-11-24T10:32:13.23Z\",\"serviceBusEndpoint\":\"https://namespaceV7gt1uke.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", + "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV7qbxiho\",\"name\":\"namespaceV7qbxiho\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Created\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev7qbxiho\",\"createdAt\":\"2023-02-19T13:50:02.843Z\",\"updatedAt\":\"2023-02-19T13:50:02.843Z\",\"serviceBusEndpoint\":\"https://namespaceV7qbxiho.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", "isContentBase64": false } }, - "Remove-AzServiceBusNamespaceV2+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV7gt1uke?api-version=2022-01-01-preview+3": { + "Remove-AzServiceBusNamespaceV2+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV7qbxiho?api-version=2022-10-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV7gt1uke?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV7qbxiho?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "198" ], - "x-ms-client-request-id": [ "46c0abc0-888c-46c6-ab5f-abd6696dfdbe" ], + "x-ms-unique-id": [ "196" ], + "x-ms-client-request-id": [ "93e181b9-1cbc-4ef6-87e3-57c72e651051" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -101,35 +101,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "02952ef9-5b35-41f2-b7fe-0b01b0ee03a0_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11853" ], - "x-ms-correlation-request-id": [ "f71b3050-8819-4370-9396-2cf194cd314e" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103314Z:f71b3050-8819-4370-9396-2cf194cd314e" ], + "x-ms-request-id": [ "35420909-72ce-4152-a0b4-f72e0cd01a63_M6CH3_M6CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11823" ], + "x-ms-correlation-request-id": [ "4b2cde04-f375-4873-9072-d5a7fc2af655" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135105Z:4b2cde04-f375-4873-9072-d5a7fc2af655" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:33:13 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:51:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "697" ], + "Content-Length": [ "730" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV7gt1uke\",\"name\":\"namespaceV7gt1uke\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev7gt1uke\",\"createdAt\":\"2022-11-24T10:32:13.23Z\",\"updatedAt\":\"2022-11-24T10:32:56.96Z\",\"serviceBusEndpoint\":\"https://namespaceV7gt1uke.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV7qbxiho\",\"name\":\"namespaceV7qbxiho\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev7qbxiho\",\"createdAt\":\"2023-02-19T13:50:02.843Z\",\"updatedAt\":\"2023-02-19T13:50:47.233Z\",\"serviceBusEndpoint\":\"https://namespaceV7qbxiho.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Remove-AzServiceBusNamespaceV2+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV7gt1uke?api-version=2022-01-01-preview+4": { + "Remove-AzServiceBusNamespaceV2+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV7qbxiho?api-version=2022-10-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV7gt1uke?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV7qbxiho?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "199" ], - "x-ms-client-request-id": [ "46c0abc0-888c-46c6-ab5f-abd6696dfdbe" ], + "x-ms-unique-id": [ "197" ], + "x-ms-client-request-id": [ "93e181b9-1cbc-4ef6-87e3-57c72e651051" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -143,34 +143,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "a2960da8-0c9e-4083-be8c-7ad3ef4b57ae_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11852" ], - "x-ms-correlation-request-id": [ "22763f55-fb39-40f0-99fe-859a1551c390" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103314Z:22763f55-fb39-40f0-99fe-859a1551c390" ], + "x-ms-request-id": [ "74dd5778-87cd-4dda-8123-50437b76a861_M6CH3_M6CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11822" ], + "x-ms-correlation-request-id": [ "fdeb4dfe-d8d3-4612-b75c-b8d4c4155fe8" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135106Z:fdeb4dfe-d8d3-4612-b75c-b8d4c4155fe8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:33:14 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:51:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "697" ], + "Content-Length": [ "730" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV7gt1uke\",\"name\":\"namespaceV7gt1uke\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev7gt1uke\",\"createdAt\":\"2022-11-24T10:32:13.23Z\",\"updatedAt\":\"2022-11-24T10:32:56.96Z\",\"serviceBusEndpoint\":\"https://namespaceV7gt1uke.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV7qbxiho\",\"name\":\"namespaceV7qbxiho\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev7qbxiho\",\"createdAt\":\"2023-02-19T13:50:02.843Z\",\"updatedAt\":\"2023-02-19T13:50:47.233Z\",\"serviceBusEndpoint\":\"https://namespaceV7qbxiho.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Remove-AzServiceBusNamespaceV2+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV7gt1uke?api-version=2022-01-01-preview+5": { + "Remove-AzServiceBusNamespaceV2+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV7qbxiho?api-version=2022-10-01-preview+5": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV7gt1uke?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV7qbxiho?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "200" ], - "x-ms-client-request-id": [ "167b63b0-019f-4391-85f5-97ab54a2a153" ], + "x-ms-unique-id": [ "198" ], + "x-ms-client-request-id": [ "f4e5cb86-c7c7-4eca-a52b-1dc654fddc00" ], "CommandName": [ "Remove-AzServiceBusNamespaceV2" ], "FullCommandName": [ "Remove-AzServiceBusNamespaceV2_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -185,16 +185,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/namespaceV7gt1uke?api-version=2022-01-01-preview\u0026resourceType=Namespace" ], - "x-ms-request-id": [ "30fd9162-6865-45ec-9386-6f1da88a841e_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "Location": [ "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/namespaceV7qbxiho?api-version=2022-10-01-preview\u0026resourceType=Namespace" ], + "x-ms-request-id": [ "a1be07be-174d-4ab5-8770-bcfad4795a36_M6CH3_M6CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14993" ], - "x-ms-correlation-request-id": [ "9c1c6360-809d-403a-b84a-8dcaf3a3c5fd" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103316Z:9c1c6360-809d-403a-b84a-8dcaf3a3c5fd" ], + "x-ms-correlation-request-id": [ "9ef66183-42f1-4e05-aba0-04f080678e23" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135107Z:9ef66183-42f1-4e05-aba0-04f080678e23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:33:15 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:51:06 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -204,16 +204,16 @@ "isContentBase64": false } }, - "Remove-AzServiceBusNamespaceV2+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/namespaceV7gt1uke?api-version=2022-01-01-preview\u0026resourceType=Namespace+6": { + "Remove-AzServiceBusNamespaceV2+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/namespaceV7qbxiho?api-version=2022-10-01-preview\u0026resourceType=Namespace+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/namespaceV7gt1uke?api-version=2022-01-01-preview\u0026resourceType=Namespace", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/namespaceV7qbxiho?api-version=2022-10-01-preview\u0026resourceType=Namespace", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "201" ], - "x-ms-client-request-id": [ "167b63b0-019f-4391-85f5-97ab54a2a153" ], + "x-ms-unique-id": [ "199" ], + "x-ms-client-request-id": [ "f4e5cb86-c7c7-4eca-a52b-1dc654fddc00" ], "CommandName": [ "Remove-AzServiceBusNamespaceV2" ], "FullCommandName": [ "Remove-AzServiceBusNamespaceV2_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -227,15 +227,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "46262675-92d7-4818-a3e6-f0fc420a1ba7_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11851" ], - "x-ms-correlation-request-id": [ "80dd7aac-0900-4df3-be2d-86f332f6d693" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103346Z:80dd7aac-0900-4df3-be2d-86f332f6d693" ], + "x-ms-request-id": [ "e6621b12-c993-429f-be63-756bc05bcf50_M6CH3_M6CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11821" ], + "x-ms-correlation-request-id": [ "7dfdfdb8-b76e-4679-a5a1-2046a32ae94c" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135137Z:7dfdfdb8-b76e-4679-a5a1-2046a32ae94c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:33:45 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:51:37 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ] @@ -244,16 +244,16 @@ "isContentBase64": false } }, - "Remove-AzServiceBusNamespaceV2+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/namespaceV7gt1uke?api-version=2022-01-01-preview\u0026resourceType=Namespace+7": { + "Remove-AzServiceBusNamespaceV2+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/namespaceV7qbxiho?api-version=2022-10-01-preview\u0026resourceType=Namespace+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/namespaceV7gt1uke?api-version=2022-01-01-preview\u0026resourceType=Namespace", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/namespaceV7qbxiho?api-version=2022-10-01-preview\u0026resourceType=Namespace", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "202" ], - "x-ms-client-request-id": [ "167b63b0-019f-4391-85f5-97ab54a2a153" ], + "x-ms-unique-id": [ "200" ], + "x-ms-client-request-id": [ "f4e5cb86-c7c7-4eca-a52b-1dc654fddc00" ], "CommandName": [ "Remove-AzServiceBusNamespaceV2" ], "FullCommandName": [ "Remove-AzServiceBusNamespaceV2_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -267,15 +267,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "ecbb6d9f-90c4-4e89-94da-69f2699e7447_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11850" ], - "x-ms-correlation-request-id": [ "dcafcd76-283e-4ae2-a98e-7aeccdc5e8b9" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103346Z:dcafcd76-283e-4ae2-a98e-7aeccdc5e8b9" ], + "x-ms-request-id": [ "34eb3e09-a51e-4a2e-ab35-fd20f446f3a5_M6CH3_M6CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11820" ], + "x-ms-correlation-request-id": [ "077974fe-710e-4ddc-8de2-655fd777effb" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135138Z:077974fe-710e-4ddc-8de2-655fd777effb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:33:45 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:51:37 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ] @@ -284,15 +284,15 @@ "isContentBase64": false } }, - "Remove-AzServiceBusNamespaceV2+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV7gt1uke?api-version=2022-01-01-preview+8": { + "Remove-AzServiceBusNamespaceV2+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV7qbxiho?api-version=2022-10-01-preview+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV7gt1uke?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV7qbxiho?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "203" ], - "x-ms-client-request-id": [ "490cfb75-acc5-4e5f-bb3a-909028b565c8" ], + "x-ms-unique-id": [ "201" ], + "x-ms-client-request-id": [ "7ef1c57e-e896-417a-b4e6-ca910d8f16e5" ], "CommandName": [ "Get-AzServiceBusNamespaceV2" ], "FullCommandName": [ "Get-AzServiceBusNamespaceV2_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -307,29 +307,29 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "c201fc55-d3cf-4d7d-8bd7-557dfbbec05c_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11849" ], - "x-ms-correlation-request-id": [ "fa9b4668-4430-4b2f-b827-e4f5020a9ed5" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103347Z:fa9b4668-4430-4b2f-b827-e4f5020a9ed5" ], + "x-ms-request-id": [ "20916124-09ec-4ad1-9fe7-a58f83fd4ac1_M6CH3_M6CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11819" ], + "x-ms-correlation-request-id": [ "448bcd78-68ed-48c7-848c-cb50cf679350" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135138Z:448bcd78-68ed-48c7-848c-cb50cf679350" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:33:46 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:51:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "119" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"message\":\"Namespace does not exist. CorrelationId: fa9b4668-4430-4b2f-b827-e4f5020a9ed5\",\"code\":\"NotFound\"}}", + "Content": "{\"error\":{\"message\":\"Namespace does not exist. CorrelationId: 448bcd78-68ed-48c7-848c-cb50cf679350\",\"code\":\"NotFound\"}}", "isContentBase64": false } }, - "Remove-AzServiceBusNamespaceV2+[NoContext]+DeleteViaIdentity+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV85avye9?api-version=2022-01-01-preview+1": { + "Remove-AzServiceBusNamespaceV2+[NoContext]+DeleteViaIdentity+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV85v4e0c?api-version=2022-10-01-preview+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV85avye9?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV85v4e0c?api-version=2022-10-01-preview", "Content": "{\n \"location\": \"eastus\",\n \"sku\": {\n \"name\": \"Standard\",\n \"tier\": \"Standard\"\n }\n}", "isContentBase64": false, "Headers": { @@ -344,35 +344,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "822b16ca-8490-411a-996b-0b8117c82177_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1175" ], - "x-ms-correlation-request-id": [ "8bd9101f-2618-46be-9562-b7c0ba1cd3fe" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103349Z:8bd9101f-2618-46be-9562-b7c0ba1cd3fe" ], + "x-ms-request-id": [ "44b812fc-c032-4185-b0c7-cbf796c619c2_M6CH3_M6CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1174" ], + "x-ms-correlation-request-id": [ "5948105e-8492-4cb1-99b3-3469f4e49d22" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135142Z:5948105e-8492-4cb1-99b3-3469f4e49d22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:33:48 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:51:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "699" ], + "Content-Length": [ "730" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV85avye9\",\"name\":\"namespaceV85avye9\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Created\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev85avye9\",\"createdAt\":\"2022-11-24T10:33:48.46Z\",\"updatedAt\":\"2022-11-24T10:33:48.46Z\",\"serviceBusEndpoint\":\"https://namespaceV85avye9.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", + "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV85v4e0c\",\"name\":\"namespaceV85v4e0c\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Created\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev85v4e0c\",\"createdAt\":\"2023-02-19T13:51:41.72Z\",\"updatedAt\":\"2023-02-19T13:51:41.72Z\",\"serviceBusEndpoint\":\"https://namespaceV85v4e0c.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", "isContentBase64": false } }, - "Remove-AzServiceBusNamespaceV2+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV85avye9?api-version=2022-01-01-preview+2": { + "Remove-AzServiceBusNamespaceV2+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV85v4e0c?api-version=2022-10-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV85avye9?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV85v4e0c?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "205" ], - "x-ms-client-request-id": [ "d93742eb-d7f4-4d50-a98f-3b59c256a48f" ], + "x-ms-unique-id": [ "203" ], + "x-ms-client-request-id": [ "67f28af0-8aca-4c42-9855-850ccca708c7" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -386,35 +386,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "68ba72b9-9d25-4760-bd69-e2523f6938d4_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11848" ], - "x-ms-correlation-request-id": [ "41da679b-f353-4e13-b199-e36da4be28df" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103419Z:41da679b-f353-4e13-b199-e36da4be28df" ], + "x-ms-request-id": [ "3e5589b7-1e83-42a2-8aca-7603b18fd156_M6CH3_M6CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11818" ], + "x-ms-correlation-request-id": [ "1e2641d8-8489-4e50-88dc-5b4f48ccc2e1" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135213Z:1e2641d8-8489-4e50-88dc-5b4f48ccc2e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:34:19 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:52:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "699" ], + "Content-Length": [ "730" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV85avye9\",\"name\":\"namespaceV85avye9\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Created\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev85avye9\",\"createdAt\":\"2022-11-24T10:33:48.46Z\",\"updatedAt\":\"2022-11-24T10:33:48.46Z\",\"serviceBusEndpoint\":\"https://namespaceV85avye9.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", + "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV85v4e0c\",\"name\":\"namespaceV85v4e0c\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Created\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev85v4e0c\",\"createdAt\":\"2023-02-19T13:51:41.72Z\",\"updatedAt\":\"2023-02-19T13:51:41.72Z\",\"serviceBusEndpoint\":\"https://namespaceV85v4e0c.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", "isContentBase64": false } }, - "Remove-AzServiceBusNamespaceV2+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV85avye9?api-version=2022-01-01-preview+3": { + "Remove-AzServiceBusNamespaceV2+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV85v4e0c?api-version=2022-10-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV85avye9?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV85v4e0c?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "206" ], - "x-ms-client-request-id": [ "d93742eb-d7f4-4d50-a98f-3b59c256a48f" ], + "x-ms-unique-id": [ "204" ], + "x-ms-client-request-id": [ "67f28af0-8aca-4c42-9855-850ccca708c7" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -428,35 +428,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "c513cadc-c93d-4e47-9e98-4b442388c51d_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11847" ], - "x-ms-correlation-request-id": [ "31156d86-b046-477b-992b-15f74efc57da" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103449Z:31156d86-b046-477b-992b-15f74efc57da" ], + "x-ms-request-id": [ "84738558-a118-4a76-8cd8-f5e82cb8b7f6_M6CH3_M6CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11817" ], + "x-ms-correlation-request-id": [ "ada7b224-f748-4fb5-8f8a-69165a46a5a6" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135243Z:ada7b224-f748-4fb5-8f8a-69165a46a5a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:34:49 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:52:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "698" ], + "Content-Length": [ "729" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV85avye9\",\"name\":\"namespaceV85avye9\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev85avye9\",\"createdAt\":\"2022-11-24T10:33:48.46Z\",\"updatedAt\":\"2022-11-24T10:34:32.977Z\",\"serviceBusEndpoint\":\"https://namespaceV85avye9.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV85v4e0c\",\"name\":\"namespaceV85v4e0c\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev85v4e0c\",\"createdAt\":\"2023-02-19T13:51:41.72Z\",\"updatedAt\":\"2023-02-19T13:52:26.377Z\",\"serviceBusEndpoint\":\"https://namespaceV85v4e0c.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Remove-AzServiceBusNamespaceV2+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV85avye9?api-version=2022-01-01-preview+4": { + "Remove-AzServiceBusNamespaceV2+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV85v4e0c?api-version=2022-10-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV85avye9?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV85v4e0c?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "207" ], - "x-ms-client-request-id": [ "d93742eb-d7f4-4d50-a98f-3b59c256a48f" ], + "x-ms-unique-id": [ "205" ], + "x-ms-client-request-id": [ "67f28af0-8aca-4c42-9855-850ccca708c7" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -470,34 +470,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "4bfe722a-a182-4289-8328-071f580b2207_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11846" ], - "x-ms-correlation-request-id": [ "e70b22fb-c4f5-407b-81d7-d612abfc2aee" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103450Z:e70b22fb-c4f5-407b-81d7-d612abfc2aee" ], + "x-ms-request-id": [ "9680e72c-d660-4efc-9768-cab9941740b8_M6CH3_M6CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11816" ], + "x-ms-correlation-request-id": [ "10261e22-9e7c-48c6-9544-7ff8ed61bf63" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135244Z:10261e22-9e7c-48c6-9544-7ff8ed61bf63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:34:49 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:52:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "698" ], + "Content-Length": [ "729" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV85avye9\",\"name\":\"namespaceV85avye9\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev85avye9\",\"createdAt\":\"2022-11-24T10:33:48.46Z\",\"updatedAt\":\"2022-11-24T10:34:32.977Z\",\"serviceBusEndpoint\":\"https://namespaceV85avye9.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV85v4e0c\",\"name\":\"namespaceV85v4e0c\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev85v4e0c\",\"createdAt\":\"2023-02-19T13:51:41.72Z\",\"updatedAt\":\"2023-02-19T13:52:26.377Z\",\"serviceBusEndpoint\":\"https://namespaceV85v4e0c.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Remove-AzServiceBusNamespaceV2+[NoContext]+DeleteViaIdentity+$DELETE+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV85avye9?api-version=2022-01-01-preview+5": { + "Remove-AzServiceBusNamespaceV2+[NoContext]+DeleteViaIdentity+$DELETE+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV85v4e0c?api-version=2022-10-01-preview+5": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV85avye9?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV85v4e0c?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "208" ], - "x-ms-client-request-id": [ "78525846-bced-4cfe-9625-853adc0541a0" ], + "x-ms-unique-id": [ "206" ], + "x-ms-client-request-id": [ "52235080-1d0c-4e99-b029-4a829cd08bc9" ], "CommandName": [ "Remove-AzServiceBusNamespaceV2" ], "FullCommandName": [ "Remove-AzServiceBusNamespaceV2_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -512,16 +512,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/namespaceV85avye9?api-version=2022-01-01-preview\u0026resourceType=Namespace" ], - "x-ms-request-id": [ "89fe6d9f-997d-4274-975a-3cd19012ae82_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "Location": [ "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/namespaceV85v4e0c?api-version=2022-10-01-preview\u0026resourceType=Namespace" ], + "x-ms-request-id": [ "04b01c1b-cdab-4d17-8f07-ddeb040194c5_M6CH3_M6CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14992" ], - "x-ms-correlation-request-id": [ "01ee98fa-5306-4801-9622-1cab2ccdcccb" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103451Z:01ee98fa-5306-4801-9622-1cab2ccdcccb" ], + "x-ms-correlation-request-id": [ "88f32d84-ed13-46b0-b081-08ca880f97cd" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135245Z:88f32d84-ed13-46b0-b081-08ca880f97cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:34:51 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:52:45 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -531,16 +531,16 @@ "isContentBase64": false } }, - "Remove-AzServiceBusNamespaceV2+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/namespaceV85avye9?api-version=2022-01-01-preview\u0026resourceType=Namespace+6": { + "Remove-AzServiceBusNamespaceV2+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/namespaceV85v4e0c?api-version=2022-10-01-preview\u0026resourceType=Namespace+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/namespaceV85avye9?api-version=2022-01-01-preview\u0026resourceType=Namespace", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/namespaceV85v4e0c?api-version=2022-10-01-preview\u0026resourceType=Namespace", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "209" ], - "x-ms-client-request-id": [ "78525846-bced-4cfe-9625-853adc0541a0" ], + "x-ms-unique-id": [ "207" ], + "x-ms-client-request-id": [ "52235080-1d0c-4e99-b029-4a829cd08bc9" ], "CommandName": [ "Remove-AzServiceBusNamespaceV2" ], "FullCommandName": [ "Remove-AzServiceBusNamespaceV2_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -554,15 +554,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "4604cfdc-dbc9-437e-b9ba-c215df85fc13_M1SN1_M1SN1" ], + "x-ms-request-id": [ "cd7c2061-996d-4fb4-884c-9ad70da5b819_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11845" ], - "x-ms-correlation-request-id": [ "cafcf767-63ea-450d-bf9a-7eee15d23502" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103521Z:cafcf767-63ea-450d-bf9a-7eee15d23502" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11815" ], + "x-ms-correlation-request-id": [ "8fcf27e7-bb4b-421c-8903-b79139c3e895" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135316Z:8fcf27e7-bb4b-421c-8903-b79139c3e895" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:35:21 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:53:16 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ] @@ -571,16 +571,16 @@ "isContentBase64": false } }, - "Remove-AzServiceBusNamespaceV2+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/namespaceV85avye9?api-version=2022-01-01-preview\u0026resourceType=Namespace+7": { + "Remove-AzServiceBusNamespaceV2+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/namespaceV85v4e0c?api-version=2022-10-01-preview\u0026resourceType=Namespace+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/namespaceV85avye9?api-version=2022-01-01-preview\u0026resourceType=Namespace", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/namespaceV85v4e0c?api-version=2022-10-01-preview\u0026resourceType=Namespace", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "210" ], - "x-ms-client-request-id": [ "78525846-bced-4cfe-9625-853adc0541a0" ], + "x-ms-unique-id": [ "208" ], + "x-ms-client-request-id": [ "52235080-1d0c-4e99-b029-4a829cd08bc9" ], "CommandName": [ "Remove-AzServiceBusNamespaceV2" ], "FullCommandName": [ "Remove-AzServiceBusNamespaceV2_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -594,15 +594,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "168a760a-fba4-4582-8420-4bc87295d604_M1SN1_M1SN1" ], + "x-ms-request-id": [ "ff815882-931a-4c16-8d7e-1967642c07a2_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11844" ], - "x-ms-correlation-request-id": [ "89a019e3-1560-49ec-aa75-1c2a0c3c4fea" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103521Z:89a019e3-1560-49ec-aa75-1c2a0c3c4fea" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11814" ], + "x-ms-correlation-request-id": [ "39c730c2-ffed-4a41-a55c-d5f408ebcb09" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135316Z:39c730c2-ffed-4a41-a55c-d5f408ebcb09" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:35:21 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:53:16 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ] @@ -611,15 +611,15 @@ "isContentBase64": false } }, - "Remove-AzServiceBusNamespaceV2+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV85avye9?api-version=2022-01-01-preview+8": { + "Remove-AzServiceBusNamespaceV2+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV85v4e0c?api-version=2022-10-01-preview+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV85avye9?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV85v4e0c?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "211" ], - "x-ms-client-request-id": [ "78f7cc6f-d203-403d-b351-b896978f250f" ], + "x-ms-unique-id": [ "209" ], + "x-ms-client-request-id": [ "aec986b2-8659-45b8-9a00-9a6ff07ac849" ], "CommandName": [ "Get-AzServiceBusNamespaceV2" ], "FullCommandName": [ "Get-AzServiceBusNamespaceV2_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -634,22 +634,22 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "1a0a319a-dadd-4189-8a63-12414cfe87ae_M1SN1_M1SN1" ], + "x-ms-request-id": [ "009937ec-89ff-4142-9a38-457532313b45_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11843" ], - "x-ms-correlation-request-id": [ "5699176a-bec3-45c7-8e28-35bdb0da8386" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103522Z:5699176a-bec3-45c7-8e28-35bdb0da8386" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11813" ], + "x-ms-correlation-request-id": [ "c2063989-8eeb-4f0b-ac04-a8f15d4cb3f1" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135317Z:c2063989-8eeb-4f0b-ac04-a8f15d4cb3f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:35:21 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:53:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "119" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"message\":\"Namespace does not exist. CorrelationId: 5699176a-bec3-45c7-8e28-35bdb0da8386\",\"code\":\"NotFound\"}}", + "Content": "{\"error\":{\"message\":\"Namespace does not exist. CorrelationId: c2063989-8eeb-4f0b-ac04-a8f15d4cb3f1\",\"code\":\"NotFound\"}}", "isContentBase64": false } } diff --git a/src/ServiceBus/ServiceBus.Autorest/test/Remove-AzServiceBusPrivateEndpointConnection.Recording.json b/src/ServiceBus/ServiceBus.Autorest/test/Remove-AzServiceBusPrivateEndpointConnection.Recording.json index d7b901b792ec..f919a38ad4da 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/Remove-AzServiceBusPrivateEndpointConnection.Recording.json +++ b/src/ServiceBus/ServiceBus.Autorest/test/Remove-AzServiceBusPrivateEndpointConnection.Recording.json @@ -1,13 +1,13 @@ { - "Remove-AzServiceBusPrivateEndpointConnection+[NoContext]+[NoScenario]+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections?api-version=2022-01-01-preview+1": { + "Remove-AzServiceBusPrivateEndpointConnection+[NoContext]+[NoScenario]+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "212" ], - "x-ms-client-request-id": [ "1a964e81-dd96-4155-858f-9256f552757f" ], + "x-ms-unique-id": [ "210" ], + "x-ms-client-request-id": [ "c362dec3-8887-49d3-9f10-a07e3bcc0664" ], "CommandName": [ "Get-AzServiceBusPrivateEndpointConnection" ], "FullCommandName": [ "Get-AzServiceBusPrivateEndpointConnection_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -22,34 +22,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "e93cd2b8-97b3-40d5-bcd9-1ac8874f368c_M1SN1_M1SN1" ], + "x-ms-request-id": [ "8a3ef0c9-526d-47d5-8608-babc396896bc_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11842" ], - "x-ms-correlation-request-id": [ "9ec4fa1d-4752-4c5a-be24-1a45ecea375d" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103542Z:9ec4fa1d-4752-4c5a-be24-1a45ecea375d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11812" ], + "x-ms-correlation-request-id": [ "59370a01-026b-4b00-804e-630c12ee3bd6" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135331Z:59370a01-026b-4b00-804e-630c12ee3bd6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:35:42 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:53:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1392" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd\",\"name\":\"c5e4d6c3-f38e-4834-929b-559e2d41d5cd\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.Network/privateEndpoints/pe2cxqud3\"},\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"\"},\"groupIds\":[\"namespace\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94\",\"name\":\"b5d7b5d8-1b18-4afb-819a-706a0f3d6a94\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.Network/privateEndpoints/pe1jlbfx6\"},\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"Bye\"},\"groupIds\":[\"namespace\"]}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211\",\"name\":\"efc95bab-8a36-4368-bf40-071ec0dd3211\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe2otyvgf\"},\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"\"},\"groupIds\":[\"namespace\"]}},{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00\",\"name\":\"77566733-2ab6-455d-972d-793c5a451f00\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe1w0yv9t\"},\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"Bye\"},\"groupIds\":[\"namespace\"]}}]}", "isContentBase64": false } }, - "Remove-AzServiceBusPrivateEndpointConnection+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd?api-version=2022-01-01-preview+1": { + "Remove-AzServiceBusPrivateEndpointConnection+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211?api-version=2022-10-01-preview+1": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "213" ], - "x-ms-client-request-id": [ "9aa0a694-0e43-4bf9-819f-91d7bcfb21a1" ], + "x-ms-unique-id": [ "211" ], + "x-ms-client-request-id": [ "678d5309-316d-4694-924b-a1bcf427827a" ], "CommandName": [ "Remove-AzServiceBusPrivateEndpointConnection" ], "FullCommandName": [ "Remove-AzServiceBusPrivateEndpointConnection_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -64,16 +64,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "6a9fe395-ac75-465e-bdcc-67650ea096db_M1SN1_M1SN1" ], - "Azure-AsyncOperation": [ "https://management.azure.com:443/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd/operationStatus/c5e4d6c3-f38e-4834-929b-559e2d41d5cd?api-version=2022-01-01-preview\u0026operationType=Delete" ], + "x-ms-request-id": [ "dcae9f4d-3dc2-4cbe-ad65-7d18b8b5b3f4_M3SN1_M3SN1" ], + "Azure-AsyncOperation": [ "https://management.azure.com:443/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211/operationStatus/efc95bab-8a36-4368-bf40-071ec0dd3211?api-version=2022-10-01-preview\u0026operationType=Delete" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14991" ], - "x-ms-correlation-request-id": [ "d566571c-7ea2-49ef-8af8-915b96f12ab9" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103543Z:d566571c-7ea2-49ef-8af8-915b96f12ab9" ], + "x-ms-correlation-request-id": [ "4f089c5d-b7b3-409b-a720-710a055301c0" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135332Z:4f089c5d-b7b3-409b-a720-710a055301c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:35:43 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:53:31 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -83,16 +83,16 @@ "isContentBase64": false } }, - "Remove-AzServiceBusPrivateEndpointConnection+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd/operationStatus/c5e4d6c3-f38e-4834-929b-559e2d41d5cd?api-version=2022-01-01-preview\u0026operationType=Delete+2": { + "Remove-AzServiceBusPrivateEndpointConnection+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211/operationStatus/efc95bab-8a36-4368-bf40-071ec0dd3211?api-version=2022-10-01-preview\u0026operationType=Delete+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd/operationStatus/c5e4d6c3-f38e-4834-929b-559e2d41d5cd?api-version=2022-01-01-preview\u0026operationType=Delete", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211/operationStatus/efc95bab-8a36-4368-bf40-071ec0dd3211?api-version=2022-10-01-preview\u0026operationType=Delete", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "214" ], - "x-ms-client-request-id": [ "9aa0a694-0e43-4bf9-819f-91d7bcfb21a1" ], + "x-ms-unique-id": [ "212" ], + "x-ms-client-request-id": [ "678d5309-316d-4694-924b-a1bcf427827a" ], "CommandName": [ "Remove-AzServiceBusPrivateEndpointConnection" ], "FullCommandName": [ "Remove-AzServiceBusPrivateEndpointConnection_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -106,34 +106,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "d6542ec5-a5b7-405f-80a2-1247da0182a9_M7SN1_M7SN1" ], + "x-ms-request-id": [ "75e34c4c-160e-4a33-b116-5e25e56c67d5_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11841" ], - "x-ms-correlation-request-id": [ "71972ab4-2fd0-4aac-af87-2ed68899183e" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103613Z:71972ab4-2fd0-4aac-af87-2ed68899183e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11811" ], + "x-ms-correlation-request-id": [ "5e569b18-a417-444b-b5e6-a6337c4d1517" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135402Z:5e569b18-a417-444b-b5e6-a6337c4d1517" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:36:13 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:54:01 GMT" ] }, "ContentHeaders": { "Content-Length": [ "470" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd/operationStatus/c5e4d6c3-f38e-4834-929b-559e2d41d5cd/operationStatus/c5e4d6c3-f38e-4834-929b-559e2d41d5cd\",\"name\":\"c5e4d6c3-f38e-4834-929b-559e2d41d5cd\",\"status\":\"Succeeded\",\"startTime\":\"0001-01-01T00:00:00Z\",\"endTime\":\"0001-01-01T00:00:00Z\"}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211/operationStatus/efc95bab-8a36-4368-bf40-071ec0dd3211/operationStatus/efc95bab-8a36-4368-bf40-071ec0dd3211\",\"name\":\"efc95bab-8a36-4368-bf40-071ec0dd3211\",\"status\":\"Succeeded\",\"startTime\":\"0001-01-01T00:00:00Z\",\"endTime\":\"0001-01-01T00:00:00Z\"}", "isContentBase64": false } }, - "Remove-AzServiceBusPrivateEndpointConnection+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd?api-version=2022-01-01-preview+3": { + "Remove-AzServiceBusPrivateEndpointConnection+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211?api-version=2022-10-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/c5e4d6c3-f38e-4834-929b-559e2d41d5cd?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/efc95bab-8a36-4368-bf40-071ec0dd3211?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "215" ], - "x-ms-client-request-id": [ "f8cba9f5-ce4d-4fe8-abb6-ec4859b3d85f" ], + "x-ms-unique-id": [ "213" ], + "x-ms-client-request-id": [ "1b564910-7a32-4e28-a98d-80070245065c" ], "CommandName": [ "Get-AzServiceBusPrivateEndpointConnection" ], "FullCommandName": [ "Get-AzServiceBusPrivateEndpointConnection_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -148,34 +148,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "939cb6c6-cee0-4b11-ad9b-0a179e8267f3_M7SN1_M7SN1" ], + "x-ms-request-id": [ "8d2aff7d-0ed8-412d-a5ca-ebe6fc50bd35_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11840" ], - "x-ms-correlation-request-id": [ "6dafa897-f308-414e-831c-fb3f6900a27d" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103614Z:6dafa897-f308-414e-831c-fb3f6900a27d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11810" ], + "x-ms-correlation-request-id": [ "2ae6aa1f-9e5d-4119-8590-ecfd441172da" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135403Z:2ae6aa1f-9e5d-4119-8590-ecfd441172da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:36:13 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:54:02 GMT" ] }, "ContentHeaders": { "Content-Length": [ "169" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"message\":\"The requested resource c5e4d6c3-f38e-4834-929b-559e2d41d5cd does not exist. CorrelationId: 6dafa897-f308-414e-831c-fb3f6900a27d\",\"code\":\"NotFound\"}}", + "Content": "{\"error\":{\"message\":\"The requested resource efc95bab-8a36-4368-bf40-071ec0dd3211 does not exist. CorrelationId: 2ae6aa1f-9e5d-4119-8590-ecfd441172da\",\"code\":\"NotFound\"}}", "isContentBase64": false } }, - "Remove-AzServiceBusPrivateEndpointConnection+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94?api-version=2022-01-01-preview+1": { + "Remove-AzServiceBusPrivateEndpointConnection+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "216" ], - "x-ms-client-request-id": [ "85cf2b36-029b-4847-b977-ae1388b92211" ], + "x-ms-unique-id": [ "214" ], + "x-ms-client-request-id": [ "79c57b40-323d-4c57-a522-2e2e7c1b3bca" ], "CommandName": [ "Get-AzServiceBusPrivateEndpointConnection" ], "FullCommandName": [ "Get-AzServiceBusPrivateEndpointConnection_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -190,34 +190,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "a7d8888a-e861-4e66-83c9-452fa89ab978_M7SN1_M7SN1" ], + "x-ms-request-id": [ "01fe1d56-89c1-4a3a-89c4-5facfcf3ef7f_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11839" ], - "x-ms-correlation-request-id": [ "10bc7eac-9f6c-4b46-be9b-37aa28f0c359" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103614Z:10bc7eac-9f6c-4b46-be9b-37aa28f0c359" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11809" ], + "x-ms-correlation-request-id": [ "96c9a557-8df8-4f27-8eb3-0f6dcc3da53c" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135403Z:96c9a557-8df8-4f27-8eb3-0f6dcc3da53c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:36:13 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:54:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "691" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94\",\"name\":\"b5d7b5d8-1b18-4afb-819a-706a0f3d6a94\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.Network/privateEndpoints/pe1jlbfx6\"},\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"Bye\"},\"groupIds\":[\"namespace\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00\",\"name\":\"77566733-2ab6-455d-972d-793c5a451f00\",\"type\":\"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections\",\"location\":\"East US\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateEndpoint\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.Network/privateEndpoints/pe1w0yv9t\"},\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"Bye\"},\"groupIds\":[\"namespace\"]}}", "isContentBase64": false } }, - "Remove-AzServiceBusPrivateEndpointConnection+[NoContext]+DeleteViaIdentity+$DELETE+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94?api-version=2022-01-01-preview+2": { + "Remove-AzServiceBusPrivateEndpointConnection+[NoContext]+DeleteViaIdentity+$DELETE+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00?api-version=2022-10-01-preview+2": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "217" ], - "x-ms-client-request-id": [ "46291bb8-a4ce-415f-98ac-3f13a67f8c63" ], + "x-ms-unique-id": [ "215" ], + "x-ms-client-request-id": [ "dbc8e06f-466a-4dbe-b382-e277b11bd2d5" ], "CommandName": [ "Remove-AzServiceBusPrivateEndpointConnection" ], "FullCommandName": [ "Remove-AzServiceBusPrivateEndpointConnection_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -232,16 +232,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "c0a94de6-699d-4966-b6e9-a3dd51cd9c5e_M7SN1_M7SN1" ], - "Azure-AsyncOperation": [ "https://management.azure.com:443/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94/operationStatus/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94?api-version=2022-01-01-preview\u0026operationType=Delete" ], + "x-ms-request-id": [ "a28c8220-c8e1-480b-9324-edf0581cc95e_M3SN1_M3SN1" ], + "Azure-AsyncOperation": [ "https://management.azure.com:443/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00/operationStatus/77566733-2ab6-455d-972d-793c5a451f00?api-version=2022-10-01-preview\u0026operationType=Delete" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14990" ], - "x-ms-correlation-request-id": [ "68740e03-b39e-4ba1-92d3-deade9ff52e6" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103614Z:68740e03-b39e-4ba1-92d3-deade9ff52e6" ], + "x-ms-correlation-request-id": [ "5f8bb0b6-a3e5-4fc5-a060-c77e004a1f21" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135404Z:5f8bb0b6-a3e5-4fc5-a060-c77e004a1f21" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:36:13 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:54:04 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -251,16 +251,16 @@ "isContentBase64": false } }, - "Remove-AzServiceBusPrivateEndpointConnection+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94/operationStatus/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94?api-version=2022-01-01-preview\u0026operationType=Delete+3": { + "Remove-AzServiceBusPrivateEndpointConnection+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00/operationStatus/77566733-2ab6-455d-972d-793c5a451f00?api-version=2022-10-01-preview\u0026operationType=Delete+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94/operationStatus/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94?api-version=2022-01-01-preview\u0026operationType=Delete", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00/operationStatus/77566733-2ab6-455d-972d-793c5a451f00?api-version=2022-10-01-preview\u0026operationType=Delete", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "218" ], - "x-ms-client-request-id": [ "46291bb8-a4ce-415f-98ac-3f13a67f8c63" ], + "x-ms-unique-id": [ "216" ], + "x-ms-client-request-id": [ "dbc8e06f-466a-4dbe-b382-e277b11bd2d5" ], "CommandName": [ "Remove-AzServiceBusPrivateEndpointConnection" ], "FullCommandName": [ "Remove-AzServiceBusPrivateEndpointConnection_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -274,34 +274,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "551bbdf2-2798-4025-910c-54dbaa3f21ba_M7SN1_M7SN1" ], + "x-ms-request-id": [ "b65961e9-593b-466a-bfa9-4578fb37a7f1_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11838" ], - "x-ms-correlation-request-id": [ "30151db1-6338-4041-ab5e-4a24ceac9b1d" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103644Z:30151db1-6338-4041-ab5e-4a24ceac9b1d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11808" ], + "x-ms-correlation-request-id": [ "26c02ae5-7904-4c5d-834f-6fb06dfdc2fb" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135435Z:26c02ae5-7904-4c5d-834f-6fb06dfdc2fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:36:44 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:54:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "470" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94/operationStatus/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94/operationStatus/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94\",\"name\":\"b5d7b5d8-1b18-4afb-819a-706a0f3d6a94\",\"status\":\"Succeeded\",\"startTime\":\"0001-01-01T00:00:00Z\",\"endTime\":\"0001-01-01T00:00:00Z\"}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00/operationStatus/77566733-2ab6-455d-972d-793c5a451f00/operationStatus/77566733-2ab6-455d-972d-793c5a451f00\",\"name\":\"77566733-2ab6-455d-972d-793c5a451f00\",\"status\":\"Succeeded\",\"startTime\":\"0001-01-01T00:00:00Z\",\"endTime\":\"0001-01-01T00:00:00Z\"}", "isContentBase64": false } }, - "Remove-AzServiceBusPrivateEndpointConnection+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94?api-version=2022-01-01-preview+4": { + "Remove-AzServiceBusPrivateEndpointConnection+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00?api-version=2022-10-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/privateEndpointConnections/b5d7b5d8-1b18-4afb-819a-706a0f3d6a94?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/privateEndpointConnections/77566733-2ab6-455d-972d-793c5a451f00?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "219" ], - "x-ms-client-request-id": [ "d2f03e88-8cbe-47ba-ae88-15a22a05dd53" ], + "x-ms-unique-id": [ "217" ], + "x-ms-client-request-id": [ "00a7b4cc-6128-4fd0-8784-eb336b4c8384" ], "CommandName": [ "Get-AzServiceBusPrivateEndpointConnection" ], "FullCommandName": [ "Get-AzServiceBusPrivateEndpointConnection_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -316,22 +316,22 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "f8a2c167-2b8c-44cd-bd14-21743a2ff7be_M7SN1_M7SN1" ], + "x-ms-request-id": [ "33ad5501-46a5-4286-9750-950352e1c881_M3SN1_M3SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11837" ], - "x-ms-correlation-request-id": [ "4f1030fb-4777-4093-9253-44d096e7266b" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103645Z:4f1030fb-4777-4093-9253-44d096e7266b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11807" ], + "x-ms-correlation-request-id": [ "512c97e5-8402-4f21-a986-e59bed44758e" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135435Z:512c97e5-8402-4f21-a986-e59bed44758e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:36:44 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:54:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "169" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"message\":\"The requested resource b5d7b5d8-1b18-4afb-819a-706a0f3d6a94 does not exist. CorrelationId: 4f1030fb-4777-4093-9253-44d096e7266b\",\"code\":\"NotFound\"}}", + "Content": "{\"error\":{\"message\":\"The requested resource 77566733-2ab6-455d-972d-793c5a451f00 does not exist. CorrelationId: 512c97e5-8402-4f21-a986-e59bed44758e\",\"code\":\"NotFound\"}}", "isContentBase64": false } } diff --git a/src/ServiceBus/ServiceBus.Autorest/test/Remove-AzServiceBusQueue.Recording.json b/src/ServiceBus/ServiceBus.Autorest/test/Remove-AzServiceBusQueue.Recording.json index b82faec0c773..fdee5ba5f1ef 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/Remove-AzServiceBusQueue.Recording.json +++ b/src/ServiceBus/ServiceBus.Autorest/test/Remove-AzServiceBusQueue.Recording.json @@ -1,8 +1,8 @@ { - "Remove-AzServiceBusQueue+[NoContext]+Delete+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queueToRemove?api-version=2022-01-01-preview+1": { + "Remove-AzServiceBusQueue+[NoContext]+Delete+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queueToRemove?api-version=2022-10-01-preview+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queueToRemove?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queueToRemove?api-version=2022-10-01-preview", "Content": "{\n}", "isContentBase64": false, "Headers": { @@ -18,32 +18,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1174" ], - "x-ms-request-id": [ "d1f916e7-9409-4331-8628-04b1f8664983" ], - "x-ms-correlation-request-id": [ "d1f916e7-9409-4331-8628-04b1f8664983" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103707Z:d1f916e7-9409-4331-8628-04b1f8664983" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1173" ], + "x-ms-request-id": [ "49e2d140-ce6d-495e-88d8-cef4e5f70d6d" ], + "x-ms-correlation-request-id": [ "49e2d140-ce6d-495e-88d8-cef4e5f70d6d" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135451Z:49e2d140-ce6d-495e-88d8-cef4e5f70d6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:37:06 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:54:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1042" ], + "Content-Length": [ "1041" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queueToRemove\",\"name\":\"queueToRemove\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"lockDuration\":\"PT1M\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":true,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":10,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2022-11-24T10:37:06.403Z\",\"updatedAt\":\"2022-11-24T10:37:06.613Z\",\"accessedAt\":\"0001-01-01T00:00:00\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queueToRemove\",\"name\":\"queueToRemove\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"lockDuration\":\"PT1M\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":true,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":10,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2023-02-19T13:54:51.153Z\",\"updatedAt\":\"2023-02-19T13:54:51.34Z\",\"accessedAt\":\"0001-01-01T00:00:00\"}}", "isContentBase64": false } }, - "Remove-AzServiceBusQueue+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queueToRemove?api-version=2022-01-01-preview+2": { + "Remove-AzServiceBusQueue+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queueToRemove?api-version=2022-10-01-preview+2": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queueToRemove?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queueToRemove?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "221" ], - "x-ms-client-request-id": [ "bdb7ebf6-78a1-4bbd-914f-e05c47b8f4fe" ], + "x-ms-unique-id": [ "219" ], + "x-ms-client-request-id": [ "d95ca796-3318-46be-8bda-ad9e7f72b20f" ], "CommandName": [ "Remove-AzServiceBusQueue" ], "FullCommandName": [ "Remove-AzServiceBusQueue_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -60,12 +60,12 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14989" ], - "x-ms-request-id": [ "4d3fd4f6-9951-48e4-ab4d-0691b3487632" ], - "x-ms-correlation-request-id": [ "4d3fd4f6-9951-48e4-ab4d-0691b3487632" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103708Z:4d3fd4f6-9951-48e4-ab4d-0691b3487632" ], + "x-ms-request-id": [ "01a29fd5-bfa8-4b0b-8659-5064d08759d7" ], + "x-ms-correlation-request-id": [ "01a29fd5-bfa8-4b0b-8659-5064d08759d7" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135453Z:01a29fd5-bfa8-4b0b-8659-5064d08759d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:37:07 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:54:52 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -75,15 +75,15 @@ "isContentBase64": false } }, - "Remove-AzServiceBusQueue+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queueToRemove?api-version=2022-01-01-preview+3": { + "Remove-AzServiceBusQueue+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queueToRemove?api-version=2022-10-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queueToRemove?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queueToRemove?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "222" ], - "x-ms-client-request-id": [ "f49620ad-aa48-42a8-8dc8-797e4de24b05" ], + "x-ms-unique-id": [ "220" ], + "x-ms-client-request-id": [ "1f1ad0dc-1ad3-428b-bae2-5dc5d1b3a359" ], "CommandName": [ "Get-AzServiceBusQueue" ], "FullCommandName": [ "Get-AzServiceBusQueue_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -99,13 +99,13 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11836" ], - "x-ms-request-id": [ "aadb9893-49aa-4d84-9d7b-243899b4072f" ], - "x-ms-correlation-request-id": [ "aadb9893-49aa-4d84-9d7b-243899b4072f" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103709Z:aadb9893-49aa-4d84-9d7b-243899b4072f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11806" ], + "x-ms-request-id": [ "db7a0c01-bac9-4b62-8f21-b8b4376f93b2" ], + "x-ms-correlation-request-id": [ "db7a0c01-bac9-4b62-8f21-b8b4376f93b2" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135454Z:db7a0c01-bac9-4b62-8f21-b8b4376f93b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:37:08 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:54:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "68" ], @@ -116,10 +116,10 @@ "isContentBase64": false } }, - "Remove-AzServiceBusQueue+[NoContext]+DeleteViaIdentity+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queueToRemove?api-version=2022-01-01-preview+1": { + "Remove-AzServiceBusQueue+[NoContext]+DeleteViaIdentity+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queueToRemove?api-version=2022-10-01-preview+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queueToRemove?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queueToRemove?api-version=2022-10-01-preview", "Content": "{\n}", "isContentBase64": false, "Headers": { @@ -135,32 +135,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1173" ], - "x-ms-request-id": [ "fce81ac7-ee01-4f22-9b4e-de18083aafab" ], - "x-ms-correlation-request-id": [ "fce81ac7-ee01-4f22-9b4e-de18083aafab" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103711Z:fce81ac7-ee01-4f22-9b4e-de18083aafab" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1172" ], + "x-ms-request-id": [ "f0ffa915-b359-4243-983e-d08ac18c9b16" ], + "x-ms-correlation-request-id": [ "f0ffa915-b359-4243-983e-d08ac18c9b16" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135456Z:f0ffa915-b359-4243-983e-d08ac18c9b16" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:37:10 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:54:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1040" ], + "Content-Length": [ "1041" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queueToRemove\",\"name\":\"queueToRemove\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"lockDuration\":\"PT1M\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":true,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":10,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2022-11-24T10:37:10.64Z\",\"updatedAt\":\"2022-11-24T10:37:10.72Z\",\"accessedAt\":\"0001-01-01T00:00:00\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queueToRemove\",\"name\":\"queueToRemove\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"lockDuration\":\"PT1M\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":true,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":10,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2023-02-19T13:54:56.263Z\",\"updatedAt\":\"2023-02-19T13:54:56.34Z\",\"accessedAt\":\"0001-01-01T00:00:00\"}}", "isContentBase64": false } }, - "Remove-AzServiceBusQueue+[NoContext]+DeleteViaIdentity+$DELETE+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queueToRemove?api-version=2022-01-01-preview+2": { + "Remove-AzServiceBusQueue+[NoContext]+DeleteViaIdentity+$DELETE+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queueToRemove?api-version=2022-10-01-preview+2": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queueToRemove?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queueToRemove?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "224" ], - "x-ms-client-request-id": [ "05e00647-6d91-4348-93fb-e903e10f30a4" ], + "x-ms-unique-id": [ "222" ], + "x-ms-client-request-id": [ "c38d958a-69ee-4417-af7f-866f8c50c494" ], "CommandName": [ "Remove-AzServiceBusQueue" ], "FullCommandName": [ "Remove-AzServiceBusQueue_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -177,12 +177,12 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14988" ], - "x-ms-request-id": [ "050dc295-17cb-4d60-bd79-7f7183cf37c9" ], - "x-ms-correlation-request-id": [ "050dc295-17cb-4d60-bd79-7f7183cf37c9" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103712Z:050dc295-17cb-4d60-bd79-7f7183cf37c9" ], + "x-ms-request-id": [ "b272245d-aca0-4975-914e-262aa31d9b12" ], + "x-ms-correlation-request-id": [ "b272245d-aca0-4975-914e-262aa31d9b12" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135458Z:b272245d-aca0-4975-914e-262aa31d9b12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:37:11 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:54:58 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -192,15 +192,15 @@ "isContentBase64": false } }, - "Remove-AzServiceBusQueue+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queueToRemove?api-version=2022-01-01-preview+3": { + "Remove-AzServiceBusQueue+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queueToRemove?api-version=2022-10-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queueToRemove?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queueToRemove?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "225" ], - "x-ms-client-request-id": [ "c75d98e3-2182-4708-9ac5-536d5c722e91" ], + "x-ms-unique-id": [ "223" ], + "x-ms-client-request-id": [ "e62afecb-0e69-435b-bafe-28a1b1e4519b" ], "CommandName": [ "Get-AzServiceBusQueue" ], "FullCommandName": [ "Get-AzServiceBusQueue_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -216,13 +216,13 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11835" ], - "x-ms-request-id": [ "e47d169d-223e-42c7-9588-d7d5259410c1" ], - "x-ms-correlation-request-id": [ "e47d169d-223e-42c7-9588-d7d5259410c1" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103713Z:e47d169d-223e-42c7-9588-d7d5259410c1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11805" ], + "x-ms-request-id": [ "fce70c6e-63fb-40dd-a0ea-8ad47537e918" ], + "x-ms-correlation-request-id": [ "fce70c6e-63fb-40dd-a0ea-8ad47537e918" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135459Z:fce70c6e-63fb-40dd-a0ea-8ad47537e918" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:37:12 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:54:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "68" ], diff --git a/src/ServiceBus/ServiceBus.Autorest/test/Remove-AzServiceBusRule.Recording.json b/src/ServiceBus/ServiceBus.Autorest/test/Remove-AzServiceBusRule.Recording.json index f5816109ff71..92d2d6fb8ef3 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/Remove-AzServiceBusRule.Recording.json +++ b/src/ServiceBus/ServiceBus.Autorest/test/Remove-AzServiceBusRule.Recording.json @@ -1,8 +1,8 @@ { - "Remove-AzServiceBusRule+[NoContext]+Delete+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/sqlRuleToRemove?api-version=2022-01-01-preview+1": { + "Remove-AzServiceBusRule+[NoContext]+Delete+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/sqlRuleToRemove?api-version=2022-10-01-preview+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/sqlRuleToRemove?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/sqlRuleToRemove?api-version=2022-10-01-preview", "Content": "{\n}", "isContentBase64": false, "Headers": { @@ -18,32 +18,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1172" ], - "x-ms-request-id": [ "295952b0-e362-44f4-b127-a27d2a6f6660" ], - "x-ms-correlation-request-id": [ "295952b0-e362-44f4-b127-a27d2a6f6660" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103735Z:295952b0-e362-44f4-b127-a27d2a6f6660" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1171" ], + "x-ms-request-id": [ "b84743e4-8e7d-40fc-9c40-276a6cec933f" ], + "x-ms-correlation-request-id": [ "b84743e4-8e7d-40fc-9c40-276a6cec933f" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135515Z:b84743e4-8e7d-40fc-9c40-276a6cec933f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:37:34 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:55:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "454" ], + "Content-Length": [ "470" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/sqlRuleToRemove\",\"name\":\"sqlRuleToRemove\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"SqlFilter\",\"sqlFilter\":{\"sqlExpression\":\"1=1\",\"compatibilityLevel\":20}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/sqlRuleToRemove\",\"name\":\"sqlRuleToRemove\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"SqlFilter\",\"sqlFilter\":{\"sqlExpression\":\"1=1\",\"compatibilityLevel\":20,\"parameters\":{}}}}", "isContentBase64": false } }, - "Remove-AzServiceBusRule+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/sqlRuleToRemove?api-version=2022-01-01-preview+2": { + "Remove-AzServiceBusRule+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/sqlRuleToRemove?api-version=2022-10-01-preview+2": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/sqlRuleToRemove?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/sqlRuleToRemove?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "227" ], - "x-ms-client-request-id": [ "9819d2ef-4500-4e1b-8542-4c85fc84176a" ], + "x-ms-unique-id": [ "225" ], + "x-ms-client-request-id": [ "4aa3f4d0-0e3c-429f-8cfa-28158ce04e68" ], "CommandName": [ "Remove-AzServiceBusRule" ], "FullCommandName": [ "Remove-AzServiceBusRule_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -60,12 +60,12 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14987" ], - "x-ms-request-id": [ "bacdcbb5-9681-4e64-adea-284e37e4ea69" ], - "x-ms-correlation-request-id": [ "bacdcbb5-9681-4e64-adea-284e37e4ea69" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103735Z:bacdcbb5-9681-4e64-adea-284e37e4ea69" ], + "x-ms-request-id": [ "a6dbaffa-e534-4aac-97c7-df0f9df02861" ], + "x-ms-correlation-request-id": [ "a6dbaffa-e534-4aac-97c7-df0f9df02861" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135515Z:a6dbaffa-e534-4aac-97c7-df0f9df02861" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:37:34 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:55:15 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -75,15 +75,15 @@ "isContentBase64": false } }, - "Remove-AzServiceBusRule+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/sqlRuleToRemove?api-version=2022-01-01-preview+3": { + "Remove-AzServiceBusRule+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/sqlRuleToRemove?api-version=2022-10-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/sqlRuleToRemove?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/sqlRuleToRemove?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "228" ], - "x-ms-client-request-id": [ "2dd58e14-af78-4c51-b6e6-483d0698c660" ], + "x-ms-unique-id": [ "226" ], + "x-ms-client-request-id": [ "5cff0938-dd97-4612-88f7-bdd6b658c37e" ], "CommandName": [ "Get-AzServiceBusRule" ], "FullCommandName": [ "Get-AzServiceBusRule_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -99,13 +99,13 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11834" ], - "x-ms-request-id": [ "501e500b-13c0-44fb-819d-1db6ce11a35e" ], - "x-ms-correlation-request-id": [ "501e500b-13c0-44fb-819d-1db6ce11a35e" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103736Z:501e500b-13c0-44fb-819d-1db6ce11a35e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11804" ], + "x-ms-request-id": [ "99cb349d-63c0-44a9-86e6-a95f3340c94e" ], + "x-ms-correlation-request-id": [ "99cb349d-63c0-44a9-86e6-a95f3340c94e" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135517Z:99cb349d-63c0-44a9-86e6-a95f3340c94e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:37:36 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:55:16 GMT" ] }, "ContentHeaders": { "Content-Length": [ "73" ], @@ -116,10 +116,10 @@ "isContentBase64": false } }, - "Remove-AzServiceBusRule+[NoContext]+DeleteViaIdentity+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/sqlRuleToRemove?api-version=2022-01-01-preview+1": { + "Remove-AzServiceBusRule+[NoContext]+DeleteViaIdentity+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/sqlRuleToRemove?api-version=2022-10-01-preview+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/sqlRuleToRemove?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/sqlRuleToRemove?api-version=2022-10-01-preview", "Content": "{\n}", "isContentBase64": false, "Headers": { @@ -135,32 +135,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1171" ], - "x-ms-request-id": [ "7fbc20fb-05c2-4de1-a898-fa22bf069064" ], - "x-ms-correlation-request-id": [ "7fbc20fb-05c2-4de1-a898-fa22bf069064" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103739Z:7fbc20fb-05c2-4de1-a898-fa22bf069064" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1170" ], + "x-ms-request-id": [ "941fe237-b6cb-4f40-a5ef-60b39dd8883f" ], + "x-ms-correlation-request-id": [ "941fe237-b6cb-4f40-a5ef-60b39dd8883f" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135519Z:941fe237-b6cb-4f40-a5ef-60b39dd8883f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:37:38 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:55:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "454" ], + "Content-Length": [ "470" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/sqlRuleToRemove\",\"name\":\"sqlRuleToRemove\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"SqlFilter\",\"sqlFilter\":{\"sqlExpression\":\"1=1\",\"compatibilityLevel\":20}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/sqlRuleToRemove\",\"name\":\"sqlRuleToRemove\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"SqlFilter\",\"sqlFilter\":{\"sqlExpression\":\"1=1\",\"compatibilityLevel\":20,\"parameters\":{}}}}", "isContentBase64": false } }, - "Remove-AzServiceBusRule+[NoContext]+DeleteViaIdentity+$DELETE+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/sqlRuleToRemove?api-version=2022-01-01-preview+2": { + "Remove-AzServiceBusRule+[NoContext]+DeleteViaIdentity+$DELETE+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/sqlRuleToRemove?api-version=2022-10-01-preview+2": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/sqlRuleToRemove?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/sqlRuleToRemove?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "230" ], - "x-ms-client-request-id": [ "bb5fe3ad-a17b-484a-8772-cf4d3f6c840c" ], + "x-ms-unique-id": [ "228" ], + "x-ms-client-request-id": [ "fd3e17bc-05a4-442a-876e-290d19024c29" ], "CommandName": [ "Remove-AzServiceBusRule" ], "FullCommandName": [ "Remove-AzServiceBusRule_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -177,12 +177,12 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14986" ], - "x-ms-request-id": [ "a2b98d9f-67b3-4a2d-803d-48afcd280d8f" ], - "x-ms-correlation-request-id": [ "a2b98d9f-67b3-4a2d-803d-48afcd280d8f" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103739Z:a2b98d9f-67b3-4a2d-803d-48afcd280d8f" ], + "x-ms-request-id": [ "10a445a1-0a68-4c13-8bbf-d38e18276585" ], + "x-ms-correlation-request-id": [ "10a445a1-0a68-4c13-8bbf-d38e18276585" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135520Z:10a445a1-0a68-4c13-8bbf-d38e18276585" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:37:38 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:55:19 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -192,15 +192,15 @@ "isContentBase64": false } }, - "Remove-AzServiceBusRule+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/sqlRuleToRemove?api-version=2022-01-01-preview+3": { + "Remove-AzServiceBusRule+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/sqlRuleToRemove?api-version=2022-10-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/sqlRuleToRemove?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/sqlRuleToRemove?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "231" ], - "x-ms-client-request-id": [ "bc79e179-eac9-494b-8773-92c9ea82d1fb" ], + "x-ms-unique-id": [ "229" ], + "x-ms-client-request-id": [ "2fc14b5a-bc94-4ec1-8e0c-65b7320e294d" ], "CommandName": [ "Get-AzServiceBusRule" ], "FullCommandName": [ "Get-AzServiceBusRule_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -216,13 +216,13 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11833" ], - "x-ms-request-id": [ "16d8cfcf-a595-4ca9-9795-15e65198178e" ], - "x-ms-correlation-request-id": [ "16d8cfcf-a595-4ca9-9795-15e65198178e" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103740Z:16d8cfcf-a595-4ca9-9795-15e65198178e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11803" ], + "x-ms-request-id": [ "ddf0d8fc-8285-452e-90b5-768fb3e988d3" ], + "x-ms-correlation-request-id": [ "ddf0d8fc-8285-452e-90b5-768fb3e988d3" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135522Z:ddf0d8fc-8285-452e-90b5-768fb3e988d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:37:39 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:55:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "73" ], diff --git a/src/ServiceBus/ServiceBus.Autorest/test/Remove-AzServiceBusSubscription.Recording.json b/src/ServiceBus/ServiceBus.Autorest/test/Remove-AzServiceBusSubscription.Recording.json index f22131edaf89..e4777a115b5f 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/Remove-AzServiceBusSubscription.Recording.json +++ b/src/ServiceBus/ServiceBus.Autorest/test/Remove-AzServiceBusSubscription.Recording.json @@ -1,8 +1,8 @@ { - "Remove-AzServiceBusSubscription+[NoContext]+Delete+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subToRemove?api-version=2022-01-01-preview+1": { + "Remove-AzServiceBusSubscription+[NoContext]+Delete+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subToRemove?api-version=2022-10-01-preview+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subToRemove?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subToRemove?api-version=2022-10-01-preview", "Content": "{\n}", "isContentBase64": false, "Headers": { @@ -18,32 +18,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1170" ], - "x-ms-request-id": [ "ebde4f62-5ab9-47d3-aea0-aa31ebd00bd1" ], - "x-ms-correlation-request-id": [ "ebde4f62-5ab9-47d3-aea0-aa31ebd00bd1" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103801Z:ebde4f62-5ab9-47d3-aea0-aa31ebd00bd1" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1169" ], + "x-ms-request-id": [ "88fe1aaf-918d-4b75-94af-55ee9830da70" ], + "x-ms-correlation-request-id": [ "88fe1aaf-918d-4b75-94af-55ee9830da70" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135536Z:88fe1aaf-918d-4b75-94af-55ee9830da70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:38:00 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:55:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "948" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subToRemove\",\"name\":\"subToRemove\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":10,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2022-11-24T10:38:01.2188917Z\",\"updatedAt\":\"2022-11-24T10:38:01.2188917Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subToRemove\",\"name\":\"subToRemove\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":10,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2023-02-19T13:55:36.5159004Z\",\"updatedAt\":\"2023-02-19T13:55:36.5159004Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\"}}", "isContentBase64": false } }, - "Remove-AzServiceBusSubscription+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subToRemove?api-version=2022-01-01-preview+2": { + "Remove-AzServiceBusSubscription+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subToRemove?api-version=2022-10-01-preview+2": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subToRemove?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subToRemove?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "233" ], - "x-ms-client-request-id": [ "8b1f27c8-831f-4a4a-b6e5-bbc8bc179e9e" ], + "x-ms-unique-id": [ "231" ], + "x-ms-client-request-id": [ "d4eece41-6cb8-48ea-9971-7c04b73872c6" ], "CommandName": [ "Remove-AzServiceBusSubscription" ], "FullCommandName": [ "Remove-AzServiceBusSubscription_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -60,12 +60,12 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14985" ], - "x-ms-request-id": [ "b1fd27c0-d04f-42a6-9e91-632907734469" ], - "x-ms-correlation-request-id": [ "b1fd27c0-d04f-42a6-9e91-632907734469" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103801Z:b1fd27c0-d04f-42a6-9e91-632907734469" ], + "x-ms-request-id": [ "fd35a322-10ea-4658-874b-c174c9587abd" ], + "x-ms-correlation-request-id": [ "fd35a322-10ea-4658-874b-c174c9587abd" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135537Z:fd35a322-10ea-4658-874b-c174c9587abd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:38:01 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:55:36 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -75,15 +75,15 @@ "isContentBase64": false } }, - "Remove-AzServiceBusSubscription+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subToRemove?api-version=2022-01-01-preview+3": { + "Remove-AzServiceBusSubscription+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subToRemove?api-version=2022-10-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subToRemove?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subToRemove?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "234" ], - "x-ms-client-request-id": [ "6d0b5ee9-1339-4752-be59-952a1a6d18d7" ], + "x-ms-unique-id": [ "232" ], + "x-ms-client-request-id": [ "6d5541d5-8607-4f78-97c4-b32f4224aca5" ], "CommandName": [ "Get-AzServiceBusSubscription" ], "FullCommandName": [ "Get-AzServiceBusSubscription_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -99,13 +99,13 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11832" ], - "x-ms-request-id": [ "f1c242cd-c73d-4c86-962a-796d8154e913" ], - "x-ms-correlation-request-id": [ "f1c242cd-c73d-4c86-962a-796d8154e913" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103803Z:f1c242cd-c73d-4c86-962a-796d8154e913" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11802" ], + "x-ms-request-id": [ "06f8d173-7c92-4fde-892c-310f729f3c2b" ], + "x-ms-correlation-request-id": [ "06f8d173-7c92-4fde-892c-310f729f3c2b" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135539Z:06f8d173-7c92-4fde-892c-310f729f3c2b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:38:02 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:55:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "81" ], @@ -116,10 +116,10 @@ "isContentBase64": false } }, - "Remove-AzServiceBusSubscription+[NoContext]+DeleteViaIdentity+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subToRemove?api-version=2022-01-01-preview+1": { + "Remove-AzServiceBusSubscription+[NoContext]+DeleteViaIdentity+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subToRemove?api-version=2022-10-01-preview+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subToRemove?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subToRemove?api-version=2022-10-01-preview", "Content": "{\n}", "isContentBase64": false, "Headers": { @@ -135,32 +135,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1169" ], - "x-ms-request-id": [ "ce0a5d01-6e37-4c8f-b055-35aadf9a4774" ], - "x-ms-correlation-request-id": [ "ce0a5d01-6e37-4c8f-b055-35aadf9a4774" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103804Z:ce0a5d01-6e37-4c8f-b055-35aadf9a4774" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1168" ], + "x-ms-request-id": [ "86d35aa0-298d-433f-9203-c74a5cee18e8" ], + "x-ms-correlation-request-id": [ "86d35aa0-298d-433f-9203-c74a5cee18e8" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135540Z:86d35aa0-298d-433f-9203-c74a5cee18e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:38:03 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:55:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "948" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subToRemove\",\"name\":\"subToRemove\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":10,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2022-11-24T10:38:04.2343871Z\",\"updatedAt\":\"2022-11-24T10:38:04.2343871Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subToRemove\",\"name\":\"subToRemove\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":10,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2023-02-19T13:55:40.5002987Z\",\"updatedAt\":\"2023-02-19T13:55:40.5002987Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\"}}", "isContentBase64": false } }, - "Remove-AzServiceBusSubscription+[NoContext]+DeleteViaIdentity+$DELETE+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subToRemove?api-version=2022-01-01-preview+2": { + "Remove-AzServiceBusSubscription+[NoContext]+DeleteViaIdentity+$DELETE+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subToRemove?api-version=2022-10-01-preview+2": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subToRemove?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subToRemove?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "236" ], - "x-ms-client-request-id": [ "fe3257ac-6309-4625-94d4-9877ccf7ef73" ], + "x-ms-unique-id": [ "234" ], + "x-ms-client-request-id": [ "e4e8daeb-dd14-49cd-a99a-9aa51578ca5a" ], "CommandName": [ "Remove-AzServiceBusSubscription" ], "FullCommandName": [ "Remove-AzServiceBusSubscription_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -177,12 +177,12 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14984" ], - "x-ms-request-id": [ "9ab44387-05f9-4457-b7bf-89f70c1e8838" ], - "x-ms-correlation-request-id": [ "9ab44387-05f9-4457-b7bf-89f70c1e8838" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103804Z:9ab44387-05f9-4457-b7bf-89f70c1e8838" ], + "x-ms-request-id": [ "5f910c70-e70a-4822-ae21-5df1d34bfc12" ], + "x-ms-correlation-request-id": [ "5f910c70-e70a-4822-ae21-5df1d34bfc12" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135541Z:5f910c70-e70a-4822-ae21-5df1d34bfc12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:38:03 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:55:41 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -192,15 +192,15 @@ "isContentBase64": false } }, - "Remove-AzServiceBusSubscription+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subToRemove?api-version=2022-01-01-preview+3": { + "Remove-AzServiceBusSubscription+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subToRemove?api-version=2022-10-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subToRemove?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subToRemove?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "237" ], - "x-ms-client-request-id": [ "21b86a6c-9ee8-4dc6-bbe9-f03b5e1e8ea5" ], + "x-ms-unique-id": [ "235" ], + "x-ms-client-request-id": [ "b030b712-85aa-4abf-81b9-79d2f6e10821" ], "CommandName": [ "Get-AzServiceBusSubscription" ], "FullCommandName": [ "Get-AzServiceBusSubscription_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -216,13 +216,13 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11831" ], - "x-ms-request-id": [ "ee7dba47-69d9-4346-aa5e-3af1f89895dc" ], - "x-ms-correlation-request-id": [ "ee7dba47-69d9-4346-aa5e-3af1f89895dc" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103805Z:ee7dba47-69d9-4346-aa5e-3af1f89895dc" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11801" ], + "x-ms-request-id": [ "de8695ea-b965-475b-9be4-a9befc8879df" ], + "x-ms-correlation-request-id": [ "de8695ea-b965-475b-9be4-a9befc8879df" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135542Z:de8695ea-b965-475b-9be4-a9befc8879df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:38:05 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:55:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "81" ], diff --git a/src/ServiceBus/ServiceBus.Autorest/test/Remove-AzServiceBusTopic.Recording.json b/src/ServiceBus/ServiceBus.Autorest/test/Remove-AzServiceBusTopic.Recording.json index 77e0942fed52..601ca567d676 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/Remove-AzServiceBusTopic.Recording.json +++ b/src/ServiceBus/ServiceBus.Autorest/test/Remove-AzServiceBusTopic.Recording.json @@ -1,8 +1,8 @@ { - "Remove-AzServiceBusTopic+[NoContext]+Delete+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToRemove?api-version=2022-01-01-preview+1": { + "Remove-AzServiceBusTopic+[NoContext]+Delete+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToRemove?api-version=2022-10-01-preview+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToRemove?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToRemove?api-version=2022-10-01-preview", "Content": "{\n}", "isContentBase64": false, "Headers": { @@ -18,32 +18,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1168" ], - "x-ms-request-id": [ "5c97aac3-6e90-4431-98b5-4c29360f4f33" ], - "x-ms-correlation-request-id": [ "5c97aac3-6e90-4431-98b5-4c29360f4f33" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103827Z:5c97aac3-6e90-4431-98b5-4c29360f4f33" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1167" ], + "x-ms-request-id": [ "e34e2c7b-5bd0-4823-b658-36f41a3a40a4" ], + "x-ms-correlation-request-id": [ "e34e2c7b-5bd0-4823-b658-36f41a3a40a4" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135558Z:e34e2c7b-5bd0-4823-b658-36f41a3a40a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:38:26 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:55:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "959" ], + "Content-Length": [ "957" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToRemove\",\"name\":\"topicToRemove\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"2022-11-24T10:38:26.86Z\",\"updatedAt\":\"2022-11-24T10:38:26.95Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToRemove\",\"name\":\"topicToRemove\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"2023-02-19T13:55:57.917Z\",\"updatedAt\":\"2023-02-19T13:55:58Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", "isContentBase64": false } }, - "Remove-AzServiceBusTopic+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToRemove?api-version=2022-01-01-preview+2": { + "Remove-AzServiceBusTopic+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToRemove?api-version=2022-10-01-preview+2": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToRemove?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToRemove?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "239" ], - "x-ms-client-request-id": [ "7e0afb7f-338d-4a0e-9f11-a20ce9e26457" ], + "x-ms-unique-id": [ "237" ], + "x-ms-client-request-id": [ "37751aff-dbac-4f88-b782-2c6ad5b9fd1b" ], "CommandName": [ "Remove-AzServiceBusTopic" ], "FullCommandName": [ "Remove-AzServiceBusTopic_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -60,12 +60,12 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14983" ], - "x-ms-request-id": [ "0c23f188-dd76-4f9e-9508-050dc1b0fbe8" ], - "x-ms-correlation-request-id": [ "0c23f188-dd76-4f9e-9508-050dc1b0fbe8" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103828Z:0c23f188-dd76-4f9e-9508-050dc1b0fbe8" ], + "x-ms-request-id": [ "1e65c065-05dc-46cb-998c-cfc55aad7167" ], + "x-ms-correlation-request-id": [ "1e65c065-05dc-46cb-998c-cfc55aad7167" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135559Z:1e65c065-05dc-46cb-998c-cfc55aad7167" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:38:27 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:55:59 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -75,15 +75,15 @@ "isContentBase64": false } }, - "Remove-AzServiceBusTopic+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToRemove?api-version=2022-01-01-preview+3": { + "Remove-AzServiceBusTopic+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToRemove?api-version=2022-10-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToRemove?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToRemove?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "240" ], - "x-ms-client-request-id": [ "1bf68391-105c-4be5-ae47-3b54d1a0427c" ], + "x-ms-unique-id": [ "238" ], + "x-ms-client-request-id": [ "80951ecd-beac-440f-acb6-5de817dd10d9" ], "CommandName": [ "Get-AzServiceBusTopic" ], "FullCommandName": [ "Get-AzServiceBusTopic_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -99,13 +99,13 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11830" ], - "x-ms-request-id": [ "395c634b-7961-4d7c-98c6-ca3d1210c774" ], - "x-ms-correlation-request-id": [ "395c634b-7961-4d7c-98c6-ca3d1210c774" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103829Z:395c634b-7961-4d7c-98c6-ca3d1210c774" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11800" ], + "x-ms-request-id": [ "ed80a59b-e1b7-4fb3-b44e-47eff8bf738c" ], + "x-ms-correlation-request-id": [ "ed80a59b-e1b7-4fb3-b44e-47eff8bf738c" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135601Z:ed80a59b-e1b7-4fb3-b44e-47eff8bf738c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:38:28 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:56:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "68" ], @@ -116,10 +116,10 @@ "isContentBase64": false } }, - "Remove-AzServiceBusTopic+[NoContext]+DeleteViaIdentity+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToRemove?api-version=2022-01-01-preview+1": { + "Remove-AzServiceBusTopic+[NoContext]+DeleteViaIdentity+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToRemove?api-version=2022-10-01-preview+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToRemove?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToRemove?api-version=2022-10-01-preview", "Content": "{\n}", "isContentBase64": false, "Headers": { @@ -135,32 +135,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1167" ], - "x-ms-request-id": [ "9abd038b-ce81-4140-9915-6df601c96b56" ], - "x-ms-correlation-request-id": [ "9abd038b-ce81-4140-9915-6df601c96b56" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103831Z:9abd038b-ce81-4140-9915-6df601c96b56" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1166" ], + "x-ms-request-id": [ "143fb794-de26-42f9-9bed-0bab521dd3b4" ], + "x-ms-correlation-request-id": [ "143fb794-de26-42f9-9bed-0bab521dd3b4" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135603Z:143fb794-de26-42f9-9bed-0bab521dd3b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:38:30 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:56:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "956" ], + "Content-Length": [ "960" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToRemove\",\"name\":\"topicToRemove\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"2022-11-24T10:38:31Z\",\"updatedAt\":\"2022-11-24T10:38:31.09Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToRemove\",\"name\":\"topicToRemove\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"2023-02-19T13:56:02.997Z\",\"updatedAt\":\"2023-02-19T13:56:03.08Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", "isContentBase64": false } }, - "Remove-AzServiceBusTopic+[NoContext]+DeleteViaIdentity+$DELETE+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToRemove?api-version=2022-01-01-preview+2": { + "Remove-AzServiceBusTopic+[NoContext]+DeleteViaIdentity+$DELETE+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToRemove?api-version=2022-10-01-preview+2": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToRemove?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToRemove?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "242" ], - "x-ms-client-request-id": [ "6c3d11c0-246d-49fb-9aed-39356523ea65" ], + "x-ms-unique-id": [ "240" ], + "x-ms-client-request-id": [ "a594f9b6-6a78-421d-896a-3eb91cd9b323" ], "CommandName": [ "Remove-AzServiceBusTopic" ], "FullCommandName": [ "Remove-AzServiceBusTopic_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -177,12 +177,12 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14982" ], - "x-ms-request-id": [ "8f6c9531-7782-4065-9323-369f708ed157" ], - "x-ms-correlation-request-id": [ "8f6c9531-7782-4065-9323-369f708ed157" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103832Z:8f6c9531-7782-4065-9323-369f708ed157" ], + "x-ms-request-id": [ "5cf5b0ca-4136-45d7-89d5-7429cd50faa6" ], + "x-ms-correlation-request-id": [ "5cf5b0ca-4136-45d7-89d5-7429cd50faa6" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135604Z:5cf5b0ca-4136-45d7-89d5-7429cd50faa6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:38:31 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:56:04 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -192,15 +192,15 @@ "isContentBase64": false } }, - "Remove-AzServiceBusTopic+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToRemove?api-version=2022-01-01-preview+3": { + "Remove-AzServiceBusTopic+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToRemove?api-version=2022-10-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToRemove?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToRemove?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "243" ], - "x-ms-client-request-id": [ "2e03559b-d95b-4d00-90b4-bed604d04a50" ], + "x-ms-unique-id": [ "241" ], + "x-ms-client-request-id": [ "3099bceb-d03e-4d08-8787-82e79d054a5b" ], "CommandName": [ "Get-AzServiceBusTopic" ], "FullCommandName": [ "Get-AzServiceBusTopic_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -216,13 +216,13 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11829" ], - "x-ms-request-id": [ "a7f1f0c2-5d3f-4f71-9d2f-2dd943fc8dc0" ], - "x-ms-correlation-request-id": [ "a7f1f0c2-5d3f-4f71-9d2f-2dd943fc8dc0" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103833Z:a7f1f0c2-5d3f-4f71-9d2f-2dd943fc8dc0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11799" ], + "x-ms-request-id": [ "250b2302-fcdf-418f-b74c-ec937bc4a2e5" ], + "x-ms-correlation-request-id": [ "250b2302-fcdf-418f-b74c-ec937bc4a2e5" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135606Z:250b2302-fcdf-418f-b74c-ec937bc4a2e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:38:32 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:56:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "68" ], diff --git a/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusAuthorizationRule.Recording.json b/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusAuthorizationRule.Recording.json index 826881b12679..14781dedc18f 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusAuthorizationRule.Recording.json +++ b/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusAuthorizationRule.Recording.json @@ -1,13 +1,13 @@ { - "Set-AzServiceBusAuthorizationRule+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules/namespaceAuthRule1?api-version=2022-01-01-preview+1": { + "Set-AzServiceBusAuthorizationRule+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules/namespaceAuthRule1?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules/namespaceAuthRule1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules/namespaceAuthRule1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "244" ], - "x-ms-client-request-id": [ "3f0f75e8-af6a-4732-b6fe-e9fdcd46b1e7" ], + "x-ms-unique-id": [ "242" ], + "x-ms-client-request-id": [ "ee4e422d-d9a0-41b9-baf9-8ceac75f496c" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusNamespaceAuthorizationRule_Get" ], "FullCommandName": [ "Get-AzServiceBusNamespaceAuthorizationRule_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -23,27 +23,27 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11828" ], - "x-ms-request-id": [ "f5fc012a-68a7-46f1-96b9-bbea67bbfc3d" ], - "x-ms-correlation-request-id": [ "f5fc012a-68a7-46f1-96b9-bbea67bbfc3d" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103853Z:f5fc012a-68a7-46f1-96b9-bbea67bbfc3d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11798" ], + "x-ms-request-id": [ "dbf90b20-2374-4859-997a-cdbd01ed4d3b" ], + "x-ms-correlation-request-id": [ "dbf90b20-2374-4859-997a-cdbd01ed4d3b" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135620Z:dbf90b20-2374-4859-997a-cdbd01ed4d3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:38:53 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:56:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "362" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/authorizationrules/namespaceAuthRule1\",\"name\":\"namespaceAuthRule1\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/authorizationrules/namespaceAuthRule1\",\"name\":\"namespaceAuthRule1\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}", "isContentBase64": false } }, - "Set-AzServiceBusAuthorizationRule+[NoContext]+SetExpandedNamespace+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules/namespaceAuthRule1?api-version=2022-01-01-preview+2": { + "Set-AzServiceBusAuthorizationRule+[NoContext]+SetExpandedNamespace+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules/namespaceAuthRule1?api-version=2022-10-01-preview+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules/namespaceAuthRule1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules/namespaceAuthRule1?api-version=2022-10-01-preview", "Content": "{\n \"properties\": {\n \"rights\": [ \"Send\", \"Listen\", \"Manage\" ]\n }\n}", "isContentBase64": false, "Headers": { @@ -59,32 +59,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1166" ], - "x-ms-request-id": [ "1210e95f-73fe-4329-8881-617c6f029b35" ], - "x-ms-correlation-request-id": [ "1210e95f-73fe-4329-8881-617c6f029b35" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103853Z:1210e95f-73fe-4329-8881-617c6f029b35" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1165" ], + "x-ms-request-id": [ "cd03ecbb-bf7d-47dd-ba15-ce9001e771e0" ], + "x-ms-correlation-request-id": [ "cd03ecbb-bf7d-47dd-ba15-ce9001e771e0" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135621Z:cd03ecbb-bf7d-47dd-ba15-ce9001e771e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:38:53 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:56:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "362" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules/namespaceAuthRule1\",\"name\":\"namespaceAuthRule1\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Send\",\"Listen\",\"Manage\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules/namespaceAuthRule1\",\"name\":\"namespaceAuthRule1\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Send\",\"Listen\",\"Manage\"]}}", "isContentBase64": false } }, - "Set-AzServiceBusAuthorizationRule+[NoContext]+SetExpandedQueue+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules/queueAuthRule1?api-version=2022-01-01-preview+1": { + "Set-AzServiceBusAuthorizationRule+[NoContext]+SetExpandedQueue+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules/queueAuthRule1?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules/queueAuthRule1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules/queueAuthRule1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "246" ], - "x-ms-client-request-id": [ "c0599b13-7348-4938-a4be-dfdf338ba40b" ], + "x-ms-unique-id": [ "244" ], + "x-ms-client-request-id": [ "8f7e4128-01f9-4513-8622-8cc16b15b57b" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusQueueAuthorizationRule_Get" ], "FullCommandName": [ "Get-AzServiceBusQueueAuthorizationRule_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -100,27 +100,27 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11827" ], - "x-ms-request-id": [ "f17757ea-7881-4431-958f-b3a39e98b92b" ], - "x-ms-correlation-request-id": [ "f17757ea-7881-4431-958f-b3a39e98b92b" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103854Z:f17757ea-7881-4431-958f-b3a39e98b92b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11797" ], + "x-ms-request-id": [ "a8da7603-ed38-4e79-8d59-8cecb148929b" ], + "x-ms-correlation-request-id": [ "a8da7603-ed38-4e79-8d59-8cecb148929b" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135622Z:a8da7603-ed38-4e79-8d59-8cecb148929b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:38:54 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:56:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "375" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationrules/queueAuthRule1\",\"name\":\"queueAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationrules/queueAuthRule1\",\"name\":\"queueAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}", "isContentBase64": false } }, - "Set-AzServiceBusAuthorizationRule+[NoContext]+SetExpandedQueue+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules/queueAuthRule1?api-version=2022-01-01-preview+2": { + "Set-AzServiceBusAuthorizationRule+[NoContext]+SetExpandedQueue+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules/queueAuthRule1?api-version=2022-10-01-preview+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules/queueAuthRule1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules/queueAuthRule1?api-version=2022-10-01-preview", "Content": "{\n \"properties\": {\n \"rights\": [ \"Send\" ]\n }\n}", "isContentBase64": false, "Headers": { @@ -136,32 +136,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1165" ], - "x-ms-request-id": [ "4ac9793c-f73d-4668-8ea4-7611061747df" ], - "x-ms-correlation-request-id": [ "4ac9793c-f73d-4668-8ea4-7611061747df" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103854Z:4ac9793c-f73d-4668-8ea4-7611061747df" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1164" ], + "x-ms-request-id": [ "2caa2c64-9ad2-4ad4-b1fb-db24a4c8a0df" ], + "x-ms-correlation-request-id": [ "2caa2c64-9ad2-4ad4-b1fb-db24a4c8a0df" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135622Z:2caa2c64-9ad2-4ad4-b1fb-db24a4c8a0df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:38:54 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:56:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "337" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules/queueAuthRule1\",\"name\":\"queueAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues/authorizationrules\",\"properties\":{\"rights\":[\"Send\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules/queueAuthRule1\",\"name\":\"queueAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues/authorizationrules\",\"properties\":{\"rights\":[\"Send\"]}}", "isContentBase64": false } }, - "Set-AzServiceBusAuthorizationRule+[NoContext]+SetExpandedTopic+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules/topicAuthRule1?api-version=2022-01-01-preview+1": { + "Set-AzServiceBusAuthorizationRule+[NoContext]+SetExpandedTopic+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules/topicAuthRule1?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules/topicAuthRule1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules/topicAuthRule1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "248" ], - "x-ms-client-request-id": [ "242e64d4-18d6-4dc8-98a2-37cb6e8caa59" ], + "x-ms-unique-id": [ "246" ], + "x-ms-client-request-id": [ "3eef8f57-1dbb-4f3e-a6b4-5593699dd400" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusTopicAuthorizationRule_Get" ], "FullCommandName": [ "Get-AzServiceBusTopicAuthorizationRule_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -177,27 +177,27 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11826" ], - "x-ms-request-id": [ "cc785ad9-e52b-478d-b097-f517cd5fccdb" ], - "x-ms-correlation-request-id": [ "cc785ad9-e52b-478d-b097-f517cd5fccdb" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103855Z:cc785ad9-e52b-478d-b097-f517cd5fccdb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11796" ], + "x-ms-request-id": [ "07bef4dd-aedd-49b3-9d3e-0001bd9d5098" ], + "x-ms-correlation-request-id": [ "07bef4dd-aedd-49b3-9d3e-0001bd9d5098" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135623Z:07bef4dd-aedd-49b3-9d3e-0001bd9d5098" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:38:55 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:56:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "375" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationrules/topicAuthRule1\",\"name\":\"topicAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationrules/topicAuthRule1\",\"name\":\"topicAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}", "isContentBase64": false } }, - "Set-AzServiceBusAuthorizationRule+[NoContext]+SetExpandedTopic+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules/topicAuthRule1?api-version=2022-01-01-preview+2": { + "Set-AzServiceBusAuthorizationRule+[NoContext]+SetExpandedTopic+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules/topicAuthRule1?api-version=2022-10-01-preview+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules/topicAuthRule1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules/topicAuthRule1?api-version=2022-10-01-preview", "Content": "{\n \"properties\": {\n \"rights\": [ \"Listen\" ]\n }\n}", "isContentBase64": false, "Headers": { @@ -213,32 +213,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1164" ], - "x-ms-request-id": [ "cc9f5469-2c53-41e3-9bb5-99aaf35cbaa3" ], - "x-ms-correlation-request-id": [ "cc9f5469-2c53-41e3-9bb5-99aaf35cbaa3" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103855Z:cc9f5469-2c53-41e3-9bb5-99aaf35cbaa3" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1163" ], + "x-ms-request-id": [ "6ef38dec-4837-442e-b750-81a54d5e05bc" ], + "x-ms-correlation-request-id": [ "6ef38dec-4837-442e-b750-81a54d5e05bc" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135624Z:6ef38dec-4837-442e-b750-81a54d5e05bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:38:55 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:56:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "339" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules/topicAuthRule1\",\"name\":\"topicAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/authorizationrules\",\"properties\":{\"rights\":[\"Listen\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules/topicAuthRule1\",\"name\":\"topicAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/authorizationrules\",\"properties\":{\"rights\":[\"Listen\"]}}", "isContentBase64": false } }, - "Set-AzServiceBusAuthorizationRule+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules/namespaceAuthRule1?api-version=2022-01-01-preview+1": { + "Set-AzServiceBusAuthorizationRule+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules/namespaceAuthRule1?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules/namespaceAuthRule1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules/namespaceAuthRule1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "250" ], - "x-ms-client-request-id": [ "f34718e6-6223-41b2-9786-5f3f2e0e4f0d" ], + "x-ms-unique-id": [ "248" ], + "x-ms-client-request-id": [ "73dfdd12-3c66-4cfe-b06f-59360830fb1f" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusNamespaceAuthorizationRule_Get" ], "FullCommandName": [ "Get-AzServiceBusNamespaceAuthorizationRule_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -254,32 +254,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11825" ], - "x-ms-request-id": [ "2bc290e3-2732-4ba2-99fb-261dd0de094f" ], - "x-ms-correlation-request-id": [ "2bc290e3-2732-4ba2-99fb-261dd0de094f" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103856Z:2bc290e3-2732-4ba2-99fb-261dd0de094f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11795" ], + "x-ms-request-id": [ "048f94b9-a751-457d-b5da-9a1d3b71cf1b" ], + "x-ms-correlation-request-id": [ "048f94b9-a751-457d-b5da-9a1d3b71cf1b" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135625Z:048f94b9-a751-457d-b5da-9a1d3b71cf1b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:38:56 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:56:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "362" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/authorizationrules/namespaceAuthRule1\",\"name\":\"namespaceAuthRule1\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/authorizationrules/namespaceAuthRule1\",\"name\":\"namespaceAuthRule1\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}", "isContentBase64": false } }, - "Set-AzServiceBusAuthorizationRule+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules/namespaceAuthRule1?api-version=2022-01-01-preview+2": { + "Set-AzServiceBusAuthorizationRule+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules/namespaceAuthRule1?api-version=2022-10-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules/namespaceAuthRule1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules/namespaceAuthRule1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "251" ], - "x-ms-client-request-id": [ "61541f0f-25bf-4d84-a567-d7e8278879e2" ], + "x-ms-unique-id": [ "249" ], + "x-ms-client-request-id": [ "f3d82bcd-63a7-441c-a730-48b5ea50ea75" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusNamespaceAuthorizationRule_GetViaIdentity" ], "FullCommandName": [ "Get-AzServiceBusNamespaceAuthorizationRule_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -295,27 +295,27 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11824" ], - "x-ms-request-id": [ "e12f16a5-2a8c-4339-ad5c-f01da90fd8a3" ], - "x-ms-correlation-request-id": [ "e12f16a5-2a8c-4339-ad5c-f01da90fd8a3" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103857Z:e12f16a5-2a8c-4339-ad5c-f01da90fd8a3" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11794" ], + "x-ms-request-id": [ "6bc6e97a-b0d6-49b6-a9ea-2c374f53ad01" ], + "x-ms-correlation-request-id": [ "6bc6e97a-b0d6-49b6-a9ea-2c374f53ad01" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135626Z:6bc6e97a-b0d6-49b6-a9ea-2c374f53ad01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:38:56 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:56:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "362" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/authorizationrules/namespaceAuthRule1\",\"name\":\"namespaceAuthRule1\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/authorizationrules/namespaceAuthRule1\",\"name\":\"namespaceAuthRule1\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Manage\",\"Listen\",\"Send\"]}}", "isContentBase64": false } }, - "Set-AzServiceBusAuthorizationRule+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules/namespaceAuthRule1?api-version=2022-01-01-preview+3": { + "Set-AzServiceBusAuthorizationRule+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules/namespaceAuthRule1?api-version=2022-10-01-preview+3": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules/namespaceAuthRule1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules/namespaceAuthRule1?api-version=2022-10-01-preview", "Content": "{\n \"properties\": {\n \"rights\": [ \"Send\" ]\n }\n}", "isContentBase64": false, "Headers": { @@ -331,32 +331,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1163" ], - "x-ms-request-id": [ "7351a8ea-b44f-4dc1-83fd-f02f03dcd863" ], - "x-ms-correlation-request-id": [ "7351a8ea-b44f-4dc1-83fd-f02f03dcd863" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103903Z:7351a8ea-b44f-4dc1-83fd-f02f03dcd863" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1162" ], + "x-ms-request-id": [ "2686c617-2a1e-4910-b141-507f7d2718c1" ], + "x-ms-correlation-request-id": [ "2686c617-2a1e-4910-b141-507f7d2718c1" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135633Z:2686c617-2a1e-4910-b141-507f7d2718c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:39:03 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:56:32 GMT" ] }, "ContentHeaders": { "Content-Length": [ "344" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/AuthorizationRules/namespaceAuthRule1\",\"name\":\"namespaceAuthRule1\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Send\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/AuthorizationRules/namespaceAuthRule1\",\"name\":\"namespaceAuthRule1\",\"type\":\"Microsoft.ServiceBus/Namespaces/AuthorizationRules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Send\"]}}", "isContentBase64": false } }, - "Set-AzServiceBusAuthorizationRule+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules/queueAuthRule1?api-version=2022-01-01-preview+4": { + "Set-AzServiceBusAuthorizationRule+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules/queueAuthRule1?api-version=2022-10-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules/queueAuthRule1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules/queueAuthRule1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "253" ], - "x-ms-client-request-id": [ "3c51dbdc-f27d-4091-a4aa-9b6c93c9003e" ], + "x-ms-unique-id": [ "251" ], + "x-ms-client-request-id": [ "fb051005-b82d-4014-8029-793741b42818" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusQueueAuthorizationRule_Get" ], "FullCommandName": [ "Get-AzServiceBusQueueAuthorizationRule_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -372,32 +372,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11823" ], - "x-ms-request-id": [ "fa52e213-42cc-4e9c-8942-c0be4d92a8a6" ], - "x-ms-correlation-request-id": [ "fa52e213-42cc-4e9c-8942-c0be4d92a8a6" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103904Z:fa52e213-42cc-4e9c-8942-c0be4d92a8a6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11793" ], + "x-ms-request-id": [ "f44b7100-de77-4fb7-a3f4-54e327da8ab3" ], + "x-ms-correlation-request-id": [ "f44b7100-de77-4fb7-a3f4-54e327da8ab3" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135633Z:f44b7100-de77-4fb7-a3f4-54e327da8ab3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:39:04 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:56:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "357" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationrules/queueAuthRule1\",\"name\":\"queueAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Send\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationrules/queueAuthRule1\",\"name\":\"queueAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Send\"]}}", "isContentBase64": false } }, - "Set-AzServiceBusAuthorizationRule+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules/queueAuthRule1?api-version=2022-01-01-preview+5": { + "Set-AzServiceBusAuthorizationRule+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules/queueAuthRule1?api-version=2022-10-01-preview+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules/queueAuthRule1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules/queueAuthRule1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "254" ], - "x-ms-client-request-id": [ "9453492c-cf62-467f-b442-7a42fcd9d16d" ], + "x-ms-unique-id": [ "252" ], + "x-ms-client-request-id": [ "58daebf1-c91c-4acc-a63b-42a9c5279f4b" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusQueueAuthorizationRule_GetViaIdentity" ], "FullCommandName": [ "Get-AzServiceBusQueueAuthorizationRule_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -413,27 +413,27 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11822" ], - "x-ms-request-id": [ "b08792a4-7ffc-47ca-9207-f522dd02c766" ], - "x-ms-correlation-request-id": [ "b08792a4-7ffc-47ca-9207-f522dd02c766" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103904Z:b08792a4-7ffc-47ca-9207-f522dd02c766" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11792" ], + "x-ms-request-id": [ "191e2caa-86fa-4a1f-9450-a8d9f4fa5a58" ], + "x-ms-correlation-request-id": [ "191e2caa-86fa-4a1f-9450-a8d9f4fa5a58" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135634Z:191e2caa-86fa-4a1f-9450-a8d9f4fa5a58" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:39:04 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:56:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "357" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationrules/queueAuthRule1\",\"name\":\"queueAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Send\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationrules/queueAuthRule1\",\"name\":\"queueAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Send\"]}}", "isContentBase64": false } }, - "Set-AzServiceBusAuthorizationRule+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules/queueAuthRule1?api-version=2022-01-01-preview+6": { + "Set-AzServiceBusAuthorizationRule+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules/queueAuthRule1?api-version=2022-10-01-preview+6": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules/queueAuthRule1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules/queueAuthRule1?api-version=2022-10-01-preview", "Content": "{\n \"properties\": {\n \"rights\": [ \"Listen\", \"Manage\", \"Send\" ]\n }\n}", "isContentBase64": false, "Headers": { @@ -449,27 +449,27 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1162" ], - "x-ms-request-id": [ "918e37f2-c377-4ce6-9e3c-f4fa19fbea87" ], - "x-ms-correlation-request-id": [ "918e37f2-c377-4ce6-9e3c-f4fa19fbea87" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103905Z:918e37f2-c377-4ce6-9e3c-f4fa19fbea87" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1161" ], + "x-ms-request-id": [ "f0d266c5-0477-4550-8ef6-eb1350386f70" ], + "x-ms-correlation-request-id": [ "f0d266c5-0477-4550-8ef6-eb1350386f70" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135635Z:f0d266c5-0477-4550-8ef6-eb1350386f70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:39:04 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:56:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "355" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue1/authorizationRules/queueAuthRule1\",\"name\":\"queueAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues/authorizationrules\",\"properties\":{\"rights\":[\"Listen\",\"Manage\",\"Send\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue1/authorizationRules/queueAuthRule1\",\"name\":\"queueAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues/authorizationrules\",\"properties\":{\"rights\":[\"Listen\",\"Manage\",\"Send\"]}}", "isContentBase64": false } }, - "Set-AzServiceBusAuthorizationRule+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules/topicAuthRule1?api-version=2022-01-01-preview+7": { + "Set-AzServiceBusAuthorizationRule+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules/topicAuthRule1?api-version=2022-10-01-preview+7": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules/topicAuthRule1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules/topicAuthRule1?api-version=2022-10-01-preview", "Content": "{\n \"properties\": {\n \"rights\": [ \"Send\" ]\n }\n}", "isContentBase64": false, "Headers": { @@ -485,32 +485,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1161" ], - "x-ms-request-id": [ "a10cc23d-e0e7-4c29-a048-bdd3e3dc1e89" ], - "x-ms-correlation-request-id": [ "a10cc23d-e0e7-4c29-a048-bdd3e3dc1e89" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103905Z:a10cc23d-e0e7-4c29-a048-bdd3e3dc1e89" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1160" ], + "x-ms-request-id": [ "4bafe601-b89d-4e87-b4ae-aec188836f1d" ], + "x-ms-correlation-request-id": [ "4bafe601-b89d-4e87-b4ae-aec188836f1d" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135636Z:4bafe601-b89d-4e87-b4ae-aec188836f1d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:39:05 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:56:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "337" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules/topicAuthRule1\",\"name\":\"topicAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/authorizationrules\",\"properties\":{\"rights\":[\"Send\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules/topicAuthRule1\",\"name\":\"topicAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/authorizationrules\",\"properties\":{\"rights\":[\"Send\"]}}", "isContentBase64": false } }, - "Set-AzServiceBusAuthorizationRule+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules/topicAuthRule1?api-version=2022-01-01-preview+8": { + "Set-AzServiceBusAuthorizationRule+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules/topicAuthRule1?api-version=2022-10-01-preview+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules/topicAuthRule1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules/topicAuthRule1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "257" ], - "x-ms-client-request-id": [ "5b1e7e8d-ae50-44f4-bf44-7b4670cf8576" ], + "x-ms-unique-id": [ "255" ], + "x-ms-client-request-id": [ "f0cc4ebf-818d-4593-a151-d82d9529ef76" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusTopicAuthorizationRule_Get" ], "FullCommandName": [ "Get-AzServiceBusTopicAuthorizationRule_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -526,32 +526,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11821" ], - "x-ms-request-id": [ "21655212-c68b-4546-83b4-1bbea14f7ded" ], - "x-ms-correlation-request-id": [ "21655212-c68b-4546-83b4-1bbea14f7ded" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103906Z:21655212-c68b-4546-83b4-1bbea14f7ded" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11791" ], + "x-ms-request-id": [ "317db732-0651-4d61-b8f9-ac281316d5cc" ], + "x-ms-correlation-request-id": [ "317db732-0651-4d61-b8f9-ac281316d5cc" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135636Z:317db732-0651-4d61-b8f9-ac281316d5cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:39:05 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:56:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "357" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationrules/topicAuthRule1\",\"name\":\"topicAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Send\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationrules/topicAuthRule1\",\"name\":\"topicAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Send\"]}}", "isContentBase64": false } }, - "Set-AzServiceBusAuthorizationRule+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules/topicAuthRule1?api-version=2022-01-01-preview+9": { + "Set-AzServiceBusAuthorizationRule+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules/topicAuthRule1?api-version=2022-10-01-preview+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules/topicAuthRule1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules/topicAuthRule1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "258" ], - "x-ms-client-request-id": [ "68e9b8e9-2cbf-422f-853b-fec53301ecd0" ], + "x-ms-unique-id": [ "256" ], + "x-ms-client-request-id": [ "f9336086-f775-4c70-93a5-7777ec33117b" ], "CommandName": [ "Az.ServiceBus.private\\Get-AzServiceBusTopicAuthorizationRule_GetViaIdentity" ], "FullCommandName": [ "Get-AzServiceBusTopicAuthorizationRule_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -567,27 +567,27 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11820" ], - "x-ms-request-id": [ "cbe6582d-e5a0-4ca9-9b4f-bd1b07cf6eaf" ], - "x-ms-correlation-request-id": [ "cbe6582d-e5a0-4ca9-9b4f-bd1b07cf6eaf" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103906Z:cbe6582d-e5a0-4ca9-9b4f-bd1b07cf6eaf" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11790" ], + "x-ms-request-id": [ "a381c6c2-02d2-4d9f-8078-959a5e5cc5ec" ], + "x-ms-correlation-request-id": [ "a381c6c2-02d2-4d9f-8078-959a5e5cc5ec" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135637Z:a381c6c2-02d2-4d9f-8078-959a5e5cc5ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:39:06 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:56:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "357" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationrules/topicAuthRule1\",\"name\":\"topicAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Send\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationrules/topicAuthRule1\",\"name\":\"topicAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/authorizationrules\",\"location\":\"eastus\",\"properties\":{\"rights\":[\"Send\"]}}", "isContentBase64": false } }, - "Set-AzServiceBusAuthorizationRule+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules/topicAuthRule1?api-version=2022-01-01-preview+10": { + "Set-AzServiceBusAuthorizationRule+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules/topicAuthRule1?api-version=2022-10-01-preview+10": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules/topicAuthRule1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules/topicAuthRule1?api-version=2022-10-01-preview", "Content": "{\n \"properties\": {\n \"rights\": [ \"Listen\", \"Manage\", \"Send\" ]\n }\n}", "isContentBase64": false, "Headers": { @@ -603,20 +603,20 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1160" ], - "x-ms-request-id": [ "bc4963a5-23d6-4c1a-b0ae-52d6ed049a13" ], - "x-ms-correlation-request-id": [ "bc4963a5-23d6-4c1a-b0ae-52d6ed049a13" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103906Z:bc4963a5-23d6-4c1a-b0ae-52d6ed049a13" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1159" ], + "x-ms-request-id": [ "d7b5d364-677c-4e31-b333-14f95bdaaf1b" ], + "x-ms-correlation-request-id": [ "d7b5d364-677c-4e31-b333-14f95bdaaf1b" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135638Z:d7b5d364-677c-4e31-b333-14f95bdaaf1b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:39:06 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:56:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "355" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/authorizationRules/topicAuthRule1\",\"name\":\"topicAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/authorizationrules\",\"properties\":{\"rights\":[\"Listen\",\"Manage\",\"Send\"]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/authorizationRules/topicAuthRule1\",\"name\":\"topicAuthRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/authorizationrules\",\"properties\":{\"rights\":[\"Listen\",\"Manage\",\"Send\"]}}", "isContentBase64": false } } diff --git a/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusGeoDRConfigurationBreakPair.Recording.json b/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusGeoDRConfigurationBreakPair.Recording.json index 3ec116636aaa..898910c1cc0d 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusGeoDRConfigurationBreakPair.Recording.json +++ b/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusGeoDRConfigurationBreakPair.Recording.json @@ -1,13 +1,13 @@ { - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+Break+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+1": { + "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+Break+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "260" ], - "x-ms-client-request-id": [ "52085e62-49f1-4930-9d07-4d8222b959ac" ], + "x-ms-unique-id": [ "258" ], + "x-ms-client-request-id": [ "439d8359-9235-458c-98eb-891da13a9335" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -22,34 +22,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "e553cdd2-302f-491a-8018-f9b34d154eb9_M7SN1_M7SN1" ], + "x-ms-request-id": [ "a5a4b00a-f553-4c92-a786-5bdd19261b43_M6SN1_M6SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11819" ], - "x-ms-correlation-request-id": [ "3efae45e-a556-49fb-b53b-dffb28396626" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103927Z:3efae45e-a556-49fb-b53b-dffb28396626" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11789" ], + "x-ms-correlation-request-id": [ "601332a6-5839-4fe4-901c-a90d9f23e098" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135653Z:601332a6-5839-4fe4-901c-a90d9f23e098" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:39:26 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:56:53 GMT" ] }, "ContentHeaders": { "Content-Length": [ "590" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Succeeded\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\",\"pendingReplicationOperationsCount\":0}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Succeeded\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\",\"pendingReplicationOperationsCount\":0}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+Break+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up/breakPairing?api-version=2022-01-01-preview+2": { + "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+Break+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1/breakPairing?api-version=2022-10-01-preview+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up/breakPairing?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1/breakPairing?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "261" ], - "x-ms-client-request-id": [ "e3fdeac7-1cd4-4c0c-bb8c-09c8101686f0" ], + "x-ms-unique-id": [ "259" ], + "x-ms-client-request-id": [ "955144b1-9d4f-4e7b-b475-324c6bf169b1" ], "CommandName": [ "Az.ServiceBus.private\\Invoke-AzServiceBusBreakDisasterRecoveryConfigPairing_Break" ], "FullCommandName": [ "Invoke-AzServiceBusBreakDisasterRecoveryConfigPairing_Break" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -64,15 +64,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "b5057b29-f375-4135-9666-31294f754605_M7SN1_M7SN1" ], + "x-ms-request-id": [ "89c0b04e-9f6d-47d1-a1f4-dd32cd2e71cc_M6SN1_M6SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1179" ], - "x-ms-correlation-request-id": [ "036391e8-87a3-4b11-8411-f56af8626bcc" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103927Z:036391e8-87a3-4b11-8411-f56af8626bcc" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1178" ], + "x-ms-correlation-request-id": [ "e10dc06b-551d-4356-8d39-5f446dfce205" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135654Z:e10dc06b-551d-4356-8d39-5f446dfce205" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:39:27 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:56:53 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -82,15 +82,15 @@ "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+Break+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+3": { + "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+Break+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "262" ], - "x-ms-client-request-id": [ "8e454a0b-366c-4a1b-b259-2afc390606dc" ], + "x-ms-unique-id": [ "260" ], + "x-ms-client-request-id": [ "18f98600-4b16-4a6e-ae51-56a286e77496" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -105,34 +105,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "7f03a0fc-8b38-444d-ab90-4c6746c902bd_M7SN1_M7SN1" ], + "x-ms-request-id": [ "a47cee5c-a087-4dd0-a872-d237768444df_M6SN1_M6SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11818" ], - "x-ms-correlation-request-id": [ "652b0b8f-48a4-4fe7-a672-6471884d62a9" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103927Z:652b0b8f-48a4-4fe7-a672-6471884d62a9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11788" ], + "x-ms-correlation-request-id": [ "e360286b-4fd7-4ba1-89ed-0d55fcff5dd6" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135654Z:e360286b-4fd7-4ba1-89ed-0d55fcff5dd6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:39:27 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:56:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+Break+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+4": { + "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+Break+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "263" ], - "x-ms-client-request-id": [ "ac13f62f-4a51-4d40-806e-4407e4f0b594" ], + "x-ms-unique-id": [ "261" ], + "x-ms-client-request-id": [ "3e6dd6f4-2791-4a2d-8a36-6dcd63df99d7" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -147,34 +147,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "969c3167-e24f-4a0f-a993-34373b233f7b_M7SN1_M7SN1" ], + "x-ms-request-id": [ "5662d37a-ebbb-4c6a-9166-3a498cf80e7c_M6SN1_M6SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11817" ], - "x-ms-correlation-request-id": [ "ca93eb12-21da-46c2-9ff9-78e1d2f83b22" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103937Z:ca93eb12-21da-46c2-9ff9-78e1d2f83b22" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11787" ], + "x-ms-correlation-request-id": [ "a552bfd3-dff0-4c56-86cc-3094036fd9e6" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135705Z:a552bfd3-dff0-4c56-86cc-3094036fd9e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:39:37 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:57:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+Break+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+5": { + "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+Break+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "264" ], - "x-ms-client-request-id": [ "601aad6c-9462-4bf1-baec-ea4b96d3ad39" ], + "x-ms-unique-id": [ "262" ], + "x-ms-client-request-id": [ "68d24985-fb16-46a9-ab1f-02238dc09a2e" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -189,34 +189,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "f6ef7ffe-ff40-4739-87c5-f6d0b8eecb51_M7SN1_M7SN1" ], + "x-ms-request-id": [ "474c9351-2b6a-46ad-8387-522d77e74504_M6SN1_M6SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11816" ], - "x-ms-correlation-request-id": [ "c3e2b07b-46ee-43c4-8c24-31e2b69f037a" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103948Z:c3e2b07b-46ee-43c4-8c24-31e2b69f037a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11786" ], + "x-ms-correlation-request-id": [ "75d2ed2e-3676-43b9-954e-952d3f18c9ca" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135716Z:75d2ed2e-3676-43b9-954e-952d3f18c9ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:39:47 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:57:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+Break+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+6": { + "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+Break+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "265" ], - "x-ms-client-request-id": [ "54207560-d310-4c75-b579-45b8fc8994dd" ], + "x-ms-unique-id": [ "263" ], + "x-ms-client-request-id": [ "7990b0fa-6350-465e-b485-5f72356c7c03" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -231,34 +231,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "1f84875d-c5bc-4fad-85f2-e45347b93389_M7SN1_M7SN1" ], + "x-ms-request-id": [ "d6aacefc-0f4e-41cc-b6cf-59fc68928ce3_M6SN1_M6SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11815" ], - "x-ms-correlation-request-id": [ "b025890a-7d5b-44ac-8884-2a5613f09e36" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T103958Z:b025890a-7d5b-44ac-8884-2a5613f09e36" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11785" ], + "x-ms-correlation-request-id": [ "2703fa02-6221-4898-942c-8b10544558d3" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135726Z:2703fa02-6221-4898-942c-8b10544558d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:39:58 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:57:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+Break+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+7": { + "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+Break+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "266" ], - "x-ms-client-request-id": [ "2270844f-2ba3-43ba-a484-a3491af03c87" ], + "x-ms-unique-id": [ "264" ], + "x-ms-client-request-id": [ "c9502016-2004-4672-9fa0-61ffc32fc6dd" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -273,34 +273,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "fdf6a79b-da6f-43ef-881c-20c2ed7bf4db_M7SN1_M7SN1" ], + "x-ms-request-id": [ "ff90ef74-429d-4a13-b59a-c641fd74326b_M6SN1_M6SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11814" ], - "x-ms-correlation-request-id": [ "07f1e346-a039-4b40-ad1b-1e318cdd78af" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104009Z:07f1e346-a039-4b40-ad1b-1e318cdd78af" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11784" ], + "x-ms-correlation-request-id": [ "712045ba-af80-43d6-b260-c30034d1ac17" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135737Z:712045ba-af80-43d6-b260-c30034d1ac17" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:40:09 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:57:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+Break+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+8": { + "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+Break+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "267" ], - "x-ms-client-request-id": [ "3b085d1a-9ebb-46b5-8aaa-0ee490ca099e" ], + "x-ms-unique-id": [ "265" ], + "x-ms-client-request-id": [ "06f2dc0b-d40d-4508-a51f-d693d0d9e73e" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -315,34 +315,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "d4d93653-7c40-46be-8114-8c774b6ddfa5_M7SN1_M7SN1" ], + "x-ms-request-id": [ "a8d87122-d716-4c14-9713-a8d51a157e3c_M6SN1_M6SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11813" ], - "x-ms-correlation-request-id": [ "cd21b29b-6379-4519-9ce6-475705036bbe" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104019Z:cd21b29b-6379-4519-9ce6-475705036bbe" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11783" ], + "x-ms-correlation-request-id": [ "338e940f-6ffa-4a0e-9442-ec639383bdd5" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135748Z:338e940f-6ffa-4a0e-9442-ec639383bdd5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:40:19 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:57:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+Break+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+9": { + "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+Break+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "268" ], - "x-ms-client-request-id": [ "d131d5e5-e87b-4b74-9b2b-b3dc29bb56e7" ], + "x-ms-unique-id": [ "266" ], + "x-ms-client-request-id": [ "460b0860-981c-432b-8c3e-ebf78b76fa51" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -357,34 +357,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "22762d20-2f10-422c-aa59-9b6075e8008d_M7SN1_M7SN1" ], + "x-ms-request-id": [ "7da562dd-2a97-46a4-ac7e-a1ce2efc16cd_M6SN1_M6SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11812" ], - "x-ms-correlation-request-id": [ "a2fdaff0-b718-4fdb-9bb9-e9b26163580c" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104030Z:a2fdaff0-b718-4fdb-9bb9-e9b26163580c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11782" ], + "x-ms-correlation-request-id": [ "127a1562-b75e-4cee-a639-321c96fef56c" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135758Z:127a1562-b75e-4cee-a639-321c96fef56c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:40:29 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:57:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+Break+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+10": { + "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+Break+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "269" ], - "x-ms-client-request-id": [ "638a51fd-a04e-4e30-879f-e3e98ed67f30" ], + "x-ms-unique-id": [ "267" ], + "x-ms-client-request-id": [ "a6c10a32-90f9-4503-8b78-ce4e9a70da0a" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -399,34 +399,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "b6a56fb6-d241-407d-8925-5ec415bfa307_M7SN1_M7SN1" ], + "x-ms-request-id": [ "760bedfe-77c0-4c7c-94f2-24f05b5b41c7_M6SN1_M6SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11811" ], - "x-ms-correlation-request-id": [ "cab77a11-6171-4646-8c36-8466f16f458b" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104040Z:cab77a11-6171-4646-8c36-8466f16f458b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11781" ], + "x-ms-correlation-request-id": [ "f160039a-fc89-4476-9061-cf8931af897c" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135809Z:f160039a-fc89-4476-9061-cf8931af897c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:40:39 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:58:08 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+Break+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+11": { + "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+Break+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "270" ], - "x-ms-client-request-id": [ "ad239f97-d3be-4d62-b1fc-08db89f682f0" ], + "x-ms-unique-id": [ "268" ], + "x-ms-client-request-id": [ "bfd4d95b-eff4-480e-8821-be2c4f4260b8" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -441,30 +441,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "4eb02921-937c-4981-954a-2d4a6a44444d_M7SN1_M7SN1" ], + "x-ms-request-id": [ "89da3fbd-a517-43eb-a71c-d714a28c21ea_M6SN1_M6SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11810" ], - "x-ms-correlation-request-id": [ "27cceed3-fa70-4921-9a64-dc80ca84c3f4" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104051Z:27cceed3-fa70-4921-9a64-dc80ca84c3f4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11780" ], + "x-ms-correlation-request-id": [ "5ec7a640-5071-4bd5-8ba4-23655cfa48e3" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135820Z:5ec7a640-5071-4bd5-8ba4-23655cfa48e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:40:50 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:58:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "412" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Succeeded\",\"partnerNamespace\":\"\",\"role\":\"PrimaryNotReplicating\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Succeeded\",\"partnerNamespace\":\"\",\"role\":\"PrimaryNotReplicating\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+Break+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+12": { + "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+Break+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+12": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", - "Content": "{\n \"properties\": {\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", + "Content": "{\n \"properties\": {\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\"\n }\n}", "isContentBase64": false, "Headers": { }, @@ -478,118 +478,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "ed9b7b3b-620f-4a15-acef-075b6d8e2c8f_M7SN1_M7SN1" ], + "x-ms-request-id": [ "59d52b7e-c33b-415a-9308-b205f2c2c04c_M6SN1_M6SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1159" ], - "x-ms-correlation-request-id": [ "8f5ab0ca-5cda-466a-8347-23a48acc6619" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104107Z:8f5ab0ca-5cda-466a-8347-23a48acc6619" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:41:06 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "551" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", - "isContentBase64": false - } - }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+Break+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+13": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "272" ], - "x-ms-client-request-id": [ "392fb3bc-53a8-4823-9124-16b38d78350f" ], - "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], - "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceBus/0.1.0" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "496d9763-8442-4ca6-bf85-d73904413676_M7SN1_M7SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11809" ], - "x-ms-correlation-request-id": [ "9bb26e67-ccb5-42bd-828f-f2e34be72de8" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104108Z:9bb26e67-ccb5-42bd-828f-f2e34be72de8" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:41:07 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "551" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", - "isContentBase64": false - } - }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+Break+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+14": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "273" ], - "x-ms-client-request-id": [ "39189539-a780-4c00-a028-f8e92076395e" ], - "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], - "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceBus/0.1.0" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "e774ceed-d796-4a6a-8dbb-045d3bff067b_M7SN1_M7SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11808" ], - "x-ms-correlation-request-id": [ "a4e331d6-998d-49a9-846d-09805190d0e8" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104118Z:a4e331d6-998d-49a9-846d-09805190d0e8" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1158" ], + "x-ms-correlation-request-id": [ "6e43654e-8001-4e14-af94-54254513f59a" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135840Z:6e43654e-8001-4e14-af94-54254513f59a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:41:18 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:58:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+Break+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+15": { + "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+Break+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "274" ], - "x-ms-client-request-id": [ "2b7ba438-b5c6-4cd7-a533-da2b70af92bc" ], + "x-ms-unique-id": [ "270" ], + "x-ms-client-request-id": [ "3e4d879a-3c6d-4207-a6e6-bdee525c0e9f" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -604,34 +520,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "b0bbbc7d-b4f1-49ca-bb2f-a0f6108483b0_M10SN1_M10SN1" ], + "x-ms-request-id": [ "94e5bd38-bb02-48d0-bc8e-36e2944d7b6e_M6SN1_M6SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11807" ], - "x-ms-correlation-request-id": [ "5f2822f1-d1f1-431c-a401-5dd257a47947" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104128Z:5f2822f1-d1f1-431c-a401-5dd257a47947" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11779" ], + "x-ms-correlation-request-id": [ "fb894e25-89b5-440c-8db4-16d1cdc47c7c" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135843Z:fb894e25-89b5-440c-8db4-16d1cdc47c7c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:41:28 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:58:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+Break+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+16": { + "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+Break+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "275" ], - "x-ms-client-request-id": [ "a74e385d-e453-4d83-9e87-6322709eaa8f" ], + "x-ms-unique-id": [ "271" ], + "x-ms-client-request-id": [ "d306b204-4216-4f0a-8468-9acfb2e6d8e5" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -646,34 +562,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "f946392a-c228-46d7-933e-3c499daa3fac_M10SN1_M10SN1" ], + "x-ms-request-id": [ "4ffa0559-80af-464c-b052-01948441619e_M6SN1_M6SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11806" ], - "x-ms-correlation-request-id": [ "639333e3-717a-49a7-9bb2-c5a4a4492f76" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104139Z:639333e3-717a-49a7-9bb2-c5a4a4492f76" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11778" ], + "x-ms-correlation-request-id": [ "4104e280-818e-4c4d-b0b8-209eff62395d" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135853Z:4104e280-818e-4c4d-b0b8-209eff62395d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:41:38 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:58:53 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+Break+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+17": { + "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+Break+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "276" ], - "x-ms-client-request-id": [ "b7419051-e704-4aeb-9dd8-920dfd4b69bc" ], + "x-ms-unique-id": [ "272" ], + "x-ms-client-request-id": [ "b30a95ef-3696-4185-b779-f53083b8ae68" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -688,34 +604,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "5fdc242f-a7d6-4492-a242-1fc5100291f9_M10SN1_M10SN1" ], + "x-ms-request-id": [ "5b478227-a4d0-4e00-9bb4-e159999eb3ac_M6SN1_M6SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11805" ], - "x-ms-correlation-request-id": [ "0a07508c-4cca-445b-b34a-4b265cfee23b" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104149Z:0a07508c-4cca-445b-b34a-4b265cfee23b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11777" ], + "x-ms-correlation-request-id": [ "747b6810-196b-440a-aa7f-e0d9730f8634" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135904Z:747b6810-196b-440a-aa7f-e0d9730f8634" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:41:49 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:59:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+Break+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+18": { + "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+Break+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "277" ], - "x-ms-client-request-id": [ "38d837b1-af5e-4716-82cd-ec1f6e9b72e1" ], + "x-ms-unique-id": [ "273" ], + "x-ms-client-request-id": [ "784185a4-4ad1-4127-acb7-e73c4bc78a64" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -730,34 +646,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "e68f9c14-db9a-455a-8697-54130f849aaf_M10SN1_M10SN1" ], + "x-ms-request-id": [ "42d09bb4-959b-4512-aa7a-979583163665_M6SN1_M6SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11804" ], - "x-ms-correlation-request-id": [ "b40ddc16-6027-4cf1-a916-952007195b38" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104159Z:b40ddc16-6027-4cf1-a916-952007195b38" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11776" ], + "x-ms-correlation-request-id": [ "80a5b4c3-a267-4659-b32b-96327917958e" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135915Z:80a5b4c3-a267-4659-b32b-96327917958e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:41:59 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:59:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+Break+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+19": { + "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+Break+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "278" ], - "x-ms-client-request-id": [ "416ac286-7ef4-4a9d-8834-1c85f57cfb94" ], + "x-ms-unique-id": [ "274" ], + "x-ms-client-request-id": [ "21894f70-6bc8-4659-9a98-ea137a2207ba" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -772,34 +688,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "02262d06-398a-4e3a-adb9-656ee884d3ff_M10SN1_M10SN1" ], + "x-ms-request-id": [ "1ac76e14-8bb8-42e2-b440-ad3f70b8cfaa_M6SN1_M6SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11803" ], - "x-ms-correlation-request-id": [ "b3253eaf-4d1b-4a93-a82c-5b49a256382a" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104210Z:b3253eaf-4d1b-4a93-a82c-5b49a256382a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11775" ], + "x-ms-correlation-request-id": [ "442d8e84-6788-4446-a0c3-8a755afe51c2" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135925Z:442d8e84-6788-4446-a0c3-8a755afe51c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:42:09 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:59:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+Break+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+20": { + "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+Break+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "279" ], - "x-ms-client-request-id": [ "781e46c9-e08c-4540-a7f5-5e89c467f69f" ], + "x-ms-unique-id": [ "275" ], + "x-ms-client-request-id": [ "42b2549c-f43f-479a-aae1-5e1bc9b073ca" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -814,34 +730,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "4c0ed79a-6ea5-474a-bc06-996f04eb3c33_M10SN1_M10SN1" ], + "x-ms-request-id": [ "37d1f53e-6b80-4f8e-a8cd-19bdfc1bbb27_M6SN1_M6SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11802" ], - "x-ms-correlation-request-id": [ "d3619783-3c2b-4c12-a109-990fe215d832" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104220Z:d3619783-3c2b-4c12-a109-990fe215d832" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11774" ], + "x-ms-correlation-request-id": [ "1adaa37f-6162-470a-80a9-65ab400e6d4e" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135936Z:1adaa37f-6162-470a-80a9-65ab400e6d4e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:42:19 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:59:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+Break+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+21": { + "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+Break+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "280" ], - "x-ms-client-request-id": [ "a03678ed-eaa0-4ba7-af3b-5e1e6190121f" ], + "x-ms-unique-id": [ "276" ], + "x-ms-client-request-id": [ "2467bec9-e71b-47f9-ba6a-9d654d466e01" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -856,34 +772,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "8896bf44-1bdd-4d00-9865-42656a4be365_M0SN1_M0SN1" ], + "x-ms-request-id": [ "7bf27265-500e-406a-a06b-4f8475a41aee_M6SN1_M6SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11801" ], - "x-ms-correlation-request-id": [ "6725ce3a-a33f-4572-9280-0a0577541a21" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104230Z:6725ce3a-a33f-4572-9280-0a0577541a21" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11773" ], + "x-ms-correlation-request-id": [ "24297306-5db4-49ae-b882-a9328b19f096" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135947Z:24297306-5db4-49ae-b882-a9328b19f096" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:42:30 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:59:46 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+Break+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+22": { + "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+Break+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "281" ], - "x-ms-client-request-id": [ "fde9ecdb-833f-4817-8d28-3bc1583ec620" ], + "x-ms-unique-id": [ "277" ], + "x-ms-client-request-id": [ "e7ffee57-b2db-49f8-ae3f-3b072963c652" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -898,34 +814,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "bab2c54e-b0fd-4b03-ae63-222937281e62_M0SN1_M0SN1" ], + "x-ms-request-id": [ "3ccabc1f-9603-42ba-9dd4-38c732db7805_M6SN1_M6SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11800" ], - "x-ms-correlation-request-id": [ "eddeebab-7324-4576-bd58-04f50a4e3b6b" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104241Z:eddeebab-7324-4576-bd58-04f50a4e3b6b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11772" ], + "x-ms-correlation-request-id": [ "175148b3-87b2-42d3-b851-2a3b57296c09" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T135958Z:175148b3-87b2-42d3-b851-2a3b57296c09" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:42:40 GMT" ] + "Date": [ "Sun, 19 Feb 2023 13:59:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+Break+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+23": { + "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+Break+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "282" ], - "x-ms-client-request-id": [ "46c7aa06-fa6e-40dc-b9de-3ea13c41dd06" ], + "x-ms-unique-id": [ "278" ], + "x-ms-client-request-id": [ "9d0189e6-d53f-4d73-83db-2f65c23c7105" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -940,34 +856,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "02225565-7982-4c3f-bfe6-f44446f8a6ac_M0SN1_M0SN1" ], + "x-ms-request-id": [ "59ae2b7f-b9b0-417a-9167-1d940f3acb4a_M6SN1_M6SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11799" ], - "x-ms-correlation-request-id": [ "7afe7091-c103-4de7-9d8f-0ba5b764af54" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104252Z:7afe7091-c103-4de7-9d8f-0ba5b764af54" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11771" ], + "x-ms-correlation-request-id": [ "8f09e7a5-fb63-4c4f-9852-7fcf2e204999" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T140010Z:8f09e7a5-fb63-4c4f-9852-7fcf2e204999" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:42:51 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:00:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "590" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Succeeded\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\",\"pendingReplicationOperationsCount\":0}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Succeeded\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\",\"pendingReplicationOperationsCount\":0}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+1": { + "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "283" ], - "x-ms-client-request-id": [ "b25b8a34-5965-4933-a04f-aa4dc4d7621f" ], + "x-ms-unique-id": [ "279" ], + "x-ms-client-request-id": [ "297933e3-d544-4ba6-8f3f-87a88a78bd96" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -982,34 +898,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "915f91e0-4c4b-4880-b2eb-faca8b185715_M0SN1_M0SN1" ], + "x-ms-request-id": [ "dfd3bd74-7087-44f2-a6c7-3198b6093ff1_M6SN1_M6SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11798" ], - "x-ms-correlation-request-id": [ "e9323f5f-8e3b-467c-9dc4-f6b7f0c11c31" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104302Z:e9323f5f-8e3b-467c-9dc4-f6b7f0c11c31" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11770" ], + "x-ms-correlation-request-id": [ "a298e578-42b2-4895-8eec-4ae634f39066" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T140022Z:a298e578-42b2-4895-8eec-4ae634f39066" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:43:02 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:00:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "590" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Succeeded\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\",\"pendingReplicationOperationsCount\":0}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Succeeded\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\",\"pendingReplicationOperationsCount\":0}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+2": { + "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "284" ], - "x-ms-client-request-id": [ "65f363c0-3734-4f57-be3b-64e8cc97b9e3" ], + "x-ms-unique-id": [ "280" ], + "x-ms-client-request-id": [ "aac9d9d8-17db-4c02-9cbf-a7bfca488066" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1024,34 +940,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "b040cd05-329e-437a-831c-c006dfbe7500_M0SN1_M0SN1" ], + "x-ms-request-id": [ "ac0a6543-a17f-4fa1-8c60-3d59fdad1e45_M6SN1_M6SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11797" ], - "x-ms-correlation-request-id": [ "da1766ac-ee69-4d0a-b4ae-1cd5648928ee" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104303Z:da1766ac-ee69-4d0a-b4ae-1cd5648928ee" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11769" ], + "x-ms-correlation-request-id": [ "eff73732-c134-48dd-8331-48993d489782" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T140023Z:eff73732-c134-48dd-8331-48993d489782" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:43:02 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:00:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "590" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Succeeded\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\",\"pendingReplicationOperationsCount\":0}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Succeeded\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\",\"pendingReplicationOperationsCount\":0}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourcegroupautorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryns9yownx/disasterRecoveryConfigs/aliass875up/breakPairing?api-version=2022-01-01-preview+3": { + "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourcegroupautorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primarynsd7oma3/disasterRecoveryConfigs/aliasq6x0t1/breakPairing?api-version=2022-10-01-preview+3": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourcegroupautorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryns9yownx/disasterRecoveryConfigs/aliass875up/breakPairing?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourcegroupautorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primarynsd7oma3/disasterRecoveryConfigs/aliasq6x0t1/breakPairing?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "285" ], - "x-ms-client-request-id": [ "2fb414d4-0b97-4c04-93bf-2849bb3317c0" ], + "x-ms-unique-id": [ "281" ], + "x-ms-client-request-id": [ "a0885c14-5e02-430e-8e05-cc01485dacbc" ], "CommandName": [ "Az.ServiceBus.private\\Invoke-AzServiceBusBreakDisasterRecoveryConfigPairing_Break" ], "FullCommandName": [ "Invoke-AzServiceBusBreakDisasterRecoveryConfigPairing_Break" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1066,15 +982,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "b9a33377-484c-49d2-afa4-6d793bb528bc_M0SN1_M0SN1" ], + "x-ms-request-id": [ "1e8b95b3-4f47-4e35-93bc-a4b3df8d003d_M6SN1_M6SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1178" ], - "x-ms-correlation-request-id": [ "b654eefb-4808-47cf-9839-3006e7b6cb2e" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104304Z:b654eefb-4808-47cf-9839-3006e7b6cb2e" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1177" ], + "x-ms-correlation-request-id": [ "fc444921-42c8-4767-a991-1806aa526d66" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T140024Z:fc444921-42c8-4767-a991-1806aa526d66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:43:03 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:00:23 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1084,15 +1000,15 @@ "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+4": { + "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "286" ], - "x-ms-client-request-id": [ "329cc62f-b3b3-4019-959b-570d26890ad1" ], + "x-ms-unique-id": [ "282" ], + "x-ms-client-request-id": [ "ca4ee5b3-3a89-4a80-b766-8c404affa2d2" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1107,34 +1023,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "dc50f9e0-e307-4475-843d-1a6c5f522007_M0SN1_M0SN1" ], + "x-ms-request-id": [ "56de6c11-e85e-468c-b758-3a5a91a87403_M6SN1_M6SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11796" ], - "x-ms-correlation-request-id": [ "8f03e9fb-9499-4b1e-aab1-6431ecde7803" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104304Z:8f03e9fb-9499-4b1e-aab1-6431ecde7803" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11768" ], + "x-ms-correlation-request-id": [ "ffbe1a3e-a784-4d54-ab23-de568a4708b4" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T140024Z:ffbe1a3e-a784-4d54-ab23-de568a4708b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:43:03 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:00:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+5": { + "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "287" ], - "x-ms-client-request-id": [ "f4a94f1b-a245-4b30-86db-6a7c6ffc59dd" ], + "x-ms-unique-id": [ "283" ], + "x-ms-client-request-id": [ "bb1ad768-baf3-4b86-9ed2-5ab9a3d2712a" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1149,34 +1065,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "96b54bb0-0cac-473b-9949-0cf2e03cbdd7_M0SN1_M0SN1" ], + "x-ms-request-id": [ "756d4187-40f8-4f65-982e-bbf77039a086_M6SN1_M6SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11795" ], - "x-ms-correlation-request-id": [ "2a8ca142-5c15-4a35-9931-0660bc5d94d0" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104315Z:2a8ca142-5c15-4a35-9931-0660bc5d94d0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11767" ], + "x-ms-correlation-request-id": [ "1bb5b342-552b-4028-b8f8-e2a09d88a80e" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T140035Z:1bb5b342-552b-4028-b8f8-e2a09d88a80e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:43:15 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:00:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+6": { + "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "288" ], - "x-ms-client-request-id": [ "2e0cd584-7bc0-4664-9817-b2dc155ece8d" ], + "x-ms-unique-id": [ "284" ], + "x-ms-client-request-id": [ "bda5e599-5c1e-4459-b89a-1824fdbf4369" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1191,34 +1107,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "33e21b33-94b4-4872-aefe-9a2dc6158a11_M0SN1_M0SN1" ], + "x-ms-request-id": [ "66737578-3b23-4a15-bd59-cfbdd7401279_M6SN1_M6SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11794" ], - "x-ms-correlation-request-id": [ "23e11d89-46a4-467b-843d-2a7dd333f6d4" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104325Z:23e11d89-46a4-467b-843d-2a7dd333f6d4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11766" ], + "x-ms-correlation-request-id": [ "77d4584c-ac97-4e23-8191-6658c5c594a8" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T140046Z:77d4584c-ac97-4e23-8191-6658c5c594a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:43:25 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:00:46 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+7": { + "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "289" ], - "x-ms-client-request-id": [ "73ed38a3-6b31-44cd-8aab-7557c88ef1aa" ], + "x-ms-unique-id": [ "285" ], + "x-ms-client-request-id": [ "507fd457-2a4b-4bec-86ae-b599bf8fdd73" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1233,34 +1149,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "2bbf113c-86e0-4e04-906e-f45a2f2e4e12_M0SN1_M0SN1" ], + "x-ms-request-id": [ "389c675c-5b20-4f7b-89e8-60ebbdcc446c_M6SN1_M6SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11793" ], - "x-ms-correlation-request-id": [ "3ac38e58-af5a-41b9-8b68-ca8813a47f4b" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104336Z:3ac38e58-af5a-41b9-8b68-ca8813a47f4b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11765" ], + "x-ms-correlation-request-id": [ "1dfb5b25-0446-45a3-b0e4-5f750c71f85a" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T140057Z:1dfb5b25-0446-45a3-b0e4-5f750c71f85a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:43:35 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:00:56 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+8": { + "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "290" ], - "x-ms-client-request-id": [ "f063adda-188a-4e6d-900d-47c834258fc2" ], + "x-ms-unique-id": [ "286" ], + "x-ms-client-request-id": [ "5185cc2e-9bb4-4319-82fe-db4965d2d6c2" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1275,34 +1191,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "d6daf3e2-39b3-487b-873f-61d2e04dc14d_M0SN1_M0SN1" ], + "x-ms-request-id": [ "6b178a16-15a2-485b-881a-4206e01a4fa1_M6SN1_M6SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11792" ], - "x-ms-correlation-request-id": [ "5690ac31-bedc-48c6-b4bd-06cc491df0a1" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104346Z:5690ac31-bedc-48c6-b4bd-06cc491df0a1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11764" ], + "x-ms-correlation-request-id": [ "f5045138-9d14-4d79-a794-c2799763547f" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T140107Z:f5045138-9d14-4d79-a794-c2799763547f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:43:46 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:01:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+9": { + "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "291" ], - "x-ms-client-request-id": [ "04081931-bfb4-4210-a084-04f615891cff" ], + "x-ms-unique-id": [ "287" ], + "x-ms-client-request-id": [ "97316b99-917f-4062-86b6-153af7f265f5" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1317,34 +1233,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "2e0c7e62-bc0e-49f7-869f-56ba2e6ba138_M0SN1_M0SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11791" ], - "x-ms-correlation-request-id": [ "0372271d-1c21-4b8f-9f63-4f8bce9c770d" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104356Z:0372271d-1c21-4b8f-9f63-4f8bce9c770d" ], + "x-ms-request-id": [ "dd51bdaf-850b-412c-9aed-934a690099cd_M1CH3_M1CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11763" ], + "x-ms-correlation-request-id": [ "e2bcbead-a49c-454f-a323-f3136d276b0a" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T140119Z:e2bcbead-a49c-454f-a323-f3136d276b0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:43:56 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:01:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+10": { + "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "292" ], - "x-ms-client-request-id": [ "d8060255-e127-48a1-98a2-d94cceaae4e7" ], + "x-ms-unique-id": [ "288" ], + "x-ms-client-request-id": [ "8f6f98da-a4a3-4e2d-a6cb-3f0d9b6e1b6c" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1359,34 +1275,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "4f071a49-7746-4a68-a7be-e80413435705_M0SN1_M0SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11790" ], - "x-ms-correlation-request-id": [ "3d1b43de-bcba-4cd2-9643-b5a138e8018b" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104407Z:3d1b43de-bcba-4cd2-9643-b5a138e8018b" ], + "x-ms-request-id": [ "a8d59e6e-4b7c-488c-bb6c-b545757edcd8_M11CH3_M11CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11762" ], + "x-ms-correlation-request-id": [ "6cb2dfa3-6800-4e0b-a72d-4af64d67583b" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T140131Z:6cb2dfa3-6800-4e0b-a72d-4af64d67583b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:44:06 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:01:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+11": { + "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "293" ], - "x-ms-client-request-id": [ "56cc5e58-2827-4f08-9cc2-5864b15eba09" ], + "x-ms-unique-id": [ "289" ], + "x-ms-client-request-id": [ "83dd050d-8275-4a4e-8bb8-1e1e187d1212" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1401,34 +1317,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "8544088a-09d8-4720-866c-f11fc370b4d6_M0SN1_M0SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11789" ], - "x-ms-correlation-request-id": [ "06f50197-5894-483c-8a7b-0ba13f7722b2" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104417Z:06f50197-5894-483c-8a7b-0ba13f7722b2" ], + "x-ms-request-id": [ "a50c36cf-c6fe-40e1-ab3a-c6b50abdb3be_M11CH3_M11CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11761" ], + "x-ms-correlation-request-id": [ "6858b718-fc15-43ac-983d-09f3efa11e66" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T140141Z:6858b718-fc15-43ac-983d-09f3efa11e66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:44:17 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:01:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+12": { + "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "294" ], - "x-ms-client-request-id": [ "877105cb-6fcb-4a8e-b9a3-c572ffa93e31" ], + "x-ms-unique-id": [ "290" ], + "x-ms-client-request-id": [ "b5c0e9fb-3892-4da1-88a6-10a6b477fa8d" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1443,30 +1359,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "2b97e370-3427-47ea-91af-832cf520dc04_M0SN1_M0SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11788" ], - "x-ms-correlation-request-id": [ "8eefeebe-0127-4330-92d7-a5852b053c38" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104428Z:8eefeebe-0127-4330-92d7-a5852b053c38" ], + "x-ms-request-id": [ "3538e713-d2a8-49d9-b403-936c6adc7a83_M11CH3_M11CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11760" ], + "x-ms-correlation-request-id": [ "e7b80f71-0a60-440e-bf3c-a7f94b9dad3e" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T140152Z:e7b80f71-0a60-440e-bf3c-a7f94b9dad3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:44:27 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:01:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "412" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Succeeded\",\"partnerNamespace\":\"\",\"role\":\"PrimaryNotReplicating\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Succeeded\",\"partnerNamespace\":\"\",\"role\":\"PrimaryNotReplicating\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+13": { + "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", - "Content": "{\n \"properties\": {\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", + "Content": "{\n \"properties\": {\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\"\n }\n}", "isContentBase64": false, "Headers": { }, @@ -1480,118 +1396,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "b917471f-8c92-4947-a603-e260ccefbb11_M0SN1_M0SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1158" ], - "x-ms-correlation-request-id": [ "c65e8819-e947-4372-b26f-a98d1cc67dcf" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104444Z:c65e8819-e947-4372-b26f-a98d1cc67dcf" ], + "x-ms-request-id": [ "c17c7e78-44ac-4ebf-a45b-c3b61f199791_M11CH3_M11CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1157" ], + "x-ms-correlation-request-id": [ "edae75e5-34df-456f-8ff1-231d539ae6fd" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T140209Z:edae75e5-34df-456f-8ff1-231d539ae6fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:44:43 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:02:08 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+14": { + "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "296" ], - "x-ms-client-request-id": [ "7b24179f-e45a-4dfc-a5de-e68bb24663cd" ], - "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], - "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceBus/0.1.0" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "e7eec1b4-c8ea-4e07-98c2-1bbeb3881c56_M0SN1_M0SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11787" ], - "x-ms-correlation-request-id": [ "99100581-fbfc-4435-b48f-9124d56db97c" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104444Z:99100581-fbfc-4435-b48f-9124d56db97c" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:44:44 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "551" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", - "isContentBase64": false - } - }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+15": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "297" ], - "x-ms-client-request-id": [ "9ee6209d-7606-4052-b99e-a60961effde4" ], - "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], - "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceBus/0.1.0" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "3f414f8c-8832-49c0-964e-e17ce2a41b60_M0SN1_M0SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11786" ], - "x-ms-correlation-request-id": [ "6582b09f-1e4c-4776-87ff-58f9dac8e5d9" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104455Z:6582b09f-1e4c-4776-87ff-58f9dac8e5d9" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:44:54 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "551" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", - "isContentBase64": false - } - }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+16": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "298" ], - "x-ms-client-request-id": [ "9110dbe4-5d06-4a47-9ecf-16f8b49767fa" ], + "x-ms-unique-id": [ "292" ], + "x-ms-client-request-id": [ "a9fcfb7a-f07f-4acc-b198-0d15478d0edb" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1606,34 +1438,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "c398f8a4-356f-467d-bec0-21731c9aac33_M0SN1_M0SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11785" ], - "x-ms-correlation-request-id": [ "816cb0aa-40cc-473d-b27e-3e2459b31cd5" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104506Z:816cb0aa-40cc-473d-b27e-3e2459b31cd5" ], + "x-ms-request-id": [ "7ec1f60a-2793-4fc2-88d6-a3ae65163a56_M11CH3_M11CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11759" ], + "x-ms-correlation-request-id": [ "42f7fa30-a432-48d2-bc1e-4c6f3dda4ef1" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T140209Z:42f7fa30-a432-48d2-bc1e-4c6f3dda4ef1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:45:05 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:02:08 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+17": { + "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "299" ], - "x-ms-client-request-id": [ "36ad1350-534b-4acf-8510-7f457b739398" ], + "x-ms-unique-id": [ "293" ], + "x-ms-client-request-id": [ "71dae123-fa02-4418-9491-5b591f308aa4" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1648,34 +1480,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "6824a184-fcd8-4a57-9823-b7213ef8b47c_M0SN1_M0SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11784" ], - "x-ms-correlation-request-id": [ "82803210-8e28-4fe0-9211-739b79679d0b" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104516Z:82803210-8e28-4fe0-9211-739b79679d0b" ], + "x-ms-request-id": [ "cf8f3ea9-2a4b-45d0-a209-c4489f2a5302_M11CH3_M11CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11758" ], + "x-ms-correlation-request-id": [ "705fb469-616e-49a4-8132-a74dac363883" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T140220Z:705fb469-616e-49a4-8132-a74dac363883" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:45:16 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:02:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+18": { + "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "300" ], - "x-ms-client-request-id": [ "17794d5e-591a-44b4-90af-0d85bb6ce618" ], + "x-ms-unique-id": [ "294" ], + "x-ms-client-request-id": [ "3abe6464-a02f-4da7-8feb-130698b88b1d" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1690,34 +1522,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "eab86908-e5b5-444e-becc-f13d7833b829_M3SN1_M3SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11783" ], - "x-ms-correlation-request-id": [ "c9fe3e10-38c0-4a35-9609-ef515127e6fd" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104527Z:c9fe3e10-38c0-4a35-9609-ef515127e6fd" ], + "x-ms-request-id": [ "ab11c42b-cd0e-4832-9c3c-a7ebb4a225cb_M11CH3_M11CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11757" ], + "x-ms-correlation-request-id": [ "f9138cf1-b7c7-49d0-a9df-053180d1d105" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T140231Z:f9138cf1-b7c7-49d0-a9df-053180d1d105" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:45:27 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:02:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+19": { + "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "301" ], - "x-ms-client-request-id": [ "8991ad49-fb71-43ff-ab81-94374d0b0b32" ], + "x-ms-unique-id": [ "295" ], + "x-ms-client-request-id": [ "a434b430-9cdf-467c-bebd-67c7d4adf423" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1732,34 +1564,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "0874e38a-2e94-4999-8349-db46c7db7bb1_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11782" ], - "x-ms-correlation-request-id": [ "c27a9e47-a735-40ef-84ee-a85ca96787a3" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104538Z:c27a9e47-a735-40ef-84ee-a85ca96787a3" ], + "x-ms-request-id": [ "a966b4e4-6f6c-44ea-be43-b6ae8966fdb4_M11CH3_M11CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11756" ], + "x-ms-correlation-request-id": [ "b487994d-2ff6-482f-a88b-c36f9d03192b" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T140241Z:b487994d-2ff6-482f-a88b-c36f9d03192b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:45:37 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:02:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+20": { + "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "302" ], - "x-ms-client-request-id": [ "ebad4c49-2423-48a8-a756-9dc0491e6b5e" ], + "x-ms-unique-id": [ "296" ], + "x-ms-client-request-id": [ "017d934a-8cf1-4941-ae33-5a45f170fa39" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1774,34 +1606,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "92dc31c2-8368-47f9-b218-87a906f79680_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11781" ], - "x-ms-correlation-request-id": [ "017e3c53-f3e4-4de2-9a1d-9b8c45fa538c" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104548Z:017e3c53-f3e4-4de2-9a1d-9b8c45fa538c" ], + "x-ms-request-id": [ "8c415519-2ae4-4a78-b45f-b1cc6dd14278_M11CH3_M11CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11755" ], + "x-ms-correlation-request-id": [ "17c5d95e-150b-4c87-851b-f13844dda706" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T140252Z:17c5d95e-150b-4c87-851b-f13844dda706" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:45:48 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:02:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+21": { + "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "303" ], - "x-ms-client-request-id": [ "4d8fb703-1a5e-4881-90ad-ec21f826a07c" ], + "x-ms-unique-id": [ "297" ], + "x-ms-client-request-id": [ "92729aa2-4800-4b6f-909b-d1ff11a1fbb0" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1816,34 +1648,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "4dcedc3d-1e0f-48ec-960f-77bc6a696573_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11780" ], - "x-ms-correlation-request-id": [ "b7cedbf2-da23-4e59-9a5d-b87a3840c37c" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104558Z:b7cedbf2-da23-4e59-9a5d-b87a3840c37c" ], + "x-ms-request-id": [ "fbd00efe-f8a4-4d4c-962b-1c2c407222e8_M11CH3_M11CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11754" ], + "x-ms-correlation-request-id": [ "8d70a0c1-b3cd-449c-b19f-3ef5045660d4" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T140303Z:8d70a0c1-b3cd-449c-b19f-3ef5045660d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:45:58 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:03:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+22": { + "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "304" ], - "x-ms-client-request-id": [ "51fdf45c-2d95-49af-8bf8-100fdcdc4568" ], + "x-ms-unique-id": [ "298" ], + "x-ms-client-request-id": [ "e5c55631-03c2-417a-bb34-1227d6a4dfcf" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1858,34 +1690,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "252637a3-394e-4ba3-99d6-f9b28cdd4bd9_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11779" ], - "x-ms-correlation-request-id": [ "e8d3d174-d7d3-4916-a924-f15aa3a73acd" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104609Z:e8d3d174-d7d3-4916-a924-f15aa3a73acd" ], + "x-ms-request-id": [ "56020d18-f34a-4ed5-aa1c-6cd8a124f7cd_M11CH3_M11CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11753" ], + "x-ms-correlation-request-id": [ "2e4224e6-a69a-46f6-9446-f4a738fb7932" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T140314Z:2e4224e6-a69a-46f6-9446-f4a738fb7932" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:46:08 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:03:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+23": { + "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "305" ], - "x-ms-client-request-id": [ "8866719e-aba7-467f-a9b7-db01ca56e14e" ], + "x-ms-unique-id": [ "299" ], + "x-ms-client-request-id": [ "44d1c400-c8c2-4756-add4-cf535ae861d5" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1900,34 +1732,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "7fbc261d-d243-4777-ae15-b4615f5eca1d_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11778" ], - "x-ms-correlation-request-id": [ "01a18334-94d7-4e1a-a111-a640f309f111" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104619Z:01a18334-94d7-4e1a-a111-a640f309f111" ], + "x-ms-request-id": [ "33043279-9bda-4e77-84c3-b4119c983b3d_M11CH3_M11CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11752" ], + "x-ms-correlation-request-id": [ "a1238242-9b67-4ca3-af1f-27a7bb11c5ca" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T140324Z:a1238242-9b67-4ca3-af1f-27a7bb11c5ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:46:19 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:03:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+24": { + "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "306" ], - "x-ms-client-request-id": [ "3f4f0654-2af0-46ae-9b85-5740b39d26b9" ], + "x-ms-unique-id": [ "300" ], + "x-ms-client-request-id": [ "9f2179b8-b3a6-4bad-bc84-0a54145d4561" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1942,34 +1774,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "07840097-2bd7-4aae-b4fe-f9c6e29206ca_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11777" ], - "x-ms-correlation-request-id": [ "bee2bffc-a6d0-4d1a-88fa-d2b6a48eb140" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104629Z:bee2bffc-a6d0-4d1a-88fa-d2b6a48eb140" ], + "x-ms-request-id": [ "da52ad40-6e4c-4c04-a40f-d49b0f7eb91f_M11CH3_M11CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11751" ], + "x-ms-correlation-request-id": [ "ccee6070-62f8-4f9f-955a-5af7a4651bf8" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T140335Z:ccee6070-62f8-4f9f-955a-5af7a4651bf8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:46:29 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:03:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+25": { + "Set-AzServiceBusGeoDRConfigurationBreakPair+[NoContext]+BreakViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "307" ], - "x-ms-client-request-id": [ "17324a63-10a0-4c8c-b014-90bdf1c9c927" ], + "x-ms-unique-id": [ "301" ], + "x-ms-client-request-id": [ "f2218269-b51d-4417-8f3d-c426a84f0d7b" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1984,22 +1816,22 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "9aa113e0-1e39-4cb8-a8e1-fb0c0b45aeda_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11776" ], - "x-ms-correlation-request-id": [ "0594f2c4-57d5-4d54-8f86-206802547876" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104640Z:0594f2c4-57d5-4d54-8f86-206802547876" ], + "x-ms-request-id": [ "32dcd7be-a950-4c89-89b2-ec20e05fac3c_M11CH3_M11CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11750" ], + "x-ms-correlation-request-id": [ "bc3bebcb-ca92-4f0c-857a-eda7e5c65edd" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T140346Z:bc3bebcb-ca92-4f0c-857a-eda7e5c65edd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:46:40 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:03:46 GMT" ] }, "ContentHeaders": { "Content-Length": [ "590" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Succeeded\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\",\"pendingReplicationOperationsCount\":0}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Succeeded\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\",\"pendingReplicationOperationsCount\":0}}", "isContentBase64": false } } diff --git a/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusGeoDRConfigurationFailOver.Recording.json b/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusGeoDRConfigurationFailOver.Recording.json index 356736c5e03f..cd55c31cc326 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusGeoDRConfigurationFailOver.Recording.json +++ b/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusGeoDRConfigurationFailOver.Recording.json @@ -1,13 +1,13 @@ { - "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+1": { + "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "308" ], - "x-ms-client-request-id": [ "afb05abe-39db-4ba6-8e45-336b2d2b1c44" ], + "x-ms-unique-id": [ "302" ], + "x-ms-client-request-id": [ "8c238ad4-94b8-432f-b876-1e8b0c3e414c" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -22,29 +22,29 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "a02a7b48-d295-45dc-9132-1554c8bebd64_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11775" ], - "x-ms-correlation-request-id": [ "95b8bc59-72df-4362-954c-f3f0b6aad52b" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104710Z:95b8bc59-72df-4362-954c-f3f0b6aad52b" ], + "x-ms-request-id": [ "980a136d-9ac7-4ffc-9aca-01f7a51f95b9_M11CH3_M11CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11749" ], + "x-ms-correlation-request-id": [ "26aa9987-53f7-4793-b8ce-80361e122b3d" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T140411Z:26aa9987-53f7-4793-b8ce-80361e122b3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:47:09 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:04:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "554" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Succeeded\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx\",\"role\":\"Secondary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Succeeded\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3\",\"role\":\"Secondary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up/failover?api-version=2022-01-01-preview+2": { + "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1/failover?api-version=2022-10-01-preview+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up/failover?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1/failover?api-version=2022-10-01-preview", "Content": "{\n}", "isContentBase64": false, "Headers": { @@ -59,15 +59,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "32dc808c-19da-4c7a-a4d8-32c28be785b0_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1177" ], - "x-ms-correlation-request-id": [ "e5cc804e-62a3-4e5b-9bdf-dad15bde82b1" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104711Z:e5cc804e-62a3-4e5b-9bdf-dad15bde82b1" ], + "x-ms-request-id": [ "ddb3d3b2-d1c8-4d9a-bc07-1eaf8c082dc0_M11CH3_M11CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1176" ], + "x-ms-correlation-request-id": [ "6b968f91-47a1-4bc8-9120-78cc6a77d188" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T140411Z:6b968f91-47a1-4bc8-9120-78cc6a77d188" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:47:10 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:04:10 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -77,15 +77,15 @@ "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+3": { + "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "310" ], - "x-ms-client-request-id": [ "c154ef22-2164-42eb-bf2b-b777f711de10" ], + "x-ms-unique-id": [ "304" ], + "x-ms-client-request-id": [ "c5e8bea6-02e3-451d-b575-3239925c5cf8" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -100,34 +100,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "f0182d87-5925-4e0e-96c6-865f7edea06f_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11774" ], - "x-ms-correlation-request-id": [ "3f85320d-f374-434f-abf7-3f39a75589b1" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104711Z:3f85320d-f374-434f-abf7-3f39a75589b1" ], + "x-ms-request-id": [ "2149b5d1-5ebb-4757-96a1-df9c15d40b05_M11CH3_M11CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11748" ], + "x-ms-correlation-request-id": [ "8a5a1b57-fc41-48e9-a641-72194c8d6a6d" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T140412Z:8a5a1b57-fc41-48e9-a641-72194c8d6a6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:47:10 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:04:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "553" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx\",\"role\":\"Secondary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3\",\"role\":\"Secondary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+4": { + "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "311" ], - "x-ms-client-request-id": [ "fe096ccd-090d-4812-890c-95b954455e2f" ], + "x-ms-unique-id": [ "305" ], + "x-ms-client-request-id": [ "742f26bb-ad78-488d-b4b4-1cd3d65deca8" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -142,34 +142,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "db6284ea-1c29-4e21-8c93-75c7315c5b50_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11773" ], - "x-ms-correlation-request-id": [ "b2293573-e56a-4d34-8e5a-4a8d8c96ea57" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104721Z:b2293573-e56a-4d34-8e5a-4a8d8c96ea57" ], + "x-ms-request-id": [ "cb863faa-6c52-4b53-b197-f51218e0adad_M11CH3_M11CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11747" ], + "x-ms-correlation-request-id": [ "2d17aa9c-9d62-49a9-ba49-0c5c74cc6898" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T140422Z:2d17aa9c-9d62-49a9-ba49-0c5c74cc6898" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:47:20 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:04:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "553" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx\",\"role\":\"Secondary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3\",\"role\":\"Secondary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+5": { + "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "312" ], - "x-ms-client-request-id": [ "2aa63676-fae8-454c-8c31-8c911eb387af" ], + "x-ms-unique-id": [ "306" ], + "x-ms-client-request-id": [ "7913e909-a867-4d4e-8ae2-2721c768170b" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -184,34 +184,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "08f4fd79-3b79-41af-8b18-4a2fc98b9212_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11772" ], - "x-ms-correlation-request-id": [ "6d53544e-604a-4434-a107-730c5f00c905" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104731Z:6d53544e-604a-4434-a107-730c5f00c905" ], + "x-ms-request-id": [ "eaa25504-92cf-4bfe-a9de-d29c0eb83d62_M11CH3_M11CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11746" ], + "x-ms-correlation-request-id": [ "037e9c0c-4341-4168-912d-7a1fe68d9e37" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T140433Z:037e9c0c-4341-4168-912d-7a1fe68d9e37" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:47:31 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:04:32 GMT" ] }, "ContentHeaders": { "Content-Length": [ "553" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx\",\"role\":\"Secondary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3\",\"role\":\"Secondary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+6": { + "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "313" ], - "x-ms-client-request-id": [ "5c573858-ab0d-43b5-86b4-113b47365cb9" ], + "x-ms-unique-id": [ "307" ], + "x-ms-client-request-id": [ "bc9ecc3a-c758-4b87-9637-736126497b59" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -226,76 +226,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "474ce268-7046-4eb3-8647-81b58754bba2_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11771" ], - "x-ms-correlation-request-id": [ "44bfc5c7-9d82-454e-bc7c-8362a7c67a1e" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104742Z:44bfc5c7-9d82-454e-bc7c-8362a7c67a1e" ], + "x-ms-request-id": [ "8c1c3528-eae5-4e5e-a109-c602608cc46e_M11CH3_M11CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11745" ], + "x-ms-correlation-request-id": [ "0462c43d-eace-4bb5-b1dd-cdd7fad1fbc6" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T140443Z:0462c43d-eace-4bb5-b1dd-cdd7fad1fbc6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:47:41 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:04:43 GMT" ] }, "ContentHeaders": { "Content-Length": [ "553" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx\",\"role\":\"Secondary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3\",\"role\":\"Secondary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+7": { + "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "314" ], - "x-ms-client-request-id": [ "70549a77-eb3f-41e4-81d5-cc2f1618160a" ], - "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], - "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceBus/0.1.0" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "44bfbc3d-aa70-4554-83ec-e6c0659aecba_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11770" ], - "x-ms-correlation-request-id": [ "212c62a2-acaf-434f-a73b-2420357b843f" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104752Z:212c62a2-acaf-434f-a73b-2420357b843f" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:47:51 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "553" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx\",\"role\":\"Secondary\",\"type\":\"MetadataReplication\"}}", - "isContentBase64": false - } - }, - "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+8": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "315" ], - "x-ms-client-request-id": [ "357d34f1-382c-4034-ae1c-c36b5e0ef3fb" ], + "x-ms-unique-id": [ "308" ], + "x-ms-client-request-id": [ "f6138b02-88a1-4f1f-9f9e-89d56740ded2" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -310,34 +268,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "f28846bd-04e2-4755-a6c1-2a17a7901f6c_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11769" ], - "x-ms-correlation-request-id": [ "9cc2222d-d188-4db6-92b7-46ce8b8eb002" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104802Z:9cc2222d-d188-4db6-92b7-46ce8b8eb002" ], + "x-ms-request-id": [ "590430d9-4495-447d-b995-138ae9112906_M11CH3_M11CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11744" ], + "x-ms-correlation-request-id": [ "3d5b76d2-c051-49f6-b59d-8197602346cc" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T140454Z:3d5b76d2-c051-49f6-b59d-8197602346cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:48:02 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:04:53 GMT" ] }, "ContentHeaders": { "Content-Length": [ "553" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx\",\"role\":\"Secondary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3\",\"role\":\"Secondary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+9": { + "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "316" ], - "x-ms-client-request-id": [ "538cce86-2125-4f6f-a428-3bfe962e5950" ], + "x-ms-unique-id": [ "309" ], + "x-ms-client-request-id": [ "2250b0a5-671b-4fe5-a254-cda326a9f9d9" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -352,34 +310,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "820a5074-7c62-40aa-9aed-a7a397b52f25_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11768" ], - "x-ms-correlation-request-id": [ "4d8d6dec-743e-4063-93df-95b375123e3c" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104813Z:4d8d6dec-743e-4063-93df-95b375123e3c" ], + "x-ms-request-id": [ "98466443-6c56-4924-b68b-4dee147bf49f_M11CH3_M11CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11773" ], + "x-ms-correlation-request-id": [ "0301c2bd-1288-4396-adf0-1c1845b596b3" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T140505Z:0301c2bd-1288-4396-adf0-1c1845b596b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:48:13 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:05:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "553" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx\",\"role\":\"Secondary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3\",\"role\":\"Secondary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+10": { + "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "317" ], - "x-ms-client-request-id": [ "fc1b02ec-9c8d-433a-828e-ff00fded9097" ], + "x-ms-unique-id": [ "310" ], + "x-ms-client-request-id": [ "f182132d-0bad-4abe-aceb-80777914f4f7" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -394,34 +352,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "4128afe3-4c1d-4ba0-a38f-7b1733d1051d_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11767" ], - "x-ms-correlation-request-id": [ "0953676f-3ac8-47b3-8b66-e8b2ff5f4610" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104823Z:0953676f-3ac8-47b3-8b66-e8b2ff5f4610" ], + "x-ms-request-id": [ "896f1092-f890-42c2-8c96-f8b693e58754_M11CH3_M11CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11772" ], + "x-ms-correlation-request-id": [ "7c6f6110-a9ef-4568-aeef-a9261f463c80" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T140515Z:7c6f6110-a9ef-4568-aeef-a9261f463c80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:48:23 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:05:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "553" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx\",\"role\":\"Secondary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3\",\"role\":\"Secondary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+11": { + "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "318" ], - "x-ms-client-request-id": [ "9fc46854-5980-4823-9338-0697d341dd1a" ], + "x-ms-unique-id": [ "311" ], + "x-ms-client-request-id": [ "5a0b3232-2225-421c-ba24-af1d30116b5d" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -436,34 +394,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "62e79b71-0f0d-4920-a56f-54601fe49076_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11766" ], - "x-ms-correlation-request-id": [ "7ed146ff-035d-494c-8353-f4a303f13366" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104834Z:7ed146ff-035d-494c-8353-f4a303f13366" ], + "x-ms-request-id": [ "a0051308-edca-4a53-bf12-c7d2e42b6adf_M11CH3_M11CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11771" ], + "x-ms-correlation-request-id": [ "fc76073e-80e1-43fa-93bc-d20da2fd6c04" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T140526Z:fc76073e-80e1-43fa-93bc-d20da2fd6c04" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:48:33 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:05:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "553" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx\",\"role\":\"Secondary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3\",\"role\":\"Secondary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+12": { + "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "319" ], - "x-ms-client-request-id": [ "987e182b-7d94-4603-a006-ef52f8c5a016" ], + "x-ms-unique-id": [ "312" ], + "x-ms-client-request-id": [ "1b3298ba-3683-46fb-b0ea-a56784ce0037" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -478,34 +436,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "0037b03c-c0d3-4531-b59f-183f97f2495a_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11765" ], - "x-ms-correlation-request-id": [ "92c61861-eea0-4e68-a527-27f7a2b895c9" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104844Z:92c61861-eea0-4e68-a527-27f7a2b895c9" ], + "x-ms-request-id": [ "066a34d3-00f6-403c-89c9-cd9c874aa212_M11CH3_M11CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11770" ], + "x-ms-correlation-request-id": [ "104fb279-5c70-4adf-b30f-8de7db2ddb7e" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T140537Z:104fb279-5c70-4adf-b30f-8de7db2ddb7e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:48:44 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:05:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "414" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Succeeded\",\"partnerNamespace\":\"\",\"role\":\"PrimaryNotReplicating\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Succeeded\",\"partnerNamespace\":\"\",\"role\":\"PrimaryNotReplicating\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$DELETE+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+13": { + "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$DELETE+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+12": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "320" ], - "x-ms-client-request-id": [ "bc51b86b-e70e-4b8c-9620-d4b4c4f9ddd7" ], + "x-ms-unique-id": [ "313" ], + "x-ms-client-request-id": [ "c9d40d4b-27ee-4778-9f5d-9de0ab7607ec" ], "CommandName": [ "Remove-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Remove-AzServiceBusGeoDRConfiguration_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -520,15 +478,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "f3b8d15a-9a0d-4b6b-bf2b-3d33e234d331_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "58c28003-2ca6-4b6a-8d7c-f4b2490eef76_M11CH3_M11CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14981" ], - "x-ms-correlation-request-id": [ "547dba33-74ac-4ff4-969c-f831b4bbee7f" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T104854Z:547dba33-74ac-4ff4-969c-f831b4bbee7f" ], + "x-ms-correlation-request-id": [ "dfeab7fc-51f4-4f88-b827-536f25a003e2" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T140547Z:dfeab7fc-51f4-4f88-b827-536f25a003e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:48:54 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:05:46 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -538,11 +496,11 @@ "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+14": { + "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", - "Content": "{\n \"properties\": {\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", + "Content": "{\n \"properties\": {\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\"\n }\n}", "isContentBase64": false, "Headers": { }, @@ -556,34 +514,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "0585b584-f8a9-4758-bf0d-515458a72985_M4SN1_M4SN1" ], + "x-ms-request-id": [ "88e0d4d9-921e-4044-9725-aca6613112f8_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "a7f752d0-80b8-4d07-944a-80c4d7c21719" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T105202Z:a7f752d0-80b8-4d07-944a-80c4d7c21719" ], + "x-ms-correlation-request-id": [ "2db7706a-a9d2-4e9b-a22a-8b8bdab7fdc9" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T140857Z:2db7706a-a9d2-4e9b-a22a-8b8bdab7fdc9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:52:02 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:08:56 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+15": { + "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "322" ], - "x-ms-client-request-id": [ "d0316b10-de62-458c-bf47-69db30c67639" ], + "x-ms-unique-id": [ "315" ], + "x-ms-client-request-id": [ "0b4892ef-b1a3-45ec-90dd-87bbf150c946" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -598,34 +556,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "4771209d-2473-4c8f-894f-bae22f1e03e0_M4SN1_M4SN1" ], + "x-ms-request-id": [ "96e2dfc6-fe47-47ff-9883-b202037b7aaa_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], - "x-ms-correlation-request-id": [ "eabedeb2-9c1a-45fd-a46d-13138ece528e" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T105203Z:eabedeb2-9c1a-45fd-a46d-13138ece528e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], + "x-ms-correlation-request-id": [ "cacf877a-6f7e-4039-9965-9342c28c51a2" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T140858Z:cacf877a-6f7e-4039-9965-9342c28c51a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:52:02 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:08:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+16": { + "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "323" ], - "x-ms-client-request-id": [ "e51f3656-b9ea-42ca-8e65-1a58989353fa" ], + "x-ms-unique-id": [ "316" ], + "x-ms-client-request-id": [ "6eb5cdd8-9e79-4b00-bd8b-fa8626f75d17" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -640,34 +598,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "a78bbd9f-65c1-49e4-ac06-6d9920df8e74_M4SN1_M4SN1" ], + "x-ms-request-id": [ "d59374b6-16b6-4f22-b2cb-f3bd4327f6b9_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "8f51074e-ecca-4c87-a52c-7702ff0dba1f" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T105213Z:8f51074e-ecca-4c87-a52c-7702ff0dba1f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], + "x-ms-correlation-request-id": [ "02ed736f-2403-42ce-b2df-afce21472753" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T140909Z:02ed736f-2403-42ce-b2df-afce21472753" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:52:13 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:09:09 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+17": { + "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "324" ], - "x-ms-client-request-id": [ "c3c9655f-432e-4f56-99c8-7c78dd6bdeb4" ], + "x-ms-unique-id": [ "317" ], + "x-ms-client-request-id": [ "922060c0-a0ae-496d-8e61-417691b6d782" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -682,34 +640,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "a1a6478e-a087-491c-8105-e06d6735bf23_M4SN1_M4SN1" ], + "x-ms-request-id": [ "3487b42f-e6e1-4c72-9eeb-4cb5004e9f56_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "d2425659-564d-48aa-8726-ff96abc501a7" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T105224Z:d2425659-564d-48aa-8726-ff96abc501a7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11986" ], + "x-ms-correlation-request-id": [ "f4b5520e-15ca-4cc8-a7fc-9490ad3b5e51" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T140920Z:f4b5520e-15ca-4cc8-a7fc-9490ad3b5e51" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:52:23 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:09:19 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+18": { + "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "325" ], - "x-ms-client-request-id": [ "81682558-0660-45a6-bac3-2a3ebb50a198" ], + "x-ms-unique-id": [ "318" ], + "x-ms-client-request-id": [ "cbb0c72c-26e5-4a76-bd43-b298238868b4" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -724,34 +682,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "22ab6fc0-397a-41a4-8ca4-6321f5414016_M4SN1_M4SN1" ], + "x-ms-request-id": [ "0d8711d5-ffd2-43f4-a957-fbc30d081bcc_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "0a482439-d950-439e-83c5-82c6c6bf6844" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T105234Z:0a482439-d950-439e-83c5-82c6c6bf6844" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11985" ], + "x-ms-correlation-request-id": [ "ec8b1485-0978-4c48-b154-faeac415354c" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T140930Z:ec8b1485-0978-4c48-b154-faeac415354c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:52:33 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:09:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+19": { + "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "326" ], - "x-ms-client-request-id": [ "ee61174c-1aa9-48cd-839b-405b81b5369b" ], + "x-ms-unique-id": [ "319" ], + "x-ms-client-request-id": [ "3b65d2e0-1f3e-4804-a6d4-4c57bf0b7517" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -766,34 +724,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "43055d4a-4578-4000-ad7a-034c58bcb4e5_M4SN1_M4SN1" ], + "x-ms-request-id": [ "a6a36f84-7427-4ef5-95e0-26bc5fb3ba54_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "9d3d22e9-a50d-4fa9-bc1c-a3ef6b0c7d57" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T105244Z:9d3d22e9-a50d-4fa9-bc1c-a3ef6b0c7d57" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11984" ], + "x-ms-correlation-request-id": [ "edef4c6c-3d3b-4df9-89b8-e6789fbc1353" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T140941Z:edef4c6c-3d3b-4df9-89b8-e6789fbc1353" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:52:44 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:09:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+20": { + "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "327" ], - "x-ms-client-request-id": [ "6978e106-4d3b-4bc3-b3af-a83db6209c2d" ], + "x-ms-unique-id": [ "320" ], + "x-ms-client-request-id": [ "b1b1a947-ad05-42ff-9241-c3ae764a8cab" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -808,34 +766,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "d3639da9-3199-4e08-99ea-9f465db8ab15_M4SN1_M4SN1" ], + "x-ms-request-id": [ "576b82e4-5c14-42e0-be24-6909a4dce8c9_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "6eb16c19-28b8-48c8-989c-e2ec056283ec" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T105255Z:6eb16c19-28b8-48c8-989c-e2ec056283ec" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11983" ], + "x-ms-correlation-request-id": [ "60971787-66ba-4433-b849-adc801a96f50" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T140952Z:60971787-66ba-4433-b849-adc801a96f50" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:52:54 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:09:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+21": { + "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "328" ], - "x-ms-client-request-id": [ "dddc86ff-6698-44ed-b3f8-8fb21f3759f5" ], + "x-ms-unique-id": [ "321" ], + "x-ms-client-request-id": [ "77c29471-5934-46d0-8df0-4b9dd45e18d5" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -850,34 +808,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "4e49dff9-de96-4931-a498-a8533d9a4217_M4SN1_M4SN1" ], + "x-ms-request-id": [ "c2965424-db96-49c1-9b06-63da35b80eb8_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "111fc3a6-62a1-4bb2-a203-4107db9686eb" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T105305Z:111fc3a6-62a1-4bb2-a203-4107db9686eb" ], + "x-ms-correlation-request-id": [ "185437d9-1e1f-4571-801c-0134d76dbf19" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T141003Z:185437d9-1e1f-4571-801c-0134d76dbf19" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:53:05 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:10:02 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+22": { + "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "329" ], - "x-ms-client-request-id": [ "cf467c4a-8796-47eb-b247-eefd862ee686" ], + "x-ms-unique-id": [ "322" ], + "x-ms-client-request-id": [ "4d6f3e0d-956c-4779-bbf8-addca292d6ef" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -892,34 +850,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "11948f67-331f-4c39-a39e-26d644ee3a37_M4SN1_M4SN1" ], + "x-ms-request-id": [ "efa450b8-e214-4773-aaae-059c3e18573d_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], - "x-ms-correlation-request-id": [ "09422c47-ccec-4d16-9945-99d7acbcb7a5" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T105316Z:09422c47-ccec-4d16-9945-99d7acbcb7a5" ], + "x-ms-correlation-request-id": [ "b16255ce-8e5d-463e-ac9d-c8c7528b360b" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T141018Z:b16255ce-8e5d-463e-ac9d-c8c7528b360b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:53:15 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:10:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "551" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+23": { + "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "330" ], - "x-ms-client-request-id": [ "fe715145-24ec-4fec-88c2-83eac19d3e85" ], + "x-ms-unique-id": [ "323" ], + "x-ms-client-request-id": [ "1d9c7c6e-0ac9-4d56-a299-bc7df00bcdd3" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -934,76 +892,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "c03c501b-7cc0-4516-81c4-da8e66cc8800_M4SN1_M4SN1" ], + "x-ms-request-id": [ "96d74546-6f32-413f-ba9e-3fd92b22a213_M1SN1_M1SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], - "x-ms-correlation-request-id": [ "c290416a-ce06-4898-8f01-4d3cab5c045b" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T105326Z:c290416a-ce06-4898-8f01-4d3cab5c045b" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:53:26 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "551" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\"}}", - "isContentBase64": false - } - }, - "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+Fail+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+24": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "331" ], - "x-ms-client-request-id": [ "289d8e80-482f-46d0-a8e4-c81633797d52" ], - "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], - "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceBus/0.1.0" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "6bc7a396-982c-46f1-a12c-593e2f12f49f_M4SN1_M4SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], - "x-ms-correlation-request-id": [ "fcb9e693-209c-4a96-b750-b629f9f57b70" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T105337Z:fcb9e693-209c-4a96-b750-b629f9f57b70" ], + "x-ms-correlation-request-id": [ "e475af1d-1df6-4b11-8390-6ad85f63f0cf" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T141029Z:e475af1d-1df6-4b11-8390-6ad85f63f0cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:53:37 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:10:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "590" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Succeeded\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do\",\"role\":\"Primary\",\"type\":\"MetadataReplication\",\"pendingReplicationOperationsCount\":0}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Succeeded\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct\",\"role\":\"Primary\",\"type\":\"MetadataReplication\",\"pendingReplicationOperationsCount\":0}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+FailViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+1": { + "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+FailViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "332" ], - "x-ms-client-request-id": [ "14cfa9e1-bc36-4e2f-81c4-d9f7927bd3b4" ], + "x-ms-unique-id": [ "324" ], + "x-ms-client-request-id": [ "2d6d6f3c-edd0-4414-ac9a-c0c820d1f5e5" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1018,34 +934,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "a575b5bd-797a-44ba-bf6d-4d16a96eed4a_M4SN1_M4SN1" ], + "x-ms-request-id": [ "3f7c810f-60b2-46cb-b894-73d3e4ca7a51_M2SN1_M2SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], - "x-ms-correlation-request-id": [ "401ee282-d284-4fd6-ac3f-950197dd8f80" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T105348Z:401ee282-d284-4fd6-ac3f-950197dd8f80" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], + "x-ms-correlation-request-id": [ "bae4ad1b-f2c1-4d70-904a-7beea63fedc7" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T141041Z:bae4ad1b-f2c1-4d70-904a-7beea63fedc7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:53:47 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:10:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "554" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Succeeded\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx\",\"role\":\"Secondary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Succeeded\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3\",\"role\":\"Secondary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+FailViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+2": { + "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+FailViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "333" ], - "x-ms-client-request-id": [ "924861b9-c87f-4103-9897-267aec9bbe68" ], + "x-ms-unique-id": [ "325" ], + "x-ms-client-request-id": [ "02275f8d-4ccd-4d3c-b777-129417b9c8ae" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1060,29 +976,29 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "4176a296-34a1-40a6-9374-a34791cd900a_M4SN1_M4SN1" ], + "x-ms-request-id": [ "5173f414-776b-4d76-b6e1-9c57e36efee4_M2SN1_M2SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], - "x-ms-correlation-request-id": [ "2afd040d-35be-4a67-aed8-c35c25b24d4c" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T105348Z:2afd040d-35be-4a67-aed8-c35c25b24d4c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], + "x-ms-correlation-request-id": [ "aa05c65c-a17b-4051-9ea6-c96eaeb17309" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T141041Z:aa05c65c-a17b-4051-9ea6-c96eaeb17309" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:53:48 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:10:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "554" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Succeeded\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx\",\"role\":\"Secondary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Succeeded\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3\",\"role\":\"Secondary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+FailViaIdentity+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourcegroupautorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondarynskl95do/disasterRecoveryConfigs/aliass875up/failover?api-version=2022-01-01-preview+3": { + "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+FailViaIdentity+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourcegroupautorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondarynsjazpct/disasterRecoveryConfigs/aliasq6x0t1/failover?api-version=2022-10-01-preview+3": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourcegroupautorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondarynskl95do/disasterRecoveryConfigs/aliass875up/failover?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourcegroupautorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondarynsjazpct/disasterRecoveryConfigs/aliasq6x0t1/failover?api-version=2022-10-01-preview", "Content": "{\n}", "isContentBase64": false, "Headers": { @@ -1097,15 +1013,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "7f9e01fd-4535-4a78-971c-5b40978fea94_M4SN1_M4SN1" ], + "x-ms-request-id": [ "fda87c08-335c-46fe-be38-8bb90760347b_M2SN1_M2SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "dd682fd1-b6a7-44fe-ac9a-2840f5add633" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T105348Z:dd682fd1-b6a7-44fe-ac9a-2840f5add633" ], + "x-ms-correlation-request-id": [ "f734a2ea-35d8-43c1-930e-ce3cb010aeee" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T141042Z:f734a2ea-35d8-43c1-930e-ce3cb010aeee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:53:48 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:10:42 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1115,15 +1031,15 @@ "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+FailViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+4": { + "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+FailViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "335" ], - "x-ms-client-request-id": [ "350f3888-9f5d-4003-aa37-567d2de7b73f" ], + "x-ms-unique-id": [ "327" ], + "x-ms-client-request-id": [ "41de0634-d171-4cb5-bfb7-0fdf208fa147" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1138,34 +1054,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "2ce9716b-53bc-403b-974b-38ed37a82894_M4SN1_M4SN1" ], + "x-ms-request-id": [ "1f3970a1-a9c5-4053-a540-a9206f99f725_M2SN1_M2SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], - "x-ms-correlation-request-id": [ "8be6f9f7-d1d3-466a-82dd-1d99808cb2e4" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T105348Z:8be6f9f7-d1d3-466a-82dd-1d99808cb2e4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], + "x-ms-correlation-request-id": [ "b5a1a2a7-2f9c-451c-b373-cdf662475be3" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T141043Z:b5a1a2a7-2f9c-451c-b373-cdf662475be3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:53:48 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:10:43 GMT" ] }, "ContentHeaders": { "Content-Length": [ "553" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx\",\"role\":\"Secondary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3\",\"role\":\"Secondary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+FailViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+5": { + "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+FailViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "336" ], - "x-ms-client-request-id": [ "4eb8d340-316b-4475-828e-07932555551c" ], + "x-ms-unique-id": [ "328" ], + "x-ms-client-request-id": [ "69a7118b-7a40-4b5f-a2a3-4fca3b4a85f0" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1180,34 +1096,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "add472a3-cfb2-45a3-afe4-c1324814c49e_M4SN1_M4SN1" ], + "x-ms-request-id": [ "424a59de-cfe3-4b30-a16a-f8fb02f1094a_M2SN1_M2SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11986" ], - "x-ms-correlation-request-id": [ "894a93a4-1c2a-4084-bc7a-9064e79cb8da" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T105359Z:894a93a4-1c2a-4084-bc7a-9064e79cb8da" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], + "x-ms-correlation-request-id": [ "7abc5b5d-873c-4b23-8d3b-4080f7a7f79f" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T141054Z:7abc5b5d-873c-4b23-8d3b-4080f7a7f79f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:53:59 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:10:53 GMT" ] }, "ContentHeaders": { "Content-Length": [ "553" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx\",\"role\":\"Secondary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3\",\"role\":\"Secondary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+FailViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+6": { + "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+FailViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "337" ], - "x-ms-client-request-id": [ "3d3541eb-e941-4bff-b61e-0649266557e6" ], + "x-ms-unique-id": [ "329" ], + "x-ms-client-request-id": [ "687a4ecf-4af9-435a-9392-68774352d868" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1222,34 +1138,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "0ab01cbd-59bf-4550-aeca-e6c3acfcbe8e_M4SN1_M4SN1" ], + "x-ms-request-id": [ "3e16b7f1-2c0c-4a7d-b36c-d79e6079d9b6_M2SN1_M2SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11985" ], - "x-ms-correlation-request-id": [ "71d2f3ab-a7ec-439b-9fc2-b04cf69e96a7" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T105409Z:71d2f3ab-a7ec-439b-9fc2-b04cf69e96a7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11986" ], + "x-ms-correlation-request-id": [ "1067aff4-d581-48ec-a426-45592c5f6cb6" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T141105Z:1067aff4-d581-48ec-a426-45592c5f6cb6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:54:09 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:11:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "553" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx\",\"role\":\"Secondary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3\",\"role\":\"Secondary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+FailViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+7": { + "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+FailViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "338" ], - "x-ms-client-request-id": [ "d52a3b38-257b-4821-bd57-0beb30119d30" ], + "x-ms-unique-id": [ "330" ], + "x-ms-client-request-id": [ "6952c16e-ebc3-4233-a2d0-82cf2b2c5931" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1264,34 +1180,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "b0ecb0d2-f907-48fd-9b2b-05b2385d3798_M4SN1_M4SN1" ], + "x-ms-request-id": [ "46d6ab6a-abcd-424b-b2bb-afefce21b01f_M2SN1_M2SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11984" ], - "x-ms-correlation-request-id": [ "0df07b2c-d17b-4d8d-b449-b4b3613a0e23" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T105420Z:0df07b2c-d17b-4d8d-b449-b4b3613a0e23" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11985" ], + "x-ms-correlation-request-id": [ "1554ed21-a34c-4cab-9b25-8872cabe6a9f" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T141115Z:1554ed21-a34c-4cab-9b25-8872cabe6a9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:54:20 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:11:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "553" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx\",\"role\":\"Secondary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3\",\"role\":\"Secondary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+FailViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+8": { + "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+FailViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "339" ], - "x-ms-client-request-id": [ "33ed635d-d564-4ad5-adc3-2ad20be292ac" ], + "x-ms-unique-id": [ "331" ], + "x-ms-client-request-id": [ "2619bed9-59f2-4571-a824-97be5ea059bc" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1306,34 +1222,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "0e86dc52-cc97-46f6-be87-42b1bdd123dd_M7SN1_M7SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11983" ], - "x-ms-correlation-request-id": [ "407b578b-9813-4cdd-adb2-60f76fb77bd5" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T105431Z:407b578b-9813-4cdd-adb2-60f76fb77bd5" ], + "x-ms-request-id": [ "09056a0e-c212-49cd-b68f-2a380968d9cf_M3CH3_M3CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11984" ], + "x-ms-correlation-request-id": [ "38b25691-cf31-45ea-8749-d30e742f7f4b" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T141127Z:38b25691-cf31-45ea-8749-d30e742f7f4b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:54:30 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:11:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "553" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx\",\"role\":\"Secondary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3\",\"role\":\"Secondary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+FailViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+9": { + "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+FailViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "340" ], - "x-ms-client-request-id": [ "477905ff-938b-4d60-aa23-92cd2117846f" ], + "x-ms-unique-id": [ "332" ], + "x-ms-client-request-id": [ "6f027490-835c-412a-b7f6-c6f2466b069e" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1348,34 +1264,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "85c557f9-aea0-4108-a774-9a8996e55950_M4SN1_M4SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11982" ], - "x-ms-correlation-request-id": [ "96be44aa-a868-4ca4-82e6-6d169aff1a92" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T105441Z:96be44aa-a868-4ca4-82e6-6d169aff1a92" ], + "x-ms-request-id": [ "88b8bbb9-2ea2-4d65-b0c8-65fb756dd69b_M6CH3_M6CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11983" ], + "x-ms-correlation-request-id": [ "061906a3-3084-423f-bca9-ef4de41cd868" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T141138Z:061906a3-3084-423f-bca9-ef4de41cd868" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:54:40 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:11:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "553" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx\",\"role\":\"Secondary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3\",\"role\":\"Secondary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+FailViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+10": { + "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+FailViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "341" ], - "x-ms-client-request-id": [ "d49b186b-02b1-438e-afc0-5a55b3321823" ], + "x-ms-unique-id": [ "333" ], + "x-ms-client-request-id": [ "43890419-ccb1-4919-8598-a97955b90538" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1390,34 +1306,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "b14132ef-0fb8-45b9-b646-7581ef1d741a_M4SN1_M4SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11981" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "dd9d1cf8-b231-4cb2-a619-ec34d84486c2" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T105451Z:dd9d1cf8-b231-4cb2-a619-ec34d84486c2" ], + "x-ms-request-id": [ "ffdd613d-58f6-497f-b98b-a28ccf7cfb5b_M6CH3_M6CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11982" ], + "x-ms-correlation-request-id": [ "3d2d3ced-5a00-449a-8d8c-595153b6761f" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T141149Z:3d2d3ced-5a00-449a-8d8c-595153b6761f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:54:51 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:11:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "553" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx\",\"role\":\"Secondary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3\",\"role\":\"Secondary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+FailViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+11": { + "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+FailViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "342" ], - "x-ms-client-request-id": [ "c2dc87c3-e66e-42a2-ad46-77029b45f756" ], + "x-ms-unique-id": [ "334" ], + "x-ms-client-request-id": [ "fa615826-4f4d-45db-a4f5-9b72ad8231de" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1432,76 +1348,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "e136643f-b1bf-4585-856d-fea0c8ce3a4d_M7SN1_M7SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11980" ], - "x-ms-correlation-request-id": [ "27155ca5-4dc7-42b4-a700-ad71330e1829" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T105502Z:27155ca5-4dc7-42b4-a700-ad71330e1829" ], + "x-ms-request-id": [ "16d0b905-baeb-4742-9527-7ae227f5917c_M6CH3_M6CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11981" ], + "x-ms-correlation-request-id": [ "e132bc3d-3463-4c70-a611-bf59ad95cfc3" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T141159Z:e132bc3d-3463-4c70-a611-bf59ad95cfc3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:55:01 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:11:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "553" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx\",\"role\":\"Secondary\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3\",\"role\":\"Secondary\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+FailViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+12": { + "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+FailViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "343" ], - "x-ms-client-request-id": [ "37149840-f6e3-4208-97e8-e1fe539b6030" ], - "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], - "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceBus/0.1.0" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "ab0552f1-e219-4fd9-b4ff-76d5fc6ba095_M9SN1_M9SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11979" ], - "x-ms-correlation-request-id": [ "9a9dc09e-fcd5-467b-84c4-c0b6daeeb148" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T105513Z:9a9dc09e-fcd5-467b-84c4-c0b6daeeb148" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:55:13 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "413" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Accepted\",\"partnerNamespace\":\"\",\"role\":\"PrimaryNotReplicating\",\"type\":\"MetadataReplication\"}}", - "isContentBase64": false - } - }, - "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+FailViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+13": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "344" ], - "x-ms-client-request-id": [ "9c1a9d8e-c2e0-4167-a7c7-f9d5c02e4ece" ], + "x-ms-unique-id": [ "335" ], + "x-ms-client-request-id": [ "d41f9fed-2b18-4026-b746-56b4d4168be8" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1516,34 +1390,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "ee830f71-10b5-4409-be76-588e1ca9a297_M9SN1_M9SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11978" ], - "x-ms-correlation-request-id": [ "3c43fb99-c316-4305-afe1-b8a722a03352" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T105524Z:3c43fb99-c316-4305-afe1-b8a722a03352" ], + "x-ms-request-id": [ "0cacc798-5190-4871-9b87-c6d92293024e_M6CH3_M6CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11980" ], + "x-ms-correlation-request-id": [ "2f5de624-5c30-4f29-a562-6794a1f49f39" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T141210Z:2f5de624-5c30-4f29-a562-6794a1f49f39" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:55:24 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:12:09 GMT" ] }, "ContentHeaders": { "Content-Length": [ "414" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up\",\"name\":\"aliass875up\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Succeeded\",\"partnerNamespace\":\"\",\"role\":\"PrimaryNotReplicating\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1\",\"name\":\"aliasq6x0t1\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Succeeded\",\"partnerNamespace\":\"\",\"role\":\"PrimaryNotReplicating\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+FailViaIdentity+$DELETE+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+14": { + "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+FailViaIdentity+$DELETE+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+13": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "345" ], - "x-ms-client-request-id": [ "84838f3c-6b54-4863-bea9-9072d25ed42b" ], + "x-ms-unique-id": [ "336" ], + "x-ms-client-request-id": [ "3b6a6e64-6361-4ab0-a78c-84e8d83cf963" ], "CommandName": [ "Remove-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Remove-AzServiceBusGeoDRConfiguration_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1558,15 +1432,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "1781516f-9a55-46fa-8a17-071e0d7cbc9b_M9SN1_M9SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "379ef14a-32bd-4e3d-8a91-3dc3659ddcfb_M6CH3_M6CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-correlation-request-id": [ "43c77016-4b5c-42e4-adb2-b6bbf2d44aaf" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T105534Z:43c77016-4b5c-42e4-adb2-b6bbf2d44aaf" ], + "x-ms-correlation-request-id": [ "2ab83f01-e1c5-4b47-aa2a-3cd43304c7a5" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T141221Z:2ab83f01-e1c5-4b47-aa2a-3cd43304c7a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:55:34 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:12:20 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1576,15 +1450,15 @@ "isContentBase64": false } }, - "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+FailViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview+15": { + "Set-AzServiceBusGeoDRConfigurationFailOver+[NoContext]+FailViaIdentity+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx/disasterRecoveryConfigs/aliass875up?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3/disasterRecoveryConfigs/aliasq6x0t1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "346" ], - "x-ms-client-request-id": [ "6836d2bc-5dd5-48ec-8c2f-632067fd5248" ], + "x-ms-unique-id": [ "337" ], + "x-ms-client-request-id": [ "400dfc85-a969-4e61-b6c5-c03254060cbc" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1599,22 +1473,22 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "63b0f507-0482-4b3e-afb8-6b8bda9ced24_M2DM2_M2DM2" ], - "Server-SB": [ "Service-Bus-Resource-Provider/DM2" ], - "Server": [ "Service-Bus-Resource-Provider/DM2", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "7861433e-9daa-420d-9f83-069637c782be_M0SN1_M0SN1" ], + "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], + "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], - "x-ms-correlation-request-id": [ "97bdd7df-601d-4804-bd9d-239c61f3dc34" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T105835Z:97bdd7df-601d-4804-bd9d-239c61f3dc34" ], + "x-ms-correlation-request-id": [ "a5ec9cf7-792d-4e0a-89c6-fcba322d9d14" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T141522Z:a5ec9cf7-792d-4e0a-89c6-fcba322d9d14" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:58:34 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:15:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "183" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"message\":\"Alias \u0027aliass875up\u0027 does not exist or is not associated with namespace \u0027primaryNS9yownx\u0027. CorrelationId: 97bdd7df-601d-4804-bd9d-239c61f3dc34\",\"code\":\"NotFound\"}}", + "Content": "{\"error\":{\"message\":\"Alias \u0027aliasq6x0t1\u0027 does not exist or is not associated with namespace \u0027primaryNSd7oma3\u0027. CorrelationId: a5ec9cf7-792d-4e0a-89c6-fcba322d9d14\",\"code\":\"NotFound\"}}", "isContentBase64": false } } diff --git a/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusNamespaceV2.Recording.json b/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusNamespaceV2.Recording.json index dd1a0fbbd7fb..27bcba1258a3 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusNamespaceV2.Recording.json +++ b/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusNamespaceV2.Recording.json @@ -1,13 +1,13 @@ { - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk?api-version=2022-01-01-preview+1": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "347" ], - "x-ms-client-request-id": [ "7acbb557-3396-4da4-869e-c562c602c805" ], + "x-ms-unique-id": [ "338" ], + "x-ms-client-request-id": [ "9c8dc758-58cf-43e5-b2f4-50ba0a2e7713" ], "CommandName": [ "Get-AzServiceBusNamespaceV2" ], "FullCommandName": [ "Get-AzServiceBusNamespaceV2_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -22,34 +22,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "ea9633e5-c5b8-4100-a836-7264267bc9be_M2DM2_M2DM2" ], - "Server-SB": [ "Service-Bus-Resource-Provider/DM2" ], - "Server": [ "Service-Bus-Resource-Provider/DM2", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "4773fc45-56f6-49d4-b227-68f82a490eae_M2SN1_M2SN1" ], + "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], + "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-correlation-request-id": [ "e779720b-05cf-4086-aed8-a269d9be4e4d" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T105855Z:e779720b-05cf-4086-aed8-a269d9be4e4d" ], + "x-ms-correlation-request-id": [ "0cc07038-ba37-4b78-ae75-0c7822d20728" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T141537Z:0cc07038-ba37-4b78-ae75-0c7822d20728" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:58:54 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:15:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1978" ], + "Content-Length": [ "2009" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk\",\"name\":\"namespaceV59mqfhk\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{\"clientId\":\"38a989a1-3fab-4015-b546-cbcf7a67aa89\",\"principalId\":\"624205aa-192c-4303-9606-990d06cbd997\"},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{\"clientId\":\"440d7336-c408-4327-ad13-10a4e71aad64\",\"principalId\":\"1bdb6af0-4284-47f4-b049-94aa2868d90b\"}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev59mqfhk\",\"createdAt\":\"2022-11-24T10:12:33.723Z\",\"updatedAt\":\"2022-11-24T10:19:50.483Z\",\"serviceBusEndpoint\":\"https://namespaceV59mqfhk.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25\",\"name\":\"namespaceV5xdns25\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{\"clientId\":\"38a989a1-3fab-4015-b546-cbcf7a67aa89\",\"principalId\":\"624205aa-192c-4303-9606-990d06cbd997\"},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{\"clientId\":\"440d7336-c408-4327-ad13-10a4e71aad64\",\"principalId\":\"1bdb6af0-4284-47f4-b049-94aa2868d90b\"}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev5xdns25\",\"createdAt\":\"2023-02-19T13:31:01.857Z\",\"updatedAt\":\"2023-02-19T13:38:24.377Z\",\"serviceBusEndpoint\":\"https://namespaceV5xdns25.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk?api-version=2022-01-01-preview+2": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25?api-version=2022-10-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "348" ], - "x-ms-client-request-id": [ "ba4d8291-b17a-49d6-aa3a-35045fff6cf1" ], + "x-ms-unique-id": [ "339" ], + "x-ms-client-request-id": [ "ede61b8f-8501-4955-b317-2d19aeb46b7d" ], "CommandName": [ "Get-AzServiceBusNamespaceV2" ], "FullCommandName": [ "Get-AzServiceBusNamespaceV2_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -64,36 +64,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "4e2156ed-b9b4-461d-a0ba-7c9b8676ca68_M2DM2_M2DM2" ], - "Server-SB": [ "Service-Bus-Resource-Provider/DM2" ], - "Server": [ "Service-Bus-Resource-Provider/DM2", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "c2caf3a9-9210-4025-a003-1c537fa3cf07_M2SN1_M2SN1" ], + "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], + "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], - "x-ms-correlation-request-id": [ "f1bed061-affd-4585-9f3d-058f85c7de7c" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T105855Z:f1bed061-affd-4585-9f3d-058f85c7de7c" ], + "x-ms-correlation-request-id": [ "900af5e3-6817-43a9-af2c-129753b5a49c" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T141538Z:900af5e3-6817-43a9-af2c-129753b5a49c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:58:54 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:15:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1978" ], + "Content-Length": [ "2009" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk\",\"name\":\"namespaceV59mqfhk\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{\"clientId\":\"38a989a1-3fab-4015-b546-cbcf7a67aa89\",\"principalId\":\"624205aa-192c-4303-9606-990d06cbd997\"},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{\"clientId\":\"440d7336-c408-4327-ad13-10a4e71aad64\",\"principalId\":\"1bdb6af0-4284-47f4-b049-94aa2868d90b\"}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev59mqfhk\",\"createdAt\":\"2022-11-24T10:12:33.723Z\",\"updatedAt\":\"2022-11-24T10:19:50.483Z\",\"serviceBusEndpoint\":\"https://namespaceV59mqfhk.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25\",\"name\":\"namespaceV5xdns25\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{\"clientId\":\"38a989a1-3fab-4015-b546-cbcf7a67aa89\",\"principalId\":\"624205aa-192c-4303-9606-990d06cbd997\"},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{\"clientId\":\"440d7336-c408-4327-ad13-10a4e71aad64\",\"principalId\":\"1bdb6af0-4284-47f4-b049-94aa2868d90b\"}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev5xdns25\",\"createdAt\":\"2023-02-19T13:31:01.857Z\",\"updatedAt\":\"2023-02-19T13:38:24.377Z\",\"serviceBusEndpoint\":\"https://namespaceV5xdns25.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk?api-version=2022-01-01-preview+3": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25?api-version=2022-10-01-preview+3": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk?api-version=2022-01-01-preview", - "Content": "{\n \"location\": \"North Europe\",\n \"sku\": {\n \"name\": \"Premium\",\n \"tier\": \"Premium\",\n \"capacity\": 1\n },\n \"identity\": {\n \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\": {\n },\n \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\": {\n }\n }\n },\n \"properties\": {\n \"encryption\": {\n \"keyVaultProperties\": [\n {\n \"identity\": {\n \"userAssignedIdentity\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"\n },\n \"keyName\": \"key1\",\n \"keyVaultUri\": \"https://keyvaultnamexdjtwk.vault.azure.net\",\n \"keyVersion\": \"\"\n },\n {\n \"identity\": {\n \"userAssignedIdentity\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"\n },\n \"keyName\": \"key2\",\n \"keyVaultUri\": \"https://keyvaultnamexdjtwk.vault.azure.net\",\n \"keyVersion\": \"\"\n },\n {\n \"identity\": {\n \"userAssignedIdentity\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"\n },\n \"keyName\": \"key4\",\n \"keyVaultUri\": \"https://keyVaultNamexdjtwk.vault.azure.net/\"\n }\n ],\n \"keySource\": \"Microsoft.KeyVault\",\n \"requireInfrastructureEncryption\": false\n },\n \"minimumTlsVersion\": \"1.2\",\n \"zoneRedundant\": false,\n \"disableLocalAuth\": false,\n \"publicNetworkAccess\": \"Enabled\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25?api-version=2022-10-01-preview", + "Content": "{\n \"location\": \"North Europe\",\n \"sku\": {\n \"name\": \"Premium\",\n \"tier\": \"Premium\",\n \"capacity\": 1\n },\n \"identity\": {\n \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\": {\n },\n \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\": {\n }\n }\n },\n \"properties\": {\n \"encryption\": {\n \"keyVaultProperties\": [\n {\n \"identity\": {\n \"userAssignedIdentity\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"\n },\n \"keyName\": \"key1\",\n \"keyVaultUri\": \"https://keyvaultnamedur8ab.vault.azure.net\",\n \"keyVersion\": \"\"\n },\n {\n \"identity\": {\n \"userAssignedIdentity\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"\n },\n \"keyName\": \"key2\",\n \"keyVaultUri\": \"https://keyvaultnamedur8ab.vault.azure.net\",\n \"keyVersion\": \"\"\n },\n {\n \"identity\": {\n \"userAssignedIdentity\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"\n },\n \"keyName\": \"key4\",\n \"keyVaultUri\": \"https://keyVaultNamedur8ab.vault.azure.net/\"\n }\n ],\n \"keySource\": \"Microsoft.KeyVault\",\n \"requireInfrastructureEncryption\": false\n },\n \"minimumTlsVersion\": \"1.2\",\n \"zoneRedundant\": false,\n \"disableLocalAuth\": false,\n \"publicNetworkAccess\": \"Enabled\",\n \"premiumMessagingPartitions\": 1\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1949" ] + "Content-Length": [ "1986" ] } }, "Response": { @@ -101,35 +101,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "18d56868-e1b0-486a-8c47-6308c9a9721b_M2DM2_M2DM2" ], - "Server-SB": [ "Service-Bus-Resource-Provider/DM2" ], - "Server": [ "Service-Bus-Resource-Provider/DM2", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "237a1af4-57f2-4eed-999b-15d6f96257cb_M2SN1_M2SN1" ], + "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], + "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "be5787c6-ba3c-4d70-a6ef-167ce5fce286" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T105909Z:be5787c6-ba3c-4d70-a6ef-167ce5fce286" ], + "x-ms-correlation-request-id": [ "00fe79c1-d5db-4172-86ff-b917c375e1a0" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T141553Z:00fe79c1-d5db-4172-86ff-b917c375e1a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:59:08 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:15:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2266" ], + "Content-Length": [ "2296" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk\",\"name\":\"namespaceV59mqfhk\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{\"clientId\":\"38a989a1-3fab-4015-b546-cbcf7a67aa89\",\"principalId\":\"624205aa-192c-4303-9606-990d06cbd997\"},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{\"clientId\":\"440d7336-c408-4327-ad13-10a4e71aad64\",\"principalId\":\"1bdb6af0-4284-47f4-b049-94aa2868d90b\"}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key4\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Updating\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev59mqfhk\",\"createdAt\":\"2022-11-24T10:12:33.723Z\",\"updatedAt\":\"2022-11-24T10:59:07.347Z\",\"serviceBusEndpoint\":\"https://namespaceV59mqfhk.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25\",\"name\":\"namespaceV5xdns25\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{\"clientId\":\"38a989a1-3fab-4015-b546-cbcf7a67aa89\",\"principalId\":\"624205aa-192c-4303-9606-990d06cbd997\"},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{\"clientId\":\"440d7336-c408-4327-ad13-10a4e71aad64\",\"principalId\":\"1bdb6af0-4284-47f4-b049-94aa2868d90b\"}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key4\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Updating\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev5xdns25\",\"createdAt\":\"2023-02-19T13:31:01.857Z\",\"updatedAt\":\"2023-02-19T14:15:51.08Z\",\"serviceBusEndpoint\":\"https://namespaceV5xdns25.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk?api-version=2022-01-01-preview+4": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25?api-version=2022-10-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "350" ], - "x-ms-client-request-id": [ "6790c0fb-f3d8-48b3-b72f-ff668dd2cc71" ], + "x-ms-unique-id": [ "341" ], + "x-ms-client-request-id": [ "84191bf3-09a5-40f5-bd86-ab0f86bf7679" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -143,35 +143,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "a7e05199-9153-4c41-8bcb-5ef8de2cb844_M3DM2_M3DM2" ], - "Server-SB": [ "Service-Bus-Resource-Provider/DM2" ], - "Server": [ "Service-Bus-Resource-Provider/DM2", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "7942b508-9a6d-4181-b3c7-7c81be56b4bb_M2SN1_M2SN1" ], + "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], + "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], - "x-ms-correlation-request-id": [ "b1ace346-5a24-44e3-a073-f5e3d7166128" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T105939Z:b1ace346-5a24-44e3-a073-f5e3d7166128" ], + "x-ms-correlation-request-id": [ "792f6540-f84c-48f0-8a04-7fcce05e3591" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T141624Z:792f6540-f84c-48f0-8a04-7fcce05e3591" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:59:38 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:16:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2263" ], + "Content-Length": [ "2294" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk\",\"name\":\"namespaceV59mqfhk\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{\"clientId\":\"38a989a1-3fab-4015-b546-cbcf7a67aa89\",\"principalId\":\"624205aa-192c-4303-9606-990d06cbd997\"},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{\"clientId\":\"440d7336-c408-4327-ad13-10a4e71aad64\",\"principalId\":\"1bdb6af0-4284-47f4-b049-94aa2868d90b\"}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key4\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev59mqfhk\",\"createdAt\":\"2022-11-24T10:12:33.723Z\",\"updatedAt\":\"2022-11-24T10:59:09.737Z\",\"serviceBusEndpoint\":\"https://namespaceV59mqfhk.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25\",\"name\":\"namespaceV5xdns25\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{\"clientId\":\"38a989a1-3fab-4015-b546-cbcf7a67aa89\",\"principalId\":\"624205aa-192c-4303-9606-990d06cbd997\"},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{\"clientId\":\"440d7336-c408-4327-ad13-10a4e71aad64\",\"principalId\":\"1bdb6af0-4284-47f4-b049-94aa2868d90b\"}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key4\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev5xdns25\",\"createdAt\":\"2023-02-19T13:31:01.857Z\",\"updatedAt\":\"2023-02-19T14:15:54.383Z\",\"serviceBusEndpoint\":\"https://namespaceV5xdns25.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk?api-version=2022-01-01-preview+5": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25?api-version=2022-10-01-preview+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "351" ], - "x-ms-client-request-id": [ "6790c0fb-f3d8-48b3-b72f-ff668dd2cc71" ], + "x-ms-unique-id": [ "342" ], + "x-ms-client-request-id": [ "84191bf3-09a5-40f5-bd86-ab0f86bf7679" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -185,34 +185,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "d5452da7-9bd1-411f-86e5-e4bb1a3e2862_M2DM2_M2DM2" ], - "Server-SB": [ "Service-Bus-Resource-Provider/DM2" ], - "Server": [ "Service-Bus-Resource-Provider/DM2", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "4994fe93-b73d-4329-988b-e16c4e3146df_M2SN1_M2SN1" ], + "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], + "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "19a854fd-79b0-4395-ba5b-1a34d9a57b13" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T105939Z:19a854fd-79b0-4395-ba5b-1a34d9a57b13" ], + "x-ms-correlation-request-id": [ "0fc0cee0-d439-4bcb-9613-2a3704247f6b" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T141624Z:0fc0cee0-d439-4bcb-9613-2a3704247f6b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:59:38 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:16:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2263" ], + "Content-Length": [ "2294" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV59mqfhk\",\"name\":\"namespaceV59mqfhk\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{\"clientId\":\"38a989a1-3fab-4015-b546-cbcf7a67aa89\",\"principalId\":\"624205aa-192c-4303-9606-990d06cbd997\"},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{\"clientId\":\"440d7336-c408-4327-ad13-10a4e71aad64\",\"principalId\":\"1bdb6af0-4284-47f4-b049-94aa2868d90b\"}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key4\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev59mqfhk\",\"createdAt\":\"2022-11-24T10:12:33.723Z\",\"updatedAt\":\"2022-11-24T10:59:09.737Z\",\"serviceBusEndpoint\":\"https://namespaceV59mqfhk.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV5xdns25\",\"name\":\"namespaceV5xdns25\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{\"clientId\":\"38a989a1-3fab-4015-b546-cbcf7a67aa89\",\"principalId\":\"624205aa-192c-4303-9606-990d06cbd997\"},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{\"clientId\":\"440d7336-c408-4327-ad13-10a4e71aad64\",\"principalId\":\"1bdb6af0-4284-47f4-b049-94aa2868d90b\"}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}},{\"keyName\":\"key4\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\",\"identity\":{\"userAssignedIdentity\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\"}}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev5xdns25\",\"createdAt\":\"2023-02-19T13:31:01.857Z\",\"updatedAt\":\"2023-02-19T14:15:54.383Z\",\"serviceBusEndpoint\":\"https://namespaceV5xdns25.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview+6": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "352" ], - "x-ms-client-request-id": [ "838d398a-d7f0-434d-af2b-30cafe5679be" ], + "x-ms-unique-id": [ "343" ], + "x-ms-client-request-id": [ "785b4bff-5039-4939-b0fa-95b28f45b772" ], "CommandName": [ "Get-AzServiceBusNamespaceV2" ], "FullCommandName": [ "Get-AzServiceBusNamespaceV2_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -227,34 +227,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "be56e977-4d66-432b-8148-8c117819a28a_M2DM2_M2DM2" ], - "Server-SB": [ "Service-Bus-Resource-Provider/DM2" ], - "Server": [ "Service-Bus-Resource-Provider/DM2", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "3ef1301f-5ce2-4a4b-912d-7572ca62588e_M2SN1_M2SN1" ], + "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], + "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "48ab084d-7da7-4222-98ba-5e76480987b7" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T105939Z:48ab084d-7da7-4222-98ba-5e76480987b7" ], + "x-ms-correlation-request-id": [ "6d5bfe7b-1d12-401a-9753-f361daa4851a" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T141625Z:6d5bfe7b-1d12-401a-9753-f361daa4851a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:59:39 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:16:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "857" ], + "Content-Length": [ "888" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb\",\"name\":\"namespaceNamende8cb\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"b0cbb70a-a1a5-4253-a506-b5836ce29547\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamende8cb\",\"createdAt\":\"2022-11-24T09:40:43.853Z\",\"updatedAt\":\"2022-11-24T09:48:03.407Z\",\"serviceBusEndpoint\":\"https://namespaceNamende8cb.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3\",\"name\":\"namespaceNamembaip3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"05ff947d-d140-41f0-8107-16ca5893799b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamembaip3\",\"createdAt\":\"2023-02-19T13:01:17.353Z\",\"updatedAt\":\"2023-02-19T13:08:35.657Z\",\"serviceBusEndpoint\":\"https://namespaceNamembaip3.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview+7": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "353" ], - "x-ms-client-request-id": [ "01968184-4bac-40bb-a16a-995e0f163b1d" ], + "x-ms-unique-id": [ "344" ], + "x-ms-client-request-id": [ "6f48833b-8385-43ce-ba94-808eb329fdc5" ], "CommandName": [ "Get-AzServiceBusNamespaceV2" ], "FullCommandName": [ "Get-AzServiceBusNamespaceV2_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -269,36 +269,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "867a3231-8a00-4072-828d-f748837b7d08_M2DM2_M2DM2" ], - "Server-SB": [ "Service-Bus-Resource-Provider/DM2" ], - "Server": [ "Service-Bus-Resource-Provider/DM2", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "27e837fb-da01-4455-99ef-6d5b9ac09877_M2SN1_M2SN1" ], + "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], + "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], - "x-ms-correlation-request-id": [ "d3644260-d8bc-40ce-9e88-0c435b8d78a9" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T105940Z:d3644260-d8bc-40ce-9e88-0c435b8d78a9" ], + "x-ms-correlation-request-id": [ "8415ea51-6ad6-4bbe-916c-ee8354d6f6d6" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T141626Z:8415ea51-6ad6-4bbe-916c-ee8354d6f6d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:59:40 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:16:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "857" ], + "Content-Length": [ "888" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb\",\"name\":\"namespaceNamende8cb\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"b0cbb70a-a1a5-4253-a506-b5836ce29547\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamende8cb\",\"createdAt\":\"2022-11-24T09:40:43.853Z\",\"updatedAt\":\"2022-11-24T09:48:03.407Z\",\"serviceBusEndpoint\":\"https://namespaceNamende8cb.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3\",\"name\":\"namespaceNamembaip3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"05ff947d-d140-41f0-8107-16ca5893799b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamembaip3\",\"createdAt\":\"2023-02-19T13:01:17.353Z\",\"updatedAt\":\"2023-02-19T13:08:35.657Z\",\"serviceBusEndpoint\":\"https://namespaceNamembaip3.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview+8": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview+8": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview", - "Content": "{\n \"location\": \"East US\",\n \"sku\": {\n \"name\": \"Premium\",\n \"tier\": \"Premium\",\n \"capacity\": 1\n },\n \"identity\": {\n \"type\": \"SystemAssigned\"\n },\n \"properties\": {\n \"encryption\": {\n \"keyVaultProperties\": [\n {\n \"keyName\": \"key1\",\n \"keyVaultUri\": \"https://keyVaultNamexdjtwk.vault.azure.net/\"\n },\n {\n \"keyName\": \"key2\",\n \"keyVaultUri\": \"https://keyVaultNamexdjtwk.vault.azure.net/\"\n }\n ],\n \"keySource\": \"Microsoft.KeyVault\"\n },\n \"minimumTlsVersion\": \"1.2\",\n \"zoneRedundant\": true,\n \"disableLocalAuth\": false,\n \"publicNetworkAccess\": \"Enabled\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview", + "Content": "{\n \"location\": \"East US\",\n \"sku\": {\n \"name\": \"Premium\",\n \"tier\": \"Premium\",\n \"capacity\": 1\n },\n \"identity\": {\n \"type\": \"SystemAssigned\"\n },\n \"properties\": {\n \"encryption\": {\n \"keyVaultProperties\": [\n {\n \"keyName\": \"key1\",\n \"keyVaultUri\": \"https://keyVaultNamedur8ab.vault.azure.net/\"\n },\n {\n \"keyName\": \"key2\",\n \"keyVaultUri\": \"https://keyVaultNamedur8ab.vault.azure.net/\"\n }\n ],\n \"keySource\": \"Microsoft.KeyVault\"\n },\n \"minimumTlsVersion\": \"1.2\",\n \"zoneRedundant\": true,\n \"disableLocalAuth\": false,\n \"publicNetworkAccess\": \"Enabled\",\n \"premiumMessagingPartitions\": 1\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "654" ] + "Content-Length": [ "691" ] } }, "Response": { @@ -306,35 +306,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "15bd78f8-95ad-4721-9117-2f8049ec7d4c_M3DM2_M3DM2" ], - "Server-SB": [ "Service-Bus-Resource-Provider/DM2" ], - "Server": [ "Service-Bus-Resource-Provider/DM2", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "7eafdee6-1850-475e-a49f-1aaaeeca6dc8_M2SN1_M2SN1" ], + "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], + "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-correlation-request-id": [ "5fa21986-e072-41cd-ac52-44a19deef35b" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T105949Z:5fa21986-e072-41cd-ac52-44a19deef35b" ], + "x-ms-correlation-request-id": [ "57d4dd9d-ed35-4b8e-9862-d177ffc050c1" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T141637Z:57d4dd9d-ed35-4b8e-9862-d177ffc050c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 10:59:49 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:16:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1158" ], + "Content-Length": [ "1190" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb\",\"name\":\"namespaceNamende8cb\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"b0cbb70a-a1a5-4253-a506-b5836ce29547\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Updating\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamende8cb\",\"createdAt\":\"2022-11-24T09:40:43.853Z\",\"updatedAt\":\"2022-11-24T10:59:49.14Z\",\"serviceBusEndpoint\":\"https://namespaceNamende8cb.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3\",\"name\":\"namespaceNamembaip3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"05ff947d-d140-41f0-8107-16ca5893799b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Updating\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamembaip3\",\"createdAt\":\"2023-02-19T13:01:17.353Z\",\"updatedAt\":\"2023-02-19T14:16:36.553Z\",\"serviceBusEndpoint\":\"https://namespaceNamembaip3.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview+9": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "355" ], - "x-ms-client-request-id": [ "df418985-fb03-40a4-8cd3-973d16874629" ], + "x-ms-unique-id": [ "346" ], + "x-ms-client-request-id": [ "81694d76-552b-426e-884a-79bc5f5c54d2" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -348,35 +348,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "ee45b7f2-83d4-42bc-bc4e-11db476f371e_M2DM2_M2DM2" ], - "Server-SB": [ "Service-Bus-Resource-Provider/DM2" ], - "Server": [ "Service-Bus-Resource-Provider/DM2", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "bf3085e6-0cd3-4ed1-8e89-6fdeb63ca001_M2SN1_M2SN1" ], + "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], + "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], - "x-ms-correlation-request-id": [ "3c981b01-5531-4f40-92e4-44f725e1ceea" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T110020Z:3c981b01-5531-4f40-92e4-44f725e1ceea" ], + "x-ms-correlation-request-id": [ "0fc03cd2-5561-42b9-9901-1c1a5e485039" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T141708Z:0fc03cd2-5561-42b9-9901-1c1a5e485039" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:00:20 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:17:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1156" ], + "Content-Length": [ "1186" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb\",\"name\":\"namespaceNamende8cb\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"b0cbb70a-a1a5-4253-a506-b5836ce29547\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamende8cb\",\"createdAt\":\"2022-11-24T09:40:43.853Z\",\"updatedAt\":\"2022-11-24T10:59:53.193Z\",\"serviceBusEndpoint\":\"https://namespaceNamende8cb.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3\",\"name\":\"namespaceNamembaip3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"05ff947d-d140-41f0-8107-16ca5893799b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamembaip3\",\"createdAt\":\"2023-02-19T13:01:17.353Z\",\"updatedAt\":\"2023-02-19T14:16:38.32Z\",\"serviceBusEndpoint\":\"https://namespaceNamembaip3.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview+10": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "356" ], - "x-ms-client-request-id": [ "df418985-fb03-40a4-8cd3-973d16874629" ], + "x-ms-unique-id": [ "347" ], + "x-ms-client-request-id": [ "81694d76-552b-426e-884a-79bc5f5c54d2" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -390,34 +390,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "0d894d3f-69d6-4ef7-8997-c7fe49aee70a_M2DM2_M2DM2" ], - "Server-SB": [ "Service-Bus-Resource-Provider/DM2" ], - "Server": [ "Service-Bus-Resource-Provider/DM2", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "e16ba010-8ec3-4b66-a99f-acef3b3b462b_M2SN1_M2SN1" ], + "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], + "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], - "x-ms-correlation-request-id": [ "2ed05778-f405-4be1-a5d8-dc0e1d6a78ac" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T110021Z:2ed05778-f405-4be1-a5d8-dc0e1d6a78ac" ], + "x-ms-correlation-request-id": [ "c79945fd-728a-45ff-8c22-5746dac90970" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T141708Z:c79945fd-728a-45ff-8c22-5746dac90970" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:00:20 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:17:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1156" ], + "Content-Length": [ "1186" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb\",\"name\":\"namespaceNamende8cb\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"b0cbb70a-a1a5-4253-a506-b5836ce29547\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamende8cb\",\"createdAt\":\"2022-11-24T09:40:43.853Z\",\"updatedAt\":\"2022-11-24T10:59:53.193Z\",\"serviceBusEndpoint\":\"https://namespaceNamende8cb.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3\",\"name\":\"namespaceNamembaip3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"05ff947d-d140-41f0-8107-16ca5893799b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamembaip3\",\"createdAt\":\"2023-02-19T13:01:17.353Z\",\"updatedAt\":\"2023-02-19T14:16:38.32Z\",\"serviceBusEndpoint\":\"https://namespaceNamembaip3.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview+11": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "357" ], - "x-ms-client-request-id": [ "676659e0-7b77-42c5-b147-652994b02935" ], + "x-ms-unique-id": [ "348" ], + "x-ms-client-request-id": [ "e7e0628c-66fe-4f86-be81-95cbff520fe9" ], "CommandName": [ "Get-AzServiceBusNamespaceV2" ], "FullCommandName": [ "Get-AzServiceBusNamespaceV2_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -432,36 +432,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "2e5b4491-35ea-4452-83bf-a7b27b7a0b5c_M2DM2_M2DM2" ], - "Server-SB": [ "Service-Bus-Resource-Provider/DM2" ], - "Server": [ "Service-Bus-Resource-Provider/DM2", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "47eccc0f-2f0a-44b9-b57a-fcbfd974afca_M2SN1_M2SN1" ], + "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], + "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], - "x-ms-correlation-request-id": [ "356bb59b-795c-4dad-91e8-1a9b5ecdd56b" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T110021Z:356bb59b-795c-4dad-91e8-1a9b5ecdd56b" ], + "x-ms-correlation-request-id": [ "1cb79a80-f3ea-43c3-90a5-98c0a040ba9a" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T141709Z:1cb79a80-f3ea-43c3-90a5-98c0a040ba9a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:00:20 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:17:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1156" ], + "Content-Length": [ "1186" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb\",\"name\":\"namespaceNamende8cb\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"b0cbb70a-a1a5-4253-a506-b5836ce29547\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamende8cb\",\"createdAt\":\"2022-11-24T09:40:43.853Z\",\"updatedAt\":\"2022-11-24T10:59:53.193Z\",\"serviceBusEndpoint\":\"https://namespaceNamende8cb.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3\",\"name\":\"namespaceNamembaip3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"05ff947d-d140-41f0-8107-16ca5893799b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamembaip3\",\"createdAt\":\"2023-02-19T13:01:17.353Z\",\"updatedAt\":\"2023-02-19T14:16:38.32Z\",\"serviceBusEndpoint\":\"https://namespaceNamembaip3.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview+12": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview+12": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview", - "Content": "{\n \"location\": \"East US\",\n \"sku\": {\n \"name\": \"Premium\",\n \"tier\": \"Premium\",\n \"capacity\": 1\n },\n \"identity\": {\n \"type\": \"SystemAssigned\"\n },\n \"properties\": {\n \"encryption\": {\n \"keyVaultProperties\": [\n {\n \"keyName\": \"key1\",\n \"keyVaultUri\": \"https://keyvaultnamexdjtwk.vault.azure.net\",\n \"keyVersion\": \"\"\n },\n {\n \"keyName\": \"key2\",\n \"keyVaultUri\": \"https://keyvaultnamexdjtwk.vault.azure.net\",\n \"keyVersion\": \"\"\n },\n {\n \"keyName\": \"key3\",\n \"keyVaultUri\": \"https://keyVaultNamexdjtwk.vault.azure.net/\"\n }\n ],\n \"keySource\": \"Microsoft.KeyVault\",\n \"requireInfrastructureEncryption\": false\n },\n \"minimumTlsVersion\": \"1.2\",\n \"zoneRedundant\": true,\n \"disableLocalAuth\": false,\n \"publicNetworkAccess\": \"Enabled\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview", + "Content": "{\n \"location\": \"East US\",\n \"sku\": {\n \"name\": \"Premium\",\n \"tier\": \"Premium\",\n \"capacity\": 1\n },\n \"identity\": {\n \"type\": \"SystemAssigned\"\n },\n \"properties\": {\n \"encryption\": {\n \"keyVaultProperties\": [\n {\n \"keyName\": \"key1\",\n \"keyVaultUri\": \"https://keyvaultnamedur8ab.vault.azure.net\",\n \"keyVersion\": \"\"\n },\n {\n \"keyName\": \"key2\",\n \"keyVaultUri\": \"https://keyvaultnamedur8ab.vault.azure.net\",\n \"keyVersion\": \"\"\n },\n {\n \"keyName\": \"key3\",\n \"keyVaultUri\": \"https://keyVaultNamedur8ab.vault.azure.net/\"\n }\n ],\n \"keySource\": \"Microsoft.KeyVault\",\n \"requireInfrastructureEncryption\": false\n },\n \"minimumTlsVersion\": \"1.2\",\n \"zoneRedundant\": true,\n \"disableLocalAuth\": false,\n \"publicNetworkAccess\": \"Enabled\",\n \"premiumMessagingPartitions\": 1\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "877" ] + "Content-Length": [ "914" ] } }, "Response": { @@ -469,35 +469,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "bcd99d41-bb64-45d3-807c-b086e0570e0a_M2DM2_M2DM2" ], - "Server-SB": [ "Service-Bus-Resource-Provider/DM2" ], - "Server": [ "Service-Bus-Resource-Provider/DM2", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "f8d8170a-1461-4b73-afaf-c72054b8a6d3_M2SN1_M2SN1" ], + "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], + "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], - "x-ms-correlation-request-id": [ "2eac8637-778f-4b9a-9957-c8bbf4794761" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T110030Z:2eac8637-778f-4b9a-9957-c8bbf4794761" ], + "x-ms-correlation-request-id": [ "b55eb19a-335d-4b1a-8a25-1423156011cb" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T141720Z:b55eb19a-335d-4b1a-8a25-1423156011cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:00:29 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:17:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1252" ], + "Content-Length": [ "1284" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb\",\"name\":\"namespaceNamende8cb\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"b0cbb70a-a1a5-4253-a506-b5836ce29547\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key3\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Updating\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamende8cb\",\"createdAt\":\"2022-11-24T09:40:43.853Z\",\"updatedAt\":\"2022-11-24T11:00:29.45Z\",\"serviceBusEndpoint\":\"https://namespaceNamende8cb.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3\",\"name\":\"namespaceNamembaip3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"05ff947d-d140-41f0-8107-16ca5893799b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key3\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Updating\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamembaip3\",\"createdAt\":\"2023-02-19T13:01:17.353Z\",\"updatedAt\":\"2023-02-19T14:17:18.637Z\",\"serviceBusEndpoint\":\"https://namespaceNamembaip3.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview+13": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "359" ], - "x-ms-client-request-id": [ "4f9e6cf5-f5d5-47a0-aebd-4457f18986a9" ], + "x-ms-unique-id": [ "350" ], + "x-ms-client-request-id": [ "2737649d-91aa-4954-b996-802d9a58cd2b" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -511,35 +511,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "0705f753-53db-40c0-84b7-922436d3c3b2_M3DM2_M3DM2" ], - "Server-SB": [ "Service-Bus-Resource-Provider/DM2" ], - "Server": [ "Service-Bus-Resource-Provider/DM2", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "0c74a122-ec74-4e94-98fe-75dee5d50b5a_M0CH3_M0CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], - "x-ms-correlation-request-id": [ "61faa3da-586f-440a-a5ac-c41890c830b9" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T110100Z:61faa3da-586f-440a-a5ac-c41890c830b9" ], + "x-ms-correlation-request-id": [ "07a12d62-4983-49b2-85b9-6b260174d975" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T141751Z:07a12d62-4983-49b2-85b9-6b260174d975" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:01:00 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:17:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1249" ], + "Content-Length": [ "1280" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb\",\"name\":\"namespaceNamende8cb\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"b0cbb70a-a1a5-4253-a506-b5836ce29547\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key3\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamende8cb\",\"createdAt\":\"2022-11-24T09:40:43.853Z\",\"updatedAt\":\"2022-11-24T11:00:32.19Z\",\"serviceBusEndpoint\":\"https://namespaceNamende8cb.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3\",\"name\":\"namespaceNamembaip3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"05ff947d-d140-41f0-8107-16ca5893799b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key3\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamembaip3\",\"createdAt\":\"2023-02-19T13:01:17.353Z\",\"updatedAt\":\"2023-02-19T14:17:21.11Z\",\"serviceBusEndpoint\":\"https://namespaceNamembaip3.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview+14": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "360" ], - "x-ms-client-request-id": [ "4f9e6cf5-f5d5-47a0-aebd-4457f18986a9" ], + "x-ms-unique-id": [ "351" ], + "x-ms-client-request-id": [ "2737649d-91aa-4954-b996-802d9a58cd2b" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -553,34 +553,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "d326be8c-7501-42d0-b5a8-c529bc0d9685_M2DM2_M2DM2" ], - "Server-SB": [ "Service-Bus-Resource-Provider/DM2" ], - "Server": [ "Service-Bus-Resource-Provider/DM2", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "80fc275a-9d0e-4916-911a-418c4647806a_M0CH3_M0CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], - "x-ms-correlation-request-id": [ "164b99b0-df35-45fd-bfb9-c6d66125f6f6" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T110100Z:164b99b0-df35-45fd-bfb9-c6d66125f6f6" ], + "x-ms-correlation-request-id": [ "331534ab-0645-40c3-861a-ac4dcf1f598f" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T141751Z:331534ab-0645-40c3-861a-ac4dcf1f598f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:01:00 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:17:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1249" ], + "Content-Length": [ "1280" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb\",\"name\":\"namespaceNamende8cb\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"b0cbb70a-a1a5-4253-a506-b5836ce29547\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key3\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamende8cb\",\"createdAt\":\"2022-11-24T09:40:43.853Z\",\"updatedAt\":\"2022-11-24T11:00:32.19Z\",\"serviceBusEndpoint\":\"https://namespaceNamende8cb.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3\",\"name\":\"namespaceNamembaip3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"05ff947d-d140-41f0-8107-16ca5893799b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key3\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamembaip3\",\"createdAt\":\"2023-02-19T13:01:17.353Z\",\"updatedAt\":\"2023-02-19T14:17:21.11Z\",\"serviceBusEndpoint\":\"https://namespaceNamembaip3.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview+15": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "361" ], - "x-ms-client-request-id": [ "88386cd8-04ac-49ec-a906-ac851904a73f" ], + "x-ms-unique-id": [ "352" ], + "x-ms-client-request-id": [ "2b6da4d9-6f87-4d5f-b24f-f3ab200690b5" ], "CommandName": [ "Get-AzServiceBusNamespaceV2" ], "FullCommandName": [ "Get-AzServiceBusNamespaceV2_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -595,36 +595,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "d303e36f-dff3-4d15-9c37-c9eec8b67fbd_M2DM2_M2DM2" ], - "Server-SB": [ "Service-Bus-Resource-Provider/DM2" ], - "Server": [ "Service-Bus-Resource-Provider/DM2", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "0b382bab-5dd7-4088-aed5-505f16acd80a_M0CH3_M0CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], - "x-ms-correlation-request-id": [ "ed8419ef-26f2-4430-8b36-b591d18f063e" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T110101Z:ed8419ef-26f2-4430-8b36-b591d18f063e" ], + "x-ms-correlation-request-id": [ "7bc8a47e-bd24-490c-b118-91a978a6b1ea" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T141752Z:7bc8a47e-bd24-490c-b118-91a978a6b1ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:01:01 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:17:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1249" ], + "Content-Length": [ "1280" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb\",\"name\":\"namespaceNamende8cb\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"b0cbb70a-a1a5-4253-a506-b5836ce29547\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key3\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamende8cb\",\"createdAt\":\"2022-11-24T09:40:43.853Z\",\"updatedAt\":\"2022-11-24T11:00:32.19Z\",\"serviceBusEndpoint\":\"https://namespaceNamende8cb.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3\",\"name\":\"namespaceNamembaip3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"05ff947d-d140-41f0-8107-16ca5893799b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key2\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key3\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamembaip3\",\"createdAt\":\"2023-02-19T13:01:17.353Z\",\"updatedAt\":\"2023-02-19T14:17:21.11Z\",\"serviceBusEndpoint\":\"https://namespaceNamembaip3.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview+16": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview+16": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview", - "Content": "{\n \"location\": \"East US\",\n \"sku\": {\n \"name\": \"Premium\",\n \"tier\": \"Premium\",\n \"capacity\": 1\n },\n \"identity\": {\n \"type\": \"SystemAssigned\"\n },\n \"properties\": {\n \"encryption\": {\n \"keyVaultProperties\": [\n {\n \"keyName\": \"key1\",\n \"keyVaultUri\": \"https://keyvaultnamexdjtwk.vault.azure.net\",\n \"keyVersion\": \"\"\n },\n {\n \"keyName\": \"key3\",\n \"keyVaultUri\": \"https://keyVaultNamexdjtwk.vault.azure.net/\"\n }\n ],\n \"keySource\": \"Microsoft.KeyVault\",\n \"requireInfrastructureEncryption\": false\n },\n \"minimumTlsVersion\": \"1.2\",\n \"zoneRedundant\": true,\n \"disableLocalAuth\": false,\n \"publicNetworkAccess\": \"Enabled\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview", + "Content": "{\n \"location\": \"East US\",\n \"sku\": {\n \"name\": \"Premium\",\n \"tier\": \"Premium\",\n \"capacity\": 1\n },\n \"identity\": {\n \"type\": \"SystemAssigned\"\n },\n \"properties\": {\n \"encryption\": {\n \"keyVaultProperties\": [\n {\n \"keyName\": \"key1\",\n \"keyVaultUri\": \"https://keyvaultnamedur8ab.vault.azure.net\",\n \"keyVersion\": \"\"\n },\n {\n \"keyName\": \"key3\",\n \"keyVaultUri\": \"https://keyVaultNamedur8ab.vault.azure.net/\"\n }\n ],\n \"keySource\": \"Microsoft.KeyVault\",\n \"requireInfrastructureEncryption\": false\n },\n \"minimumTlsVersion\": \"1.2\",\n \"zoneRedundant\": true,\n \"disableLocalAuth\": false,\n \"publicNetworkAccess\": \"Enabled\",\n \"premiumMessagingPartitions\": 1\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "729" ] + "Content-Length": [ "766" ] } }, "Response": { @@ -632,35 +632,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "7ad72a0d-7c78-4577-9eb7-d7c159e868dd_M2DM2_M2DM2" ], - "Server-SB": [ "Service-Bus-Resource-Provider/DM2" ], - "Server": [ "Service-Bus-Resource-Provider/DM2", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "6f56992e-1577-4c0f-8570-9ab33eb020fd_M0CH3_M0CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], - "x-ms-correlation-request-id": [ "1668b69d-f8d2-4692-aa07-23e6e5c6bb28" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T110108Z:1668b69d-f8d2-4692-aa07-23e6e5c6bb28" ], + "x-ms-correlation-request-id": [ "cd8df4cf-2b66-4dec-ba58-2047756d282b" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T141802Z:cd8df4cf-2b66-4dec-ba58-2047756d282b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:01:08 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:18:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1159" ], + "Content-Length": [ "1189" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb\",\"name\":\"namespaceNamende8cb\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"b0cbb70a-a1a5-4253-a506-b5836ce29547\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key3\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Updating\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamende8cb\",\"createdAt\":\"2022-11-24T09:40:43.853Z\",\"updatedAt\":\"2022-11-24T11:01:08.247Z\",\"serviceBusEndpoint\":\"https://namespaceNamende8cb.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3\",\"name\":\"namespaceNamembaip3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"05ff947d-d140-41f0-8107-16ca5893799b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key3\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Updating\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamembaip3\",\"createdAt\":\"2023-02-19T13:01:17.353Z\",\"updatedAt\":\"2023-02-19T14:18:01.02Z\",\"serviceBusEndpoint\":\"https://namespaceNamembaip3.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview+17": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "363" ], - "x-ms-client-request-id": [ "5b0558cd-2573-4f6c-b3c6-85ab9c0e3a32" ], + "x-ms-unique-id": [ "354" ], + "x-ms-client-request-id": [ "c08f2b01-e91d-436e-a177-d61c72364bdb" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -674,35 +674,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "a5391e13-c8dc-45c0-a308-001e064cb19d_M3DM2_M3DM2" ], - "Server-SB": [ "Service-Bus-Resource-Provider/DM2" ], - "Server": [ "Service-Bus-Resource-Provider/DM2", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "62608c59-030c-4c07-93b6-f95180b53ae6_M0CH3_M0CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11986" ], - "x-ms-correlation-request-id": [ "97b64a21-3cc0-4f04-80fb-903dad48bd40" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T110138Z:97b64a21-3cc0-4f04-80fb-903dad48bd40" ], + "x-ms-correlation-request-id": [ "11c3066c-b788-466d-8f7b-e0e839ad5208" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T141832Z:11c3066c-b788-466d-8f7b-e0e839ad5208" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:01:38 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:18:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1156" ], + "Content-Length": [ "1187" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb\",\"name\":\"namespaceNamende8cb\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"b0cbb70a-a1a5-4253-a506-b5836ce29547\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key3\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamende8cb\",\"createdAt\":\"2022-11-24T09:40:43.853Z\",\"updatedAt\":\"2022-11-24T11:01:12.043Z\",\"serviceBusEndpoint\":\"https://namespaceNamende8cb.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3\",\"name\":\"namespaceNamembaip3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"05ff947d-d140-41f0-8107-16ca5893799b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key3\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamembaip3\",\"createdAt\":\"2023-02-19T13:01:17.353Z\",\"updatedAt\":\"2023-02-19T14:18:04.127Z\",\"serviceBusEndpoint\":\"https://namespaceNamembaip3.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview+18": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "364" ], - "x-ms-client-request-id": [ "5b0558cd-2573-4f6c-b3c6-85ab9c0e3a32" ], + "x-ms-unique-id": [ "355" ], + "x-ms-client-request-id": [ "c08f2b01-e91d-436e-a177-d61c72364bdb" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -716,34 +716,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "9fc16a70-2bfd-41b0-a2d1-441c95565a84_M3DM2_M3DM2" ], - "Server-SB": [ "Service-Bus-Resource-Provider/DM2" ], - "Server": [ "Service-Bus-Resource-Provider/DM2", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "83ea9929-85bf-48a4-926e-2560b45014e7_M0CH3_M0CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11985" ], - "x-ms-correlation-request-id": [ "18dd7820-a3c3-48e9-b54f-1d9415192056" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T110139Z:18dd7820-a3c3-48e9-b54f-1d9415192056" ], + "x-ms-correlation-request-id": [ "5f3695fd-d479-4f6e-bcdf-9f8bd4b3f27d" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T141833Z:5f3695fd-d479-4f6e-bcdf-9f8bd4b3f27d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:01:38 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:18:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1156" ], + "Content-Length": [ "1187" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb\",\"name\":\"namespaceNamende8cb\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"b0cbb70a-a1a5-4253-a506-b5836ce29547\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key3\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamende8cb\",\"createdAt\":\"2022-11-24T09:40:43.853Z\",\"updatedAt\":\"2022-11-24T11:01:12.043Z\",\"serviceBusEndpoint\":\"https://namespaceNamende8cb.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3\",\"name\":\"namespaceNamembaip3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"05ff947d-d140-41f0-8107-16ca5893799b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key3\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamembaip3\",\"createdAt\":\"2023-02-19T13:01:17.353Z\",\"updatedAt\":\"2023-02-19T14:18:04.127Z\",\"serviceBusEndpoint\":\"https://namespaceNamembaip3.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview+19": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "365" ], - "x-ms-client-request-id": [ "f1c2bd66-bbe2-438c-bb98-93f9249aa01d" ], + "x-ms-unique-id": [ "356" ], + "x-ms-client-request-id": [ "168a447a-1bb7-46bf-9cbc-fdfc6f8b001b" ], "CommandName": [ "Get-AzServiceBusNamespaceV2" ], "FullCommandName": [ "Get-AzServiceBusNamespaceV2_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -758,36 +758,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "9dce445d-70cd-4493-893a-87b4289cf2d4_M2DM2_M2DM2" ], - "Server-SB": [ "Service-Bus-Resource-Provider/DM2" ], - "Server": [ "Service-Bus-Resource-Provider/DM2", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "97844ab8-684a-4a69-a357-93c427bf4ff3_M0CH3_M0CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11984" ], - "x-ms-correlation-request-id": [ "29317f19-1181-49a2-b179-0b88e7a93383" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T110139Z:29317f19-1181-49a2-b179-0b88e7a93383" ], + "x-ms-correlation-request-id": [ "1982323e-3dfe-41d2-beeb-3cb5cd8704bd" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T141833Z:1982323e-3dfe-41d2-beeb-3cb5cd8704bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:01:38 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:18:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1156" ], + "Content-Length": [ "1187" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb\",\"name\":\"namespaceNamende8cb\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"b0cbb70a-a1a5-4253-a506-b5836ce29547\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key3\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamende8cb\",\"createdAt\":\"2022-11-24T09:40:43.853Z\",\"updatedAt\":\"2022-11-24T11:01:12.043Z\",\"serviceBusEndpoint\":\"https://namespaceNamende8cb.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3\",\"name\":\"namespaceNamembaip3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"05ff947d-d140-41f0-8107-16ca5893799b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key3\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamembaip3\",\"createdAt\":\"2023-02-19T13:01:17.353Z\",\"updatedAt\":\"2023-02-19T14:18:04.127Z\",\"serviceBusEndpoint\":\"https://namespaceNamembaip3.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview+20": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview+20": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview", - "Content": "{\n \"location\": \"East US\",\n \"sku\": {\n \"name\": \"Premium\",\n \"tier\": \"Premium\",\n \"capacity\": 1\n },\n \"identity\": {\n \"type\": \"SystemAssigned, UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\": {\n }\n }\n },\n \"properties\": {\n \"encryption\": {\n \"keyVaultProperties\": [\n {\n \"keyName\": \"key1\",\n \"keyVaultUri\": \"https://keyvaultnamexdjtwk.vault.azure.net\",\n \"keyVersion\": \"\"\n },\n {\n \"keyName\": \"key3\",\n \"keyVaultUri\": \"https://keyvaultnamexdjtwk.vault.azure.net\",\n \"keyVersion\": \"\"\n }\n ],\n \"keySource\": \"Microsoft.KeyVault\",\n \"requireInfrastructureEncryption\": false\n },\n \"minimumTlsVersion\": \"1.2\",\n \"zoneRedundant\": true,\n \"disableLocalAuth\": false,\n \"publicNetworkAccess\": \"Enabled\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview", + "Content": "{\n \"location\": \"East US\",\n \"sku\": {\n \"name\": \"Premium\",\n \"tier\": \"Premium\",\n \"capacity\": 1\n },\n \"identity\": {\n \"type\": \"SystemAssigned, UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\": {\n }\n }\n },\n \"properties\": {\n \"encryption\": {\n \"keyVaultProperties\": [\n {\n \"keyName\": \"key1\",\n \"keyVaultUri\": \"https://keyvaultnamedur8ab.vault.azure.net\",\n \"keyVersion\": \"\"\n },\n {\n \"keyName\": \"key3\",\n \"keyVaultUri\": \"https://keyvaultnamedur8ab.vault.azure.net\",\n \"keyVersion\": \"\"\n }\n ],\n \"keySource\": \"Microsoft.KeyVault\",\n \"requireInfrastructureEncryption\": false\n },\n \"minimumTlsVersion\": \"1.2\",\n \"zoneRedundant\": true,\n \"disableLocalAuth\": false,\n \"publicNetworkAccess\": \"Enabled\",\n \"premiumMessagingPartitions\": 1\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "981" ] + "Content-Length": [ "1018" ] } }, "Response": { @@ -795,35 +795,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "d1cba6f7-8510-4bcb-914e-4faf1aece7e4_M2DM2_M2DM2" ], - "Server-SB": [ "Service-Bus-Resource-Provider/DM2" ], - "Server": [ "Service-Bus-Resource-Provider/DM2", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "dfe59938-9025-4437-b134-e646c1d72e80_M0CH3_M0CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], - "x-ms-correlation-request-id": [ "dc937f3b-f3a2-4149-91dd-d7a893a18a6a" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T110146Z:dc937f3b-f3a2-4149-91dd-d7a893a18a6a" ], + "x-ms-correlation-request-id": [ "279b560b-ba7a-4a77-80b8-b4f3d603a8d9" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T141842Z:279b560b-ba7a-4a77-80b8-b4f3d603a8d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:01:46 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:18:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1173" ], + "Content-Length": [ "1204" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb\",\"name\":\"namespaceNamende8cb\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"b0cbb70a-a1a5-4253-a506-b5836ce29547\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key3\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Updating\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamende8cb\",\"createdAt\":\"2022-11-24T09:40:43.853Z\",\"updatedAt\":\"2022-11-24T11:01:46.187Z\",\"serviceBusEndpoint\":\"https://namespaceNamende8cb.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3\",\"name\":\"namespaceNamembaip3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"05ff947d-d140-41f0-8107-16ca5893799b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key3\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Updating\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamembaip3\",\"createdAt\":\"2023-02-19T13:01:17.353Z\",\"updatedAt\":\"2023-02-19T14:18:41.687Z\",\"serviceBusEndpoint\":\"https://namespaceNamembaip3.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview+21": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "367" ], - "x-ms-client-request-id": [ "8e42ffad-9343-4e3f-bc49-9bb55e668613" ], + "x-ms-unique-id": [ "358" ], + "x-ms-client-request-id": [ "4f621cb3-b415-4a86-8171-8aab34816326" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -837,35 +837,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "56e195d9-07ac-485f-ba54-dfd0f67e562d_M3DM2_M3DM2" ], - "Server-SB": [ "Service-Bus-Resource-Provider/DM2" ], - "Server": [ "Service-Bus-Resource-Provider/DM2", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "fd5fb2f6-8824-462d-b589-1bbcb43aee02_M11CH3_M11CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11983" ], - "x-ms-correlation-request-id": [ "6ed4ddf0-17c2-493a-81d3-b0ed2a59e8cc" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T110216Z:6ed4ddf0-17c2-493a-81d3-b0ed2a59e8cc" ], + "x-ms-correlation-request-id": [ "9856742c-28d6-41fe-a4a4-1076ff429783" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T141913Z:9856742c-28d6-41fe-a4a4-1076ff429783" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:02:16 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:19:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1364" ], + "Content-Length": [ "1395" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb\",\"name\":\"namespaceNamende8cb\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"b0cbb70a-a1a5-4253-a506-b5836ce29547\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key3\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamende8cb\",\"createdAt\":\"2022-11-24T09:40:43.853Z\",\"updatedAt\":\"2022-11-24T11:01:48.327Z\",\"serviceBusEndpoint\":\"https://namespaceNamende8cb.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3\",\"name\":\"namespaceNamembaip3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"05ff947d-d140-41f0-8107-16ca5893799b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key3\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamembaip3\",\"createdAt\":\"2023-02-19T13:01:17.353Z\",\"updatedAt\":\"2023-02-19T14:18:44.473Z\",\"serviceBusEndpoint\":\"https://namespaceNamembaip3.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview+22": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "368" ], - "x-ms-client-request-id": [ "8e42ffad-9343-4e3f-bc49-9bb55e668613" ], + "x-ms-unique-id": [ "359" ], + "x-ms-client-request-id": [ "4f621cb3-b415-4a86-8171-8aab34816326" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -879,35 +879,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "e481617b-e629-4285-a2dc-a50a6b0bbea5_M7SN1_M7SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "19a936a9-88a4-4892-a39c-1fc40c908ff5_M7CH3_M7CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11982" ], - "x-ms-correlation-request-id": [ "79a41f92-0390-4118-9809-eba420f5d326" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T110247Z:79a41f92-0390-4118-9809-eba420f5d326" ], + "x-ms-correlation-request-id": [ "8b2cff69-5b9a-4e91-b55b-ec79205e7d52" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T141944Z:8b2cff69-5b9a-4e91-b55b-ec79205e7d52" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:02:47 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:19:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1364" ], + "Content-Length": [ "1488" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb\",\"name\":\"namespaceNamende8cb\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"b0cbb70a-a1a5-4253-a506-b5836ce29547\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key3\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamende8cb\",\"createdAt\":\"2022-11-24T09:40:43.853Z\",\"updatedAt\":\"2022-11-24T11:01:48.327Z\",\"serviceBusEndpoint\":\"https://namespaceNamende8cb.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3\",\"name\":\"namespaceNamembaip3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"05ff947d-d140-41f0-8107-16ca5893799b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{\"clientId\":\"38a989a1-3fab-4015-b546-cbcf7a67aa89\",\"principalId\":\"624205aa-192c-4303-9606-990d06cbd997\"}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key3\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamembaip3\",\"createdAt\":\"2023-02-19T13:01:17.353Z\",\"updatedAt\":\"2023-02-19T14:19:42.723Z\",\"serviceBusEndpoint\":\"https://namespaceNamembaip3.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview+23": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "369" ], - "x-ms-client-request-id": [ "8e42ffad-9343-4e3f-bc49-9bb55e668613" ], + "x-ms-unique-id": [ "360" ], + "x-ms-client-request-id": [ "4f621cb3-b415-4a86-8171-8aab34816326" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -921,39 +921,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "f65aa457-573a-4481-8448-ffe24f4fd1c6_M7SN1_M7SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "2e44d354-75da-4208-9f89-9dbfd6d4a0f9_M1CH3_M1CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11981" ], - "x-ms-correlation-request-id": [ "32ea0a3a-689b-4079-a667-b05cf0fb514d" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T110317Z:32ea0a3a-689b-4079-a667-b05cf0fb514d" ], + "x-ms-correlation-request-id": [ "273d476c-b1be-4bd2-98fd-63a829d836dd" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T141946Z:273d476c-b1be-4bd2-98fd-63a829d836dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:03:17 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:19:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1457" ], + "Content-Length": [ "1488" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb\",\"name\":\"namespaceNamende8cb\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"b0cbb70a-a1a5-4253-a506-b5836ce29547\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{\"clientId\":\"38a989a1-3fab-4015-b546-cbcf7a67aa89\",\"principalId\":\"624205aa-192c-4303-9606-990d06cbd997\"}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key3\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamende8cb\",\"createdAt\":\"2022-11-24T09:40:43.853Z\",\"updatedAt\":\"2022-11-24T11:02:48.493Z\",\"serviceBusEndpoint\":\"https://namespaceNamende8cb.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3\",\"name\":\"namespaceNamembaip3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"05ff947d-d140-41f0-8107-16ca5893799b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{\"clientId\":\"38a989a1-3fab-4015-b546-cbcf7a67aa89\",\"principalId\":\"624205aa-192c-4303-9606-990d06cbd997\"}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key3\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamembaip3\",\"createdAt\":\"2023-02-19T13:01:17.353Z\",\"updatedAt\":\"2023-02-19T14:19:42.723Z\",\"serviceBusEndpoint\":\"https://namespaceNamembaip3.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview+24": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "370" ], - "x-ms-client-request-id": [ "8e42ffad-9343-4e3f-bc49-9bb55e668613" ], - "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateViaIdentity" ], - "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateViaIdentity" ], + "x-ms-unique-id": [ "361" ], + "x-ms-client-request-id": [ "81e41aa3-47a2-4ad1-a3d0-f28e3df0c810" ], + "CommandName": [ "Get-AzServiceBusNamespaceV2" ], + "FullCommandName": [ "Get-AzServiceBusNamespaceV2_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceBus/0.1.0" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceBus/0.1.0" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } @@ -963,41 +963,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "4e656f91-0690-41e2-b540-4da4bad46c7d_M7SN1_M7SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "0cb01e5b-19e7-48bc-b30f-f61c5c3b925e_M11CH3_M11CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11980" ], - "x-ms-correlation-request-id": [ "0d34e4d3-b0f3-4cac-8b46-a01f94d9437d" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T110317Z:0d34e4d3-b0f3-4cac-8b46-a01f94d9437d" ], + "x-ms-correlation-request-id": [ "dbb43a33-fbb3-4b16-aec9-3f26c1f99302" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T141947Z:dbb43a33-fbb3-4b16-aec9-3f26c1f99302" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:03:17 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:19:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1457" ], + "Content-Length": [ "1488" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb\",\"name\":\"namespaceNamende8cb\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"b0cbb70a-a1a5-4253-a506-b5836ce29547\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{\"clientId\":\"38a989a1-3fab-4015-b546-cbcf7a67aa89\",\"principalId\":\"624205aa-192c-4303-9606-990d06cbd997\"}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key3\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamende8cb\",\"createdAt\":\"2022-11-24T09:40:43.853Z\",\"updatedAt\":\"2022-11-24T11:02:48.493Z\",\"serviceBusEndpoint\":\"https://namespaceNamende8cb.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3\",\"name\":\"namespaceNamembaip3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"05ff947d-d140-41f0-8107-16ca5893799b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{\"clientId\":\"38a989a1-3fab-4015-b546-cbcf7a67aa89\",\"principalId\":\"624205aa-192c-4303-9606-990d06cbd997\"}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key3\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamembaip3\",\"createdAt\":\"2023-02-19T13:01:17.353Z\",\"updatedAt\":\"2023-02-19T14:19:42.723Z\",\"serviceBusEndpoint\":\"https://namespaceNamembaip3.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview+25": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview+25": { "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview", - "Content": null, + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview", + "Content": "{\n \"location\": \"East US\",\n \"sku\": {\n \"name\": \"Premium\",\n \"tier\": \"Premium\",\n \"capacity\": 1\n },\n \"identity\": {\n \"type\": \"SystemAssigned, UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\": {\n },\n \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\": {\n }\n }\n },\n \"properties\": {\n \"encryption\": {\n \"keyVaultProperties\": [\n {\n \"keyName\": \"key1\",\n \"keyVaultUri\": \"https://keyvaultnamedur8ab.vault.azure.net\",\n \"keyVersion\": \"\"\n },\n {\n \"keyName\": \"key3\",\n \"keyVaultUri\": \"https://keyvaultnamedur8ab.vault.azure.net\",\n \"keyVersion\": \"\"\n }\n ],\n \"keySource\": \"Microsoft.KeyVault\",\n \"requireInfrastructureEncryption\": false\n },\n \"minimumTlsVersion\": \"1.2\",\n \"zoneRedundant\": true,\n \"disableLocalAuth\": false,\n \"publicNetworkAccess\": \"Enabled\",\n \"premiumMessagingPartitions\": 1\n }\n}", "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "371" ], - "x-ms-client-request-id": [ "1a6fb3ff-d494-48d4-98c1-f5dcd74137d0" ], - "CommandName": [ "Get-AzServiceBusNamespaceV2" ], - "FullCommandName": [ "Get-AzServiceBusNamespaceV2_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceBus/0.1.0" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "1191" ] } }, "Response": { @@ -1005,36 +1000,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "9d34d3b2-daf5-49fa-99c5-523c4e4cef92_M7SN1_M7SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11979" ], - "x-ms-correlation-request-id": [ "1e805c38-420f-4621-a221-3268fceb3f3e" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T110318Z:1e805c38-420f-4621-a221-3268fceb3f3e" ], + "x-ms-request-id": [ "93fc88f5-50aa-4c65-8bd1-db8f1bf87675_M11CH3_M11CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1194" ], + "x-ms-correlation-request-id": [ "58b53d3a-34aa-42bd-9015-58715e58f6c2" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T141956Z:58b53d3a-34aa-42bd-9015-58715e58f6c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:03:18 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:19:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1457" ], + "Content-Length": [ "1490" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb\",\"name\":\"namespaceNamende8cb\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"b0cbb70a-a1a5-4253-a506-b5836ce29547\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{\"clientId\":\"38a989a1-3fab-4015-b546-cbcf7a67aa89\",\"principalId\":\"624205aa-192c-4303-9606-990d06cbd997\"}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key3\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamende8cb\",\"createdAt\":\"2022-11-24T09:40:43.853Z\",\"updatedAt\":\"2022-11-24T11:02:48.493Z\",\"serviceBusEndpoint\":\"https://namespaceNamende8cb.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3\",\"name\":\"namespaceNamembaip3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"05ff947d-d140-41f0-8107-16ca5893799b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{\"clientId\":\"38a989a1-3fab-4015-b546-cbcf7a67aa89\",\"principalId\":\"624205aa-192c-4303-9606-990d06cbd997\"}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key3\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Updating\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamembaip3\",\"createdAt\":\"2023-02-19T13:01:17.353Z\",\"updatedAt\":\"2023-02-19T14:19:55.41Z\",\"serviceBusEndpoint\":\"https://namespaceNamembaip3.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview+26": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview+26": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview", - "Content": "{\n \"location\": \"East US\",\n \"sku\": {\n \"name\": \"Premium\",\n \"tier\": \"Premium\",\n \"capacity\": 1\n },\n \"identity\": {\n \"type\": \"SystemAssigned, UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\": {\n },\n \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\": {\n }\n }\n },\n \"properties\": {\n \"encryption\": {\n \"keyVaultProperties\": [\n {\n \"keyName\": \"key1\",\n \"keyVaultUri\": \"https://keyvaultnamexdjtwk.vault.azure.net\",\n \"keyVersion\": \"\"\n },\n {\n \"keyName\": \"key3\",\n \"keyVaultUri\": \"https://keyvaultnamexdjtwk.vault.azure.net\",\n \"keyVersion\": \"\"\n }\n ],\n \"keySource\": \"Microsoft.KeyVault\",\n \"requireInfrastructureEncryption\": false\n },\n \"minimumTlsVersion\": \"1.2\",\n \"zoneRedundant\": true,\n \"disableLocalAuth\": false,\n \"publicNetworkAccess\": \"Enabled\"\n }\n}", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview", + "Content": null, "isContentBase64": false, "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "363" ], + "x-ms-client-request-id": [ "5659079a-4253-44b7-afc6-cdac7ae5f8ce" ], + "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateViaIdentity" ], + "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceBus/0.1.0" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "1154" ] } }, "Response": { @@ -1042,35 +1042,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "373323c1-d04e-44c3-879e-df4355216282_M7SN1_M7SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1194" ], - "x-ms-correlation-request-id": [ "8a545750-6f20-4df0-803e-63bd86a7caee" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T110328Z:8a545750-6f20-4df0-803e-63bd86a7caee" ], + "x-ms-request-id": [ "5476b6fe-1003-4193-bfe0-8d71fb2bcebe_M7CH3_M7CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11979" ], + "x-ms-correlation-request-id": [ "bd27cbd8-2f39-4faf-a980-974d836f6938" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T142027Z:bd27cbd8-2f39-4faf-a980-974d836f6938" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:03:27 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:20:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1628" ], + "Content-Length": [ "1655" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb\",\"name\":\"namespaceNamende8cb\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"b0cbb70a-a1a5-4253-a506-b5836ce29547\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{\"clientId\":\"38a989a1-3fab-4015-b546-cbcf7a67aa89\",\"principalId\":\"624205aa-192c-4303-9606-990d06cbd997\"},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key3\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamende8cb\",\"createdAt\":\"2022-11-24T09:40:43.853Z\",\"updatedAt\":\"2022-11-24T11:03:26.437Z\",\"serviceBusEndpoint\":\"https://namespaceNamende8cb.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3\",\"name\":\"namespaceNamembaip3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"05ff947d-d140-41f0-8107-16ca5893799b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{\"clientId\":\"38a989a1-3fab-4015-b546-cbcf7a67aa89\",\"principalId\":\"624205aa-192c-4303-9606-990d06cbd997\"},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key3\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamembaip3\",\"createdAt\":\"2023-02-19T13:01:17.353Z\",\"updatedAt\":\"2023-02-19T14:19:57.147Z\",\"serviceBusEndpoint\":\"https://namespaceNamembaip3.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview+27": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview+27": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "373" ], - "x-ms-client-request-id": [ "0b4830a7-f6ca-4fd8-962e-2f6c2538f101" ], + "x-ms-unique-id": [ "364" ], + "x-ms-client-request-id": [ "5659079a-4253-44b7-afc6-cdac7ae5f8ce" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1084,35 +1084,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "dd7078a9-e0cc-485a-b4a7-6c9ed8ea676a_M7SN1_M7SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "1a5bc34e-8c52-4b53-b2ba-543ba7535054_M7CH3_M7CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11978" ], - "x-ms-correlation-request-id": [ "f4bb4d78-84d3-4e28-9dd6-1ecfd1f32b0f" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T110358Z:f4bb4d78-84d3-4e28-9dd6-1ecfd1f32b0f" ], + "x-ms-correlation-request-id": [ "c6fc1314-919c-4e05-9f74-3d38e27e9e8f" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T142058Z:c6fc1314-919c-4e05-9f74-3d38e27e9e8f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:03:57 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:20:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1624" ], + "Content-Length": [ "1655" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb\",\"name\":\"namespaceNamende8cb\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"b0cbb70a-a1a5-4253-a506-b5836ce29547\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{\"clientId\":\"38a989a1-3fab-4015-b546-cbcf7a67aa89\",\"principalId\":\"624205aa-192c-4303-9606-990d06cbd997\"},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key3\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamende8cb\",\"createdAt\":\"2022-11-24T09:40:43.853Z\",\"updatedAt\":\"2022-11-24T11:03:29.883Z\",\"serviceBusEndpoint\":\"https://namespaceNamende8cb.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3\",\"name\":\"namespaceNamembaip3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"05ff947d-d140-41f0-8107-16ca5893799b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{\"clientId\":\"38a989a1-3fab-4015-b546-cbcf7a67aa89\",\"principalId\":\"624205aa-192c-4303-9606-990d06cbd997\"},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key3\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamembaip3\",\"createdAt\":\"2023-02-19T13:01:17.353Z\",\"updatedAt\":\"2023-02-19T14:19:57.147Z\",\"serviceBusEndpoint\":\"https://namespaceNamembaip3.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview+28": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview+28": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "374" ], - "x-ms-client-request-id": [ "0b4830a7-f6ca-4fd8-962e-2f6c2538f101" ], + "x-ms-unique-id": [ "365" ], + "x-ms-client-request-id": [ "5659079a-4253-44b7-afc6-cdac7ae5f8ce" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1126,35 +1126,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "cd57679f-2225-44d5-aac7-3ba79bab6850_M7SN1_M7SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "a1447d79-b496-4c92-8c1d-e1f5155ce044_M7CH3_M7CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11977" ], - "x-ms-correlation-request-id": [ "8f7653e0-33d4-4a17-a196-3bda4721c83e" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T110428Z:8f7653e0-33d4-4a17-a196-3bda4721c83e" ], + "x-ms-correlation-request-id": [ "b6b0061a-550d-488c-8b2d-c74a97dd3f6c" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T142128Z:b6b0061a-550d-488c-8b2d-c74a97dd3f6c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:04:28 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:21:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1715" ], + "Content-Length": [ "1747" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb\",\"name\":\"namespaceNamende8cb\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"b0cbb70a-a1a5-4253-a506-b5836ce29547\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{\"clientId\":\"38a989a1-3fab-4015-b546-cbcf7a67aa89\",\"principalId\":\"624205aa-192c-4303-9606-990d06cbd997\"},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{\"clientId\":\"440d7336-c408-4327-ad13-10a4e71aad64\",\"principalId\":\"1bdb6af0-4284-47f4-b049-94aa2868d90b\"}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key3\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamende8cb\",\"createdAt\":\"2022-11-24T09:40:43.853Z\",\"updatedAt\":\"2022-11-24T11:04:27.4Z\",\"serviceBusEndpoint\":\"https://namespaceNamende8cb.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3\",\"name\":\"namespaceNamembaip3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"05ff947d-d140-41f0-8107-16ca5893799b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{\"clientId\":\"38a989a1-3fab-4015-b546-cbcf7a67aa89\",\"principalId\":\"624205aa-192c-4303-9606-990d06cbd997\"},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{\"clientId\":\"440d7336-c408-4327-ad13-10a4e71aad64\",\"principalId\":\"1bdb6af0-4284-47f4-b049-94aa2868d90b\"}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key3\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamembaip3\",\"createdAt\":\"2023-02-19T13:01:17.353Z\",\"updatedAt\":\"2023-02-19T14:20:59.39Z\",\"serviceBusEndpoint\":\"https://namespaceNamembaip3.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview+29": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview+29": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "375" ], - "x-ms-client-request-id": [ "0b4830a7-f6ca-4fd8-962e-2f6c2538f101" ], + "x-ms-unique-id": [ "366" ], + "x-ms-client-request-id": [ "5659079a-4253-44b7-afc6-cdac7ae5f8ce" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1168,30 +1168,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "592b8735-e9fd-42be-956b-565dc84f2f5f_M7SN1_M7SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "f189f49b-9485-424c-aa60-726ca73f9144_M7CH3_M7CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11976" ], - "x-ms-correlation-request-id": [ "c91f9ed8-5e44-48e4-9a97-28477d588101" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T110429Z:c91f9ed8-5e44-48e4-9a97-28477d588101" ], + "x-ms-correlation-request-id": [ "81dfc076-70fb-41ae-90e8-97e53e4f0aab" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T142129Z:81dfc076-70fb-41ae-90e8-97e53e4f0aab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:04:28 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:21:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1715" ], + "Content-Length": [ "1747" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamende8cb\",\"name\":\"namespaceNamende8cb\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"b0cbb70a-a1a5-4253-a506-b5836ce29547\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{\"clientId\":\"38a989a1-3fab-4015-b546-cbcf7a67aa89\",\"principalId\":\"624205aa-192c-4303-9606-990d06cbd997\"},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{\"clientId\":\"440d7336-c408-4327-ad13-10a4e71aad64\",\"principalId\":\"1bdb6af0-4284-47f4-b049-94aa2868d90b\"}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key3\",\"keyVaultUri\":\"https://keyvaultnamexdjtwk.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamende8cb\",\"createdAt\":\"2022-11-24T09:40:43.853Z\",\"updatedAt\":\"2022-11-24T11:04:27.4Z\",\"serviceBusEndpoint\":\"https://namespaceNamende8cb.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamembaip3\",\"name\":\"namespaceNamembaip3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"05ff947d-d140-41f0-8107-16ca5893799b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{\"clientId\":\"38a989a1-3fab-4015-b546-cbcf7a67aa89\",\"principalId\":\"624205aa-192c-4303-9606-990d06cbd997\"},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{\"clientId\":\"440d7336-c408-4327-ad13-10a4e71aad64\",\"principalId\":\"1bdb6af0-4284-47f4-b049-94aa2868d90b\"}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"encryption\":{\"keySource\":\"Microsoft.KeyVault\",\"keyVaultProperties\":[{\"keyName\":\"key1\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"},{\"keyName\":\"key3\",\"keyVaultUri\":\"https://keyvaultnamedur8ab.vault.azure.net\",\"keyVersion\":\"\"}],\"requireInfrastructureEncryption\":false},\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacenamembaip3\",\"createdAt\":\"2023-02-19T13:01:17.353Z\",\"updatedAt\":\"2023-02-19T14:20:59.39Z\",\"serviceBusEndpoint\":\"https://namespaceNamembaip3.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8?api-version=2022-01-01-preview+30": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt?api-version=2022-10-01-preview+30": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8?api-version=2022-01-01-preview", - "Content": "{\n \"location\": \"northeurope\",\n \"sku\": {\n \"name\": \"Premium\",\n \"tier\": \"Premium\"\n },\n \"identity\": {\n \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\": {\n },\n \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\": {\n }\n }\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt?api-version=2022-10-01-preview", + "Content": "{\n \"location\": \"northeurope\",\n \"sku\": {\n \"name\": \"Premium\",\n \"tier\": \"Premium\"\n },\n \"identity\": {\n \"type\": \"UserAssigned\",\n \"userAssignedIdentities\": {\n \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\": {\n },\n \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\": {\n }\n }\n }\n}", "isContentBase64": false, "Headers": { }, @@ -1205,35 +1205,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "5153a49a-e7af-47e2-8850-8a5d7dde1851_M7SN1_M7SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "45d1ce39-62bf-4760-8b6d-27751ed2842d_M7CH3_M7CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1193" ], - "x-ms-correlation-request-id": [ "28a898f5-3d9d-4b0c-91fa-5d04b6aebdbf" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T110432Z:28a898f5-3d9d-4b0c-91fa-5d04b6aebdbf" ], + "x-ms-correlation-request-id": [ "076f3e1a-64e6-4b62-88e7-c7996466e7e7" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T142135Z:076f3e1a-64e6-4b62-88e7-c7996466e7e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:04:32 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:21:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1104" ], + "Content-Length": [ "781" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8\",\"name\":\"namespaceV6ne2fd8\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev6ne2fd8\",\"createdAt\":\"2022-11-24T11:04:31.39Z\",\"updatedAt\":\"2022-11-24T11:04:31.39Z\",\"serviceBusEndpoint\":\"https://namespaceV6ne2fd8.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt\",\"name\":\"namespaceV6umnflt\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\"},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Created\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev6umnflt\",\"createdAt\":\"2023-02-19T14:21:33.51Z\",\"updatedAt\":\"2023-02-19T14:21:33.51Z\",\"serviceBusEndpoint\":\"https://namespaceV6umnflt.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8?api-version=2022-01-01-preview+31": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt?api-version=2022-10-01-preview+31": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "377" ], - "x-ms-client-request-id": [ "a4f74130-e40a-41ae-bc36-04fdf1c0ca90" ], + "x-ms-unique-id": [ "368" ], + "x-ms-client-request-id": [ "56cc31b0-7956-454c-bba1-fa60f3e427fa" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1247,35 +1247,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "101330fd-8f5a-4b19-8bfd-bfb137c73aaf_M7SN1_M7SN1" ], + "x-ms-request-id": [ "722e7a6d-26bb-42f4-9d25-46b7a8d32245_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11975" ], - "x-ms-correlation-request-id": [ "27686bef-07a2-4a78-98eb-1a19a2fdd23d" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T110502Z:27686bef-07a2-4a78-98eb-1a19a2fdd23d" ], + "x-ms-correlation-request-id": [ "edf8cdc9-2568-4315-bdc2-72f698b890b2" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T142206Z:edf8cdc9-2568-4315-bdc2-72f698b890b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:05:02 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:22:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1104" ], + "Content-Length": [ "1135" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8\",\"name\":\"namespaceV6ne2fd8\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev6ne2fd8\",\"createdAt\":\"2022-11-24T11:04:31.39Z\",\"updatedAt\":\"2022-11-24T11:04:31.39Z\",\"serviceBusEndpoint\":\"https://namespaceV6ne2fd8.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt\",\"name\":\"namespaceV6umnflt\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev6umnflt\",\"createdAt\":\"2023-02-19T14:21:33.51Z\",\"updatedAt\":\"2023-02-19T14:21:33.51Z\",\"serviceBusEndpoint\":\"https://namespaceV6umnflt.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8?api-version=2022-01-01-preview+32": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt?api-version=2022-10-01-preview+32": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "378" ], - "x-ms-client-request-id": [ "a4f74130-e40a-41ae-bc36-04fdf1c0ca90" ], + "x-ms-unique-id": [ "369" ], + "x-ms-client-request-id": [ "56cc31b0-7956-454c-bba1-fa60f3e427fa" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1289,35 +1289,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "d44d4c33-ce5e-421b-a9c2-cf3dd2b46e2a_M7SN1_M7SN1" ], + "x-ms-request-id": [ "7a8cebde-dd6f-4903-b78d-ce8e7fce6ad3_M8SN1_M8SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11974" ], - "x-ms-correlation-request-id": [ "e9011a77-8a3f-4cac-84fc-548905bb1d43" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T110533Z:e9011a77-8a3f-4cac-84fc-548905bb1d43" ], + "x-ms-correlation-request-id": [ "4c306c33-e43f-40d6-8c51-847376894c8e" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T142237Z:4c306c33-e43f-40d6-8c51-847376894c8e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:05:32 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:22:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1104" ], + "Content-Length": [ "1135" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8\",\"name\":\"namespaceV6ne2fd8\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev6ne2fd8\",\"createdAt\":\"2022-11-24T11:04:31.39Z\",\"updatedAt\":\"2022-11-24T11:04:31.39Z\",\"serviceBusEndpoint\":\"https://namespaceV6ne2fd8.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt\",\"name\":\"namespaceV6umnflt\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev6umnflt\",\"createdAt\":\"2023-02-19T14:21:33.51Z\",\"updatedAt\":\"2023-02-19T14:21:33.51Z\",\"serviceBusEndpoint\":\"https://namespaceV6umnflt.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8?api-version=2022-01-01-preview+33": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt?api-version=2022-10-01-preview+33": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "379" ], - "x-ms-client-request-id": [ "a4f74130-e40a-41ae-bc36-04fdf1c0ca90" ], + "x-ms-unique-id": [ "370" ], + "x-ms-client-request-id": [ "56cc31b0-7956-454c-bba1-fa60f3e427fa" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1331,35 +1331,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "60420f08-6f54-4e8f-9a69-0ec2a8bdd0b7_M4SN1_M4SN1" ], + "x-ms-request-id": [ "d05f21e3-5338-4e42-b0c1-47b7151fd301_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11973" ], - "x-ms-correlation-request-id": [ "d2e370d8-1b2c-44ac-a1bb-6e03755bf2ea" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T110603Z:d2e370d8-1b2c-44ac-a1bb-6e03755bf2ea" ], + "x-ms-correlation-request-id": [ "88fc883b-4e82-4561-9b3c-de388fdee762" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T142307Z:88fc883b-4e82-4561-9b3c-de388fdee762" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:06:03 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:23:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1101" ], + "Content-Length": [ "1132" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8\",\"name\":\"namespaceV6ne2fd8\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev6ne2fd8\",\"createdAt\":\"2022-11-24T11:04:31.39Z\",\"updatedAt\":\"2022-11-24T11:05:42.727Z\",\"serviceBusEndpoint\":\"https://namespaceV6ne2fd8.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt\",\"name\":\"namespaceV6umnflt\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev6umnflt\",\"createdAt\":\"2023-02-19T14:21:33.51Z\",\"updatedAt\":\"2023-02-19T14:22:50.437Z\",\"serviceBusEndpoint\":\"https://namespaceV6umnflt.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8?api-version=2022-01-01-preview+34": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt?api-version=2022-10-01-preview+34": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "380" ], - "x-ms-client-request-id": [ "a4f74130-e40a-41ae-bc36-04fdf1c0ca90" ], + "x-ms-unique-id": [ "371" ], + "x-ms-client-request-id": [ "56cc31b0-7956-454c-bba1-fa60f3e427fa" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1373,35 +1373,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "f8e535d6-5fde-4b51-9de5-1b5aa52a0832_M4SN1_M4SN1" ], + "x-ms-request-id": [ "3135ac0d-2ded-4986-a3ec-cac41ef3c5e4_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11972" ], - "x-ms-correlation-request-id": [ "57cdc0dd-b9d4-4e96-b01d-800b8389a5ae" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T110633Z:57cdc0dd-b9d4-4e96-b01d-800b8389a5ae" ], + "x-ms-correlation-request-id": [ "e4cd68a3-98eb-4490-8ce3-eb3478e96967" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T142338Z:e4cd68a3-98eb-4490-8ce3-eb3478e96967" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:06:32 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:23:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1101" ], + "Content-Length": [ "1132" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8\",\"name\":\"namespaceV6ne2fd8\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev6ne2fd8\",\"createdAt\":\"2022-11-24T11:04:31.39Z\",\"updatedAt\":\"2022-11-24T11:05:42.727Z\",\"serviceBusEndpoint\":\"https://namespaceV6ne2fd8.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt\",\"name\":\"namespaceV6umnflt\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev6umnflt\",\"createdAt\":\"2023-02-19T14:21:33.51Z\",\"updatedAt\":\"2023-02-19T14:22:50.437Z\",\"serviceBusEndpoint\":\"https://namespaceV6umnflt.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8?api-version=2022-01-01-preview+35": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt?api-version=2022-10-01-preview+35": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "381" ], - "x-ms-client-request-id": [ "a4f74130-e40a-41ae-bc36-04fdf1c0ca90" ], + "x-ms-unique-id": [ "372" ], + "x-ms-client-request-id": [ "56cc31b0-7956-454c-bba1-fa60f3e427fa" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1415,35 +1415,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "fdc33993-6b63-46fc-b877-dd51666703ee_M4SN1_M4SN1" ], + "x-ms-request-id": [ "31072b18-814e-4f2d-a5e2-3ab5e02ab832_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11971" ], - "x-ms-correlation-request-id": [ "8e4acf6b-b008-40b4-b3d4-d2d645502d68" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T110703Z:8e4acf6b-b008-40b4-b3d4-d2d645502d68" ], + "x-ms-correlation-request-id": [ "21a1c8e1-c958-471f-9737-07faf79b31c6" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T142408Z:21a1c8e1-c958-471f-9737-07faf79b31c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:07:03 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:24:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1101" ], + "Content-Length": [ "1132" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8\",\"name\":\"namespaceV6ne2fd8\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev6ne2fd8\",\"createdAt\":\"2022-11-24T11:04:31.39Z\",\"updatedAt\":\"2022-11-24T11:05:42.727Z\",\"serviceBusEndpoint\":\"https://namespaceV6ne2fd8.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt\",\"name\":\"namespaceV6umnflt\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev6umnflt\",\"createdAt\":\"2023-02-19T14:21:33.51Z\",\"updatedAt\":\"2023-02-19T14:22:50.437Z\",\"serviceBusEndpoint\":\"https://namespaceV6umnflt.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8?api-version=2022-01-01-preview+36": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt?api-version=2022-10-01-preview+36": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "382" ], - "x-ms-client-request-id": [ "a4f74130-e40a-41ae-bc36-04fdf1c0ca90" ], + "x-ms-unique-id": [ "373" ], + "x-ms-client-request-id": [ "56cc31b0-7956-454c-bba1-fa60f3e427fa" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1457,35 +1457,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "74e4fd4f-45fe-46b1-a7f4-d56476ca65ef_M4SN1_M4SN1" ], + "x-ms-request-id": [ "35bbeae9-0809-45ca-9151-787f07c39d03_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11970" ], - "x-ms-correlation-request-id": [ "88ae17a4-8c16-4b6d-b0cc-40abfaf21df7" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T110734Z:88ae17a4-8c16-4b6d-b0cc-40abfaf21df7" ], + "x-ms-correlation-request-id": [ "90079753-045d-4ff5-a546-6d03c65590b5" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T142439Z:90079753-045d-4ff5-a546-6d03c65590b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:07:33 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:24:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1101" ], + "Content-Length": [ "1132" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8\",\"name\":\"namespaceV6ne2fd8\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev6ne2fd8\",\"createdAt\":\"2022-11-24T11:04:31.39Z\",\"updatedAt\":\"2022-11-24T11:05:42.727Z\",\"serviceBusEndpoint\":\"https://namespaceV6ne2fd8.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt\",\"name\":\"namespaceV6umnflt\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev6umnflt\",\"createdAt\":\"2023-02-19T14:21:33.51Z\",\"updatedAt\":\"2023-02-19T14:22:50.437Z\",\"serviceBusEndpoint\":\"https://namespaceV6umnflt.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8?api-version=2022-01-01-preview+37": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt?api-version=2022-10-01-preview+37": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "383" ], - "x-ms-client-request-id": [ "a4f74130-e40a-41ae-bc36-04fdf1c0ca90" ], + "x-ms-unique-id": [ "374" ], + "x-ms-client-request-id": [ "56cc31b0-7956-454c-bba1-fa60f3e427fa" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1499,35 +1499,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "95d43ecb-ddfd-463f-8d6e-d75a82466925_M4SN1_M4SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "502442eb-b2da-4bc2-b01e-c882468d552f_M4CH3_M4CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11969" ], - "x-ms-correlation-request-id": [ "c33fcbce-7a83-4b15-a954-8ab0e2f66f3f" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T110804Z:c33fcbce-7a83-4b15-a954-8ab0e2f66f3f" ], + "x-ms-correlation-request-id": [ "8e6d2527-e886-40e6-83e3-9df02ed5c125" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T142509Z:8e6d2527-e886-40e6-83e3-9df02ed5c125" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:08:03 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:25:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1101" ], + "Content-Length": [ "1132" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8\",\"name\":\"namespaceV6ne2fd8\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev6ne2fd8\",\"createdAt\":\"2022-11-24T11:04:31.39Z\",\"updatedAt\":\"2022-11-24T11:05:42.727Z\",\"serviceBusEndpoint\":\"https://namespaceV6ne2fd8.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt\",\"name\":\"namespaceV6umnflt\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev6umnflt\",\"createdAt\":\"2023-02-19T14:21:33.51Z\",\"updatedAt\":\"2023-02-19T14:22:50.437Z\",\"serviceBusEndpoint\":\"https://namespaceV6umnflt.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8?api-version=2022-01-01-preview+38": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt?api-version=2022-10-01-preview+38": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "384" ], - "x-ms-client-request-id": [ "a4f74130-e40a-41ae-bc36-04fdf1c0ca90" ], + "x-ms-unique-id": [ "375" ], + "x-ms-client-request-id": [ "56cc31b0-7956-454c-bba1-fa60f3e427fa" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1541,35 +1541,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "85e6e96f-4892-4a3b-aada-b3e5bec238f3_M4SN1_M4SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "71e2a076-33ed-493c-86da-dd23f1e39e7a_M4CH3_M4CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11968" ], - "x-ms-correlation-request-id": [ "181bb645-6f8c-4c14-8e4e-fc226cca0d2b" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T110834Z:181bb645-6f8c-4c14-8e4e-fc226cca0d2b" ], + "x-ms-correlation-request-id": [ "85a10e3f-627f-4737-8d7a-544236f2846b" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T142540Z:85a10e3f-627f-4737-8d7a-544236f2846b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:08:34 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:25:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1101" ], + "Content-Length": [ "1132" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8\",\"name\":\"namespaceV6ne2fd8\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev6ne2fd8\",\"createdAt\":\"2022-11-24T11:04:31.39Z\",\"updatedAt\":\"2022-11-24T11:05:42.727Z\",\"serviceBusEndpoint\":\"https://namespaceV6ne2fd8.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt\",\"name\":\"namespaceV6umnflt\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev6umnflt\",\"createdAt\":\"2023-02-19T14:21:33.51Z\",\"updatedAt\":\"2023-02-19T14:22:50.437Z\",\"serviceBusEndpoint\":\"https://namespaceV6umnflt.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8?api-version=2022-01-01-preview+39": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt?api-version=2022-10-01-preview+39": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "385" ], - "x-ms-client-request-id": [ "a4f74130-e40a-41ae-bc36-04fdf1c0ca90" ], + "x-ms-unique-id": [ "376" ], + "x-ms-client-request-id": [ "56cc31b0-7956-454c-bba1-fa60f3e427fa" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1583,35 +1583,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "33f5005b-aeae-4400-9dd8-2e696ce7cb4b_M4SN1_M4SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "232d0fd5-ac4d-4f65-a23b-51930b05b6fe_M4CH3_M4CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11967" ], - "x-ms-correlation-request-id": [ "fd8ef1ba-69ee-4b8d-ab52-9b8867171809" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T110904Z:fd8ef1ba-69ee-4b8d-ab52-9b8867171809" ], + "x-ms-correlation-request-id": [ "65b2bdab-ff43-42f3-b09b-c9c27c915f66" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T142610Z:65b2bdab-ff43-42f3-b09b-c9c27c915f66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:09:04 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:26:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1101" ], + "Content-Length": [ "1132" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8\",\"name\":\"namespaceV6ne2fd8\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev6ne2fd8\",\"createdAt\":\"2022-11-24T11:04:31.39Z\",\"updatedAt\":\"2022-11-24T11:05:42.727Z\",\"serviceBusEndpoint\":\"https://namespaceV6ne2fd8.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt\",\"name\":\"namespaceV6umnflt\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev6umnflt\",\"createdAt\":\"2023-02-19T14:21:33.51Z\",\"updatedAt\":\"2023-02-19T14:22:50.437Z\",\"serviceBusEndpoint\":\"https://namespaceV6umnflt.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8?api-version=2022-01-01-preview+40": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt?api-version=2022-10-01-preview+40": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "386" ], - "x-ms-client-request-id": [ "a4f74130-e40a-41ae-bc36-04fdf1c0ca90" ], + "x-ms-unique-id": [ "377" ], + "x-ms-client-request-id": [ "56cc31b0-7956-454c-bba1-fa60f3e427fa" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1625,35 +1625,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "287e5bf5-0f0d-42f3-bfc1-dfb66749c334_M2SN1_M2SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "9c49efbd-4f5d-4f4d-a750-ba6e1902a319_M4CH3_M4CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11966" ], - "x-ms-correlation-request-id": [ "ab8777a9-3bf7-4aaf-9017-abdb4b367e94" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T110935Z:ab8777a9-3bf7-4aaf-9017-abdb4b367e94" ], + "x-ms-correlation-request-id": [ "e5aad1c5-cf3f-480c-a95e-440cd386ce2e" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T142641Z:e5aad1c5-cf3f-480c-a95e-440cd386ce2e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:09:34 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:26:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1101" ], + "Content-Length": [ "1132" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8\",\"name\":\"namespaceV6ne2fd8\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev6ne2fd8\",\"createdAt\":\"2022-11-24T11:04:31.39Z\",\"updatedAt\":\"2022-11-24T11:05:42.727Z\",\"serviceBusEndpoint\":\"https://namespaceV6ne2fd8.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt\",\"name\":\"namespaceV6umnflt\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev6umnflt\",\"createdAt\":\"2023-02-19T14:21:33.51Z\",\"updatedAt\":\"2023-02-19T14:22:50.437Z\",\"serviceBusEndpoint\":\"https://namespaceV6umnflt.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8?api-version=2022-01-01-preview+41": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt?api-version=2022-10-01-preview+41": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "387" ], - "x-ms-client-request-id": [ "a4f74130-e40a-41ae-bc36-04fdf1c0ca90" ], + "x-ms-unique-id": [ "378" ], + "x-ms-client-request-id": [ "56cc31b0-7956-454c-bba1-fa60f3e427fa" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1667,35 +1667,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "b8441454-c55f-4cdc-b3e5-a89534e480d3_M2SN1_M2SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "afd3a88e-9368-4916-b349-3d6c5e13b04a_M4CH3_M4CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11965" ], - "x-ms-correlation-request-id": [ "9c2e1cc7-db34-4e81-93e8-210ee719b989" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111005Z:9c2e1cc7-db34-4e81-93e8-210ee719b989" ], + "x-ms-correlation-request-id": [ "1a729e36-f156-4f3b-a009-08657f610ca8" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T142711Z:1a729e36-f156-4f3b-a009-08657f610ca8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:10:04 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:27:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1101" ], + "Content-Length": [ "1132" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8\",\"name\":\"namespaceV6ne2fd8\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev6ne2fd8\",\"createdAt\":\"2022-11-24T11:04:31.39Z\",\"updatedAt\":\"2022-11-24T11:05:42.727Z\",\"serviceBusEndpoint\":\"https://namespaceV6ne2fd8.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt\",\"name\":\"namespaceV6umnflt\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev6umnflt\",\"createdAt\":\"2023-02-19T14:21:33.51Z\",\"updatedAt\":\"2023-02-19T14:22:50.437Z\",\"serviceBusEndpoint\":\"https://namespaceV6umnflt.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8?api-version=2022-01-01-preview+42": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt?api-version=2022-10-01-preview+42": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "388" ], - "x-ms-client-request-id": [ "a4f74130-e40a-41ae-bc36-04fdf1c0ca90" ], + "x-ms-unique-id": [ "379" ], + "x-ms-client-request-id": [ "56cc31b0-7956-454c-bba1-fa60f3e427fa" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1709,35 +1709,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "ede63845-c1cd-4d64-90da-5acc40d10b75_M2SN1_M2SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "6dc35fa2-59c5-4b7e-8ea1-59e3046db92d_M2CH3_M2CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11964" ], - "x-ms-correlation-request-id": [ "fcd5ccea-9f70-4b56-b596-784de6242fd3" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111035Z:fcd5ccea-9f70-4b56-b596-784de6242fd3" ], + "x-ms-correlation-request-id": [ "5c81f496-de7e-4582-b1b3-d03e4d7c2e87" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T142742Z:5c81f496-de7e-4582-b1b3-d03e4d7c2e87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:10:35 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:27:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1101" ], + "Content-Length": [ "1132" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8\",\"name\":\"namespaceV6ne2fd8\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev6ne2fd8\",\"createdAt\":\"2022-11-24T11:04:31.39Z\",\"updatedAt\":\"2022-11-24T11:05:42.727Z\",\"serviceBusEndpoint\":\"https://namespaceV6ne2fd8.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt\",\"name\":\"namespaceV6umnflt\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev6umnflt\",\"createdAt\":\"2023-02-19T14:21:33.51Z\",\"updatedAt\":\"2023-02-19T14:22:50.437Z\",\"serviceBusEndpoint\":\"https://namespaceV6umnflt.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8?api-version=2022-01-01-preview+43": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt?api-version=2022-10-01-preview+43": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "389" ], - "x-ms-client-request-id": [ "a4f74130-e40a-41ae-bc36-04fdf1c0ca90" ], + "x-ms-unique-id": [ "380" ], + "x-ms-client-request-id": [ "56cc31b0-7956-454c-bba1-fa60f3e427fa" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1751,35 +1751,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "32204e4c-4832-451b-afbb-92788398c691_M2SN1_M2SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "12698825-4f5d-454b-9f0d-107d32a59042_M5CH3_M5CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11963" ], - "x-ms-correlation-request-id": [ "6ab57e88-e41d-4214-85d8-07fc58c5a1d5" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111106Z:6ab57e88-e41d-4214-85d8-07fc58c5a1d5" ], + "x-ms-correlation-request-id": [ "33971b1c-e705-4af1-a21b-31c5d01566cf" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T142813Z:33971b1c-e705-4af1-a21b-31c5d01566cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:11:05 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:28:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1101" ], + "Content-Length": [ "1132" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8\",\"name\":\"namespaceV6ne2fd8\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev6ne2fd8\",\"createdAt\":\"2022-11-24T11:04:31.39Z\",\"updatedAt\":\"2022-11-24T11:05:42.727Z\",\"serviceBusEndpoint\":\"https://namespaceV6ne2fd8.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt\",\"name\":\"namespaceV6umnflt\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"ActivatingIdentity\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev6umnflt\",\"createdAt\":\"2023-02-19T14:21:33.51Z\",\"updatedAt\":\"2023-02-19T14:22:50.437Z\",\"serviceBusEndpoint\":\"https://namespaceV6umnflt.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8?api-version=2022-01-01-preview+44": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt?api-version=2022-10-01-preview+44": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "390" ], - "x-ms-client-request-id": [ "a4f74130-e40a-41ae-bc36-04fdf1c0ca90" ], + "x-ms-unique-id": [ "381" ], + "x-ms-client-request-id": [ "56cc31b0-7956-454c-bba1-fa60f3e427fa" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1793,35 +1793,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "304d25ec-95c0-482e-869b-537aa6f2dbd0_M2SN1_M2SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "37d9f33e-54da-4e61-ac57-e6b75f681da0_M6CH3_M6CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11962" ], - "x-ms-correlation-request-id": [ "d0e88402-022f-43d7-aec6-a1d4707e5d3c" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111136Z:d0e88402-022f-43d7-aec6-a1d4707e5d3c" ], + "x-ms-correlation-request-id": [ "68ee37e2-2563-4fbc-a949-459973261abf" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T142844Z:68ee37e2-2563-4fbc-a949-459973261abf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:11:35 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:28:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1295" ], + "Content-Length": [ "1326" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8\",\"name\":\"namespaceV6ne2fd8\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{\"clientId\":\"38a989a1-3fab-4015-b546-cbcf7a67aa89\",\"principalId\":\"624205aa-192c-4303-9606-990d06cbd997\"},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{\"clientId\":\"440d7336-c408-4327-ad13-10a4e71aad64\",\"principalId\":\"1bdb6af0-4284-47f4-b049-94aa2868d90b\"}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev6ne2fd8\",\"createdAt\":\"2022-11-24T11:04:31.39Z\",\"updatedAt\":\"2022-11-24T11:11:35.67Z\",\"serviceBusEndpoint\":\"https://namespaceV6ne2fd8.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt\",\"name\":\"namespaceV6umnflt\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{\"clientId\":\"38a989a1-3fab-4015-b546-cbcf7a67aa89\",\"principalId\":\"624205aa-192c-4303-9606-990d06cbd997\"},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{\"clientId\":\"440d7336-c408-4327-ad13-10a4e71aad64\",\"principalId\":\"1bdb6af0-4284-47f4-b049-94aa2868d90b\"}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev6umnflt\",\"createdAt\":\"2023-02-19T14:21:33.51Z\",\"updatedAt\":\"2023-02-19T14:28:39.93Z\",\"serviceBusEndpoint\":\"https://namespaceV6umnflt.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8?api-version=2022-01-01-preview+45": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt?api-version=2022-10-01-preview+45": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "391" ], - "x-ms-client-request-id": [ "a4f74130-e40a-41ae-bc36-04fdf1c0ca90" ], + "x-ms-unique-id": [ "382" ], + "x-ms-client-request-id": [ "56cc31b0-7956-454c-bba1-fa60f3e427fa" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateExpanded" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1835,34 +1835,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "492203eb-37b0-47c0-9641-403862099b0c_M2SN1_M2SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "06b13c7c-0294-4ecd-9087-10303ec7fd96_M6CH3_M6CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11961" ], - "x-ms-correlation-request-id": [ "cce58bc1-b0b9-42b6-ae87-cdb2eea5ccb1" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111136Z:cce58bc1-b0b9-42b6-ae87-cdb2eea5ccb1" ], + "x-ms-correlation-request-id": [ "fc0e93e1-32cc-411a-ac01-8ef1a65cc56c" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T142844Z:fc0e93e1-32cc-411a-ac01-8ef1a65cc56c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:11:36 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:28:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1295" ], + "Content-Length": [ "1326" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8\",\"name\":\"namespaceV6ne2fd8\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{\"clientId\":\"38a989a1-3fab-4015-b546-cbcf7a67aa89\",\"principalId\":\"624205aa-192c-4303-9606-990d06cbd997\"},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{\"clientId\":\"440d7336-c408-4327-ad13-10a4e71aad64\",\"principalId\":\"1bdb6af0-4284-47f4-b049-94aa2868d90b\"}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev6ne2fd8\",\"createdAt\":\"2022-11-24T11:04:31.39Z\",\"updatedAt\":\"2022-11-24T11:11:35.67Z\",\"serviceBusEndpoint\":\"https://namespaceV6ne2fd8.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt\",\"name\":\"namespaceV6umnflt\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{\"clientId\":\"38a989a1-3fab-4015-b546-cbcf7a67aa89\",\"principalId\":\"624205aa-192c-4303-9606-990d06cbd997\"},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{\"clientId\":\"440d7336-c408-4327-ad13-10a4e71aad64\",\"principalId\":\"1bdb6af0-4284-47f4-b049-94aa2868d90b\"}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev6umnflt\",\"createdAt\":\"2023-02-19T14:21:33.51Z\",\"updatedAt\":\"2023-02-19T14:28:39.93Z\",\"serviceBusEndpoint\":\"https://namespaceV6umnflt.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8?api-version=2022-01-01-preview+46": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt?api-version=2022-10-01-preview+46": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "392" ], - "x-ms-client-request-id": [ "c04117d9-9238-4ad6-87a4-dbdf61012a78" ], + "x-ms-unique-id": [ "383" ], + "x-ms-client-request-id": [ "c92ead31-1f84-4d5a-87ce-1e5a0b9a7ce0" ], "CommandName": [ "Get-AzServiceBusNamespaceV2" ], "FullCommandName": [ "Get-AzServiceBusNamespaceV2_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1877,36 +1877,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "ad84e1a5-c8a9-4a44-b53b-e181769fad22_M2SN1_M2SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "7d7c75a6-bcb4-40dd-a70d-85366911e06f_M6CH3_M6CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11960" ], - "x-ms-correlation-request-id": [ "2c09744e-2625-4064-8ab9-7d806144abd5" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111137Z:2c09744e-2625-4064-8ab9-7d806144abd5" ], + "x-ms-correlation-request-id": [ "6b707be0-21da-44e4-85fe-2a475f23cf22" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T142845Z:6b707be0-21da-44e4-85fe-2a475f23cf22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:11:36 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:28:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1295" ], + "Content-Length": [ "1326" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8\",\"name\":\"namespaceV6ne2fd8\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{\"clientId\":\"38a989a1-3fab-4015-b546-cbcf7a67aa89\",\"principalId\":\"624205aa-192c-4303-9606-990d06cbd997\"},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{\"clientId\":\"440d7336-c408-4327-ad13-10a4e71aad64\",\"principalId\":\"1bdb6af0-4284-47f4-b049-94aa2868d90b\"}}},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev6ne2fd8\",\"createdAt\":\"2022-11-24T11:04:31.39Z\",\"updatedAt\":\"2022-11-24T11:11:35.67Z\",\"serviceBusEndpoint\":\"https://namespaceV6ne2fd8.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt\",\"name\":\"namespaceV6umnflt\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1\":{\"clientId\":\"38a989a1-3fab-4015-b546-cbcf7a67aa89\",\"principalId\":\"624205aa-192c-4303-9606-990d06cbd997\"},\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2\":{\"clientId\":\"440d7336-c408-4327-ad13-10a4e71aad64\",\"principalId\":\"1bdb6af0-4284-47f4-b049-94aa2868d90b\"}}},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev6umnflt\",\"createdAt\":\"2023-02-19T14:21:33.51Z\",\"updatedAt\":\"2023-02-19T14:28:39.93Z\",\"serviceBusEndpoint\":\"https://namespaceV6umnflt.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8?api-version=2022-01-01-preview+47": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt?api-version=2022-10-01-preview+47": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8?api-version=2022-01-01-preview", - "Content": "{\n \"location\": \"North Europe\",\n \"sku\": {\n \"name\": \"Premium\",\n \"tier\": \"Premium\",\n \"capacity\": 1\n },\n \"identity\": {\n \"type\": \"None\"\n },\n \"properties\": {\n \"minimumTlsVersion\": \"1.2\",\n \"zoneRedundant\": false,\n \"disableLocalAuth\": false,\n \"publicNetworkAccess\": \"Enabled\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt?api-version=2022-10-01-preview", + "Content": "{\n \"location\": \"North Europe\",\n \"sku\": {\n \"name\": \"Premium\",\n \"tier\": \"Premium\",\n \"capacity\": 1\n },\n \"identity\": {\n \"type\": \"None\"\n },\n \"properties\": {\n \"minimumTlsVersion\": \"1.2\",\n \"zoneRedundant\": false,\n \"disableLocalAuth\": false,\n \"publicNetworkAccess\": \"Enabled\",\n \"premiumMessagingPartitions\": 1\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "303" ] + "Content-Length": [ "340" ] } }, "Response": { @@ -1914,35 +1914,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "66ab1c9c-843a-49bd-bd45-b42f8aebc2ba_M2SN1_M2SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "95e89cce-3be5-43dc-8072-63878067f7f7_M6CH3_M6CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1192" ], - "x-ms-correlation-request-id": [ "93b5bbca-2eb7-4dc9-9365-3fa187ac9b43" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111146Z:93b5bbca-2eb7-4dc9-9365-3fa187ac9b43" ], + "x-ms-correlation-request-id": [ "1811de12-f812-4b6b-9f86-1aaa51946638" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T142856Z:1811de12-f812-4b6b-9f86-1aaa51946638" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:11:45 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:28:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "716" ], + "Content-Length": [ "747" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8\",\"name\":\"namespaceV6ne2fd8\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Updating\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev6ne2fd8\",\"createdAt\":\"2022-11-24T11:04:31.39Z\",\"updatedAt\":\"2022-11-24T11:11:45.32Z\",\"serviceBusEndpoint\":\"https://namespaceV6ne2fd8.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt\",\"name\":\"namespaceV6umnflt\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Updating\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev6umnflt\",\"createdAt\":\"2023-02-19T14:21:33.51Z\",\"updatedAt\":\"2023-02-19T14:28:53.75Z\",\"serviceBusEndpoint\":\"https://namespaceV6umnflt.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8?api-version=2022-01-01-preview+48": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt?api-version=2022-10-01-preview+48": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "394" ], - "x-ms-client-request-id": [ "262d4873-f565-4c31-bb3f-2c4e31a76af3" ], + "x-ms-unique-id": [ "385" ], + "x-ms-client-request-id": [ "7ef4e1aa-baef-4fff-babe-8e56b3eaedf8" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1956,35 +1956,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "404ed9dc-2cfa-48b5-902f-67fb8de2fb22_M2SN1_M2SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "3eb58115-0f94-475d-ab24-b1e36347a4f7_M4CH3_M4CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11959" ], - "x-ms-correlation-request-id": [ "ea347f5a-2704-4f96-aec1-9b15fb4a9567" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111217Z:ea347f5a-2704-4f96-aec1-9b15fb4a9567" ], + "x-ms-correlation-request-id": [ "246a26fa-553e-44f7-8c92-e8b1dad463da" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T142926Z:246a26fa-553e-44f7-8c92-e8b1dad463da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:12:16 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:29:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "714" ], + "Content-Length": [ "745" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8\",\"name\":\"namespaceV6ne2fd8\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev6ne2fd8\",\"createdAt\":\"2022-11-24T11:04:31.39Z\",\"updatedAt\":\"2022-11-24T11:11:49.697Z\",\"serviceBusEndpoint\":\"https://namespaceV6ne2fd8.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt\",\"name\":\"namespaceV6umnflt\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev6umnflt\",\"createdAt\":\"2023-02-19T14:21:33.51Z\",\"updatedAt\":\"2023-02-19T14:28:56.253Z\",\"serviceBusEndpoint\":\"https://namespaceV6umnflt.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8?api-version=2022-01-01-preview+49": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt?api-version=2022-10-01-preview+49": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "395" ], - "x-ms-client-request-id": [ "262d4873-f565-4c31-bb3f-2c4e31a76af3" ], + "x-ms-unique-id": [ "386" ], + "x-ms-client-request-id": [ "7ef4e1aa-baef-4fff-babe-8e56b3eaedf8" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1998,34 +1998,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "9c695df9-46a4-44a4-bccc-1f307d67c6bd_M2SN1_M2SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "7c0057ac-9c6a-4e64-a303-3f5bd4158314_M4CH3_M4CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11958" ], - "x-ms-correlation-request-id": [ "ffb6e5c5-1e18-4dbc-b463-1fdb37896e97" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111217Z:ffb6e5c5-1e18-4dbc-b463-1fdb37896e97" ], + "x-ms-correlation-request-id": [ "9bacb5fe-af19-4f33-8923-67162b00b693" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T142927Z:9bacb5fe-af19-4f33-8923-67162b00b693" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:12:17 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:29:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "714" ], + "Content-Length": [ "745" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV6ne2fd8\",\"name\":\"namespaceV6ne2fd8\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev6ne2fd8\",\"createdAt\":\"2022-11-24T11:04:31.39Z\",\"updatedAt\":\"2022-11-24T11:11:49.697Z\",\"serviceBusEndpoint\":\"https://namespaceV6ne2fd8.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV6umnflt\",\"name\":\"namespaceV6umnflt\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"North Europe\",\"tags\":{},\"properties\":{\"premiumMessagingPartitions\":1,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev6umnflt\",\"createdAt\":\"2023-02-19T14:21:33.51Z\",\"updatedAt\":\"2023-02-19T14:28:56.253Z\",\"serviceBusEndpoint\":\"https://namespaceV6umnflt.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview+1": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "396" ], - "x-ms-client-request-id": [ "17354d8d-aa2f-4b86-a150-877c0dd7f3e7" ], + "x-ms-unique-id": [ "387" ], + "x-ms-client-request-id": [ "d3235f9e-0bba-4d50-a6a7-6583a9b3df66" ], "CommandName": [ "Get-AzServiceBusNamespaceV2" ], "FullCommandName": [ "Get-AzServiceBusNamespaceV2_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2040,34 +2040,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "0a8d6f70-9209-4edf-b3a8-664fcb82ce1b_M2SN1_M2SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "83bbc460-b546-4dda-a607-5df3af1dcbca_M4CH3_M4CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11957" ], - "x-ms-correlation-request-id": [ "c18832a5-938f-4c90-890b-bb60352bd3f0" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111217Z:c18832a5-938f-4c90-890b-bb60352bd3f0" ], + "x-ms-correlation-request-id": [ "d8134670-4ec9-49f8-8817-7fd69604216f" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T142927Z:d8134670-4ec9-49f8-8817-7fd69604216f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:12:17 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:29:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "725" ], + "Content-Length": [ "756" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u\",\"name\":\"namespaceV3mt0g8u\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k1\":\"v1\",\"k2\":\"v2\"},\"properties\":{\"minimumTlsVersion\":\"1.1\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3mt0g8u\",\"createdAt\":\"2022-11-24T10:03:49.013Z\",\"updatedAt\":\"2022-11-24T10:04:31.46Z\",\"serviceBusEndpoint\":\"https://namespaceV3mt0g8u.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui\",\"name\":\"namespaceV3279pui\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k2\":\"v2\",\"k1\":\"v1\"},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.1\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3279pui\",\"createdAt\":\"2023-02-19T13:22:36.43Z\",\"updatedAt\":\"2023-02-19T13:23:20.603Z\",\"serviceBusEndpoint\":\"https://namespaceV3279pui.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview+2": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "397" ], - "x-ms-client-request-id": [ "e27e348e-77d4-4991-938f-377bcca126e4" ], + "x-ms-unique-id": [ "388" ], + "x-ms-client-request-id": [ "4b4fc362-203a-4fcd-8342-20f4a96f4741" ], "CommandName": [ "Get-AzServiceBusNamespaceV2" ], "FullCommandName": [ "Get-AzServiceBusNamespaceV2_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2082,36 +2082,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "3ffb715b-7729-4a68-8744-6491cd00ae42_M2SN1_M2SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "c03036a2-e97f-45da-bc3f-de6b1a723e32_M4CH3_M4CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11956" ], - "x-ms-correlation-request-id": [ "76864f7f-bf69-45e9-9ff9-f910c2afcfe5" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111218Z:76864f7f-bf69-45e9-9ff9-f910c2afcfe5" ], + "x-ms-correlation-request-id": [ "df3888f9-ceb7-4033-a1d3-a381df4b481e" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T142928Z:df3888f9-ceb7-4033-a1d3-a381df4b481e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:12:18 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:29:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "725" ], + "Content-Length": [ "756" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u\",\"name\":\"namespaceV3mt0g8u\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k1\":\"v1\",\"k2\":\"v2\"},\"properties\":{\"minimumTlsVersion\":\"1.1\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3mt0g8u\",\"createdAt\":\"2022-11-24T10:03:49.013Z\",\"updatedAt\":\"2022-11-24T10:04:31.46Z\",\"serviceBusEndpoint\":\"https://namespaceV3mt0g8u.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui\",\"name\":\"namespaceV3279pui\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k2\":\"v2\",\"k1\":\"v1\"},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.1\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3279pui\",\"createdAt\":\"2023-02-19T13:22:36.43Z\",\"updatedAt\":\"2023-02-19T13:23:20.603Z\",\"serviceBusEndpoint\":\"https://namespaceV3279pui.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview+3": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview+3": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview", - "Content": "{\n \"location\": \"South Central US\",\n \"tags\": {\n \"k1\": \"v1\",\n \"k2\": \"v2\"\n },\n \"sku\": {\n \"name\": \"Standard\",\n \"tier\": \"Standard\"\n },\n \"properties\": {\n \"minimumTlsVersion\": \"1.1\",\n \"zoneRedundant\": false,\n \"disableLocalAuth\": true,\n \"publicNetworkAccess\": \"Enabled\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview", + "Content": "{\n \"location\": \"South Central US\",\n \"tags\": {\n \"k2\": \"v2\",\n \"k1\": \"v1\"\n },\n \"sku\": {\n \"name\": \"Standard\",\n \"tier\": \"Standard\"\n },\n \"properties\": {\n \"minimumTlsVersion\": \"1.1\",\n \"zoneRedundant\": false,\n \"disableLocalAuth\": true,\n \"publicNetworkAccess\": \"Enabled\",\n \"premiumMessagingPartitions\": 0\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "297" ] + "Content-Length": [ "334" ] } }, "Response": { @@ -2119,35 +2119,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "3fd2913d-9056-402b-843d-0a504a5a4f5b_M2SN1_M2SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "c619b991-1523-4bdb-b9c5-6b145d178921_M4CH3_M4CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1191" ], - "x-ms-correlation-request-id": [ "f5a26ba6-9bd2-448d-8b6d-6c6805f1c68c" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111227Z:f5a26ba6-9bd2-448d-8b6d-6c6805f1c68c" ], + "x-ms-correlation-request-id": [ "99765e84-becc-46aa-a69e-ac16ecccbce1" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T142938Z:99765e84-becc-46aa-a69e-ac16ecccbce1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:12:27 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:29:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "729" ], + "Content-Length": [ "759" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u\",\"name\":\"namespaceV3mt0g8u\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k1\":\"v1\",\"k2\":\"v2\"},\"properties\":{\"minimumTlsVersion\":\"1.1\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Updating\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3mt0g8u\",\"createdAt\":\"2022-11-24T10:03:49.013Z\",\"updatedAt\":\"2022-11-24T11:12:25.033Z\",\"serviceBusEndpoint\":\"https://namespaceV3mt0g8u.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", + "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui\",\"name\":\"namespaceV3279pui\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k2\":\"v2\",\"k1\":\"v1\"},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.1\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Updating\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3279pui\",\"createdAt\":\"2023-02-19T13:22:36.43Z\",\"updatedAt\":\"2023-02-19T14:29:34.793Z\",\"serviceBusEndpoint\":\"https://namespaceV3279pui.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview+4": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "399" ], - "x-ms-client-request-id": [ "ed0b3e80-4df2-4bba-b5e7-98e0444494b5" ], + "x-ms-unique-id": [ "390" ], + "x-ms-client-request-id": [ "7adf733e-4a51-4a83-b75f-b24bb530831a" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2161,35 +2161,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "dbee747a-5fda-4e56-a657-bbcd6dc00b55_M2SN1_M2SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "d7ad015d-e53e-4c6c-8fb3-8bbf9ca0f275_M0CH3_M0CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11955" ], - "x-ms-correlation-request-id": [ "9523c3fb-c47e-48e2-a7d9-188ac9570369" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111258Z:9523c3fb-c47e-48e2-a7d9-188ac9570369" ], + "x-ms-correlation-request-id": [ "2fe88fd1-de20-434f-87bb-4ecb3bd7eb69" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143010Z:2fe88fd1-de20-434f-87bb-4ecb3bd7eb69" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:12:57 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:30:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "726" ], + "Content-Length": [ "756" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u\",\"name\":\"namespaceV3mt0g8u\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k1\":\"v1\",\"k2\":\"v2\"},\"properties\":{\"minimumTlsVersion\":\"1.1\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3mt0g8u\",\"createdAt\":\"2022-11-24T10:03:49.013Z\",\"updatedAt\":\"2022-11-24T11:12:27.157Z\",\"serviceBusEndpoint\":\"https://namespaceV3mt0g8u.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui\",\"name\":\"namespaceV3279pui\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k2\":\"v2\",\"k1\":\"v1\"},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.1\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3279pui\",\"createdAt\":\"2023-02-19T13:22:36.43Z\",\"updatedAt\":\"2023-02-19T14:29:35.583Z\",\"serviceBusEndpoint\":\"https://namespaceV3279pui.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview+5": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "400" ], - "x-ms-client-request-id": [ "ed0b3e80-4df2-4bba-b5e7-98e0444494b5" ], + "x-ms-unique-id": [ "391" ], + "x-ms-client-request-id": [ "7adf733e-4a51-4a83-b75f-b24bb530831a" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2203,34 +2203,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "7c6bf999-b010-4f40-a0b3-db8ab525ef61_M2SN1_M2SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "eeb334c2-32f7-4da4-a553-52588e606fd3_M0CH3_M0CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11954" ], - "x-ms-correlation-request-id": [ "af1c53fd-0571-49f9-bc37-2beaba1c278a" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111259Z:af1c53fd-0571-49f9-bc37-2beaba1c278a" ], + "x-ms-correlation-request-id": [ "6bd1339f-d109-49f0-bf88-a2fdf53cbafe" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143011Z:6bd1339f-d109-49f0-bf88-a2fdf53cbafe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:12:58 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:30:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "726" ], + "Content-Length": [ "756" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u\",\"name\":\"namespaceV3mt0g8u\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k1\":\"v1\",\"k2\":\"v2\"},\"properties\":{\"minimumTlsVersion\":\"1.1\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3mt0g8u\",\"createdAt\":\"2022-11-24T10:03:49.013Z\",\"updatedAt\":\"2022-11-24T11:12:27.157Z\",\"serviceBusEndpoint\":\"https://namespaceV3mt0g8u.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui\",\"name\":\"namespaceV3279pui\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k2\":\"v2\",\"k1\":\"v1\"},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.1\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3279pui\",\"createdAt\":\"2023-02-19T13:22:36.43Z\",\"updatedAt\":\"2023-02-19T14:29:35.583Z\",\"serviceBusEndpoint\":\"https://namespaceV3279pui.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview+6": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "401" ], - "x-ms-client-request-id": [ "2520375a-1be8-4e60-a673-61af98cbf29a" ], + "x-ms-unique-id": [ "392" ], + "x-ms-client-request-id": [ "6b373e60-9834-4603-b31d-ceca2a79738e" ], "CommandName": [ "Get-AzServiceBusNamespaceV2" ], "FullCommandName": [ "Get-AzServiceBusNamespaceV2_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2245,36 +2245,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "764070a0-a466-40a5-9856-499e91cbbf74_M2SN1_M2SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "1d2f1b25-54bb-4d53-96c7-d0eee02934da_M0CH3_M0CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11953" ], - "x-ms-correlation-request-id": [ "9ba0fbd2-e1c7-4db8-9082-9ffbb02195a9" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111259Z:9ba0fbd2-e1c7-4db8-9082-9ffbb02195a9" ], + "x-ms-correlation-request-id": [ "a7ede2ea-dd47-4e64-9af3-204de7c9a209" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143013Z:a7ede2ea-dd47-4e64-9af3-204de7c9a209" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:12:58 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:30:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "726" ], + "Content-Length": [ "756" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u\",\"name\":\"namespaceV3mt0g8u\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k1\":\"v1\",\"k2\":\"v2\"},\"properties\":{\"minimumTlsVersion\":\"1.1\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3mt0g8u\",\"createdAt\":\"2022-11-24T10:03:49.013Z\",\"updatedAt\":\"2022-11-24T11:12:27.157Z\",\"serviceBusEndpoint\":\"https://namespaceV3mt0g8u.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui\",\"name\":\"namespaceV3279pui\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k2\":\"v2\",\"k1\":\"v1\"},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.1\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3279pui\",\"createdAt\":\"2023-02-19T13:22:36.43Z\",\"updatedAt\":\"2023-02-19T14:29:35.583Z\",\"serviceBusEndpoint\":\"https://namespaceV3279pui.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview+7": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview+7": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview", - "Content": "{\n \"location\": \"South Central US\",\n \"tags\": {\n \"k1\": \"v1\",\n \"k2\": \"v2\"\n },\n \"sku\": {\n \"name\": \"Standard\",\n \"tier\": \"Standard\"\n },\n \"properties\": {\n \"minimumTlsVersion\": \"1.0\",\n \"zoneRedundant\": false,\n \"disableLocalAuth\": true,\n \"publicNetworkAccess\": \"Enabled\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview", + "Content": "{\n \"location\": \"South Central US\",\n \"tags\": {\n \"k2\": \"v2\",\n \"k1\": \"v1\"\n },\n \"sku\": {\n \"name\": \"Standard\",\n \"tier\": \"Standard\"\n },\n \"properties\": {\n \"minimumTlsVersion\": \"1.0\",\n \"zoneRedundant\": false,\n \"disableLocalAuth\": true,\n \"publicNetworkAccess\": \"Enabled\",\n \"premiumMessagingPartitions\": 0\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "297" ] + "Content-Length": [ "334" ] } }, "Response": { @@ -2282,35 +2282,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "e57a352d-9a31-4afb-89e6-11b10b58e52d_M2SN1_M2SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "f5e3a2a2-ea7b-4582-a173-4a06c0e4c562_M0CH3_M0CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1190" ], - "x-ms-correlation-request-id": [ "23dda27d-f29a-4f14-be18-75bdb598145d" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111306Z:23dda27d-f29a-4f14-be18-75bdb598145d" ], + "x-ms-correlation-request-id": [ "507c8571-a45d-4c59-a5c8-73b0c9855c5e" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143021Z:507c8571-a45d-4c59-a5c8-73b0c9855c5e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:13:05 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:30:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "729" ], + "Content-Length": [ "759" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u\",\"name\":\"namespaceV3mt0g8u\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k1\":\"v1\",\"k2\":\"v2\"},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Updating\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3mt0g8u\",\"createdAt\":\"2022-11-24T10:03:49.013Z\",\"updatedAt\":\"2022-11-24T11:13:05.757Z\",\"serviceBusEndpoint\":\"https://namespaceV3mt0g8u.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", + "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui\",\"name\":\"namespaceV3279pui\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k2\":\"v2\",\"k1\":\"v1\"},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Updating\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3279pui\",\"createdAt\":\"2023-02-19T13:22:36.43Z\",\"updatedAt\":\"2023-02-19T14:30:20.127Z\",\"serviceBusEndpoint\":\"https://namespaceV3279pui.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview+8": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "403" ], - "x-ms-client-request-id": [ "170e7a91-200e-40cb-9068-b81cea794fdb" ], + "x-ms-unique-id": [ "394" ], + "x-ms-client-request-id": [ "fc74db4b-9570-470e-9c96-ca6c35b6c945" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2324,35 +2324,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "5b4c0a3c-a707-4519-b54f-ebeb544c45c5_M4SN1_M4SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "7aaeb06b-fb24-4931-9172-484f3d5d569f_M0CH3_M0CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11952" ], - "x-ms-correlation-request-id": [ "06c5c74d-96b1-443a-a145-abf0626ca038" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111336Z:06c5c74d-96b1-443a-a145-abf0626ca038" ], + "x-ms-correlation-request-id": [ "0f61b44f-dd09-4382-b601-e075a01b82c5" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143051Z:0f61b44f-dd09-4382-b601-e075a01b82c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:13:36 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:30:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "725" ], + "Content-Length": [ "755" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u\",\"name\":\"namespaceV3mt0g8u\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k1\":\"v1\",\"k2\":\"v2\"},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3mt0g8u\",\"createdAt\":\"2022-11-24T10:03:49.013Z\",\"updatedAt\":\"2022-11-24T11:13:09.27Z\",\"serviceBusEndpoint\":\"https://namespaceV3mt0g8u.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui\",\"name\":\"namespaceV3279pui\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k2\":\"v2\",\"k1\":\"v1\"},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3279pui\",\"createdAt\":\"2023-02-19T13:22:36.43Z\",\"updatedAt\":\"2023-02-19T14:30:21.51Z\",\"serviceBusEndpoint\":\"https://namespaceV3279pui.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview+9": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "404" ], - "x-ms-client-request-id": [ "170e7a91-200e-40cb-9068-b81cea794fdb" ], + "x-ms-unique-id": [ "395" ], + "x-ms-client-request-id": [ "fc74db4b-9570-470e-9c96-ca6c35b6c945" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2366,34 +2366,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "abd0e1e6-19d0-429e-8e0e-72c8c136cf53_M3SN1_M3SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "cb234c1c-42d5-40ae-988e-d7c4af1ce5b6_M0CH3_M0CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11951" ], - "x-ms-correlation-request-id": [ "4463cd20-8e8d-4a5e-b16e-2c36d7ab1c8b" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111336Z:4463cd20-8e8d-4a5e-b16e-2c36d7ab1c8b" ], + "x-ms-correlation-request-id": [ "dd316a1e-ca2e-454f-9fe2-44dd285194a9" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143052Z:dd316a1e-ca2e-454f-9fe2-44dd285194a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:13:36 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:30:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "725" ], + "Content-Length": [ "755" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u\",\"name\":\"namespaceV3mt0g8u\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k1\":\"v1\",\"k2\":\"v2\"},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3mt0g8u\",\"createdAt\":\"2022-11-24T10:03:49.013Z\",\"updatedAt\":\"2022-11-24T11:13:09.27Z\",\"serviceBusEndpoint\":\"https://namespaceV3mt0g8u.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui\",\"name\":\"namespaceV3279pui\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k2\":\"v2\",\"k1\":\"v1\"},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3279pui\",\"createdAt\":\"2023-02-19T13:22:36.43Z\",\"updatedAt\":\"2023-02-19T14:30:21.51Z\",\"serviceBusEndpoint\":\"https://namespaceV3279pui.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview+10": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "405" ], - "x-ms-client-request-id": [ "1af7f18d-c369-4dff-b6c3-ad7eef9dd783" ], + "x-ms-unique-id": [ "396" ], + "x-ms-client-request-id": [ "a7004b88-3b7d-4a20-b6ed-6e1519780989" ], "CommandName": [ "Get-AzServiceBusNamespaceV2" ], "FullCommandName": [ "Get-AzServiceBusNamespaceV2_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2408,36 +2408,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "6fd98417-4e74-4073-b8e4-c12064a4fabd_M3SN1_M3SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "a5f49c3d-890a-49a4-bd62-fedcbeaed4e6_M0CH3_M0CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11950" ], - "x-ms-correlation-request-id": [ "438b6921-cfb6-4e8b-bc48-bd9ab770aa7c" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111337Z:438b6921-cfb6-4e8b-bc48-bd9ab770aa7c" ], + "x-ms-correlation-request-id": [ "cc76f9c2-8213-4da1-b050-97aece38aabb" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143052Z:cc76f9c2-8213-4da1-b050-97aece38aabb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:13:37 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:30:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "725" ], + "Content-Length": [ "755" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u\",\"name\":\"namespaceV3mt0g8u\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k1\":\"v1\",\"k2\":\"v2\"},\"properties\":{\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3mt0g8u\",\"createdAt\":\"2022-11-24T10:03:49.013Z\",\"updatedAt\":\"2022-11-24T11:13:09.27Z\",\"serviceBusEndpoint\":\"https://namespaceV3mt0g8u.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui\",\"name\":\"namespaceV3279pui\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k2\":\"v2\",\"k1\":\"v1\"},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.0\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3279pui\",\"createdAt\":\"2023-02-19T13:22:36.43Z\",\"updatedAt\":\"2023-02-19T14:30:21.51Z\",\"serviceBusEndpoint\":\"https://namespaceV3279pui.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview+11": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview+11": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview", - "Content": "{\n \"location\": \"South Central US\",\n \"tags\": {\n \"k1\": \"v1\",\n \"k2\": \"v2\"\n },\n \"sku\": {\n \"name\": \"Standard\",\n \"tier\": \"Standard\"\n },\n \"properties\": {\n \"minimumTlsVersion\": \"1.2\",\n \"zoneRedundant\": false,\n \"disableLocalAuth\": true,\n \"publicNetworkAccess\": \"Enabled\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview", + "Content": "{\n \"location\": \"South Central US\",\n \"tags\": {\n \"k2\": \"v2\",\n \"k1\": \"v1\"\n },\n \"sku\": {\n \"name\": \"Standard\",\n \"tier\": \"Standard\"\n },\n \"properties\": {\n \"minimumTlsVersion\": \"1.2\",\n \"zoneRedundant\": false,\n \"disableLocalAuth\": true,\n \"publicNetworkAccess\": \"Enabled\",\n \"premiumMessagingPartitions\": 0\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "297" ] + "Content-Length": [ "334" ] } }, "Response": { @@ -2445,35 +2445,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "93c6a454-630b-4980-9f7b-a6c340f1773d_M3SN1_M3SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "0b5a6777-c3a4-47b2-b927-0077238cd2b0_M0CH3_M0CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1189" ], - "x-ms-correlation-request-id": [ "4a8c4ea3-cd8c-49c6-abfb-bca82a7cb85c" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111344Z:4a8c4ea3-cd8c-49c6-abfb-bca82a7cb85c" ], + "x-ms-correlation-request-id": [ "8016185f-2175-45f0-8cea-98f25bf47143" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143100Z:8016185f-2175-45f0-8cea-98f25bf47143" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:13:43 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:31:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "729" ], + "Content-Length": [ "759" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u\",\"name\":\"namespaceV3mt0g8u\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k1\":\"v1\",\"k2\":\"v2\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Updating\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3mt0g8u\",\"createdAt\":\"2022-11-24T10:03:49.013Z\",\"updatedAt\":\"2022-11-24T11:13:43.557Z\",\"serviceBusEndpoint\":\"https://namespaceV3mt0g8u.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", + "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui\",\"name\":\"namespaceV3279pui\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k2\":\"v2\",\"k1\":\"v1\"},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Updating\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3279pui\",\"createdAt\":\"2023-02-19T13:22:36.43Z\",\"updatedAt\":\"2023-02-19T14:30:59.433Z\",\"serviceBusEndpoint\":\"https://namespaceV3279pui.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview+12": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "407" ], - "x-ms-client-request-id": [ "624c2662-299e-4183-b7f4-171790c8d133" ], + "x-ms-unique-id": [ "398" ], + "x-ms-client-request-id": [ "0b8fb119-8807-4742-baf2-60ac89f02b94" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2487,35 +2487,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "0acfbe56-3577-4e30-a342-744cad39aa03_M3SN1_M3SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "470805d9-0084-4a95-bc7c-c834d7675fab_M0CH3_M0CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11949" ], - "x-ms-correlation-request-id": [ "683d761e-30b2-4b80-b1b9-eb0e9018d968" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111414Z:683d761e-30b2-4b80-b1b9-eb0e9018d968" ], + "x-ms-correlation-request-id": [ "7e0a08fe-9c41-4caf-aee0-b747f973c960" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143130Z:7e0a08fe-9c41-4caf-aee0-b747f973c960" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:14:14 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:31:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "726" ], + "Content-Length": [ "756" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u\",\"name\":\"namespaceV3mt0g8u\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k1\":\"v1\",\"k2\":\"v2\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3mt0g8u\",\"createdAt\":\"2022-11-24T10:03:49.013Z\",\"updatedAt\":\"2022-11-24T11:13:45.367Z\",\"serviceBusEndpoint\":\"https://namespaceV3mt0g8u.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui\",\"name\":\"namespaceV3279pui\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k2\":\"v2\",\"k1\":\"v1\"},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3279pui\",\"createdAt\":\"2023-02-19T13:22:36.43Z\",\"updatedAt\":\"2023-02-19T14:30:59.957Z\",\"serviceBusEndpoint\":\"https://namespaceV3279pui.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview+13": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "408" ], - "x-ms-client-request-id": [ "624c2662-299e-4183-b7f4-171790c8d133" ], + "x-ms-unique-id": [ "399" ], + "x-ms-client-request-id": [ "0b8fb119-8807-4742-baf2-60ac89f02b94" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2529,34 +2529,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "0527770d-de28-41ee-bfa5-c51529068a1d_M3SN1_M3SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "b56ad66f-157d-4318-a5a8-8b8fd3efd3e5_M0CH3_M0CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11948" ], - "x-ms-correlation-request-id": [ "c272fffc-5d7b-48a6-b4e3-d3d227c574bb" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111414Z:c272fffc-5d7b-48a6-b4e3-d3d227c574bb" ], + "x-ms-correlation-request-id": [ "0a494b4b-1e5c-4e04-9c0b-1627e4743e10" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143131Z:0a494b4b-1e5c-4e04-9c0b-1627e4743e10" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:14:14 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:31:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "726" ], + "Content-Length": [ "756" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u\",\"name\":\"namespaceV3mt0g8u\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k1\":\"v1\",\"k2\":\"v2\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3mt0g8u\",\"createdAt\":\"2022-11-24T10:03:49.013Z\",\"updatedAt\":\"2022-11-24T11:13:45.367Z\",\"serviceBusEndpoint\":\"https://namespaceV3mt0g8u.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui\",\"name\":\"namespaceV3279pui\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k2\":\"v2\",\"k1\":\"v1\"},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3279pui\",\"createdAt\":\"2023-02-19T13:22:36.43Z\",\"updatedAt\":\"2023-02-19T14:30:59.957Z\",\"serviceBusEndpoint\":\"https://namespaceV3279pui.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview+14": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "409" ], - "x-ms-client-request-id": [ "2f65d472-19d5-4c97-b782-b1ce30e069de" ], + "x-ms-unique-id": [ "400" ], + "x-ms-client-request-id": [ "bd37f3fd-557a-48ce-9e4b-bb3f20927a67" ], "CommandName": [ "Get-AzServiceBusNamespaceV2" ], "FullCommandName": [ "Get-AzServiceBusNamespaceV2_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2571,36 +2571,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "0f218cee-eb74-49e8-9dee-d28968af036c_M3SN1_M3SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "703713bd-c9b5-4e24-825a-c2141e8d8da1_M0CH3_M0CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11947" ], - "x-ms-correlation-request-id": [ "ed25bb05-2610-4149-ba62-16d0e8d74644" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111415Z:ed25bb05-2610-4149-ba62-16d0e8d74644" ], + "x-ms-correlation-request-id": [ "7ab0b070-d2af-49b3-b8f4-1672ab0da0ff" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143131Z:7ab0b070-d2af-49b3-b8f4-1672ab0da0ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:14:14 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:31:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "726" ], + "Content-Length": [ "756" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u\",\"name\":\"namespaceV3mt0g8u\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k1\":\"v1\",\"k2\":\"v2\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3mt0g8u\",\"createdAt\":\"2022-11-24T10:03:49.013Z\",\"updatedAt\":\"2022-11-24T11:13:45.367Z\",\"serviceBusEndpoint\":\"https://namespaceV3mt0g8u.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui\",\"name\":\"namespaceV3279pui\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k2\":\"v2\",\"k1\":\"v1\"},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3279pui\",\"createdAt\":\"2023-02-19T13:22:36.43Z\",\"updatedAt\":\"2023-02-19T14:30:59.957Z\",\"serviceBusEndpoint\":\"https://namespaceV3279pui.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview+15": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview+15": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview", - "Content": "{\n \"location\": \"South Central US\",\n \"tags\": {\n \"k1\": \"v1\",\n \"k2\": \"v2\"\n },\n \"sku\": {\n \"name\": \"Standard\",\n \"tier\": \"Standard\"\n },\n \"properties\": {\n \"minimumTlsVersion\": \"1.2\",\n \"zoneRedundant\": false,\n \"disableLocalAuth\": false,\n \"publicNetworkAccess\": \"Enabled\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview", + "Content": "{\n \"location\": \"South Central US\",\n \"tags\": {\n \"k2\": \"v2\",\n \"k1\": \"v1\"\n },\n \"sku\": {\n \"name\": \"Standard\",\n \"tier\": \"Standard\"\n },\n \"properties\": {\n \"minimumTlsVersion\": \"1.2\",\n \"zoneRedundant\": false,\n \"disableLocalAuth\": false,\n \"publicNetworkAccess\": \"Enabled\",\n \"premiumMessagingPartitions\": 0\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "298" ] + "Content-Length": [ "335" ] } }, "Response": { @@ -2608,35 +2608,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "545d1e49-081a-4f4d-953d-13833982e3ad_M3SN1_M3SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "ed735ce2-b7ee-4c30-bca2-b2533f75b4ab_M0CH3_M0CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1188" ], - "x-ms-correlation-request-id": [ "9edf6321-d039-4f62-9537-b622f76338b4" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111422Z:9edf6321-d039-4f62-9537-b622f76338b4" ], + "x-ms-correlation-request-id": [ "1b4330a5-3c58-4b10-ba2b-fbd766b6f128" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143139Z:1b4330a5-3c58-4b10-ba2b-fbd766b6f128" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:14:21 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:31:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "730" ], + "Content-Length": [ "760" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u\",\"name\":\"namespaceV3mt0g8u\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k1\":\"v1\",\"k2\":\"v2\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Updating\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3mt0g8u\",\"createdAt\":\"2022-11-24T10:03:49.013Z\",\"updatedAt\":\"2022-11-24T11:14:21.567Z\",\"serviceBusEndpoint\":\"https://namespaceV3mt0g8u.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", + "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui\",\"name\":\"namespaceV3279pui\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k2\":\"v2\",\"k1\":\"v1\"},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Updating\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3279pui\",\"createdAt\":\"2023-02-19T13:22:36.43Z\",\"updatedAt\":\"2023-02-19T14:31:38.403Z\",\"serviceBusEndpoint\":\"https://namespaceV3279pui.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview+16": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "411" ], - "x-ms-client-request-id": [ "3b85b708-10d8-493a-b78a-a0556043dad2" ], + "x-ms-unique-id": [ "402" ], + "x-ms-client-request-id": [ "63708bbc-d32e-4faa-b12c-4ff8b5a0056d" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2650,35 +2650,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "cb75c21e-11b9-42bd-9bc6-b8517f343412_M3SN1_M3SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "9b62efa5-ee04-458b-bf78-368de11fa3b6_M10CH3_M10CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11946" ], - "x-ms-correlation-request-id": [ "00d0eede-cb12-490b-be9b-5dc925411b98" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111452Z:00d0eede-cb12-490b-be9b-5dc925411b98" ], + "x-ms-correlation-request-id": [ "c84be0b4-3fc2-4997-9f8d-ee90aeb09e30" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143209Z:c84be0b4-3fc2-4997-9f8d-ee90aeb09e30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:14:51 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:32:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "727" ], + "Content-Length": [ "757" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u\",\"name\":\"namespaceV3mt0g8u\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k1\":\"v1\",\"k2\":\"v2\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3mt0g8u\",\"createdAt\":\"2022-11-24T10:03:49.013Z\",\"updatedAt\":\"2022-11-24T11:14:24.397Z\",\"serviceBusEndpoint\":\"https://namespaceV3mt0g8u.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui\",\"name\":\"namespaceV3279pui\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k2\":\"v2\",\"k1\":\"v1\"},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3279pui\",\"createdAt\":\"2023-02-19T13:22:36.43Z\",\"updatedAt\":\"2023-02-19T14:31:39.237Z\",\"serviceBusEndpoint\":\"https://namespaceV3279pui.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview+17": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "412" ], - "x-ms-client-request-id": [ "3b85b708-10d8-493a-b78a-a0556043dad2" ], + "x-ms-unique-id": [ "403" ], + "x-ms-client-request-id": [ "63708bbc-d32e-4faa-b12c-4ff8b5a0056d" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2692,34 +2692,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "8d601f6f-6a19-457d-825f-525fa7fced0b_M3SN1_M3SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "4d164c6e-81ca-47a0-a1c8-4ee2ba1c97fb_M10CH3_M10CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11945" ], - "x-ms-correlation-request-id": [ "b41d186a-6859-4e1e-bed6-7dc9e8d7d465" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111452Z:b41d186a-6859-4e1e-bed6-7dc9e8d7d465" ], + "x-ms-correlation-request-id": [ "105ef3b0-2670-4e91-b828-013caad1796e" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143210Z:105ef3b0-2670-4e91-b828-013caad1796e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:14:51 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:32:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "727" ], + "Content-Length": [ "757" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u\",\"name\":\"namespaceV3mt0g8u\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k1\":\"v1\",\"k2\":\"v2\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3mt0g8u\",\"createdAt\":\"2022-11-24T10:03:49.013Z\",\"updatedAt\":\"2022-11-24T11:14:24.397Z\",\"serviceBusEndpoint\":\"https://namespaceV3mt0g8u.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui\",\"name\":\"namespaceV3279pui\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k2\":\"v2\",\"k1\":\"v1\"},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3279pui\",\"createdAt\":\"2023-02-19T13:22:36.43Z\",\"updatedAt\":\"2023-02-19T14:31:39.237Z\",\"serviceBusEndpoint\":\"https://namespaceV3279pui.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview+18": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "413" ], - "x-ms-client-request-id": [ "abdac28b-fd81-4b08-9e1d-c35e3ef670c5" ], + "x-ms-unique-id": [ "404" ], + "x-ms-client-request-id": [ "80f61f44-c7ce-43e0-8581-3da5c54c4e9f" ], "CommandName": [ "Get-AzServiceBusNamespaceV2" ], "FullCommandName": [ "Get-AzServiceBusNamespaceV2_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2734,36 +2734,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "d6842edf-f3bd-4e08-ab2b-4733242930c0_M3SN1_M3SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "f1f99bff-6312-4447-a55f-007a147a2268_M10CH3_M10CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11944" ], - "x-ms-correlation-request-id": [ "e6e5b624-4c99-453e-942c-76326efb167d" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111453Z:e6e5b624-4c99-453e-942c-76326efb167d" ], + "x-ms-correlation-request-id": [ "089aeb5e-92e1-4c17-a0bb-31af16371a11" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143211Z:089aeb5e-92e1-4c17-a0bb-31af16371a11" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:14:52 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:32:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "727" ], + "Content-Length": [ "757" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u\",\"name\":\"namespaceV3mt0g8u\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k1\":\"v1\",\"k2\":\"v2\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3mt0g8u\",\"createdAt\":\"2022-11-24T10:03:49.013Z\",\"updatedAt\":\"2022-11-24T11:14:24.397Z\",\"serviceBusEndpoint\":\"https://namespaceV3mt0g8u.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui\",\"name\":\"namespaceV3279pui\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k2\":\"v2\",\"k1\":\"v1\"},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3279pui\",\"createdAt\":\"2023-02-19T13:22:36.43Z\",\"updatedAt\":\"2023-02-19T14:31:39.237Z\",\"serviceBusEndpoint\":\"https://namespaceV3279pui.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview+19": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview+19": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview", - "Content": "{\n \"location\": \"South Central US\",\n \"tags\": {\n \"k1\": \"v1\",\n \"k2\": \"v2\"\n },\n \"sku\": {\n \"name\": \"Standard\",\n \"tier\": \"Standard\"\n },\n \"properties\": {\n \"minimumTlsVersion\": \"1.2\",\n \"zoneRedundant\": false,\n \"disableLocalAuth\": true,\n \"publicNetworkAccess\": \"Enabled\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview", + "Content": "{\n \"location\": \"South Central US\",\n \"tags\": {\n \"k2\": \"v2\",\n \"k1\": \"v1\"\n },\n \"sku\": {\n \"name\": \"Standard\",\n \"tier\": \"Standard\"\n },\n \"properties\": {\n \"minimumTlsVersion\": \"1.2\",\n \"zoneRedundant\": false,\n \"disableLocalAuth\": true,\n \"publicNetworkAccess\": \"Enabled\",\n \"premiumMessagingPartitions\": 0\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "297" ] + "Content-Length": [ "334" ] } }, "Response": { @@ -2771,35 +2771,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "50f5cb35-6887-4dc3-8c69-7146793a5f40_M3SN1_M3SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "76089fb5-7739-42ce-974e-513417543952_M10CH3_M10CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1187" ], - "x-ms-correlation-request-id": [ "0bdc11ad-2769-47fa-8006-465ca66c4e41" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111459Z:0bdc11ad-2769-47fa-8006-465ca66c4e41" ], + "x-ms-correlation-request-id": [ "cd73d0b0-fa41-4446-b5a2-3392d1d3f1c8" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143218Z:cd73d0b0-fa41-4446-b5a2-3392d1d3f1c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:14:59 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:32:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "729" ], + "Content-Length": [ "758" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u\",\"name\":\"namespaceV3mt0g8u\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k1\":\"v1\",\"k2\":\"v2\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Updating\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3mt0g8u\",\"createdAt\":\"2022-11-24T10:03:49.013Z\",\"updatedAt\":\"2022-11-24T11:14:59.457Z\",\"serviceBusEndpoint\":\"https://namespaceV3mt0g8u.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", + "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui\",\"name\":\"namespaceV3279pui\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k2\":\"v2\",\"k1\":\"v1\"},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Updating\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3279pui\",\"createdAt\":\"2023-02-19T13:22:36.43Z\",\"updatedAt\":\"2023-02-19T14:32:17.57Z\",\"serviceBusEndpoint\":\"https://namespaceV3279pui.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview+20": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "415" ], - "x-ms-client-request-id": [ "f83c341c-a425-4e81-9c9b-4f89fe9f5fbb" ], + "x-ms-unique-id": [ "406" ], + "x-ms-client-request-id": [ "023656a8-a2c5-4dc2-bff2-bdfb27f876a4" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2813,35 +2813,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "c68904e6-8a03-437b-a4fc-024e6a3a0733_M3SN1_M3SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "87514eb2-969b-4e17-a9ac-31ebb35e36e6_M10CH3_M10CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11943" ], - "x-ms-correlation-request-id": [ "94fdb46e-a7bd-4271-b47d-d5c2cf1be63b" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111530Z:94fdb46e-a7bd-4271-b47d-d5c2cf1be63b" ], + "x-ms-correlation-request-id": [ "9cc9b46e-be84-4c9c-b5ee-807c4b574ccd" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143249Z:9cc9b46e-be84-4c9c-b5ee-807c4b574ccd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:15:29 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:32:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "725" ], + "Content-Length": [ "754" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u\",\"name\":\"namespaceV3mt0g8u\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k1\":\"v1\",\"k2\":\"v2\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3mt0g8u\",\"createdAt\":\"2022-11-24T10:03:49.013Z\",\"updatedAt\":\"2022-11-24T11:15:00.61Z\",\"serviceBusEndpoint\":\"https://namespaceV3mt0g8u.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui\",\"name\":\"namespaceV3279pui\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k2\":\"v2\",\"k1\":\"v1\"},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3279pui\",\"createdAt\":\"2023-02-19T13:22:36.43Z\",\"updatedAt\":\"2023-02-19T14:32:18.3Z\",\"serviceBusEndpoint\":\"https://namespaceV3279pui.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview+21": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "416" ], - "x-ms-client-request-id": [ "f83c341c-a425-4e81-9c9b-4f89fe9f5fbb" ], + "x-ms-unique-id": [ "407" ], + "x-ms-client-request-id": [ "023656a8-a2c5-4dc2-bff2-bdfb27f876a4" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2855,34 +2855,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "39791080-7a2a-4c7a-9f47-b31babda87fd_M3SN1_M3SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "04c7c527-d2c5-410c-8fa7-cf86c2ac87f6_M10CH3_M10CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11942" ], - "x-ms-correlation-request-id": [ "eac2ba9e-2308-49cb-b6c8-618750d065a7" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111530Z:eac2ba9e-2308-49cb-b6c8-618750d065a7" ], + "x-ms-correlation-request-id": [ "6c21b62c-9d7e-42f1-9516-f93ab0d656ea" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143249Z:6c21b62c-9d7e-42f1-9516-f93ab0d656ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:15:30 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:32:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "725" ], + "Content-Length": [ "754" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u\",\"name\":\"namespaceV3mt0g8u\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k1\":\"v1\",\"k2\":\"v2\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3mt0g8u\",\"createdAt\":\"2022-11-24T10:03:49.013Z\",\"updatedAt\":\"2022-11-24T11:15:00.61Z\",\"serviceBusEndpoint\":\"https://namespaceV3mt0g8u.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui\",\"name\":\"namespaceV3279pui\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k2\":\"v2\",\"k1\":\"v1\"},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3279pui\",\"createdAt\":\"2023-02-19T13:22:36.43Z\",\"updatedAt\":\"2023-02-19T14:32:18.3Z\",\"serviceBusEndpoint\":\"https://namespaceV3279pui.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26?api-version=2022-01-01-preview+22": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3?api-version=2022-10-01-preview+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "417" ], - "x-ms-client-request-id": [ "3d4c4a65-2e1a-4d22-9d79-2bab5921e071" ], + "x-ms-unique-id": [ "408" ], + "x-ms-client-request-id": [ "57d205ba-a564-40dc-9f96-bc5d6a58cc63" ], "CommandName": [ "Get-AzServiceBusNamespaceV2" ], "FullCommandName": [ "Get-AzServiceBusNamespaceV2_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2897,34 +2897,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "75ea64ac-102c-4c5b-8229-93d345318ba8_M3SN1_M3SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "1d0052c0-5fc7-48c3-a8af-498e84f9ead3_M10CH3_M10CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11941" ], - "x-ms-correlation-request-id": [ "d647eba8-2819-4ae9-b759-d109b3fe18f3" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111531Z:d647eba8-2819-4ae9-b759-d109b3fe18f3" ], + "x-ms-correlation-request-id": [ "a3cac284-4591-4018-baa8-7ab0aff256ba" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143250Z:a3cac284-4591-4018-baa8-7ab0aff256ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:15:30 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:32:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "849" ], + "Content-Length": [ "880" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26\",\"name\":\"namespaceV47aly26\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"1247ecb3-5b7a-4b93-9450-645cb6677151\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev47aly26\",\"createdAt\":\"2022-11-24T10:04:53.567Z\",\"updatedAt\":\"2022-11-24T10:12:08.553Z\",\"serviceBusEndpoint\":\"https://namespaceV47aly26.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3\",\"name\":\"namespaceV4du8ar3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"2a305b03-0d60-43cc-a5a0-0d7854bcbca1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"premiumMessagingPartitions\":2,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev4du8ar3\",\"createdAt\":\"2023-02-19T13:23:44.963Z\",\"updatedAt\":\"2023-02-19T13:30:52.143Z\",\"serviceBusEndpoint\":\"https://namespaceV4du8ar3.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26?api-version=2022-01-01-preview+23": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3?api-version=2022-10-01-preview+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "418" ], - "x-ms-client-request-id": [ "82cb1a43-080d-4058-86ec-bc7100daae36" ], + "x-ms-unique-id": [ "409" ], + "x-ms-client-request-id": [ "a619601e-e6bc-426f-8169-6bb3c335892b" ], "CommandName": [ "Get-AzServiceBusNamespaceV2" ], "FullCommandName": [ "Get-AzServiceBusNamespaceV2_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2939,36 +2939,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "c1b64e26-2c65-4412-aca3-0ef6c3fb15e5_M3SN1_M3SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "fb648620-6c4d-4b15-a944-72a56e09141a_M10CH3_M10CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11940" ], - "x-ms-correlation-request-id": [ "127e5641-0009-49a3-a024-ca40d03af343" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111531Z:127e5641-0009-49a3-a024-ca40d03af343" ], + "x-ms-correlation-request-id": [ "9fc524c7-28c9-40be-a19b-34e7e62a4e7b" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143250Z:9fc524c7-28c9-40be-a19b-34e7e62a4e7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:15:31 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:32:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "849" ], + "Content-Length": [ "880" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26\",\"name\":\"namespaceV47aly26\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"1247ecb3-5b7a-4b93-9450-645cb6677151\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev47aly26\",\"createdAt\":\"2022-11-24T10:04:53.567Z\",\"updatedAt\":\"2022-11-24T10:12:08.553Z\",\"serviceBusEndpoint\":\"https://namespaceV47aly26.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3\",\"name\":\"namespaceV4du8ar3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"2a305b03-0d60-43cc-a5a0-0d7854bcbca1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"premiumMessagingPartitions\":2,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev4du8ar3\",\"createdAt\":\"2023-02-19T13:23:44.963Z\",\"updatedAt\":\"2023-02-19T13:30:52.143Z\",\"serviceBusEndpoint\":\"https://namespaceV4du8ar3.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26?api-version=2022-01-01-preview+24": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3?api-version=2022-10-01-preview+24": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26?api-version=2022-01-01-preview", - "Content": "{\n \"location\": \"East US\",\n \"sku\": {\n \"name\": \"Premium\",\n \"tier\": \"Premium\",\n \"capacity\": 16\n },\n \"identity\": {\n \"type\": \"SystemAssigned\"\n },\n \"properties\": {\n \"minimumTlsVersion\": \"1.2\",\n \"zoneRedundant\": true,\n \"disableLocalAuth\": false,\n \"publicNetworkAccess\": \"Enabled\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3?api-version=2022-10-01-preview", + "Content": "{\n \"location\": \"East US\",\n \"sku\": {\n \"name\": \"Premium\",\n \"tier\": \"Premium\",\n \"capacity\": 16\n },\n \"identity\": {\n \"type\": \"SystemAssigned\"\n },\n \"properties\": {\n \"minimumTlsVersion\": \"1.2\",\n \"zoneRedundant\": true,\n \"disableLocalAuth\": false,\n \"publicNetworkAccess\": \"Enabled\",\n \"premiumMessagingPartitions\": 2\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "308" ] + "Content-Length": [ "345" ] } }, "Response": { @@ -2976,35 +2976,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "bee0daa6-080c-40e7-9fe7-578396ca22ff_M3SN1_M3SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "76c6c2c0-2e1d-49ed-87af-db44f4b14950_M10CH3_M10CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1186" ], - "x-ms-correlation-request-id": [ "5e2f292f-2641-482b-b50a-7f3a88bdc134" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111539Z:5e2f292f-2641-482b-b50a-7f3a88bdc134" ], + "x-ms-correlation-request-id": [ "be663ccd-5b2c-417f-95ef-cf7e87090ad0" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143300Z:be663ccd-5b2c-417f-95ef-cf7e87090ad0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:15:38 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:32:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "852" ], + "Content-Length": [ "884" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":16},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26\",\"name\":\"namespaceV47aly26\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"1247ecb3-5b7a-4b93-9450-645cb6677151\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Updating\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev47aly26\",\"createdAt\":\"2022-11-24T10:04:53.567Z\",\"updatedAt\":\"2022-11-24T11:15:38.58Z\",\"serviceBusEndpoint\":\"https://namespaceV47aly26.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":16},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3\",\"name\":\"namespaceV4du8ar3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"2a305b03-0d60-43cc-a5a0-0d7854bcbca1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"premiumMessagingPartitions\":2,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Updating\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev4du8ar3\",\"createdAt\":\"2023-02-19T13:23:44.963Z\",\"updatedAt\":\"2023-02-19T14:32:58.583Z\",\"serviceBusEndpoint\":\"https://namespaceV4du8ar3.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26?api-version=2022-01-01-preview+25": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3?api-version=2022-10-01-preview+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "420" ], - "x-ms-client-request-id": [ "44b76736-879c-4782-b62b-865239b2b653" ], + "x-ms-unique-id": [ "411" ], + "x-ms-client-request-id": [ "7a32a1a4-3113-4560-a800-504c909e47a4" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3018,35 +3018,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "2db8e638-295a-41fc-baa5-900938943b25_M3SN1_M3SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "2b43c0f8-c163-4f92-9785-640349b9da88_M7CH3_M7CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11939" ], - "x-ms-correlation-request-id": [ "d7a3cb9e-34eb-44b4-b0fa-9ff51a0a70db" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111609Z:d7a3cb9e-34eb-44b4-b0fa-9ff51a0a70db" ], + "x-ms-correlation-request-id": [ "f10fae7d-c8b3-46ba-8ead-afb3f3daa027" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143330Z:f10fae7d-c8b3-46ba-8ead-afb3f3daa027" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:16:09 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:33:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "850" ], + "Content-Length": [ "881" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":16},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26\",\"name\":\"namespaceV47aly26\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"1247ecb3-5b7a-4b93-9450-645cb6677151\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev47aly26\",\"createdAt\":\"2022-11-24T10:04:53.567Z\",\"updatedAt\":\"2022-11-24T11:15:42.537Z\",\"serviceBusEndpoint\":\"https://namespaceV47aly26.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":16},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3\",\"name\":\"namespaceV4du8ar3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"2a305b03-0d60-43cc-a5a0-0d7854bcbca1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"premiumMessagingPartitions\":2,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev4du8ar3\",\"createdAt\":\"2023-02-19T13:23:44.963Z\",\"updatedAt\":\"2023-02-19T14:33:01.717Z\",\"serviceBusEndpoint\":\"https://namespaceV4du8ar3.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26?api-version=2022-01-01-preview+26": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3?api-version=2022-10-01-preview+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "421" ], - "x-ms-client-request-id": [ "44b76736-879c-4782-b62b-865239b2b653" ], + "x-ms-unique-id": [ "412" ], + "x-ms-client-request-id": [ "7a32a1a4-3113-4560-a800-504c909e47a4" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3060,34 +3060,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "3dcce058-21e9-4551-8237-699b383c26ef_M3SN1_M3SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "aac0b2c7-ce11-4eb7-9e62-b3e8e394a9d8_M7CH3_M7CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11938" ], - "x-ms-correlation-request-id": [ "997d50d1-576d-42c9-b3bf-cd7b51116115" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111610Z:997d50d1-576d-42c9-b3bf-cd7b51116115" ], + "x-ms-correlation-request-id": [ "24c7e5a9-f41c-4a77-8bed-31d38ae524dc" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143331Z:24c7e5a9-f41c-4a77-8bed-31d38ae524dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:16:09 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:33:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "850" ], + "Content-Length": [ "881" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":16},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV47aly26\",\"name\":\"namespaceV47aly26\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"1247ecb3-5b7a-4b93-9450-645cb6677151\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev47aly26\",\"createdAt\":\"2022-11-24T10:04:53.567Z\",\"updatedAt\":\"2022-11-24T11:15:42.537Z\",\"serviceBusEndpoint\":\"https://namespaceV47aly26.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":16},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV4du8ar3\",\"name\":\"namespaceV4du8ar3\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"East US\",\"tags\":{},\"identity\":{\"principalId\":\"2a305b03-0d60-43cc-a5a0-0d7854bcbca1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"premiumMessagingPartitions\":2,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":false,\"zoneRedundant\":true,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev4du8ar3\",\"createdAt\":\"2023-02-19T13:23:44.963Z\",\"updatedAt\":\"2023-02-19T14:33:01.717Z\",\"serviceBusEndpoint\":\"https://namespaceV4du8ar3.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview+27": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview+27": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "422" ], - "x-ms-client-request-id": [ "ff7a3217-c708-4924-9948-e4888bd90d01" ], + "x-ms-unique-id": [ "413" ], + "x-ms-client-request-id": [ "b8bbd2ad-244b-439a-af7d-5f32a90a9cb1" ], "CommandName": [ "Get-AzServiceBusNamespaceV2" ], "FullCommandName": [ "Get-AzServiceBusNamespaceV2_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3102,34 +3102,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "69da0f1b-f6d2-40ba-a982-6d73b323a206_M3SN1_M3SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "8ac4e9c2-79ab-4769-9a71-07c6602b2b88_M7CH3_M7CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11937" ], - "x-ms-correlation-request-id": [ "dac1442d-b7ea-4133-8662-960bb6e08d55" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111610Z:dac1442d-b7ea-4133-8662-960bb6e08d55" ], + "x-ms-correlation-request-id": [ "e75ced8a-2c2f-4254-927e-60af959ff017" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143332Z:e75ced8a-2c2f-4254-927e-60af959ff017" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:16:10 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:33:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "725" ], + "Content-Length": [ "754" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u\",\"name\":\"namespaceV3mt0g8u\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k1\":\"v1\",\"k2\":\"v2\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3mt0g8u\",\"createdAt\":\"2022-11-24T10:03:49.013Z\",\"updatedAt\":\"2022-11-24T11:15:00.61Z\",\"serviceBusEndpoint\":\"https://namespaceV3mt0g8u.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui\",\"name\":\"namespaceV3279pui\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k2\":\"v2\",\"k1\":\"v1\"},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3279pui\",\"createdAt\":\"2023-02-19T13:22:36.43Z\",\"updatedAt\":\"2023-02-19T14:32:18.3Z\",\"serviceBusEndpoint\":\"https://namespaceV3279pui.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview+28": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview+28": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "423" ], - "x-ms-client-request-id": [ "448e8897-3590-44cf-9b81-4e9f2b9e483c" ], + "x-ms-unique-id": [ "414" ], + "x-ms-client-request-id": [ "55b68a5d-72eb-4560-a53b-a2cc492ba22f" ], "CommandName": [ "Get-AzServiceBusNamespaceV2" ], "FullCommandName": [ "Get-AzServiceBusNamespaceV2_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3144,36 +3144,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "6cbfd73c-aacc-407e-b2a1-55573b628bb1_M3SN1_M3SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "c9895aa5-d592-40b0-8656-2aa50a0a14c2_M7CH3_M7CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11936" ], - "x-ms-correlation-request-id": [ "cf2c9e1b-2fcb-4b28-b8dc-e1c472adecaf" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111610Z:cf2c9e1b-2fcb-4b28-b8dc-e1c472adecaf" ], + "x-ms-correlation-request-id": [ "d57faccf-d897-4f7e-9734-b5c165102f0a" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143332Z:d57faccf-d897-4f7e-9734-b5c165102f0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:16:10 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:33:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "725" ], + "Content-Length": [ "754" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u\",\"name\":\"namespaceV3mt0g8u\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k1\":\"v1\",\"k2\":\"v2\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3mt0g8u\",\"createdAt\":\"2022-11-24T10:03:49.013Z\",\"updatedAt\":\"2022-11-24T11:15:00.61Z\",\"serviceBusEndpoint\":\"https://namespaceV3mt0g8u.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui\",\"name\":\"namespaceV3279pui\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k2\":\"v2\",\"k1\":\"v1\"},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Enabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3279pui\",\"createdAt\":\"2023-02-19T13:22:36.43Z\",\"updatedAt\":\"2023-02-19T14:32:18.3Z\",\"serviceBusEndpoint\":\"https://namespaceV3279pui.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview+29": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview+29": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview", - "Content": "{\n \"location\": \"South Central US\",\n \"tags\": {\n \"k1\": \"v1\",\n \"k2\": \"v2\"\n },\n \"sku\": {\n \"name\": \"Standard\",\n \"tier\": \"Standard\"\n },\n \"properties\": {\n \"minimumTlsVersion\": \"1.2\",\n \"zoneRedundant\": false,\n \"disableLocalAuth\": true,\n \"publicNetworkAccess\": \"Disabled\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview", + "Content": "{\n \"location\": \"South Central US\",\n \"tags\": {\n \"k2\": \"v2\",\n \"k1\": \"v1\"\n },\n \"sku\": {\n \"name\": \"Standard\",\n \"tier\": \"Standard\"\n },\n \"properties\": {\n \"minimumTlsVersion\": \"1.2\",\n \"zoneRedundant\": false,\n \"disableLocalAuth\": true,\n \"publicNetworkAccess\": \"Disabled\",\n \"premiumMessagingPartitions\": 0\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "298" ] + "Content-Length": [ "335" ] } }, "Response": { @@ -3181,35 +3181,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "6fd9eb3d-0553-4566-ac48-e91c48cac3b9_M3SN1_M3SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "2adbb647-47de-444a-8669-2875f216f54f_M7CH3_M7CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1185" ], - "x-ms-correlation-request-id": [ "190d270c-ca36-42fe-9cf1-6784a4d2e16d" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111618Z:190d270c-ca36-42fe-9cf1-6784a4d2e16d" ], + "x-ms-correlation-request-id": [ "16d6180c-52b9-4b28-8bee-18791562c3d6" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143341Z:16d6180c-52b9-4b28-8bee-18791562c3d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:16:18 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:33:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "730" ], + "Content-Length": [ "760" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u\",\"name\":\"namespaceV3mt0g8u\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k1\":\"v1\",\"k2\":\"v2\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Disabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Updating\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3mt0g8u\",\"createdAt\":\"2022-11-24T10:03:49.013Z\",\"updatedAt\":\"2022-11-24T11:16:17.287Z\",\"serviceBusEndpoint\":\"https://namespaceV3mt0g8u.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", + "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui\",\"name\":\"namespaceV3279pui\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k2\":\"v2\",\"k1\":\"v1\"},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Disabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Updating\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3279pui\",\"createdAt\":\"2023-02-19T13:22:36.43Z\",\"updatedAt\":\"2023-02-19T14:33:39.313Z\",\"serviceBusEndpoint\":\"https://namespaceV3279pui.servicebus.windows.net:443/\",\"status\":\"Activating\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview+30": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview+30": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "425" ], - "x-ms-client-request-id": [ "d23df64c-9763-419e-b6f7-e48a031fabb5" ], + "x-ms-unique-id": [ "416" ], + "x-ms-client-request-id": [ "fc139984-2427-4a92-a83d-02c28c63a22e" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3223,35 +3223,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "a5bdccbc-fa34-41f9-bedf-3c97bbf911a0_M3SN1_M3SN1" ], + "x-ms-request-id": [ "e66ab98e-c788-4f7b-aec8-6bf1282954a7_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11935" ], - "x-ms-correlation-request-id": [ "cb1b58ed-5c29-4d1a-bf60-777b33b05d05" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111648Z:cb1b58ed-5c29-4d1a-bf60-777b33b05d05" ], + "x-ms-correlation-request-id": [ "defad39d-3eb1-43cf-aedc-304ef54cf034" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143412Z:defad39d-3eb1-43cf-aedc-304ef54cf034" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:16:48 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:34:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "727" ], + "Content-Length": [ "756" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u\",\"name\":\"namespaceV3mt0g8u\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k1\":\"v1\",\"k2\":\"v2\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Disabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3mt0g8u\",\"createdAt\":\"2022-11-24T10:03:49.013Z\",\"updatedAt\":\"2022-11-24T11:16:18.867Z\",\"serviceBusEndpoint\":\"https://namespaceV3mt0g8u.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui\",\"name\":\"namespaceV3279pui\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k2\":\"v2\",\"k1\":\"v1\"},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Disabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3279pui\",\"createdAt\":\"2023-02-19T13:22:36.43Z\",\"updatedAt\":\"2023-02-19T14:33:42.74Z\",\"serviceBusEndpoint\":\"https://namespaceV3279pui.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } }, - "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview+31": { + "Set-AzServiceBusNamespaceV2+[NoContext]+SetExpandedNamespace+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview+31": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "426" ], - "x-ms-client-request-id": [ "d23df64c-9763-419e-b6f7-e48a031fabb5" ], + "x-ms-unique-id": [ "417" ], + "x-ms-client-request-id": [ "fc139984-2427-4a92-a83d-02c28c63a22e" ], "CommandName": [ "Az.ServiceBus.private\\New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "FullCommandName": [ "New-AzServiceBusNamespaceV2_CreateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3265,22 +3265,22 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "1adbe748-1944-4ed1-9ada-f55de1178b0d_M3SN1_M3SN1" ], + "x-ms-request-id": [ "6e197c7d-e3e9-420e-8019-4009a177fedf_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11934" ], - "x-ms-correlation-request-id": [ "3d79bc78-8b73-48ca-94d0-ff0fecf15cd9" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111649Z:3d79bc78-8b73-48ca-94d0-ff0fecf15cd9" ], + "x-ms-correlation-request-id": [ "6b6202b2-336c-4858-8e89-069fc64aca6e" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143412Z:6b6202b2-336c-4858-8e89-069fc64aca6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:16:48 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:34:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "727" ], + "Content-Length": [ "756" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceV3mt0g8u\",\"name\":\"namespaceV3mt0g8u\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k1\":\"v1\",\"k2\":\"v2\"},\"properties\":{\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Disabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3mt0g8u\",\"createdAt\":\"2022-11-24T10:03:49.013Z\",\"updatedAt\":\"2022-11-24T11:16:18.867Z\",\"serviceBusEndpoint\":\"https://namespaceV3mt0g8u.servicebus.windows.net:443/\",\"status\":\"Active\"}}", + "Content": "{\"sku\":{\"name\":\"Standard\",\"tier\":\"Standard\"},\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceV3279pui\",\"name\":\"namespaceV3279pui\",\"type\":\"Microsoft.ServiceBus/Namespaces\",\"location\":\"South Central US\",\"tags\":{\"k2\":\"v2\",\"k1\":\"v1\"},\"properties\":{\"premiumMessagingPartitions\":0,\"minimumTlsVersion\":\"1.2\",\"publicNetworkAccess\":\"Disabled\",\"disableLocalAuth\":true,\"zoneRedundant\":false,\"provisioningState\":\"Succeeded\",\"metricId\":\"326100e2-f69d-4268-8503-075374f62b6e:namespacev3279pui\",\"createdAt\":\"2023-02-19T13:22:36.43Z\",\"updatedAt\":\"2023-02-19T14:33:42.74Z\",\"serviceBusEndpoint\":\"https://namespaceV3279pui.servicebus.windows.net:443/\",\"status\":\"Active\"}}", "isContentBase64": false } } diff --git a/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusNamespaceV2.Tests.ps1 b/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusNamespaceV2.Tests.ps1 index b4849451b41d..09b8d1fceb33 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusNamespaceV2.Tests.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusNamespaceV2.Tests.ps1 @@ -15,7 +15,7 @@ if(($null -eq $TestName) -or ($TestName -contains 'Set-AzServiceBusNamespaceV2') } function assertNamespaceUpdates{ - param([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace]$expectedNamespace,[Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace]$namespace) + param([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace]$expectedNamespace,[Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace]$namespace) $expectedNamespace.SkuName | Should -Be $namespace.SkuName $expectedNamespace.SkuCapacity | Should -Be $namespace.SkuCapacity diff --git a/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusNetworkRuleSet.Recording.json b/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusNetworkRuleSet.Recording.json index 3d1c3c14c75e..8612a0c87458 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusNetworkRuleSet.Recording.json +++ b/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusNetworkRuleSet.Recording.json @@ -1,13 +1,13 @@ { - "Set-AzServiceBusNetworkRuleSet+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/networkRuleSets/default?api-version=2022-01-01-preview+1": { + "Set-AzServiceBusNetworkRuleSet+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/networkRuleSets/default?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/networkRuleSets/default?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/networkRuleSets/default?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "427" ], - "x-ms-client-request-id": [ "2bf6647d-85ac-4ba1-8884-174fc60e8d75" ], + "x-ms-unique-id": [ "418" ], + "x-ms-client-request-id": [ "cfac4013-6480-415b-b9c4-564083081aa0" ], "CommandName": [ "Get-AzServiceBusNetworkRuleSet" ], "FullCommandName": [ "Get-AzServiceBusNetworkRuleSet_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -22,29 +22,29 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "858a91e5-82f9-4342-be30-7437dae8ce67_M3SN1_M3SN1" ], + "x-ms-request-id": [ "607e9632-1235-4374-ac49-2402425112d6_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11933" ], - "x-ms-correlation-request-id": [ "296c3cc5-8a63-4d62-9f8c-363631ae7b42" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111708Z:296c3cc5-8a63-4d62-9f8c-363631ae7b42" ], + "x-ms-correlation-request-id": [ "30cf4a6c-54e0-4991-af54-fabd1e66d627" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143427Z:30cf4a6c-54e0-4991-af54-fabd1e66d627" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:17:08 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:34:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "393" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/networkRuleSets/default\",\"name\":\"default\",\"type\":\"Microsoft.ServiceBus/Namespaces/NetworkRuleSets\",\"location\":\"East US\",\"properties\":{\"publicNetworkAccess\":\"Enabled\",\"defaultAction\":\"Allow\",\"virtualNetworkRules\":[],\"ipRules\":[]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/networkRuleSets/default\",\"name\":\"default\",\"type\":\"Microsoft.ServiceBus/Namespaces/NetworkRuleSets\",\"location\":\"East US\",\"properties\":{\"publicNetworkAccess\":\"Enabled\",\"defaultAction\":\"Allow\",\"virtualNetworkRules\":[],\"ipRules\":[]}}", "isContentBase64": false } }, - "Set-AzServiceBusNetworkRuleSet+[NoContext]+SetExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/networkRuleSets/default?api-version=2022-01-01-preview+2": { + "Set-AzServiceBusNetworkRuleSet+[NoContext]+SetExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/networkRuleSets/default?api-version=2022-10-01-preview+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/networkRuleSets/default?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/networkRuleSets/default?api-version=2022-10-01-preview", "Content": "{\n \"properties\": {\n \"defaultAction\": \"Allow\",\n \"virtualNetworkRules\": [\n {\n \"subnet\": {\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/AutomatedPowershellTesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default\"\n }\n },\n {\n \"subnet\": {\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/AutomatedPowershellTesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default2\"\n }\n },\n {\n \"subnet\": {\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/AutomatedPowershellTesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default3\"\n }\n }\n ],\n \"ipRules\": [\n {\n \"ipMask\": \"1.1.1.1\",\n \"action\": \"Allow\"\n },\n {\n \"ipMask\": \"2.2.2.2\",\n \"action\": \"Allow\"\n }\n ],\n \"publicNetworkAccess\": \"Enabled\"\n }\n}", "isContentBase64": false, "Headers": { @@ -59,34 +59,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "38ec99d1-8b4c-43fe-8c23-bbe01703f11c_M3SN1_M3SN1" ], + "x-ms-request-id": [ "4e905e3f-6f34-4091-883b-af659aa06db7_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1184" ], - "x-ms-correlation-request-id": [ "abac5bfb-0ba8-429e-a14f-9397c796a3e0" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111716Z:abac5bfb-0ba8-429e-a14f-9397c796a3e0" ], + "x-ms-correlation-request-id": [ "f34e5a61-9d56-49ef-b1dc-a25fad6b3d0d" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143435Z:f34e5a61-9d56-49ef-b1dc-a25fad6b3d0d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:17:15 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:34:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1174" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/networkRuleSets/default\",\"name\":\"default\",\"type\":\"Microsoft.ServiceBus/Namespaces/NetworkRuleSets\",\"location\":\"East US\",\"properties\":{\"publicNetworkAccess\":\"Enabled\",\"defaultAction\":\"Allow\",\"virtualNetworkRules\":[{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/AutomatedPowershellTesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default\"},\"ignoreMissingVnetServiceEndpoint\":false},{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/AutomatedPowershellTesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default2\"},\"ignoreMissingVnetServiceEndpoint\":false},{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/AutomatedPowershellTesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default3\"},\"ignoreMissingVnetServiceEndpoint\":false}],\"ipRules\":[{\"ipMask\":\"1.1.1.1\",\"action\":\"Allow\"},{\"ipMask\":\"2.2.2.2\",\"action\":\"Allow\"}]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/networkRuleSets/default\",\"name\":\"default\",\"type\":\"Microsoft.ServiceBus/Namespaces/NetworkRuleSets\",\"location\":\"East US\",\"properties\":{\"publicNetworkAccess\":\"Enabled\",\"defaultAction\":\"Allow\",\"virtualNetworkRules\":[{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/AutomatedPowershellTesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default\"},\"ignoreMissingVnetServiceEndpoint\":false},{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/AutomatedPowershellTesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default2\"},\"ignoreMissingVnetServiceEndpoint\":false},{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/AutomatedPowershellTesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default3\"},\"ignoreMissingVnetServiceEndpoint\":false}],\"ipRules\":[{\"ipMask\":\"1.1.1.1\",\"action\":\"Allow\"},{\"ipMask\":\"2.2.2.2\",\"action\":\"Allow\"}]}}", "isContentBase64": false } }, - "Set-AzServiceBusNetworkRuleSet+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/networkRuleSets/default?api-version=2022-01-01-preview+3": { + "Set-AzServiceBusNetworkRuleSet+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/networkRuleSets/default?api-version=2022-10-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/networkRuleSets/default?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/networkRuleSets/default?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "429" ], - "x-ms-client-request-id": [ "d4e78f84-f0dd-40f0-9fcd-4a7124301969" ], + "x-ms-unique-id": [ "420" ], + "x-ms-client-request-id": [ "10ae19d7-00f4-41c3-a23d-2b92c138b6a7" ], "CommandName": [ "Get-AzServiceBusNetworkRuleSet" ], "FullCommandName": [ "Get-AzServiceBusNetworkRuleSet_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -101,29 +101,29 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "2fc46349-97b6-4beb-b5d3-d9f57fcd7e49_M3SN1_M3SN1" ], + "x-ms-request-id": [ "de3b37b8-3bc9-4684-9f0a-229618e0771b_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11932" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "5caf2471-6bdc-41a7-b539-200d02389ee1" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111716Z:5caf2471-6bdc-41a7-b539-200d02389ee1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11932" ], + "x-ms-correlation-request-id": [ "9e6aee4d-caf0-4681-a981-5d162a1d5344" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143436Z:9e6aee4d-caf0-4681-a981-5d162a1d5344" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:17:16 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:34:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1174" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/networkRuleSets/default\",\"name\":\"default\",\"type\":\"Microsoft.ServiceBus/Namespaces/NetworkRuleSets\",\"location\":\"East US\",\"properties\":{\"publicNetworkAccess\":\"Enabled\",\"defaultAction\":\"Allow\",\"virtualNetworkRules\":[{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default\"},\"ignoreMissingVnetServiceEndpoint\":false},{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default2\"},\"ignoreMissingVnetServiceEndpoint\":false},{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default3\"},\"ignoreMissingVnetServiceEndpoint\":false}],\"ipRules\":[{\"ipMask\":\"1.1.1.1\",\"action\":\"Allow\"},{\"ipMask\":\"2.2.2.2\",\"action\":\"Allow\"}]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/networkRuleSets/default\",\"name\":\"default\",\"type\":\"Microsoft.ServiceBus/Namespaces/NetworkRuleSets\",\"location\":\"East US\",\"properties\":{\"publicNetworkAccess\":\"Enabled\",\"defaultAction\":\"Allow\",\"virtualNetworkRules\":[{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default\"},\"ignoreMissingVnetServiceEndpoint\":false},{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default2\"},\"ignoreMissingVnetServiceEndpoint\":false},{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default3\"},\"ignoreMissingVnetServiceEndpoint\":false}],\"ipRules\":[{\"ipMask\":\"1.1.1.1\",\"action\":\"Allow\"},{\"ipMask\":\"2.2.2.2\",\"action\":\"Allow\"}]}}", "isContentBase64": false } }, - "Set-AzServiceBusNetworkRuleSet+[NoContext]+SetExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/networkRuleSets/default?api-version=2022-01-01-preview+4": { + "Set-AzServiceBusNetworkRuleSet+[NoContext]+SetExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/networkRuleSets/default?api-version=2022-10-01-preview+4": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/networkRuleSets/default?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/networkRuleSets/default?api-version=2022-10-01-preview", "Content": "{\n \"properties\": {\n \"defaultAction\": \"Deny\",\n \"virtualNetworkRules\": [\n {\n \"subnet\": {\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default\"\n },\n \"ignoreMissingVnetServiceEndpoint\": false\n },\n {\n \"subnet\": {\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default2\"\n },\n \"ignoreMissingVnetServiceEndpoint\": false\n },\n {\n \"subnet\": {\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default3\"\n },\n \"ignoreMissingVnetServiceEndpoint\": false\n }\n ],\n \"ipRules\": [\n {\n \"ipMask\": \"1.1.1.1\",\n \"action\": \"Allow\"\n },\n {\n \"ipMask\": \"2.2.2.2\",\n \"action\": \"Allow\"\n }\n ],\n \"publicNetworkAccess\": \"Enabled\"\n }\n}", "isContentBase64": false, "Headers": { @@ -138,34 +138,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "276f3bd9-bd1b-4077-b3a5-9677ab2c55a6_M9SN1_M9SN1" ], + "x-ms-request-id": [ "802c3bfc-f1cb-4847-87bd-6cca837c7381_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1183" ], - "x-ms-correlation-request-id": [ "9e1326d1-9313-4616-a35e-1d64031796ad" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111724Z:9e1326d1-9313-4616-a35e-1d64031796ad" ], + "x-ms-correlation-request-id": [ "e19f47b1-6c51-4173-a25d-6d8268f1894d" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143444Z:e19f47b1-6c51-4173-a25d-6d8268f1894d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:17:23 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:34:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1173" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/networkRuleSets/default\",\"name\":\"default\",\"type\":\"Microsoft.ServiceBus/Namespaces/NetworkRuleSets\",\"location\":\"East US\",\"properties\":{\"publicNetworkAccess\":\"Enabled\",\"defaultAction\":\"Deny\",\"virtualNetworkRules\":[{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default\"},\"ignoreMissingVnetServiceEndpoint\":false},{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default2\"},\"ignoreMissingVnetServiceEndpoint\":false},{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default3\"},\"ignoreMissingVnetServiceEndpoint\":false}],\"ipRules\":[{\"ipMask\":\"1.1.1.1\",\"action\":\"Allow\"},{\"ipMask\":\"2.2.2.2\",\"action\":\"Allow\"}]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/networkRuleSets/default\",\"name\":\"default\",\"type\":\"Microsoft.ServiceBus/Namespaces/NetworkRuleSets\",\"location\":\"East US\",\"properties\":{\"publicNetworkAccess\":\"Enabled\",\"defaultAction\":\"Deny\",\"virtualNetworkRules\":[{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default\"},\"ignoreMissingVnetServiceEndpoint\":false},{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default2\"},\"ignoreMissingVnetServiceEndpoint\":false},{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default3\"},\"ignoreMissingVnetServiceEndpoint\":false}],\"ipRules\":[{\"ipMask\":\"1.1.1.1\",\"action\":\"Allow\"},{\"ipMask\":\"2.2.2.2\",\"action\":\"Allow\"}]}}", "isContentBase64": false } }, - "Set-AzServiceBusNetworkRuleSet+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/networkRuleSets/default?api-version=2022-01-01-preview+5": { + "Set-AzServiceBusNetworkRuleSet+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/networkRuleSets/default?api-version=2022-10-01-preview+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/networkRuleSets/default?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/networkRuleSets/default?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "431" ], - "x-ms-client-request-id": [ "36bc8397-002b-497c-a57b-c5c55980d228" ], + "x-ms-unique-id": [ "422" ], + "x-ms-client-request-id": [ "809abd41-7c25-4056-908f-c015c896b041" ], "CommandName": [ "Get-AzServiceBusNetworkRuleSet" ], "FullCommandName": [ "Get-AzServiceBusNetworkRuleSet_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -180,29 +180,29 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "2592a715-67a1-438e-b55f-a17b38306be2_M9SN1_M9SN1" ], + "x-ms-request-id": [ "a796412a-c8e1-4d6b-be81-fda444cdedf1_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11931" ], - "x-ms-correlation-request-id": [ "cec29faf-4e67-4554-a995-1999d91f8b9d" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111724Z:cec29faf-4e67-4554-a995-1999d91f8b9d" ], + "x-ms-correlation-request-id": [ "75d2b8e2-9f5c-4934-ac00-9182c1c0581a" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143445Z:75d2b8e2-9f5c-4934-ac00-9182c1c0581a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:17:24 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:34:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1173" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/networkRuleSets/default\",\"name\":\"default\",\"type\":\"Microsoft.ServiceBus/Namespaces/NetworkRuleSets\",\"location\":\"East US\",\"properties\":{\"publicNetworkAccess\":\"Enabled\",\"defaultAction\":\"Deny\",\"virtualNetworkRules\":[{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default\"},\"ignoreMissingVnetServiceEndpoint\":false},{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default2\"},\"ignoreMissingVnetServiceEndpoint\":false},{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default3\"},\"ignoreMissingVnetServiceEndpoint\":false}],\"ipRules\":[{\"ipMask\":\"1.1.1.1\",\"action\":\"Allow\"},{\"ipMask\":\"2.2.2.2\",\"action\":\"Allow\"}]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/networkRuleSets/default\",\"name\":\"default\",\"type\":\"Microsoft.ServiceBus/Namespaces/NetworkRuleSets\",\"location\":\"East US\",\"properties\":{\"publicNetworkAccess\":\"Enabled\",\"defaultAction\":\"Deny\",\"virtualNetworkRules\":[{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default\"},\"ignoreMissingVnetServiceEndpoint\":false},{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default2\"},\"ignoreMissingVnetServiceEndpoint\":false},{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default3\"},\"ignoreMissingVnetServiceEndpoint\":false}],\"ipRules\":[{\"ipMask\":\"1.1.1.1\",\"action\":\"Allow\"},{\"ipMask\":\"2.2.2.2\",\"action\":\"Allow\"}]}}", "isContentBase64": false } }, - "Set-AzServiceBusNetworkRuleSet+[NoContext]+SetExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/networkRuleSets/default?api-version=2022-01-01-preview+6": { + "Set-AzServiceBusNetworkRuleSet+[NoContext]+SetExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/networkRuleSets/default?api-version=2022-10-01-preview+6": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/networkRuleSets/default?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/networkRuleSets/default?api-version=2022-10-01-preview", "Content": "{\n \"properties\": {\n \"defaultAction\": \"Deny\",\n \"virtualNetworkRules\": [\n {\n \"subnet\": {\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default\"\n },\n \"ignoreMissingVnetServiceEndpoint\": false\n },\n {\n \"subnet\": {\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default2\"\n },\n \"ignoreMissingVnetServiceEndpoint\": false\n },\n {\n \"subnet\": {\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default3\"\n },\n \"ignoreMissingVnetServiceEndpoint\": false\n }\n ],\n \"ipRules\": [\n {\n \"ipMask\": \"1.1.1.1\",\n \"action\": \"Allow\"\n },\n {\n \"ipMask\": \"2.2.2.2\",\n \"action\": \"Allow\"\n }\n ],\n \"publicNetworkAccess\": \"Disabled\"\n }\n}", "isContentBase64": false, "Headers": { @@ -217,34 +217,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "48f2e8f3-e4c2-45b8-9822-d26d485cf432_M9SN1_M9SN1" ], + "x-ms-request-id": [ "bee44073-83c9-465a-ac61-d9ae93524632_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1182" ], - "x-ms-correlation-request-id": [ "c72e1c78-0566-4523-bb3e-1d3d55db2914" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111732Z:c72e1c78-0566-4523-bb3e-1d3d55db2914" ], + "x-ms-correlation-request-id": [ "7c1004f5-3d1b-463a-aeed-72ff226f3aef" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143453Z:7c1004f5-3d1b-463a-aeed-72ff226f3aef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:17:31 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:34:53 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1174" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/networkRuleSets/default\",\"name\":\"default\",\"type\":\"Microsoft.ServiceBus/Namespaces/NetworkRuleSets\",\"location\":\"East US\",\"properties\":{\"publicNetworkAccess\":\"Disabled\",\"defaultAction\":\"Deny\",\"virtualNetworkRules\":[{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default\"},\"ignoreMissingVnetServiceEndpoint\":false},{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default2\"},\"ignoreMissingVnetServiceEndpoint\":false},{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default3\"},\"ignoreMissingVnetServiceEndpoint\":false}],\"ipRules\":[{\"ipMask\":\"1.1.1.1\",\"action\":\"Allow\"},{\"ipMask\":\"2.2.2.2\",\"action\":\"Allow\"}]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/networkRuleSets/default\",\"name\":\"default\",\"type\":\"Microsoft.ServiceBus/Namespaces/NetworkRuleSets\",\"location\":\"East US\",\"properties\":{\"publicNetworkAccess\":\"Disabled\",\"defaultAction\":\"Deny\",\"virtualNetworkRules\":[{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default\"},\"ignoreMissingVnetServiceEndpoint\":false},{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default2\"},\"ignoreMissingVnetServiceEndpoint\":false},{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default3\"},\"ignoreMissingVnetServiceEndpoint\":false}],\"ipRules\":[{\"ipMask\":\"1.1.1.1\",\"action\":\"Allow\"},{\"ipMask\":\"2.2.2.2\",\"action\":\"Allow\"}]}}", "isContentBase64": false } }, - "Set-AzServiceBusNetworkRuleSet+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/networkRuleSets/default?api-version=2022-01-01-preview+7": { + "Set-AzServiceBusNetworkRuleSet+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/networkRuleSets/default?api-version=2022-10-01-preview+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/networkRuleSets/default?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/networkRuleSets/default?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "433" ], - "x-ms-client-request-id": [ "845bc449-8ca9-47b0-bf54-dc99215d36b6" ], + "x-ms-unique-id": [ "424" ], + "x-ms-client-request-id": [ "9f36ac2f-382c-4098-beb6-8b372db4d569" ], "CommandName": [ "Get-AzServiceBusNetworkRuleSet" ], "FullCommandName": [ "Get-AzServiceBusNetworkRuleSet_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -259,29 +259,29 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "b37a7383-30e9-4205-82a0-b9107d66c426_M9SN1_M9SN1" ], + "x-ms-request-id": [ "84e354a6-8690-4fa5-b4a1-236e37c55489_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11930" ], - "x-ms-correlation-request-id": [ "7230ecca-461c-4bd3-819a-4e1dbe0d7321" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111732Z:7230ecca-461c-4bd3-819a-4e1dbe0d7321" ], + "x-ms-correlation-request-id": [ "57c3b176-4a1c-4436-aa15-7fbc1b2a39d9" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143454Z:57c3b176-4a1c-4436-aa15-7fbc1b2a39d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:17:32 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:34:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1174" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/networkRuleSets/default\",\"name\":\"default\",\"type\":\"Microsoft.ServiceBus/Namespaces/NetworkRuleSets\",\"location\":\"East US\",\"properties\":{\"publicNetworkAccess\":\"Disabled\",\"defaultAction\":\"Deny\",\"virtualNetworkRules\":[{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default\"},\"ignoreMissingVnetServiceEndpoint\":false},{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default2\"},\"ignoreMissingVnetServiceEndpoint\":false},{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default3\"},\"ignoreMissingVnetServiceEndpoint\":false}],\"ipRules\":[{\"ipMask\":\"1.1.1.1\",\"action\":\"Allow\"},{\"ipMask\":\"2.2.2.2\",\"action\":\"Allow\"}]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/networkRuleSets/default\",\"name\":\"default\",\"type\":\"Microsoft.ServiceBus/Namespaces/NetworkRuleSets\",\"location\":\"East US\",\"properties\":{\"publicNetworkAccess\":\"Disabled\",\"defaultAction\":\"Deny\",\"virtualNetworkRules\":[{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default\"},\"ignoreMissingVnetServiceEndpoint\":false},{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default2\"},\"ignoreMissingVnetServiceEndpoint\":false},{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default3\"},\"ignoreMissingVnetServiceEndpoint\":false}],\"ipRules\":[{\"ipMask\":\"1.1.1.1\",\"action\":\"Allow\"},{\"ipMask\":\"2.2.2.2\",\"action\":\"Allow\"}]}}", "isContentBase64": false } }, - "Set-AzServiceBusNetworkRuleSet+[NoContext]+SetExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/networkRuleSets/default?api-version=2022-01-01-preview+8": { + "Set-AzServiceBusNetworkRuleSet+[NoContext]+SetExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/networkRuleSets/default?api-version=2022-10-01-preview+8": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/networkRuleSets/default?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/networkRuleSets/default?api-version=2022-10-01-preview", "Content": "{\n \"properties\": {\n \"trustedServiceAccessEnabled\": true,\n \"defaultAction\": \"Deny\",\n \"virtualNetworkRules\": [\n {\n \"subnet\": {\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default\"\n },\n \"ignoreMissingVnetServiceEndpoint\": false\n },\n {\n \"subnet\": {\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default2\"\n },\n \"ignoreMissingVnetServiceEndpoint\": false\n },\n {\n \"subnet\": {\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default3\"\n },\n \"ignoreMissingVnetServiceEndpoint\": false\n }\n ],\n \"ipRules\": [\n {\n \"ipMask\": \"1.1.1.1\",\n \"action\": \"Allow\"\n },\n {\n \"ipMask\": \"2.2.2.2\",\n \"action\": \"Allow\"\n }\n ],\n \"publicNetworkAccess\": \"Disabled\"\n }\n}", "isContentBase64": false, "Headers": { @@ -296,34 +296,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "9d28dbfc-670e-49e6-a338-ef4eb1a4e66d_M9SN1_M9SN1" ], + "x-ms-request-id": [ "2f01ccf5-9204-4bc2-a5dc-213447f613b1_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1181" ], - "x-ms-correlation-request-id": [ "fa43e456-4af2-4d03-9e24-b37c7473d884" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111739Z:fa43e456-4af2-4d03-9e24-b37c7473d884" ], + "x-ms-correlation-request-id": [ "32dc5e10-6853-45ea-bc5f-de20ab847202" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143502Z:32dc5e10-6853-45ea-bc5f-de20ab847202" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:17:39 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:35:01 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1209" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/networkRuleSets/default\",\"name\":\"default\",\"type\":\"Microsoft.ServiceBus/Namespaces/NetworkRuleSets\",\"location\":\"East US\",\"properties\":{\"publicNetworkAccess\":\"Disabled\",\"defaultAction\":\"Deny\",\"virtualNetworkRules\":[{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default\"},\"ignoreMissingVnetServiceEndpoint\":false},{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default2\"},\"ignoreMissingVnetServiceEndpoint\":false},{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default3\"},\"ignoreMissingVnetServiceEndpoint\":false}],\"ipRules\":[{\"ipMask\":\"1.1.1.1\",\"action\":\"Allow\"},{\"ipMask\":\"2.2.2.2\",\"action\":\"Allow\"}],\"trustedServiceAccessEnabled\":true}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/networkRuleSets/default\",\"name\":\"default\",\"type\":\"Microsoft.ServiceBus/Namespaces/NetworkRuleSets\",\"location\":\"East US\",\"properties\":{\"publicNetworkAccess\":\"Disabled\",\"defaultAction\":\"Deny\",\"virtualNetworkRules\":[{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default\"},\"ignoreMissingVnetServiceEndpoint\":false},{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default2\"},\"ignoreMissingVnetServiceEndpoint\":false},{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default3\"},\"ignoreMissingVnetServiceEndpoint\":false}],\"ipRules\":[{\"ipMask\":\"1.1.1.1\",\"action\":\"Allow\"},{\"ipMask\":\"2.2.2.2\",\"action\":\"Allow\"}],\"trustedServiceAccessEnabled\":true}}", "isContentBase64": false } }, - "Set-AzServiceBusNetworkRuleSet+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/networkRuleSets/default?api-version=2022-01-01-preview+1": { + "Set-AzServiceBusNetworkRuleSet+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/networkRuleSets/default?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/networkRuleSets/default?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/networkRuleSets/default?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "435" ], - "x-ms-client-request-id": [ "64791a0e-615e-417f-b482-907567e0fe7f" ], + "x-ms-unique-id": [ "426" ], + "x-ms-client-request-id": [ "e9867e8d-f459-4237-8d88-48e352dc3d99" ], "CommandName": [ "Get-AzServiceBusNetworkRuleSet" ], "FullCommandName": [ "Get-AzServiceBusNetworkRuleSet_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -338,34 +338,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "88b4c01f-34a4-4e9a-aaa8-13256d4b0bc3_M9SN1_M9SN1" ], + "x-ms-request-id": [ "b8dec9ab-4c5a-4b63-92c0-413ad38a9929_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11929" ], - "x-ms-correlation-request-id": [ "ef3e8897-7d98-429b-a523-f08d49fc8db2" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111740Z:ef3e8897-7d98-429b-a523-f08d49fc8db2" ], + "x-ms-correlation-request-id": [ "b6d66ae8-99a1-43c3-9b4a-39f10d612f05" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143503Z:b6d66ae8-99a1-43c3-9b4a-39f10d612f05" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:17:39 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:35:02 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1209" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/networkRuleSets/default\",\"name\":\"default\",\"type\":\"Microsoft.ServiceBus/Namespaces/NetworkRuleSets\",\"location\":\"East US\",\"properties\":{\"publicNetworkAccess\":\"Disabled\",\"defaultAction\":\"Deny\",\"virtualNetworkRules\":[{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default\"},\"ignoreMissingVnetServiceEndpoint\":false},{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default2\"},\"ignoreMissingVnetServiceEndpoint\":false},{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default3\"},\"ignoreMissingVnetServiceEndpoint\":false}],\"ipRules\":[{\"ipMask\":\"1.1.1.1\",\"action\":\"Allow\"},{\"ipMask\":\"2.2.2.2\",\"action\":\"Allow\"}],\"trustedServiceAccessEnabled\":true}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/networkRuleSets/default\",\"name\":\"default\",\"type\":\"Microsoft.ServiceBus/Namespaces/NetworkRuleSets\",\"location\":\"East US\",\"properties\":{\"publicNetworkAccess\":\"Disabled\",\"defaultAction\":\"Deny\",\"virtualNetworkRules\":[{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default\"},\"ignoreMissingVnetServiceEndpoint\":false},{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default2\"},\"ignoreMissingVnetServiceEndpoint\":false},{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default3\"},\"ignoreMissingVnetServiceEndpoint\":false}],\"ipRules\":[{\"ipMask\":\"1.1.1.1\",\"action\":\"Allow\"},{\"ipMask\":\"2.2.2.2\",\"action\":\"Allow\"}],\"trustedServiceAccessEnabled\":true}}", "isContentBase64": false } }, - "Set-AzServiceBusNetworkRuleSet+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/networkRuleSets/default?api-version=2022-01-01-preview+2": { + "Set-AzServiceBusNetworkRuleSet+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/networkRuleSets/default?api-version=2022-10-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/networkRuleSets/default?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/networkRuleSets/default?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "436" ], - "x-ms-client-request-id": [ "b2327c99-32d9-49d3-baed-09945c171b6a" ], + "x-ms-unique-id": [ "427" ], + "x-ms-client-request-id": [ "3cb0ba1c-6c2c-4602-af8a-7a4f4f14037d" ], "CommandName": [ "Get-AzServiceBusNetworkRuleSet" ], "FullCommandName": [ "Get-AzServiceBusNetworkRuleSet_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -380,29 +380,29 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "8a918ea3-1484-45a9-93a0-ac941ae60a8d_M9SN1_M9SN1" ], + "x-ms-request-id": [ "01305a9a-7f65-484d-b9f4-cefa1b165177_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11928" ], - "x-ms-correlation-request-id": [ "ef108b2f-f35f-4ab3-80c5-050b5cbe4be6" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111741Z:ef108b2f-f35f-4ab3-80c5-050b5cbe4be6" ], + "x-ms-correlation-request-id": [ "58e71dfc-bcfa-490f-b6ea-82dd5dbba98d" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143504Z:58e71dfc-bcfa-490f-b6ea-82dd5dbba98d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:17:40 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:35:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1209" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/networkRuleSets/default\",\"name\":\"default\",\"type\":\"Microsoft.ServiceBus/Namespaces/NetworkRuleSets\",\"location\":\"East US\",\"properties\":{\"publicNetworkAccess\":\"Disabled\",\"defaultAction\":\"Deny\",\"virtualNetworkRules\":[{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default\"},\"ignoreMissingVnetServiceEndpoint\":false},{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default2\"},\"ignoreMissingVnetServiceEndpoint\":false},{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default3\"},\"ignoreMissingVnetServiceEndpoint\":false}],\"ipRules\":[{\"ipMask\":\"1.1.1.1\",\"action\":\"Allow\"},{\"ipMask\":\"2.2.2.2\",\"action\":\"Allow\"}],\"trustedServiceAccessEnabled\":true}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/networkRuleSets/default\",\"name\":\"default\",\"type\":\"Microsoft.ServiceBus/Namespaces/NetworkRuleSets\",\"location\":\"East US\",\"properties\":{\"publicNetworkAccess\":\"Disabled\",\"defaultAction\":\"Deny\",\"virtualNetworkRules\":[{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default\"},\"ignoreMissingVnetServiceEndpoint\":false},{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default2\"},\"ignoreMissingVnetServiceEndpoint\":false},{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default3\"},\"ignoreMissingVnetServiceEndpoint\":false}],\"ipRules\":[{\"ipMask\":\"1.1.1.1\",\"action\":\"Allow\"},{\"ipMask\":\"2.2.2.2\",\"action\":\"Allow\"}],\"trustedServiceAccessEnabled\":true}}", "isContentBase64": false } }, - "Set-AzServiceBusNetworkRuleSet+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/networkRuleSets/default?api-version=2022-01-01-preview+3": { + "Set-AzServiceBusNetworkRuleSet+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/networkRuleSets/default?api-version=2022-10-01-preview+3": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/networkRuleSets/default?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/networkRuleSets/default?api-version=2022-10-01-preview", "Content": "{\n \"properties\": {\n \"trustedServiceAccessEnabled\": false,\n \"defaultAction\": \"Deny\",\n \"virtualNetworkRules\": [\n {\n \"subnet\": {\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default\"\n },\n \"ignoreMissingVnetServiceEndpoint\": false\n },\n {\n \"subnet\": {\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default2\"\n },\n \"ignoreMissingVnetServiceEndpoint\": false\n },\n {\n \"subnet\": {\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default3\"\n },\n \"ignoreMissingVnetServiceEndpoint\": false\n }\n ],\n \"ipRules\": [\n {\n \"ipMask\": \"1.1.1.1\",\n \"action\": \"Allow\"\n },\n {\n \"ipMask\": \"2.2.2.2\",\n \"action\": \"Allow\"\n }\n ],\n \"publicNetworkAccess\": \"Disabled\"\n }\n}", "isContentBase64": false, "Headers": { @@ -417,34 +417,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "2ecf66e6-d17a-443a-9814-4514673a2f9d_M9SN1_M9SN1" ], + "x-ms-request-id": [ "26344777-aedf-47db-a395-2b4af55b1ce7_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1180" ], - "x-ms-correlation-request-id": [ "38292d36-ed5c-4fd1-9e2c-7b48583d6a4f" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111748Z:38292d36-ed5c-4fd1-9e2c-7b48583d6a4f" ], + "x-ms-correlation-request-id": [ "efd8f459-4580-475e-bc92-c702cb2b81af" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143512Z:efd8f459-4580-475e-bc92-c702cb2b81af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:17:47 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:35:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1174" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/networkRuleSets/default\",\"name\":\"default\",\"type\":\"Microsoft.ServiceBus/Namespaces/NetworkRuleSets\",\"location\":\"East US\",\"properties\":{\"publicNetworkAccess\":\"Disabled\",\"defaultAction\":\"Deny\",\"virtualNetworkRules\":[{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default\"},\"ignoreMissingVnetServiceEndpoint\":false},{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default2\"},\"ignoreMissingVnetServiceEndpoint\":false},{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default3\"},\"ignoreMissingVnetServiceEndpoint\":false}],\"ipRules\":[{\"ipMask\":\"1.1.1.1\",\"action\":\"Allow\"},{\"ipMask\":\"2.2.2.2\",\"action\":\"Allow\"}]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/networkRuleSets/default\",\"name\":\"default\",\"type\":\"Microsoft.ServiceBus/Namespaces/NetworkRuleSets\",\"location\":\"East US\",\"properties\":{\"publicNetworkAccess\":\"Disabled\",\"defaultAction\":\"Deny\",\"virtualNetworkRules\":[{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default\"},\"ignoreMissingVnetServiceEndpoint\":false},{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default2\"},\"ignoreMissingVnetServiceEndpoint\":false},{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default3\"},\"ignoreMissingVnetServiceEndpoint\":false}],\"ipRules\":[{\"ipMask\":\"1.1.1.1\",\"action\":\"Allow\"},{\"ipMask\":\"2.2.2.2\",\"action\":\"Allow\"}]}}", "isContentBase64": false } }, - "Set-AzServiceBusNetworkRuleSet+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/networkRuleSets/default?api-version=2022-01-01-preview+4": { + "Set-AzServiceBusNetworkRuleSet+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/networkRuleSets/default?api-version=2022-10-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/networkRuleSets/default?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/networkRuleSets/default?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "438" ], - "x-ms-client-request-id": [ "8552427d-8021-4e8f-bd9b-ecc62dae9de7" ], + "x-ms-unique-id": [ "429" ], + "x-ms-client-request-id": [ "5a258261-2167-4cdc-a9eb-d746dc4562b9" ], "CommandName": [ "Get-AzServiceBusNetworkRuleSet" ], "FullCommandName": [ "Get-AzServiceBusNetworkRuleSet_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -459,22 +459,22 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "1e603b1a-edcf-40e3-ba7a-d3762289d1ab_M9SN1_M9SN1" ], + "x-ms-request-id": [ "35bc9ced-95e5-4e3e-9041-022b0a1ac971_M5SN1_M5SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11927" ], - "x-ms-correlation-request-id": [ "04e3daf6-3c3b-48f3-887a-be56f5e13514" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111749Z:04e3daf6-3c3b-48f3-887a-be56f5e13514" ], + "x-ms-correlation-request-id": [ "afb7cec0-88b0-49ea-99c7-970162f81d7b" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143516Z:afb7cec0-88b0-49ea-99c7-970162f81d7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:17:48 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:35:16 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1174" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/networkRuleSets/default\",\"name\":\"default\",\"type\":\"Microsoft.ServiceBus/Namespaces/NetworkRuleSets\",\"location\":\"East US\",\"properties\":{\"publicNetworkAccess\":\"Disabled\",\"defaultAction\":\"Deny\",\"virtualNetworkRules\":[{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default\"},\"ignoreMissingVnetServiceEndpoint\":false},{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default2\"},\"ignoreMissingVnetServiceEndpoint\":false},{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default3\"},\"ignoreMissingVnetServiceEndpoint\":false}],\"ipRules\":[{\"ipMask\":\"1.1.1.1\",\"action\":\"Allow\"},{\"ipMask\":\"2.2.2.2\",\"action\":\"Allow\"}]}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/networkRuleSets/default\",\"name\":\"default\",\"type\":\"Microsoft.ServiceBus/Namespaces/NetworkRuleSets\",\"location\":\"East US\",\"properties\":{\"publicNetworkAccess\":\"Disabled\",\"defaultAction\":\"Deny\",\"virtualNetworkRules\":[{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default\"},\"ignoreMissingVnetServiceEndpoint\":false},{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default2\"},\"ignoreMissingVnetServiceEndpoint\":false},{\"subnet\":{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/automatedpowershelltesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default3\"},\"ignoreMissingVnetServiceEndpoint\":false}],\"ipRules\":[{\"ipMask\":\"1.1.1.1\",\"action\":\"Allow\"},{\"ipMask\":\"2.2.2.2\",\"action\":\"Allow\"}]}}", "isContentBase64": false } } diff --git a/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusQueue.Recording.json b/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusQueue.Recording.json index a54e6b57fc6a..b9b689095734 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusQueue.Recording.json +++ b/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusQueue.Recording.json @@ -1,13 +1,13 @@ { - "Set-AzServiceBusQueue+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue3?api-version=2022-01-01-preview+1": { + "Set-AzServiceBusQueue+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue3?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue3?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "439" ], - "x-ms-client-request-id": [ "212cdda0-7f1f-4f6d-bfb6-da1e257b38aa" ], + "x-ms-unique-id": [ "430" ], + "x-ms-client-request-id": [ "d82766b9-ed28-4bc0-936b-ea19d25a87a2" ], "CommandName": [ "Get-AzServiceBusQueue" ], "FullCommandName": [ "Get-AzServiceBusQueue_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -24,31 +24,31 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11926" ], - "x-ms-request-id": [ "ec782ed8-ecf4-4b13-8b73-7c2c1a8d9b8e" ], - "x-ms-correlation-request-id": [ "ec782ed8-ecf4-4b13-8b73-7c2c1a8d9b8e" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111809Z:ec782ed8-ecf4-4b13-8b73-7c2c1a8d9b8e" ], + "x-ms-request-id": [ "882c76b4-362e-432d-80dd-ccfc281b2f66" ], + "x-ms-correlation-request-id": [ "882c76b4-362e-432d-80dd-ccfc281b2f66" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143531Z:882c76b4-362e-432d-80dd-ccfc281b2f66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:08 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:35:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1011" ], + "Content-Length": [ "1013" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue3\",\"name\":\"queue3\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"lockDuration\":\"PT1M\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":true,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":true,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":10,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P7D\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2022-11-24T10:28:35.405173Z\",\"updatedAt\":\"2022-11-24T10:28:35.405173Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue3\",\"name\":\"queue3\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"lockDuration\":\"PT1M\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":true,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":true,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":10,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P7D\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2023-02-19T13:47:08.1424011Z\",\"updatedAt\":\"2023-02-19T13:47:08.1424011Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\"}}", "isContentBase64": false } }, - "Set-AzServiceBusQueue+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue3?api-version=2022-01-01-preview+2": { + "Set-AzServiceBusQueue+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue3?api-version=2022-10-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue3?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "440" ], - "x-ms-client-request-id": [ "b3b8fc09-2eb2-4cf4-9f19-c38e0c2a4530" ], + "x-ms-unique-id": [ "431" ], + "x-ms-client-request-id": [ "0d88fe17-6076-471d-80ca-a40c15eb6076" ], "CommandName": [ "Get-AzServiceBusQueue" ], "FullCommandName": [ "Get-AzServiceBusQueue_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -65,33 +65,33 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11925" ], - "x-ms-request-id": [ "dbea85d0-746b-4d4d-9339-c52474cf741e" ], - "x-ms-correlation-request-id": [ "dbea85d0-746b-4d4d-9339-c52474cf741e" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111809Z:dbea85d0-746b-4d4d-9339-c52474cf741e" ], + "x-ms-request-id": [ "ed7377d8-8f72-4585-a0a8-76900db44eac" ], + "x-ms-correlation-request-id": [ "ed7377d8-8f72-4585-a0a8-76900db44eac" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143532Z:ed7377d8-8f72-4585-a0a8-76900db44eac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:09 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:35:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1011" ], + "Content-Length": [ "1013" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue3\",\"name\":\"queue3\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"lockDuration\":\"PT1M\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":true,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":true,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":10,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P7D\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2022-11-24T10:28:35.405173Z\",\"updatedAt\":\"2022-11-24T10:28:35.405173Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue3\",\"name\":\"queue3\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"lockDuration\":\"PT1M\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":true,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":true,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":10,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P7D\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2023-02-19T13:47:08.1424011Z\",\"updatedAt\":\"2023-02-19T13:47:08.1424011Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\"}}", "isContentBase64": false } }, - "Set-AzServiceBusQueue+[NoContext]+SetExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue3?api-version=2022-01-01-preview+3": { + "Set-AzServiceBusQueue+[NoContext]+SetExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue3?api-version=2022-10-01-preview+3": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue3?api-version=2022-01-01-preview", - "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT1M\",\n \"maxSizeInMegabytes\": 1024,\n \"maxMessageSizeInKilobytes\": 1024,\n \"requiresDuplicateDetection\": false,\n \"requiresSession\": true,\n \"defaultMessageTimeToLive\": \"P10675197D\",\n \"deadLetteringOnMessageExpiration\": false,\n \"duplicateDetectionHistoryTimeWindow\": \"PT10M\",\n \"maxDeliveryCount\": 10,\n \"status\": \"Active\",\n \"enableBatchedOperations\": true,\n \"autoDeleteOnIdle\": \"P1DT3M4S\",\n \"enablePartitioning\": false,\n \"enableExpress\": false\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue3?api-version=2022-10-01-preview", + "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT1M\",\n \"maxSizeInMegabytes\": 1024,\n \"maxMessageSizeInKilobytes\": 1024,\n \"requiresDuplicateDetection\": false,\n \"requiresSession\": true,\n \"defaultMessageTimeToLive\": \"P10675199DT2H48M5.4775807S\",\n \"deadLetteringOnMessageExpiration\": false,\n \"duplicateDetectionHistoryTimeWindow\": \"PT10M\",\n \"maxDeliveryCount\": 10,\n \"status\": \"Active\",\n \"enableBatchedOperations\": true,\n \"autoDeleteOnIdle\": \"P1DT3M4S\",\n \"enablePartitioning\": false,\n \"enableExpress\": false\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "524" ] + "Content-Length": [ "540" ] } }, "Response": { @@ -101,31 +101,31 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1179" ], - "x-ms-request-id": [ "61aaf227-d5ef-41a4-b05e-16b657397dfa" ], - "x-ms-correlation-request-id": [ "61aaf227-d5ef-41a4-b05e-16b657397dfa" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111809Z:61aaf227-d5ef-41a4-b05e-16b657397dfa" ], + "x-ms-request-id": [ "98217937-585b-4bea-9fef-1e5646cd8dac" ], + "x-ms-correlation-request-id": [ "98217937-585b-4bea-9fef-1e5646cd8dac" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143532Z:98217937-585b-4bea-9fef-1e5646cd8dac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:09 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:35:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "983" ], + "Content-Length": [ "999" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue3\",\"name\":\"queue3\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"lockDuration\":\"PT1M\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":true,\"defaultMessageTimeToLive\":\"P10675197D\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":true,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":10,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P1DT3M4S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue3\",\"name\":\"queue3\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"lockDuration\":\"PT1M\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":true,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":true,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":10,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P1DT3M4S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\"}}", "isContentBase64": false } }, - "Set-AzServiceBusQueue+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue3?api-version=2022-01-01-preview+4": { + "Set-AzServiceBusQueue+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue3?api-version=2022-10-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue3?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "442" ], - "x-ms-client-request-id": [ "0e02c1b0-f89b-4745-9c8f-2f2224eb0eb6" ], + "x-ms-unique-id": [ "433" ], + "x-ms-client-request-id": [ "072b0a0c-66e0-4659-84ac-ae1df7643045" ], "CommandName": [ "Get-AzServiceBusQueue" ], "FullCommandName": [ "Get-AzServiceBusQueue_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -142,33 +142,33 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11924" ], - "x-ms-request-id": [ "e27e8188-b8ba-43e3-9bb6-a41ee473a2cc" ], - "x-ms-correlation-request-id": [ "e27e8188-b8ba-43e3-9bb6-a41ee473a2cc" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111810Z:e27e8188-b8ba-43e3-9bb6-a41ee473a2cc" ], + "x-ms-request-id": [ "cefdc639-e8ff-4f0c-941f-dda90a4c195c" ], + "x-ms-correlation-request-id": [ "cefdc639-e8ff-4f0c-941f-dda90a4c195c" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143533Z:cefdc639-e8ff-4f0c-941f-dda90a4c195c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:09 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:35:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1001" ], + "Content-Length": [ "1018" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue3\",\"name\":\"queue3\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"lockDuration\":\"PT1M\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":true,\"defaultMessageTimeToLive\":\"P10675197D\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":true,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":10,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P1DT3M4S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2022-11-24T10:28:35.405173Z\",\"updatedAt\":\"2022-11-24T11:18:09.6033859Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue3\",\"name\":\"queue3\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"lockDuration\":\"PT1M\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":true,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":true,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":10,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P1DT3M4S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2023-02-19T13:47:08.1424011Z\",\"updatedAt\":\"2023-02-19T14:35:32.5949281Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\"}}", "isContentBase64": false } }, - "Set-AzServiceBusQueue+[NoContext]+SetExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue3?api-version=2022-01-01-preview+5": { + "Set-AzServiceBusQueue+[NoContext]+SetExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue3?api-version=2022-10-01-preview+5": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue3?api-version=2022-01-01-preview", - "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT1M\",\n \"maxSizeInMegabytes\": 1024,\n \"maxMessageSizeInKilobytes\": 1024,\n \"requiresDuplicateDetection\": false,\n \"requiresSession\": true,\n \"defaultMessageTimeToLive\": \"P10675197D\",\n \"deadLetteringOnMessageExpiration\": false,\n \"duplicateDetectionHistoryTimeWindow\": \"PT10M\",\n \"maxDeliveryCount\": 10,\n \"status\": \"ReceiveDisabled\",\n \"enableBatchedOperations\": true,\n \"autoDeleteOnIdle\": \"P1DT3M4S\",\n \"enablePartitioning\": false,\n \"enableExpress\": false\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue3?api-version=2022-10-01-preview", + "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT1M\",\n \"maxSizeInMegabytes\": 1024,\n \"maxMessageSizeInKilobytes\": 1024,\n \"requiresDuplicateDetection\": false,\n \"requiresSession\": true,\n \"defaultMessageTimeToLive\": \"P10675199DT2H48M5.4775807S\",\n \"deadLetteringOnMessageExpiration\": false,\n \"duplicateDetectionHistoryTimeWindow\": \"PT10M\",\n \"maxDeliveryCount\": 10,\n \"status\": \"ReceiveDisabled\",\n \"enableBatchedOperations\": true,\n \"autoDeleteOnIdle\": \"P1DT3M4S\",\n \"enablePartitioning\": false,\n \"enableExpress\": false\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "533" ] + "Content-Length": [ "549" ] } }, "Response": { @@ -178,31 +178,31 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1178" ], - "x-ms-request-id": [ "8b254a49-43b4-45d7-8a38-98712edc711e" ], - "x-ms-correlation-request-id": [ "8b254a49-43b4-45d7-8a38-98712edc711e" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111810Z:8b254a49-43b4-45d7-8a38-98712edc711e" ], + "x-ms-request-id": [ "a6469729-9bda-4ec6-a194-d171450c524d" ], + "x-ms-correlation-request-id": [ "a6469729-9bda-4ec6-a194-d171450c524d" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143533Z:a6469729-9bda-4ec6-a194-d171450c524d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:10 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:35:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "992" ], + "Content-Length": [ "1008" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue3\",\"name\":\"queue3\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"lockDuration\":\"PT1M\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":true,\"defaultMessageTimeToLive\":\"P10675197D\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":true,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":10,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"ReceiveDisabled\",\"autoDeleteOnIdle\":\"P1DT3M4S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue3\",\"name\":\"queue3\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"lockDuration\":\"PT1M\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":true,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":true,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":10,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"ReceiveDisabled\",\"autoDeleteOnIdle\":\"P1DT3M4S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\"}}", "isContentBase64": false } }, - "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview+1": { + "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "444" ], - "x-ms-client-request-id": [ "7763dff6-77c2-42d0-a0c6-0fdf2e01ef5d" ], + "x-ms-unique-id": [ "435" ], + "x-ms-client-request-id": [ "e6099b22-ea6c-480e-926d-17bf18fccbdf" ], "CommandName": [ "Get-AzServiceBusQueue" ], "FullCommandName": [ "Get-AzServiceBusQueue_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -219,31 +219,31 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11923" ], - "x-ms-request-id": [ "8f0af8a5-ea71-49e8-9c79-abf1201aa225" ], - "x-ms-correlation-request-id": [ "8f0af8a5-ea71-49e8-9c79-abf1201aa225" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111810Z:8f0af8a5-ea71-49e8-9c79-abf1201aa225" ], + "x-ms-request-id": [ "09abe942-0656-4b9d-b79d-702a86c17eae" ], + "x-ms-correlation-request-id": [ "09abe942-0656-4b9d-b79d-702a86c17eae" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143534Z:09abe942-0656-4b9d-b79d-702a86c17eae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:10 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:35:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1087" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT4M\",\"maxSizeInMegabytes\":4096,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P428DT3H11M10S\",\"deadLetteringOnMessageExpiration\":true,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":8,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2022-11-24T10:28:33.3426464Z\",\"updatedAt\":\"2022-11-24T10:28:33.3426464Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT4M\",\"maxSizeInMegabytes\":4096,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P428DT3H11M10S\",\"deadLetteringOnMessageExpiration\":true,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":8,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2023-02-19T13:47:05.6736777Z\",\"updatedAt\":\"2023-02-19T13:47:05.6736777Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", "isContentBase64": false } }, - "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview+2": { + "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "445" ], - "x-ms-client-request-id": [ "d2badb4a-f1e4-4fba-88e7-1806a7fb7bcb" ], + "x-ms-unique-id": [ "436" ], + "x-ms-client-request-id": [ "2a26ad4a-3458-4e8c-8279-d92426c559a3" ], "CommandName": [ "Get-AzServiceBusQueue" ], "FullCommandName": [ "Get-AzServiceBusQueue_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -260,33 +260,33 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11922" ], - "x-ms-request-id": [ "81c50576-d852-471a-ada5-e1c1adc08be8" ], - "x-ms-correlation-request-id": [ "81c50576-d852-471a-ada5-e1c1adc08be8" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111811Z:81c50576-d852-471a-ada5-e1c1adc08be8" ], + "x-ms-request-id": [ "5c4d0005-9e92-4094-9553-f07d9729b473" ], + "x-ms-correlation-request-id": [ "5c4d0005-9e92-4094-9553-f07d9729b473" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143535Z:5c4d0005-9e92-4094-9553-f07d9729b473" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:10 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:35:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1087" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT4M\",\"maxSizeInMegabytes\":4096,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P428DT3H11M10S\",\"deadLetteringOnMessageExpiration\":true,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":8,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2022-11-24T10:28:33.3426464Z\",\"updatedAt\":\"2022-11-24T10:28:33.3426464Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT4M\",\"maxSizeInMegabytes\":4096,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P428DT3H11M10S\",\"deadLetteringOnMessageExpiration\":true,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":8,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2023-02-19T13:47:05.6736777Z\",\"updatedAt\":\"2023-02-19T13:47:05.6736777Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", "isContentBase64": false } }, - "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview+3": { + "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview+3": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview", - "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT2M\",\n \"maxSizeInMegabytes\": 4096,\n \"maxMessageSizeInKilobytes\": 102400,\n \"requiresDuplicateDetection\": true,\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P428DT3H11M10S\",\n \"deadLetteringOnMessageExpiration\": true,\n \"duplicateDetectionHistoryTimeWindow\": \"PT10M\",\n \"maxDeliveryCount\": 8,\n \"status\": \"Active\",\n \"enableBatchedOperations\": false,\n \"autoDeleteOnIdle\": \"P10675197D\",\n \"enablePartitioning\": false,\n \"enableExpress\": false,\n \"forwardTo\": \"queue1\",\n \"forwardDeadLetteredMessagesTo\": \"queue1\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview", + "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT2M\",\n \"maxSizeInMegabytes\": 4096,\n \"maxMessageSizeInKilobytes\": 102400,\n \"requiresDuplicateDetection\": true,\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P428DT3H11M10S\",\n \"deadLetteringOnMessageExpiration\": true,\n \"duplicateDetectionHistoryTimeWindow\": \"PT10M\",\n \"maxDeliveryCount\": 8,\n \"status\": \"Active\",\n \"enableBatchedOperations\": false,\n \"autoDeleteOnIdle\": \"P10675199DT2H48M5.4775807S\",\n \"enablePartitioning\": false,\n \"enableExpress\": false,\n \"forwardTo\": \"queue1\",\n \"forwardDeadLetteredMessagesTo\": \"queue1\"\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "605" ] + "Content-Length": [ "621" ] } }, "Response": { @@ -296,31 +296,31 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1177" ], - "x-ms-request-id": [ "595f791b-ba0f-4a1f-9f8d-5742cc288cac" ], - "x-ms-correlation-request-id": [ "595f791b-ba0f-4a1f-9f8d-5742cc288cac" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111811Z:595f791b-ba0f-4a1f-9f8d-5742cc288cac" ], + "x-ms-request-id": [ "1cdbdf9e-683c-4915-ad9d-6386007c6284" ], + "x-ms-correlation-request-id": [ "1cdbdf9e-683c-4915-ad9d-6386007c6284" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143535Z:1cdbdf9e-683c-4915-ad9d-6386007c6284" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:11 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:35:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1052" ], + "Content-Length": [ "1068" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT2M\",\"maxSizeInMegabytes\":4096,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P428DT3H11M10S\",\"deadLetteringOnMessageExpiration\":true,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":8,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675197D\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT2M\",\"maxSizeInMegabytes\":4096,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P428DT3H11M10S\",\"deadLetteringOnMessageExpiration\":true,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":8,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", "isContentBase64": false } }, - "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview+4": { + "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "447" ], - "x-ms-client-request-id": [ "562364b3-43d5-4375-9d78-439b083248b8" ], + "x-ms-unique-id": [ "438" ], + "x-ms-client-request-id": [ "034c56fd-4bfb-4355-bd96-743aa45429f0" ], "CommandName": [ "Get-AzServiceBusQueue" ], "FullCommandName": [ "Get-AzServiceBusQueue_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -337,33 +337,33 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11921" ], - "x-ms-request-id": [ "99c74895-9c92-4881-9b68-2323773dc65d" ], - "x-ms-correlation-request-id": [ "99c74895-9c92-4881-9b68-2323773dc65d" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111811Z:99c74895-9c92-4881-9b68-2323773dc65d" ], + "x-ms-request-id": [ "bc604262-ba74-4b2d-bfd6-c2d3152344c1" ], + "x-ms-correlation-request-id": [ "bc604262-ba74-4b2d-bfd6-c2d3152344c1" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143536Z:bc604262-ba74-4b2d-bfd6-c2d3152344c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:11 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:35:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1087" ], + "Content-Length": [ "1086" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT2M\",\"maxSizeInMegabytes\":4096,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P428DT3H11M10S\",\"deadLetteringOnMessageExpiration\":true,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":8,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2022-11-24T10:28:33.3426464Z\",\"updatedAt\":\"2022-11-24T11:18:11.2908753Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT2M\",\"maxSizeInMegabytes\":4096,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P428DT3H11M10S\",\"deadLetteringOnMessageExpiration\":true,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":8,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2023-02-19T13:47:05.6736777Z\",\"updatedAt\":\"2023-02-19T14:35:35.563709Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", "isContentBase64": false } }, - "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview+5": { + "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview+5": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview", - "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT2M\",\n \"maxSizeInMegabytes\": 4096,\n \"maxMessageSizeInKilobytes\": 102400,\n \"requiresDuplicateDetection\": true,\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P1DT3M4S\",\n \"deadLetteringOnMessageExpiration\": true,\n \"duplicateDetectionHistoryTimeWindow\": \"PT10M\",\n \"maxDeliveryCount\": 8,\n \"status\": \"Active\",\n \"enableBatchedOperations\": false,\n \"autoDeleteOnIdle\": \"P10675197D\",\n \"enablePartitioning\": false,\n \"enableExpress\": false,\n \"forwardTo\": \"queue1\",\n \"forwardDeadLetteredMessagesTo\": \"queue1\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview", + "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT2M\",\n \"maxSizeInMegabytes\": 4096,\n \"maxMessageSizeInKilobytes\": 102400,\n \"requiresDuplicateDetection\": true,\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P1DT3M4S\",\n \"deadLetteringOnMessageExpiration\": true,\n \"duplicateDetectionHistoryTimeWindow\": \"PT10M\",\n \"maxDeliveryCount\": 8,\n \"status\": \"Active\",\n \"enableBatchedOperations\": false,\n \"autoDeleteOnIdle\": \"P10675199DT2H48M5.4775807S\",\n \"enablePartitioning\": false,\n \"enableExpress\": false,\n \"forwardTo\": \"queue1\",\n \"forwardDeadLetteredMessagesTo\": \"queue1\"\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "599" ] + "Content-Length": [ "615" ] } }, "Response": { @@ -373,31 +373,31 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1176" ], - "x-ms-request-id": [ "40a9926a-b9a7-4414-ad94-c59e4c73b56c" ], - "x-ms-correlation-request-id": [ "40a9926a-b9a7-4414-ad94-c59e4c73b56c" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111812Z:40a9926a-b9a7-4414-ad94-c59e4c73b56c" ], + "x-ms-request-id": [ "0db76775-b049-4142-bbae-72f8758abea3" ], + "x-ms-correlation-request-id": [ "0db76775-b049-4142-bbae-72f8758abea3" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143537Z:0db76775-b049-4142-bbae-72f8758abea3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:11 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:35:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1046" ], + "Content-Length": [ "1062" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT2M\",\"maxSizeInMegabytes\":4096,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":true,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":8,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675197D\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT2M\",\"maxSizeInMegabytes\":4096,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":true,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":8,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", "isContentBase64": false } }, - "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview+6": { + "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "449" ], - "x-ms-client-request-id": [ "fef02c43-9626-4e60-b3da-ac676991f172" ], + "x-ms-unique-id": [ "440" ], + "x-ms-client-request-id": [ "7889dbcc-35ae-4962-8cf5-5d41584b018c" ], "CommandName": [ "Get-AzServiceBusQueue" ], "FullCommandName": [ "Get-AzServiceBusQueue_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -414,33 +414,33 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11920" ], - "x-ms-request-id": [ "07e096d8-f920-423a-9bbc-f910a9903b90" ], - "x-ms-correlation-request-id": [ "07e096d8-f920-423a-9bbc-f910a9903b90" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111812Z:07e096d8-f920-423a-9bbc-f910a9903b90" ], + "x-ms-request-id": [ "67f49594-b900-4b5f-a5f6-519f0c5b6156" ], + "x-ms-correlation-request-id": [ "67f49594-b900-4b5f-a5f6-519f0c5b6156" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143537Z:67f49594-b900-4b5f-a5f6-519f0c5b6156" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:12 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:35:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1081" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT2M\",\"maxSizeInMegabytes\":4096,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":true,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":8,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2022-11-24T10:28:33.3426464Z\",\"updatedAt\":\"2022-11-24T11:18:12.0252421Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT2M\",\"maxSizeInMegabytes\":4096,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":true,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":8,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2023-02-19T13:47:05.6736777Z\",\"updatedAt\":\"2023-02-19T14:35:36.9230929Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", "isContentBase64": false } }, - "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview+7": { + "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview+7": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview", - "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT2M\",\n \"maxSizeInMegabytes\": 2048,\n \"maxMessageSizeInKilobytes\": 102400,\n \"requiresDuplicateDetection\": true,\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P1DT3M4S\",\n \"deadLetteringOnMessageExpiration\": true,\n \"duplicateDetectionHistoryTimeWindow\": \"PT10M\",\n \"maxDeliveryCount\": 8,\n \"status\": \"Active\",\n \"enableBatchedOperations\": false,\n \"autoDeleteOnIdle\": \"P10675197D\",\n \"enablePartitioning\": false,\n \"enableExpress\": false,\n \"forwardTo\": \"queue1\",\n \"forwardDeadLetteredMessagesTo\": \"queue1\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview", + "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT2M\",\n \"maxSizeInMegabytes\": 2048,\n \"maxMessageSizeInKilobytes\": 102400,\n \"requiresDuplicateDetection\": true,\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P1DT3M4S\",\n \"deadLetteringOnMessageExpiration\": true,\n \"duplicateDetectionHistoryTimeWindow\": \"PT10M\",\n \"maxDeliveryCount\": 8,\n \"status\": \"Active\",\n \"enableBatchedOperations\": false,\n \"autoDeleteOnIdle\": \"P10675199DT2H48M5.4775807S\",\n \"enablePartitioning\": false,\n \"enableExpress\": false,\n \"forwardTo\": \"queue1\",\n \"forwardDeadLetteredMessagesTo\": \"queue1\"\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "599" ] + "Content-Length": [ "615" ] } }, "Response": { @@ -450,31 +450,31 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1175" ], - "x-ms-request-id": [ "932b7c93-d99f-4848-8c44-3d73e6d02402" ], - "x-ms-correlation-request-id": [ "932b7c93-d99f-4848-8c44-3d73e6d02402" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111812Z:932b7c93-d99f-4848-8c44-3d73e6d02402" ], + "x-ms-request-id": [ "92fe99bd-cf3d-4f9c-92b0-e2ce23dfaf48" ], + "x-ms-correlation-request-id": [ "92fe99bd-cf3d-4f9c-92b0-e2ce23dfaf48" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143538Z:92fe99bd-cf3d-4f9c-92b0-e2ce23dfaf48" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:12 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:35:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1046" ], + "Content-Length": [ "1062" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT2M\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":true,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":8,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675197D\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT2M\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":true,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":8,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", "isContentBase64": false } }, - "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview+8": { + "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "451" ], - "x-ms-client-request-id": [ "f85f8b4f-e104-4bdd-823b-a1faf5c96c95" ], + "x-ms-unique-id": [ "442" ], + "x-ms-client-request-id": [ "66100f3d-9a99-45f2-84da-fc986be85bcd" ], "CommandName": [ "Get-AzServiceBusQueue" ], "FullCommandName": [ "Get-AzServiceBusQueue_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -491,33 +491,33 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11919" ], - "x-ms-request-id": [ "86f31f13-fb24-42fc-a9f6-68b30f17dcd7" ], - "x-ms-correlation-request-id": [ "86f31f13-fb24-42fc-a9f6-68b30f17dcd7" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111813Z:86f31f13-fb24-42fc-a9f6-68b30f17dcd7" ], + "x-ms-request-id": [ "6d192dcb-297b-4bb9-83ce-475a27596fad" ], + "x-ms-correlation-request-id": [ "6d192dcb-297b-4bb9-83ce-475a27596fad" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143538Z:6d192dcb-297b-4bb9-83ce-475a27596fad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:13 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:35:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1080" ], + "Content-Length": [ "1078" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT2M\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":true,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":8,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2022-11-24T10:28:33.3426464Z\",\"updatedAt\":\"2022-11-24T11:18:12.618991Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT2M\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":true,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":8,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2023-02-19T13:47:05.6736777Z\",\"updatedAt\":\"2023-02-19T14:35:38.1106Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", "isContentBase64": false } }, - "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview+9": { + "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview+9": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview", - "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT2M\",\n \"maxSizeInMegabytes\": 2048,\n \"maxMessageSizeInKilobytes\": 102400,\n \"requiresDuplicateDetection\": true,\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P1DT3M4S\",\n \"deadLetteringOnMessageExpiration\": true,\n \"duplicateDetectionHistoryTimeWindow\": \"PT10M\",\n \"maxDeliveryCount\": 8,\n \"status\": \"Active\",\n \"enableBatchedOperations\": true,\n \"autoDeleteOnIdle\": \"P10675197D\",\n \"enablePartitioning\": false,\n \"enableExpress\": false,\n \"forwardTo\": \"queue1\",\n \"forwardDeadLetteredMessagesTo\": \"queue1\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview", + "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT2M\",\n \"maxSizeInMegabytes\": 2048,\n \"maxMessageSizeInKilobytes\": 102400,\n \"requiresDuplicateDetection\": true,\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P1DT3M4S\",\n \"deadLetteringOnMessageExpiration\": true,\n \"duplicateDetectionHistoryTimeWindow\": \"PT10M\",\n \"maxDeliveryCount\": 8,\n \"status\": \"Active\",\n \"enableBatchedOperations\": true,\n \"autoDeleteOnIdle\": \"P10675199DT2H48M5.4775807S\",\n \"enablePartitioning\": false,\n \"enableExpress\": false,\n \"forwardTo\": \"queue1\",\n \"forwardDeadLetteredMessagesTo\": \"queue1\"\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "598" ] + "Content-Length": [ "614" ] } }, "Response": { @@ -527,31 +527,31 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1174" ], - "x-ms-request-id": [ "2f09bbba-8bbc-4f9e-9924-fae8ff1fecc8" ], - "x-ms-correlation-request-id": [ "2f09bbba-8bbc-4f9e-9924-fae8ff1fecc8" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111813Z:2f09bbba-8bbc-4f9e-9924-fae8ff1fecc8" ], + "x-ms-request-id": [ "3f971fbb-1904-40da-b3c2-2306db1af6bb" ], + "x-ms-correlation-request-id": [ "3f971fbb-1904-40da-b3c2-2306db1af6bb" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143539Z:3f971fbb-1904-40da-b3c2-2306db1af6bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:13 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:35:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1045" ], + "Content-Length": [ "1061" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT2M\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":true,\"enableBatchedOperations\":true,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":8,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675197D\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT2M\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":true,\"enableBatchedOperations\":true,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":8,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", "isContentBase64": false } }, - "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview+10": { + "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "453" ], - "x-ms-client-request-id": [ "b5cb27b4-ce8a-4882-86e6-221843fa8045" ], + "x-ms-unique-id": [ "444" ], + "x-ms-client-request-id": [ "079128e4-d49c-4083-a663-61c131c0d813" ], "CommandName": [ "Get-AzServiceBusQueue" ], "FullCommandName": [ "Get-AzServiceBusQueue_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -568,33 +568,33 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11918" ], - "x-ms-request-id": [ "7d59f27e-60ab-4f9e-9c05-1d0575c838a1" ], - "x-ms-correlation-request-id": [ "7d59f27e-60ab-4f9e-9c05-1d0575c838a1" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111813Z:7d59f27e-60ab-4f9e-9c05-1d0575c838a1" ], + "x-ms-request-id": [ "b785739a-3d88-4974-a79c-b9e6df0fcb64" ], + "x-ms-correlation-request-id": [ "b785739a-3d88-4974-a79c-b9e6df0fcb64" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143540Z:b785739a-3d88-4974-a79c-b9e6df0fcb64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:13 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:35:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1080" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT2M\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":true,\"enableBatchedOperations\":true,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":8,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2022-11-24T10:28:33.3426464Z\",\"updatedAt\":\"2022-11-24T11:18:13.4471227Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT2M\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":true,\"enableBatchedOperations\":true,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":8,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2023-02-19T13:47:05.6736777Z\",\"updatedAt\":\"2023-02-19T14:35:39.3293132Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", "isContentBase64": false } }, - "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview+11": { + "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview+11": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview", - "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT2M\",\n \"maxSizeInMegabytes\": 2048,\n \"maxMessageSizeInKilobytes\": 102400,\n \"requiresDuplicateDetection\": true,\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P1DT3M4S\",\n \"deadLetteringOnMessageExpiration\": true,\n \"duplicateDetectionHistoryTimeWindow\": \"PT10M\",\n \"maxDeliveryCount\": 8,\n \"status\": \"Active\",\n \"enableBatchedOperations\": false,\n \"autoDeleteOnIdle\": \"P10675197D\",\n \"enablePartitioning\": false,\n \"enableExpress\": false,\n \"forwardTo\": \"queue1\",\n \"forwardDeadLetteredMessagesTo\": \"queue1\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview", + "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT2M\",\n \"maxSizeInMegabytes\": 2048,\n \"maxMessageSizeInKilobytes\": 102400,\n \"requiresDuplicateDetection\": true,\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P1DT3M4S\",\n \"deadLetteringOnMessageExpiration\": true,\n \"duplicateDetectionHistoryTimeWindow\": \"PT10M\",\n \"maxDeliveryCount\": 8,\n \"status\": \"Active\",\n \"enableBatchedOperations\": false,\n \"autoDeleteOnIdle\": \"P10675199DT2H48M5.4775807S\",\n \"enablePartitioning\": false,\n \"enableExpress\": false,\n \"forwardTo\": \"queue1\",\n \"forwardDeadLetteredMessagesTo\": \"queue1\"\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "599" ] + "Content-Length": [ "615" ] } }, "Response": { @@ -604,31 +604,31 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1173" ], - "x-ms-request-id": [ "dde31c20-0760-48d3-8003-d262619f0c0a" ], - "x-ms-correlation-request-id": [ "dde31c20-0760-48d3-8003-d262619f0c0a" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111814Z:dde31c20-0760-48d3-8003-d262619f0c0a" ], + "x-ms-request-id": [ "18d3f16d-cefe-411a-8da6-1a1aa6066654" ], + "x-ms-correlation-request-id": [ "18d3f16d-cefe-411a-8da6-1a1aa6066654" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143540Z:18d3f16d-cefe-411a-8da6-1a1aa6066654" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:14 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:35:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1046" ], + "Content-Length": [ "1062" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT2M\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":true,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":8,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675197D\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT2M\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":true,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":8,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", "isContentBase64": false } }, - "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview+12": { + "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "455" ], - "x-ms-client-request-id": [ "25ad0de7-de8d-4030-ac6e-0afeb4e0eb1a" ], + "x-ms-unique-id": [ "446" ], + "x-ms-client-request-id": [ "6c7a3f4d-dbde-4ff1-99d4-7508a50ace5d" ], "CommandName": [ "Get-AzServiceBusQueue" ], "FullCommandName": [ "Get-AzServiceBusQueue_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -645,33 +645,33 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11917" ], - "x-ms-request-id": [ "599b008f-1fd7-49fa-83e3-6c71929b1b7f" ], - "x-ms-correlation-request-id": [ "599b008f-1fd7-49fa-83e3-6c71929b1b7f" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111814Z:599b008f-1fd7-49fa-83e3-6c71929b1b7f" ], + "x-ms-request-id": [ "a3d6fd34-0562-40a3-aeb9-346663054c54" ], + "x-ms-correlation-request-id": [ "a3d6fd34-0562-40a3-aeb9-346663054c54" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143541Z:a3d6fd34-0562-40a3-aeb9-346663054c54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:14 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:35:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1081" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT2M\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":true,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":8,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2022-11-24T10:28:33.3426464Z\",\"updatedAt\":\"2022-11-24T11:18:14.1971144Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT2M\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":true,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":8,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2023-02-19T13:47:05.6736777Z\",\"updatedAt\":\"2023-02-19T14:35:40.5168753Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", "isContentBase64": false } }, - "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview+13": { + "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview", - "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT2M\",\n \"maxSizeInMegabytes\": 2048,\n \"maxMessageSizeInKilobytes\": 102400,\n \"requiresDuplicateDetection\": true,\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P1DT3M4S\",\n \"deadLetteringOnMessageExpiration\": true,\n \"duplicateDetectionHistoryTimeWindow\": \"PT8M\",\n \"maxDeliveryCount\": 8,\n \"status\": \"Active\",\n \"enableBatchedOperations\": false,\n \"autoDeleteOnIdle\": \"P10675197D\",\n \"enablePartitioning\": false,\n \"enableExpress\": false,\n \"forwardTo\": \"queue1\",\n \"forwardDeadLetteredMessagesTo\": \"queue1\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview", + "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT2M\",\n \"maxSizeInMegabytes\": 2048,\n \"maxMessageSizeInKilobytes\": 102400,\n \"requiresDuplicateDetection\": true,\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P1DT3M4S\",\n \"deadLetteringOnMessageExpiration\": true,\n \"duplicateDetectionHistoryTimeWindow\": \"PT8M\",\n \"maxDeliveryCount\": 8,\n \"status\": \"Active\",\n \"enableBatchedOperations\": false,\n \"autoDeleteOnIdle\": \"P10675199DT2H48M5.4775807S\",\n \"enablePartitioning\": false,\n \"enableExpress\": false,\n \"forwardTo\": \"queue1\",\n \"forwardDeadLetteredMessagesTo\": \"queue1\"\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "598" ] + "Content-Length": [ "614" ] } }, "Response": { @@ -681,31 +681,31 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1172" ], - "x-ms-request-id": [ "eb33d842-9f1c-4ada-88ec-6e8e2ce27d05" ], - "x-ms-correlation-request-id": [ "eb33d842-9f1c-4ada-88ec-6e8e2ce27d05" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111814Z:eb33d842-9f1c-4ada-88ec-6e8e2ce27d05" ], + "x-ms-request-id": [ "1771f66e-c1e2-4497-864c-474e4f30df93" ], + "x-ms-correlation-request-id": [ "1771f66e-c1e2-4497-864c-474e4f30df93" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143542Z:1771f66e-c1e2-4497-864c-474e4f30df93" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:14 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:35:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1045" ], + "Content-Length": [ "1061" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT2M\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":true,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT8M\",\"maxDeliveryCount\":8,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675197D\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT2M\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":true,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT8M\",\"maxDeliveryCount\":8,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", "isContentBase64": false } }, - "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview+14": { + "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "457" ], - "x-ms-client-request-id": [ "d1fdbe5d-46a8-42d7-8e41-ec36bfefffa3" ], + "x-ms-unique-id": [ "448" ], + "x-ms-client-request-id": [ "34c904fe-6249-4ba1-86bc-31ce5c822419" ], "CommandName": [ "Get-AzServiceBusQueue" ], "FullCommandName": [ "Get-AzServiceBusQueue_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -722,33 +722,33 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11916" ], - "x-ms-request-id": [ "2d55c3dd-6795-45a9-b296-1a5c6d961c66" ], - "x-ms-correlation-request-id": [ "2d55c3dd-6795-45a9-b296-1a5c6d961c66" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111815Z:2d55c3dd-6795-45a9-b296-1a5c6d961c66" ], + "x-ms-request-id": [ "f7564dd1-fdd4-4d64-bc4b-f5a304812a60" ], + "x-ms-correlation-request-id": [ "f7564dd1-fdd4-4d64-bc4b-f5a304812a60" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143542Z:f7564dd1-fdd4-4d64-bc4b-f5a304812a60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:15 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:35:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1079" ], + "Content-Length": [ "1080" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT2M\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":true,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT8M\",\"maxDeliveryCount\":8,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2022-11-24T10:28:33.3426464Z\",\"updatedAt\":\"2022-11-24T11:18:14.775239Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT2M\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":true,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT8M\",\"maxDeliveryCount\":8,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2023-02-19T13:47:05.6736777Z\",\"updatedAt\":\"2023-02-19T14:35:41.9074613Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", "isContentBase64": false } }, - "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview+15": { + "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview+15": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview", - "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT2M\",\n \"maxSizeInMegabytes\": 2048,\n \"maxMessageSizeInKilobytes\": 102400,\n \"requiresDuplicateDetection\": true,\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P1DT3M4S\",\n \"deadLetteringOnMessageExpiration\": false,\n \"duplicateDetectionHistoryTimeWindow\": \"PT8M\",\n \"maxDeliveryCount\": 8,\n \"status\": \"Active\",\n \"enableBatchedOperations\": false,\n \"autoDeleteOnIdle\": \"P10675197D\",\n \"enablePartitioning\": false,\n \"enableExpress\": false,\n \"forwardTo\": \"queue1\",\n \"forwardDeadLetteredMessagesTo\": \"queue1\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview", + "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT2M\",\n \"maxSizeInMegabytes\": 2048,\n \"maxMessageSizeInKilobytes\": 102400,\n \"requiresDuplicateDetection\": true,\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P1DT3M4S\",\n \"deadLetteringOnMessageExpiration\": false,\n \"duplicateDetectionHistoryTimeWindow\": \"PT8M\",\n \"maxDeliveryCount\": 8,\n \"status\": \"Active\",\n \"enableBatchedOperations\": false,\n \"autoDeleteOnIdle\": \"P10675199DT2H48M5.4775807S\",\n \"enablePartitioning\": false,\n \"enableExpress\": false,\n \"forwardTo\": \"queue1\",\n \"forwardDeadLetteredMessagesTo\": \"queue1\"\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "599" ] + "Content-Length": [ "615" ] } }, "Response": { @@ -758,31 +758,31 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1171" ], - "x-ms-request-id": [ "dc193095-37db-4b52-8d12-8e09a04fe781" ], - "x-ms-correlation-request-id": [ "dc193095-37db-4b52-8d12-8e09a04fe781" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111815Z:dc193095-37db-4b52-8d12-8e09a04fe781" ], + "x-ms-request-id": [ "7b94f322-2ca9-461b-93f1-2323db95cdc5" ], + "x-ms-correlation-request-id": [ "7b94f322-2ca9-461b-93f1-2323db95cdc5" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143543Z:7b94f322-2ca9-461b-93f1-2323db95cdc5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:15 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:35:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1046" ], + "Content-Length": [ "1062" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT2M\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT8M\",\"maxDeliveryCount\":8,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675197D\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT2M\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT8M\",\"maxDeliveryCount\":8,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", "isContentBase64": false } }, - "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview+16": { + "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "459" ], - "x-ms-client-request-id": [ "8d3883f4-f148-4348-99fd-3595d7c1ae12" ], + "x-ms-unique-id": [ "450" ], + "x-ms-client-request-id": [ "0b279aa9-23ce-4725-a1e9-0beeb3bcef14" ], "CommandName": [ "Get-AzServiceBusQueue" ], "FullCommandName": [ "Get-AzServiceBusQueue_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -799,33 +799,33 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11915" ], - "x-ms-request-id": [ "8ee1d560-2ed3-4087-9cd6-d6e3d713b5eb" ], - "x-ms-correlation-request-id": [ "8ee1d560-2ed3-4087-9cd6-d6e3d713b5eb" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111816Z:8ee1d560-2ed3-4087-9cd6-d6e3d713b5eb" ], + "x-ms-request-id": [ "97685f4c-19e0-4b7d-b049-a72e7c0a7d9c" ], + "x-ms-correlation-request-id": [ "97685f4c-19e0-4b7d-b049-a72e7c0a7d9c" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143544Z:97685f4c-19e0-4b7d-b049-a72e7c0a7d9c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:16 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:35:43 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1081" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT2M\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT8M\",\"maxDeliveryCount\":8,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2022-11-24T10:28:33.3426464Z\",\"updatedAt\":\"2022-11-24T11:18:15.7752404Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT2M\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT8M\",\"maxDeliveryCount\":8,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2023-02-19T13:47:05.6736777Z\",\"updatedAt\":\"2023-02-19T14:35:43.1731829Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", "isContentBase64": false } }, - "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview+17": { + "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview+17": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview", - "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT2M\",\n \"maxSizeInMegabytes\": 2048,\n \"maxMessageSizeInKilobytes\": 102400,\n \"requiresDuplicateDetection\": true,\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P1DT3M4S\",\n \"deadLetteringOnMessageExpiration\": false,\n \"duplicateDetectionHistoryTimeWindow\": \"PT8M\",\n \"maxDeliveryCount\": 15,\n \"status\": \"Active\",\n \"enableBatchedOperations\": false,\n \"autoDeleteOnIdle\": \"P10675197D\",\n \"enablePartitioning\": false,\n \"enableExpress\": false,\n \"forwardTo\": \"queue1\",\n \"forwardDeadLetteredMessagesTo\": \"queue1\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview", + "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT2M\",\n \"maxSizeInMegabytes\": 2048,\n \"maxMessageSizeInKilobytes\": 102400,\n \"requiresDuplicateDetection\": true,\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P1DT3M4S\",\n \"deadLetteringOnMessageExpiration\": false,\n \"duplicateDetectionHistoryTimeWindow\": \"PT8M\",\n \"maxDeliveryCount\": 15,\n \"status\": \"Active\",\n \"enableBatchedOperations\": false,\n \"autoDeleteOnIdle\": \"P10675199DT2H48M5.4775807S\",\n \"enablePartitioning\": false,\n \"enableExpress\": false,\n \"forwardTo\": \"queue1\",\n \"forwardDeadLetteredMessagesTo\": \"queue1\"\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "600" ] + "Content-Length": [ "616" ] } }, "Response": { @@ -835,31 +835,31 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1170" ], - "x-ms-request-id": [ "4b21fa61-46b8-4068-95c7-ad0bac9beb00" ], - "x-ms-correlation-request-id": [ "4b21fa61-46b8-4068-95c7-ad0bac9beb00" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111816Z:4b21fa61-46b8-4068-95c7-ad0bac9beb00" ], + "x-ms-request-id": [ "ee4a72af-e5a1-4d99-9395-c3377d156e40" ], + "x-ms-correlation-request-id": [ "ee4a72af-e5a1-4d99-9395-c3377d156e40" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143544Z:ee4a72af-e5a1-4d99-9395-c3377d156e40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:16 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:35:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1047" ], + "Content-Length": [ "1063" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT2M\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT8M\",\"maxDeliveryCount\":15,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675197D\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT2M\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT8M\",\"maxDeliveryCount\":15,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", "isContentBase64": false } }, - "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview+18": { + "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "461" ], - "x-ms-client-request-id": [ "2dd2ac7e-2eed-4ab3-af19-6fd1fb0f2989" ], + "x-ms-unique-id": [ "452" ], + "x-ms-client-request-id": [ "e175612d-90ff-4260-853b-cdae587b92a4" ], "CommandName": [ "Get-AzServiceBusQueue" ], "FullCommandName": [ "Get-AzServiceBusQueue_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -876,33 +876,33 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11914" ], - "x-ms-request-id": [ "a379a604-2219-46bc-ae57-bd03cd811157" ], - "x-ms-correlation-request-id": [ "a379a604-2219-46bc-ae57-bd03cd811157" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111816Z:a379a604-2219-46bc-ae57-bd03cd811157" ], + "x-ms-request-id": [ "5e3a392f-1c66-4cc3-bbf1-e6dd7995fc1e" ], + "x-ms-correlation-request-id": [ "5e3a392f-1c66-4cc3-bbf1-e6dd7995fc1e" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143545Z:5e3a392f-1c66-4cc3-bbf1-e6dd7995fc1e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:16 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:35:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1082" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT2M\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT8M\",\"maxDeliveryCount\":15,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2022-11-24T10:28:33.3426464Z\",\"updatedAt\":\"2022-11-24T11:18:16.5096162Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT2M\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT8M\",\"maxDeliveryCount\":15,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2023-02-19T13:47:05.6736777Z\",\"updatedAt\":\"2023-02-19T14:35:44.5325291Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", "isContentBase64": false } }, - "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview+19": { + "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview+19": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview", - "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT2M\",\n \"maxSizeInMegabytes\": 2048,\n \"maxMessageSizeInKilobytes\": 102400,\n \"requiresDuplicateDetection\": true,\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P1DT3M4S\",\n \"deadLetteringOnMessageExpiration\": false,\n \"duplicateDetectionHistoryTimeWindow\": \"PT8M\",\n \"maxDeliveryCount\": 15,\n \"status\": \"Active\",\n \"enableBatchedOperations\": false,\n \"autoDeleteOnIdle\": \"P10675197D\",\n \"enablePartitioning\": false,\n \"enableExpress\": false,\n \"forwardTo\": \"topic1\",\n \"forwardDeadLetteredMessagesTo\": \"queue1\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview", + "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT2M\",\n \"maxSizeInMegabytes\": 2048,\n \"maxMessageSizeInKilobytes\": 102400,\n \"requiresDuplicateDetection\": true,\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P1DT3M4S\",\n \"deadLetteringOnMessageExpiration\": false,\n \"duplicateDetectionHistoryTimeWindow\": \"PT8M\",\n \"maxDeliveryCount\": 15,\n \"status\": \"Active\",\n \"enableBatchedOperations\": false,\n \"autoDeleteOnIdle\": \"P10675199DT2H48M5.4775807S\",\n \"enablePartitioning\": false,\n \"enableExpress\": false,\n \"forwardTo\": \"topic1\",\n \"forwardDeadLetteredMessagesTo\": \"queue1\"\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "600" ] + "Content-Length": [ "616" ] } }, "Response": { @@ -912,31 +912,31 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1169" ], - "x-ms-request-id": [ "73380cc2-a52f-41f4-881b-58e6ace11948" ], - "x-ms-correlation-request-id": [ "73380cc2-a52f-41f4-881b-58e6ace11948" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111817Z:73380cc2-a52f-41f4-881b-58e6ace11948" ], + "x-ms-request-id": [ "38bc78f8-8466-44fe-927f-bc778392d1d0" ], + "x-ms-correlation-request-id": [ "38bc78f8-8466-44fe-927f-bc778392d1d0" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143545Z:38bc78f8-8466-44fe-927f-bc778392d1d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:17 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:35:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1047" ], + "Content-Length": [ "1063" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT2M\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT8M\",\"maxDeliveryCount\":15,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675197D\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\",\"forwardTo\":\"topic1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT2M\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT8M\",\"maxDeliveryCount\":15,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\",\"forwardTo\":\"topic1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", "isContentBase64": false } }, - "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview+20": { + "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "463" ], - "x-ms-client-request-id": [ "5bb8ebc8-9636-4078-a4f7-3def6fe28e1f" ], + "x-ms-unique-id": [ "454" ], + "x-ms-client-request-id": [ "828767b4-3cf0-48f3-b371-c4a117995a8c" ], "CommandName": [ "Get-AzServiceBusQueue" ], "FullCommandName": [ "Get-AzServiceBusQueue_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -953,33 +953,33 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11913" ], - "x-ms-request-id": [ "b8fea128-9199-4f50-9c84-6ef384a35085" ], - "x-ms-correlation-request-id": [ "b8fea128-9199-4f50-9c84-6ef384a35085" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111817Z:b8fea128-9199-4f50-9c84-6ef384a35085" ], + "x-ms-request-id": [ "77a7583b-251e-47df-842a-0a2914fc4096" ], + "x-ms-correlation-request-id": [ "77a7583b-251e-47df-842a-0a2914fc4096" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143546Z:77a7583b-251e-47df-842a-0a2914fc4096" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:17 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:35:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1082" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT2M\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT8M\",\"maxDeliveryCount\":15,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2022-11-24T10:28:33.3426464Z\",\"updatedAt\":\"2022-11-24T11:18:17.1658637Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"forwardTo\":\"topic1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT2M\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT8M\",\"maxDeliveryCount\":15,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2023-02-19T13:47:05.6736777Z\",\"updatedAt\":\"2023-02-19T14:35:45.7044169Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"forwardTo\":\"topic1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", "isContentBase64": false } }, - "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview+21": { + "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview+21": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview", - "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT2M\",\n \"maxSizeInMegabytes\": 2048,\n \"maxMessageSizeInKilobytes\": 102400,\n \"requiresDuplicateDetection\": true,\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P1DT3M4S\",\n \"deadLetteringOnMessageExpiration\": false,\n \"duplicateDetectionHistoryTimeWindow\": \"PT8M\",\n \"maxDeliveryCount\": 15,\n \"status\": \"Active\",\n \"enableBatchedOperations\": false,\n \"autoDeleteOnIdle\": \"P10675197D\",\n \"enablePartitioning\": false,\n \"enableExpress\": false,\n \"forwardTo\": \"topic1\",\n \"forwardDeadLetteredMessagesTo\": \"topic1\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview", + "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT2M\",\n \"maxSizeInMegabytes\": 2048,\n \"maxMessageSizeInKilobytes\": 102400,\n \"requiresDuplicateDetection\": true,\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P1DT3M4S\",\n \"deadLetteringOnMessageExpiration\": false,\n \"duplicateDetectionHistoryTimeWindow\": \"PT8M\",\n \"maxDeliveryCount\": 15,\n \"status\": \"Active\",\n \"enableBatchedOperations\": false,\n \"autoDeleteOnIdle\": \"P10675199DT2H48M5.4775807S\",\n \"enablePartitioning\": false,\n \"enableExpress\": false,\n \"forwardTo\": \"topic1\",\n \"forwardDeadLetteredMessagesTo\": \"topic1\"\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "600" ] + "Content-Length": [ "616" ] } }, "Response": { @@ -989,31 +989,31 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1168" ], - "x-ms-request-id": [ "210312b0-0aee-49da-9d6b-0ea114645551" ], - "x-ms-correlation-request-id": [ "210312b0-0aee-49da-9d6b-0ea114645551" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111817Z:210312b0-0aee-49da-9d6b-0ea114645551" ], + "x-ms-request-id": [ "4cb4f805-4bc0-48fd-81ea-a86e699a2713" ], + "x-ms-correlation-request-id": [ "4cb4f805-4bc0-48fd-81ea-a86e699a2713" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143547Z:4cb4f805-4bc0-48fd-81ea-a86e699a2713" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:17 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:35:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1047" ], + "Content-Length": [ "1063" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT2M\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT8M\",\"maxDeliveryCount\":15,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675197D\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\",\"forwardTo\":\"topic1\",\"forwardDeadLetteredMessagesTo\":\"topic1\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT2M\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT8M\",\"maxDeliveryCount\":15,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\",\"forwardTo\":\"topic1\",\"forwardDeadLetteredMessagesTo\":\"topic1\"}}", "isContentBase64": false } }, - "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview+22": { + "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "465" ], - "x-ms-client-request-id": [ "9082a4a3-a6a5-48bc-b367-956a6520dea1" ], + "x-ms-unique-id": [ "456" ], + "x-ms-client-request-id": [ "0e4fa826-522b-4ddf-83f1-e6d19f7fc41f" ], "CommandName": [ "Get-AzServiceBusQueue" ], "FullCommandName": [ "Get-AzServiceBusQueue_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1030,33 +1030,33 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11912" ], - "x-ms-request-id": [ "f34caa47-0b20-432b-814e-cb65c7e4f0f1" ], - "x-ms-correlation-request-id": [ "f34caa47-0b20-432b-814e-cb65c7e4f0f1" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111818Z:f34caa47-0b20-432b-814e-cb65c7e4f0f1" ], + "x-ms-request-id": [ "ec8b6edd-5e42-4703-ac88-72648fbd76f6" ], + "x-ms-correlation-request-id": [ "ec8b6edd-5e42-4703-ac88-72648fbd76f6" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143547Z:ec8b6edd-5e42-4703-ac88-72648fbd76f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:17 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:35:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1082" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT2M\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT8M\",\"maxDeliveryCount\":15,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2022-11-24T10:28:33.3426464Z\",\"updatedAt\":\"2022-11-24T11:18:17.7908634Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"forwardTo\":\"topic1\",\"forwardDeadLetteredMessagesTo\":\"topic1\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT2M\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT8M\",\"maxDeliveryCount\":15,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2023-02-19T13:47:05.6736777Z\",\"updatedAt\":\"2023-02-19T14:35:46.8927724Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"forwardTo\":\"topic1\",\"forwardDeadLetteredMessagesTo\":\"topic1\"}}", "isContentBase64": false } }, - "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview+23": { + "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview+23": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2?api-version=2022-01-01-preview", - "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT2M\",\n \"maxSizeInMegabytes\": 2048,\n \"maxMessageSizeInKilobytes\": 102400,\n \"requiresDuplicateDetection\": true,\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P1DT3M4S\",\n \"deadLetteringOnMessageExpiration\": false,\n \"duplicateDetectionHistoryTimeWindow\": \"PT8M\",\n \"maxDeliveryCount\": 15,\n \"status\": \"SendDisabled\",\n \"enableBatchedOperations\": false,\n \"autoDeleteOnIdle\": \"P10675197D\",\n \"enablePartitioning\": false,\n \"enableExpress\": false,\n \"forwardTo\": \"topic1\",\n \"forwardDeadLetteredMessagesTo\": \"topic1\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2?api-version=2022-10-01-preview", + "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT2M\",\n \"maxSizeInMegabytes\": 2048,\n \"maxMessageSizeInKilobytes\": 102400,\n \"requiresDuplicateDetection\": true,\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P1DT3M4S\",\n \"deadLetteringOnMessageExpiration\": false,\n \"duplicateDetectionHistoryTimeWindow\": \"PT8M\",\n \"maxDeliveryCount\": 15,\n \"status\": \"SendDisabled\",\n \"enableBatchedOperations\": false,\n \"autoDeleteOnIdle\": \"P10675199DT2H48M5.4775807S\",\n \"enablePartitioning\": false,\n \"enableExpress\": false,\n \"forwardTo\": \"topic1\",\n \"forwardDeadLetteredMessagesTo\": \"topic1\"\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "606" ] + "Content-Length": [ "622" ] } }, "Response": { @@ -1066,31 +1066,31 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1167" ], - "x-ms-request-id": [ "fcbb91d8-bdb5-40c4-b192-f0ed8c6a852e" ], - "x-ms-correlation-request-id": [ "fcbb91d8-bdb5-40c4-b192-f0ed8c6a852e" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111818Z:fcbb91d8-bdb5-40c4-b192-f0ed8c6a852e" ], + "x-ms-request-id": [ "cc6d2d28-a6b3-4c5b-b796-0a6a9585649a" ], + "x-ms-correlation-request-id": [ "cc6d2d28-a6b3-4c5b-b796-0a6a9585649a" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143548Z:cc6d2d28-a6b3-4c5b-b796-0a6a9585649a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:18 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:35:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1053" ], + "Content-Length": [ "1069" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT2M\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT8M\",\"maxDeliveryCount\":15,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"SendDisabled\",\"autoDeleteOnIdle\":\"P10675197D\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\",\"forwardTo\":\"topic1\",\"forwardDeadLetteredMessagesTo\":\"topic1\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/queues/queue2\",\"name\":\"queue2\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":102400,\"lockDuration\":\"PT2M\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT8M\",\"maxDeliveryCount\":15,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"SendDisabled\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\",\"forwardTo\":\"topic1\",\"forwardDeadLetteredMessagesTo\":\"topic1\"}}", "isContentBase64": false } }, - "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNameck4gr6/queues/queue1?api-version=2022-01-01-preview+24": { + "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNametkv0jq/queues/queue1?api-version=2022-10-01-preview+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNameck4gr6/queues/queue1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNametkv0jq/queues/queue1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "467" ], - "x-ms-client-request-id": [ "ec6f4c69-d48c-4c80-a7f5-34aa4f113f1e" ], + "x-ms-unique-id": [ "458" ], + "x-ms-client-request-id": [ "da9e8228-d646-469b-aaa9-f5be265ed640" ], "CommandName": [ "Get-AzServiceBusQueue" ], "FullCommandName": [ "Get-AzServiceBusQueue_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1107,31 +1107,31 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11911" ], - "x-ms-request-id": [ "531fc0a0-7287-42ff-8de0-0fb27d438fac" ], - "x-ms-correlation-request-id": [ "531fc0a0-7287-42ff-8de0-0fb27d438fac" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111818Z:531fc0a0-7287-42ff-8de0-0fb27d438fac" ], + "x-ms-request-id": [ "b349773f-2d65-4442-a716-5650b65e2cb1" ], + "x-ms-correlation-request-id": [ "b349773f-2d65-4442-a716-5650b65e2cb1" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143548Z:b349773f-2d65-4442-a716-5650b65e2cb1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:18 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:35:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1035" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNameck4gr6/queues/queue1\",\"name\":\"queue1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":256,\"lockDuration\":\"PT1M\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":true,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":10,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":true,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2022-11-24T10:28:37.9018623Z\",\"updatedAt\":\"2022-11-24T10:28:37.9018623Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNametkv0jq/queues/queue1\",\"name\":\"queue1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":256,\"lockDuration\":\"PT1M\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":true,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":10,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":true,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2023-02-19T13:47:11.4383939Z\",\"updatedAt\":\"2023-02-19T13:47:11.4383939Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\"}}", "isContentBase64": false } }, - "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNameck4gr6/queues/queue1?api-version=2022-01-01-preview+25": { + "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNametkv0jq/queues/queue1?api-version=2022-10-01-preview+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNameck4gr6/queues/queue1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNametkv0jq/queues/queue1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "468" ], - "x-ms-client-request-id": [ "4852afec-02ad-476e-80bd-0a1ce9c621cb" ], + "x-ms-unique-id": [ "459" ], + "x-ms-client-request-id": [ "69cc740d-bddd-477a-a9ac-804d584558d0" ], "CommandName": [ "Get-AzServiceBusQueue" ], "FullCommandName": [ "Get-AzServiceBusQueue_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1148,33 +1148,33 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11910" ], - "x-ms-request-id": [ "175486f6-b030-4b0d-b29e-e0d8570f066a" ], - "x-ms-correlation-request-id": [ "175486f6-b030-4b0d-b29e-e0d8570f066a" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111819Z:175486f6-b030-4b0d-b29e-e0d8570f066a" ], + "x-ms-request-id": [ "0a25013e-4260-4f4c-9d7a-daa44d5ba677" ], + "x-ms-correlation-request-id": [ "0a25013e-4260-4f4c-9d7a-daa44d5ba677" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143549Z:0a25013e-4260-4f4c-9d7a-daa44d5ba677" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:19 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:35:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1035" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNameck4gr6/queues/queue1\",\"name\":\"queue1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":256,\"lockDuration\":\"PT1M\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":true,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":10,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":true,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2022-11-24T10:28:37.9018623Z\",\"updatedAt\":\"2022-11-24T10:28:37.9018623Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNametkv0jq/queues/queue1\",\"name\":\"queue1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":256,\"lockDuration\":\"PT1M\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":true,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":10,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":true,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2023-02-19T13:47:11.4383939Z\",\"updatedAt\":\"2023-02-19T13:47:11.4383939Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\"}}", "isContentBase64": false } }, - "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNameck4gr6/queues/queue1?api-version=2022-01-01-preview+26": { + "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNametkv0jq/queues/queue1?api-version=2022-10-01-preview+26": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNameck4gr6/queues/queue1?api-version=2022-01-01-preview", - "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT1M\",\n \"maxSizeInMegabytes\": 1024,\n \"maxMessageSizeInKilobytes\": 256,\n \"requiresDuplicateDetection\": false,\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P10675197D\",\n \"deadLetteringOnMessageExpiration\": false,\n \"duplicateDetectionHistoryTimeWindow\": \"PT10M\",\n \"maxDeliveryCount\": 10,\n \"status\": \"Active\",\n \"enableBatchedOperations\": true,\n \"autoDeleteOnIdle\": \"P10675197D\",\n \"enablePartitioning\": false,\n \"enableExpress\": false\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNametkv0jq/queues/queue1?api-version=2022-10-01-preview", + "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT1M\",\n \"maxSizeInMegabytes\": 1024,\n \"maxMessageSizeInKilobytes\": 256,\n \"requiresDuplicateDetection\": false,\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P10675199DT2H48M5.4775807S\",\n \"deadLetteringOnMessageExpiration\": false,\n \"duplicateDetectionHistoryTimeWindow\": \"PT10M\",\n \"maxDeliveryCount\": 10,\n \"status\": \"Active\",\n \"enableBatchedOperations\": true,\n \"autoDeleteOnIdle\": \"P10675199DT2H48M5.4775807S\",\n \"enablePartitioning\": false,\n \"enableExpress\": false\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "526" ] + "Content-Length": [ "558" ] } }, "Response": { @@ -1184,31 +1184,31 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1166" ], - "x-ms-request-id": [ "e6488718-5cd9-4420-9efa-4fc40d477728" ], - "x-ms-correlation-request-id": [ "e6488718-5cd9-4420-9efa-4fc40d477728" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111819Z:e6488718-5cd9-4420-9efa-4fc40d477728" ], + "x-ms-request-id": [ "63e20f71-d4a7-4368-8107-6118e2c21f42" ], + "x-ms-correlation-request-id": [ "63e20f71-d4a7-4368-8107-6118e2c21f42" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143550Z:63e20f71-d4a7-4368-8107-6118e2c21f42" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:19 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:35:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "985" ], + "Content-Length": [ "1017" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNameck4gr6/queues/queue1\",\"name\":\"queue1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":256,\"lockDuration\":\"PT1M\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675197D\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":true,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":10,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675197D\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNametkv0jq/queues/queue1\",\"name\":\"queue1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":256,\"lockDuration\":\"PT1M\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":true,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":10,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\"}}", "isContentBase64": false } }, - "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNameck4gr6/queues/queue1?api-version=2022-01-01-preview+27": { + "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNametkv0jq/queues/queue1?api-version=2022-10-01-preview+27": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNameck4gr6/queues/queue1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNametkv0jq/queues/queue1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "470" ], - "x-ms-client-request-id": [ "40fc5f7d-712f-483c-8d5f-7767afc81165" ], + "x-ms-unique-id": [ "461" ], + "x-ms-client-request-id": [ "99cdf074-cd96-49e3-a30d-f81fc2e09c84" ], "CommandName": [ "Get-AzServiceBusQueue" ], "FullCommandName": [ "Get-AzServiceBusQueue_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1225,33 +1225,33 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11909" ], - "x-ms-request-id": [ "990f64dd-e8d5-438b-8b1f-8b87fbae7d2b" ], - "x-ms-correlation-request-id": [ "990f64dd-e8d5-438b-8b1f-8b87fbae7d2b" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111819Z:990f64dd-e8d5-438b-8b1f-8b87fbae7d2b" ], + "x-ms-request-id": [ "6ea2c29a-61e3-4c17-b3a4-6d6a0320bce5" ], + "x-ms-correlation-request-id": [ "6ea2c29a-61e3-4c17-b3a4-6d6a0320bce5" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143550Z:6ea2c29a-61e3-4c17-b3a4-6d6a0320bce5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:19 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:35:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1004" ], + "Content-Length": [ "1036" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNameck4gr6/queues/queue1\",\"name\":\"queue1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":256,\"lockDuration\":\"PT1M\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675197D\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":true,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":10,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675197D\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2022-11-24T10:28:37.9018623Z\",\"updatedAt\":\"2022-11-24T11:18:19.4179205Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNametkv0jq/queues/queue1\",\"name\":\"queue1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":256,\"lockDuration\":\"PT1M\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":true,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":10,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2023-02-19T13:47:11.4383939Z\",\"updatedAt\":\"2023-02-19T14:35:49.9314372Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\"}}", "isContentBase64": false } }, - "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNameck4gr6/queues/queue1?api-version=2022-01-01-preview+28": { + "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNametkv0jq/queues/queue1?api-version=2022-10-01-preview+28": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNameck4gr6/queues/queue1?api-version=2022-01-01-preview", - "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT1M\",\n \"maxSizeInMegabytes\": 1024,\n \"maxMessageSizeInKilobytes\": 256,\n \"requiresDuplicateDetection\": false,\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P10675197D\",\n \"deadLetteringOnMessageExpiration\": false,\n \"duplicateDetectionHistoryTimeWindow\": \"PT10M\",\n \"maxDeliveryCount\": 10,\n \"status\": \"Active\",\n \"enableBatchedOperations\": true,\n \"autoDeleteOnIdle\": \"P10675197D\",\n \"enablePartitioning\": false,\n \"enableExpress\": true\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNametkv0jq/queues/queue1?api-version=2022-10-01-preview", + "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT1M\",\n \"maxSizeInMegabytes\": 1024,\n \"maxMessageSizeInKilobytes\": 256,\n \"requiresDuplicateDetection\": false,\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P10675199DT2H48M5.4775807S\",\n \"deadLetteringOnMessageExpiration\": false,\n \"duplicateDetectionHistoryTimeWindow\": \"PT10M\",\n \"maxDeliveryCount\": 10,\n \"status\": \"Active\",\n \"enableBatchedOperations\": true,\n \"autoDeleteOnIdle\": \"P10675199DT2H48M5.4775807S\",\n \"enablePartitioning\": false,\n \"enableExpress\": true\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "525" ] + "Content-Length": [ "557" ] } }, "Response": { @@ -1261,31 +1261,31 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1165" ], - "x-ms-request-id": [ "fa04f1a4-515a-46b3-9748-6264ed5cec36" ], - "x-ms-correlation-request-id": [ "fa04f1a4-515a-46b3-9748-6264ed5cec36" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111819Z:fa04f1a4-515a-46b3-9748-6264ed5cec36" ], + "x-ms-request-id": [ "9f6ef5b9-6946-4230-86e3-6ce0912a0c77" ], + "x-ms-correlation-request-id": [ "9f6ef5b9-6946-4230-86e3-6ce0912a0c77" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143551Z:9f6ef5b9-6946-4230-86e3-6ce0912a0c77" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:19 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:35:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "984" ], + "Content-Length": [ "1016" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNameck4gr6/queues/queue1\",\"name\":\"queue1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":256,\"lockDuration\":\"PT1M\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675197D\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":true,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":10,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675197D\",\"enablePartitioning\":false,\"enableExpress\":true,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNametkv0jq/queues/queue1\",\"name\":\"queue1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":256,\"lockDuration\":\"PT1M\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":true,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":10,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":true,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\"}}", "isContentBase64": false } }, - "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNameck4gr6/queues/queue1?api-version=2022-01-01-preview+29": { + "Set-AzServiceBusQueue+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNametkv0jq/queues/queue1?api-version=2022-10-01-preview+29": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNameck4gr6/queues/queue1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNametkv0jq/queues/queue1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "472" ], - "x-ms-client-request-id": [ "a9dbaf83-dab9-4f03-aab0-c5d3471e7507" ], + "x-ms-unique-id": [ "463" ], + "x-ms-client-request-id": [ "92a51764-1b03-4d53-8806-ccd8ba2d2aac" ], "CommandName": [ "Get-AzServiceBusQueue" ], "FullCommandName": [ "Get-AzServiceBusQueue_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1302,19 +1302,19 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11908" ], - "x-ms-request-id": [ "af267e7c-59d7-4861-a125-6e181cfcbd08" ], - "x-ms-correlation-request-id": [ "af267e7c-59d7-4861-a125-6e181cfcbd08" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111820Z:af267e7c-59d7-4861-a125-6e181cfcbd08" ], + "x-ms-request-id": [ "0a183c44-5ae1-4cff-be6e-5ac87b05a262" ], + "x-ms-correlation-request-id": [ "0a183c44-5ae1-4cff-be6e-5ac87b05a262" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143552Z:0a183c44-5ae1-4cff-be6e-5ac87b05a262" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:20 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:35:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1003" ], + "Content-Length": [ "1035" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNameck4gr6/queues/queue1\",\"name\":\"queue1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":256,\"lockDuration\":\"PT1M\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675197D\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":true,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":10,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675197D\",\"enablePartitioning\":false,\"enableExpress\":true,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2022-11-24T10:28:37.9018623Z\",\"updatedAt\":\"2022-11-24T11:18:19.9647941Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNametkv0jq/queues/queue1\",\"name\":\"queue1\",\"type\":\"Microsoft.ServiceBus/namespaces/queues\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":256,\"lockDuration\":\"PT1M\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"enableBatchedOperations\":true,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"maxDeliveryCount\":10,\"sizeInBytes\":0,\"messageCount\":0,\"status\":\"Active\",\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":true,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"createdAt\":\"2023-02-19T13:47:11.4383939Z\",\"updatedAt\":\"2023-02-19T14:35:51.3064671Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\"}}", "isContentBase64": false } } diff --git a/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusQueue.Tests.ps1 b/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusQueue.Tests.ps1 index 37f9b2a33ea7..977a0ea90ff2 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusQueue.Tests.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusQueue.Tests.ps1 @@ -15,7 +15,7 @@ if(($null -eq $TestName) -or ($TestName -contains 'Set-AzServiceBusQueue')) } function AssertQueueUpdates{ - param([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue]$expectedQueue,[Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue]$actualQueue) + param([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue]$expectedQueue,[Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue]$actualQueue) $expectedQueue.Name | Should -Be $actualQueue.Name $expectedQueue.ResourceGroupName | Should -Be $actualQueue.ResourceGroupName $expectedQueue.MaxSizeInMegabytes | Should -Be $actualQueue.MaxSizeInMegabytes @@ -29,34 +29,10 @@ function AssertQueueUpdates{ $expectedQueue.EnablePartitioning | Should -Be $actualQueue.EnablePartitioning $expectedQueue.EnableExpress | Should -Be $actualQueue.EnableExpress $expectedQueue.RequiresSession | Should -Be $actualQueue.RequiresSession - - if ($expectedQueue.DefaultMessageTimeToLive -gt (New-TimeSpan -Days 10675197)){ - $actualQueue.DefaultMessageTimeToLive | Should -BeGreaterOrEqual (New-TimeSpan -Days 10675197) - } - else{ - $actualQueue.DefaultMessageTimeToLive | Should -Be $expectedQueue.DefaultMessageTimeToLive - } - - if ($expectedQueue.DuplicateDetectionHistoryTimeWindow -gt (New-TimeSpan -Days 10675197)){ - $actualQueue.DuplicateDetectionHistoryTimeWindow | Should -BeGreaterOrEqual (New-TimeSpan -Days 10675197) - } - else{ - $actualQueue.DuplicateDetectionHistoryTimeWindow | Should -Be $expectedQueue.DuplicateDetectionHistoryTimeWindow - } - - if ($expectedQueue.LockDuration -gt (New-TimeSpan -Days 10675197)){ - $actualQueue.LockDuration | Should -BeGreaterOrEqual (New-TimeSpan -Days 10675197) - } - else{ - $actualQueue.LockDuration | Should -Be $expectedQueue.LockDuration - } - - if ($expectedQueue.AutoDeleteOnIdle -gt (New-TimeSpan -Days 10675197)){ - $actualQueue.AutoDeleteOnIdle | Should -BeGreaterOrEqual (New-TimeSpan -Days 10675197) - } - else{ - $actualQueue.AutoDeleteOnIdle | Should -Be $expectedQueue.AutoDeleteOnIdle - } + $expectedQueue.DefaultMessageTimeToLive | Should -Be $actualQueue.DefaultMessageTimeToLive + $expectedQueue.DuplicateDetectionHistoryTimeWindow | Should -Be $actualQueue.DuplicateDetectionHistoryTimeWindow + $expectedQueue.LockDuration | Should -Be $actualQueue.LockDuration + $expectedQueue.AutoDeleteOnIdle | Should -Be $actualQueue.AutoDeleteOnIdle } Describe 'Set-AzServiceBusQueue' { diff --git a/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusRule.Recording.json b/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusRule.Recording.json index 16abf3577688..f93ec88834db 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusRule.Recording.json +++ b/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusRule.Recording.json @@ -1,13 +1,13 @@ { - "Set-AzServiceBusRule+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/sqlRule2?api-version=2022-01-01-preview+1": { + "Set-AzServiceBusRule+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/sqlRule2?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/sqlRule2?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/sqlRule2?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "473" ], - "x-ms-client-request-id": [ "cba5283c-bc46-484c-8190-724d8a62dece" ], + "x-ms-unique-id": [ "464" ], + "x-ms-client-request-id": [ "8f636739-ebfb-404e-a75b-ab735e9718fd" ], "CommandName": [ "Get-AzServiceBusRule" ], "FullCommandName": [ "Get-AzServiceBusRule_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -24,26 +24,26 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11907" ], - "x-ms-request-id": [ "b93fb5c3-8b2b-494e-85d1-6b35b5c5944a" ], - "x-ms-correlation-request-id": [ "b93fb5c3-8b2b-494e-85d1-6b35b5c5944a" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111839Z:b93fb5c3-8b2b-494e-85d1-6b35b5c5944a" ], + "x-ms-request-id": [ "41a8bc45-62dc-4038-8bdb-c025f95b7bad" ], + "x-ms-correlation-request-id": [ "41a8bc45-62dc-4038-8bdb-c025f95b7bad" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143606Z:41a8bc45-62dc-4038-8bdb-c025f95b7bad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:38 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:06 GMT" ] }, "ContentHeaders": { "Content-Length": [ "521" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/sqlRule2\",\"name\":\"sqlRule2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{\"sqlExpression\":\"SET a=b\",\"compatibilityLevel\":20,\"parameters\":{}},\"filterType\":\"SqlFilter\",\"sqlFilter\":{\"sqlExpression\":\"1=2\",\"compatibilityLevel\":20,\"parameters\":{}}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/sqlRule2\",\"name\":\"sqlRule2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{\"sqlExpression\":\"SET a=b\",\"compatibilityLevel\":20,\"parameters\":{}},\"filterType\":\"SqlFilter\",\"sqlFilter\":{\"sqlExpression\":\"1=2\",\"compatibilityLevel\":20,\"parameters\":{}}}}", "isContentBase64": false } }, - "Set-AzServiceBusRule+[NoContext]+SetExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/sqlRule2?api-version=2022-01-01-preview+2": { + "Set-AzServiceBusRule+[NoContext]+SetExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/sqlRule2?api-version=2022-10-01-preview+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/sqlRule2?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/sqlRule2?api-version=2022-10-01-preview", "Content": "{\n \"properties\": {\n \"action\": {\n \"sqlExpression\": \"SET a=b\",\n \"compatibilityLevel\": 20\n },\n \"sqlFilter\": {\n \"sqlExpression\": \"x=y\",\n \"compatibilityLevel\": 20\n },\n \"filterType\": \"SqlFilter\"\n }\n}", "isContentBase64": false, "Headers": { @@ -60,31 +60,31 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1164" ], - "x-ms-request-id": [ "fd117779-f204-48bf-bff4-51209651c6eb" ], - "x-ms-correlation-request-id": [ "fd117779-f204-48bf-bff4-51209651c6eb" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111840Z:fd117779-f204-48bf-bff4-51209651c6eb" ], + "x-ms-request-id": [ "2775dbc5-51e2-49d7-9eac-6c95400d0528" ], + "x-ms-correlation-request-id": [ "2775dbc5-51e2-49d7-9eac-6c95400d0528" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143608Z:2775dbc5-51e2-49d7-9eac-6c95400d0528" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:40 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "489" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/sqlRule2\",\"name\":\"sqlRule2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{\"sqlExpression\":\"SET a=b\",\"compatibilityLevel\":20},\"filterType\":\"SqlFilter\",\"sqlFilter\":{\"sqlExpression\":\"x=y\",\"compatibilityLevel\":20}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/sqlRule2\",\"name\":\"sqlRule2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{\"sqlExpression\":\"SET a=b\",\"compatibilityLevel\":20},\"filterType\":\"SqlFilter\",\"sqlFilter\":{\"sqlExpression\":\"x=y\",\"compatibilityLevel\":20}}}", "isContentBase64": false } }, - "Set-AzServiceBusRule+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-01-01-preview+1": { + "Set-AzServiceBusRule+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "475" ], - "x-ms-client-request-id": [ "63d33149-30bf-49c1-9a3e-6dd964ef042e" ], + "x-ms-unique-id": [ "466" ], + "x-ms-client-request-id": [ "a351933b-41b1-4172-aba0-a4a2a9ee0ffd" ], "CommandName": [ "Get-AzServiceBusRule" ], "FullCommandName": [ "Get-AzServiceBusRule_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -101,31 +101,31 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11906" ], - "x-ms-request-id": [ "7d7ffa9a-a1b3-4e92-918c-2ec2f343b55f" ], - "x-ms-correlation-request-id": [ "7d7ffa9a-a1b3-4e92-918c-2ec2f343b55f" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111840Z:7d7ffa9a-a1b3-4e92-918c-2ec2f343b55f" ], + "x-ms-request-id": [ "e8d93f78-3260-4f6d-80b4-4b7cd3c10914" ], + "x-ms-correlation-request-id": [ "e8d93f78-3260-4f6d-80b4-4b7cd3c10914" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143608Z:e8d93f78-3260-4f6d-80b4-4b7cd3c10914" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:40 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:08 GMT" ] }, "ContentHeaders": { "Content-Length": [ "639" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1\",\"name\":\"correlationRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"CorrelationFilter\",\"correlationFilter\":{\"correlationId\":\"correlationid\",\"messageId\":\"messageid\",\"replyTo\":\"replyto\",\"label\":\"label\",\"sessionId\":\"sessionid\",\"replyToSessionId\":\"replytosessionid\",\"contentType\":\"contenttype\",\"properties\":{\"c\":\"d\",\"a\":\"b\"}}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1\",\"name\":\"correlationRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"CorrelationFilter\",\"correlationFilter\":{\"correlationId\":\"correlationid\",\"messageId\":\"messageid\",\"replyTo\":\"replyto\",\"label\":\"label\",\"sessionId\":\"sessionid\",\"replyToSessionId\":\"replytosessionid\",\"contentType\":\"contenttype\",\"properties\":{\"c\":\"d\",\"a\":\"b\"}}}}", "isContentBase64": false } }, - "Set-AzServiceBusRule+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-01-01-preview+2": { + "Set-AzServiceBusRule+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-10-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "476" ], - "x-ms-client-request-id": [ "c100e516-e9bc-4c1f-8b05-5e125dd929f7" ], + "x-ms-unique-id": [ "467" ], + "x-ms-client-request-id": [ "0e398963-bdbe-4051-a49a-6dce4513d48f" ], "CommandName": [ "Get-AzServiceBusRule" ], "FullCommandName": [ "Get-AzServiceBusRule_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -142,26 +142,26 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11905" ], - "x-ms-request-id": [ "a4fad653-2281-4eb0-9a85-99c145d61637" ], - "x-ms-correlation-request-id": [ "a4fad653-2281-4eb0-9a85-99c145d61637" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111841Z:a4fad653-2281-4eb0-9a85-99c145d61637" ], + "x-ms-request-id": [ "3086b699-ff0e-477d-8a8e-b95a72ef094b" ], + "x-ms-correlation-request-id": [ "3086b699-ff0e-477d-8a8e-b95a72ef094b" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143609Z:3086b699-ff0e-477d-8a8e-b95a72ef094b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:40 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:09 GMT" ] }, "ContentHeaders": { "Content-Length": [ "639" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1\",\"name\":\"correlationRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"CorrelationFilter\",\"correlationFilter\":{\"correlationId\":\"correlationid\",\"messageId\":\"messageid\",\"replyTo\":\"replyto\",\"label\":\"label\",\"sessionId\":\"sessionid\",\"replyToSessionId\":\"replytosessionid\",\"contentType\":\"contenttype\",\"properties\":{\"c\":\"d\",\"a\":\"b\"}}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1\",\"name\":\"correlationRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"CorrelationFilter\",\"correlationFilter\":{\"correlationId\":\"correlationid\",\"messageId\":\"messageid\",\"replyTo\":\"replyto\",\"label\":\"label\",\"sessionId\":\"sessionid\",\"replyToSessionId\":\"replytosessionid\",\"contentType\":\"contenttype\",\"properties\":{\"c\":\"d\",\"a\":\"b\"}}}}", "isContentBase64": false } }, - "Set-AzServiceBusRule+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-01-01-preview+3": { + "Set-AzServiceBusRule+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-10-01-preview+3": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-10-01-preview", "Content": "{\n \"properties\": {\n \"correlationFilter\": {\n \"properties\": {\n \"c\": \"d\",\n \"a\": \"b\"\n },\n \"correlationId\": \"correlationid\",\n \"messageId\": \"messageid\",\n \"replyTo\": \"replyto\",\n \"label\": \"label\",\n \"sessionId\": \"sessionid\",\n \"replyToSessionId\": \"replytosessionid\",\n \"contentType\": \"secondcontenttype\"\n },\n \"filterType\": \"CorrelationFilter\"\n }\n}", "isContentBase64": false, "Headers": { @@ -178,31 +178,31 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1163" ], - "x-ms-request-id": [ "8018f379-4d5e-4653-8782-e72803971429" ], - "x-ms-correlation-request-id": [ "8018f379-4d5e-4653-8782-e72803971429" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111842Z:8018f379-4d5e-4653-8782-e72803971429" ], + "x-ms-request-id": [ "07c9c510-d16c-4f91-aa94-c1f1b6a648b6" ], + "x-ms-correlation-request-id": [ "07c9c510-d16c-4f91-aa94-c1f1b6a648b6" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143610Z:07c9c510-d16c-4f91-aa94-c1f1b6a648b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:41 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "645" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1\",\"name\":\"correlationRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"CorrelationFilter\",\"correlationFilter\":{\"correlationId\":\"correlationid\",\"messageId\":\"messageid\",\"replyTo\":\"replyto\",\"label\":\"label\",\"sessionId\":\"sessionid\",\"replyToSessionId\":\"replytosessionid\",\"contentType\":\"secondcontenttype\",\"properties\":{\"c\":\"d\",\"a\":\"b\"}}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1\",\"name\":\"correlationRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"CorrelationFilter\",\"correlationFilter\":{\"correlationId\":\"correlationid\",\"messageId\":\"messageid\",\"replyTo\":\"replyto\",\"label\":\"label\",\"sessionId\":\"sessionid\",\"replyToSessionId\":\"replytosessionid\",\"contentType\":\"secondcontenttype\",\"properties\":{\"c\":\"d\",\"a\":\"b\"}}}}", "isContentBase64": false } }, - "Set-AzServiceBusRule+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-01-01-preview+4": { + "Set-AzServiceBusRule+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-10-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "478" ], - "x-ms-client-request-id": [ "392a4e48-d604-4ad9-b135-a5ae2a9a1940" ], + "x-ms-unique-id": [ "469" ], + "x-ms-client-request-id": [ "13fb585a-c604-442a-8c64-df3455bdbf87" ], "CommandName": [ "Get-AzServiceBusRule" ], "FullCommandName": [ "Get-AzServiceBusRule_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -219,26 +219,26 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11904" ], - "x-ms-request-id": [ "b7e419fa-ca39-4c46-9c6a-3d8fa9041ff2" ], - "x-ms-correlation-request-id": [ "b7e419fa-ca39-4c46-9c6a-3d8fa9041ff2" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111842Z:b7e419fa-ca39-4c46-9c6a-3d8fa9041ff2" ], + "x-ms-request-id": [ "dffc50cf-53f0-4429-91dc-d2bedd638948" ], + "x-ms-correlation-request-id": [ "dffc50cf-53f0-4429-91dc-d2bedd638948" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143611Z:dffc50cf-53f0-4429-91dc-d2bedd638948" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:42 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "645" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1\",\"name\":\"correlationRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"CorrelationFilter\",\"correlationFilter\":{\"correlationId\":\"correlationid\",\"messageId\":\"messageid\",\"replyTo\":\"replyto\",\"label\":\"label\",\"sessionId\":\"sessionid\",\"replyToSessionId\":\"replytosessionid\",\"contentType\":\"secondcontenttype\",\"properties\":{\"c\":\"d\",\"a\":\"b\"}}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1\",\"name\":\"correlationRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"CorrelationFilter\",\"correlationFilter\":{\"correlationId\":\"correlationid\",\"messageId\":\"messageid\",\"replyTo\":\"replyto\",\"label\":\"label\",\"sessionId\":\"sessionid\",\"replyToSessionId\":\"replytosessionid\",\"contentType\":\"secondcontenttype\",\"properties\":{\"c\":\"d\",\"a\":\"b\"}}}}", "isContentBase64": false } }, - "Set-AzServiceBusRule+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-01-01-preview+5": { + "Set-AzServiceBusRule+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-10-01-preview+5": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-10-01-preview", "Content": "{\n \"properties\": {\n \"correlationFilter\": {\n \"properties\": {\n \"c\": \"d\",\n \"a\": \"b\"\n },\n \"correlationId\": \"secondcorrelationid\",\n \"messageId\": \"messageid\",\n \"replyTo\": \"replyto\",\n \"label\": \"label\",\n \"sessionId\": \"sessionid\",\n \"replyToSessionId\": \"replytosessionid\",\n \"contentType\": \"secondcontenttype\"\n },\n \"filterType\": \"CorrelationFilter\"\n }\n}", "isContentBase64": false, "Headers": { @@ -255,31 +255,31 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1162" ], - "x-ms-request-id": [ "6dedace0-6a9b-4570-ae55-bf0b6f1edc1c" ], - "x-ms-correlation-request-id": [ "6dedace0-6a9b-4570-ae55-bf0b6f1edc1c" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111843Z:6dedace0-6a9b-4570-ae55-bf0b6f1edc1c" ], + "x-ms-request-id": [ "22dd648e-2b73-420e-90dc-2af4352758ec" ], + "x-ms-correlation-request-id": [ "22dd648e-2b73-420e-90dc-2af4352758ec" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143613Z:22dd648e-2b73-420e-90dc-2af4352758ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:43 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:12 GMT" ] }, "ContentHeaders": { "Content-Length": [ "651" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1\",\"name\":\"correlationRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"CorrelationFilter\",\"correlationFilter\":{\"correlationId\":\"secondcorrelationid\",\"messageId\":\"messageid\",\"replyTo\":\"replyto\",\"label\":\"label\",\"sessionId\":\"sessionid\",\"replyToSessionId\":\"replytosessionid\",\"contentType\":\"secondcontenttype\",\"properties\":{\"c\":\"d\",\"a\":\"b\"}}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1\",\"name\":\"correlationRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"CorrelationFilter\",\"correlationFilter\":{\"correlationId\":\"secondcorrelationid\",\"messageId\":\"messageid\",\"replyTo\":\"replyto\",\"label\":\"label\",\"sessionId\":\"sessionid\",\"replyToSessionId\":\"replytosessionid\",\"contentType\":\"secondcontenttype\",\"properties\":{\"c\":\"d\",\"a\":\"b\"}}}}", "isContentBase64": false } }, - "Set-AzServiceBusRule+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-01-01-preview+6": { + "Set-AzServiceBusRule+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-10-01-preview+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "480" ], - "x-ms-client-request-id": [ "553dadce-646a-4dcc-ab9f-2df514dc9832" ], + "x-ms-unique-id": [ "471" ], + "x-ms-client-request-id": [ "45d1ab8a-50af-4d90-936a-a678388828bb" ], "CommandName": [ "Get-AzServiceBusRule" ], "FullCommandName": [ "Get-AzServiceBusRule_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -296,26 +296,26 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11903" ], - "x-ms-request-id": [ "0c5a7fc7-bca7-422d-a6d0-a31b11f51494" ], - "x-ms-correlation-request-id": [ "0c5a7fc7-bca7-422d-a6d0-a31b11f51494" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111844Z:0c5a7fc7-bca7-422d-a6d0-a31b11f51494" ], + "x-ms-request-id": [ "563bcf78-5477-4967-b989-47f4faf5c748" ], + "x-ms-correlation-request-id": [ "563bcf78-5477-4967-b989-47f4faf5c748" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143613Z:563bcf78-5477-4967-b989-47f4faf5c748" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:43 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "651" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1\",\"name\":\"correlationRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"CorrelationFilter\",\"correlationFilter\":{\"correlationId\":\"secondcorrelationid\",\"messageId\":\"messageid\",\"replyTo\":\"replyto\",\"label\":\"label\",\"sessionId\":\"sessionid\",\"replyToSessionId\":\"replytosessionid\",\"contentType\":\"secondcontenttype\",\"properties\":{\"c\":\"d\",\"a\":\"b\"}}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1\",\"name\":\"correlationRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"CorrelationFilter\",\"correlationFilter\":{\"correlationId\":\"secondcorrelationid\",\"messageId\":\"messageid\",\"replyTo\":\"replyto\",\"label\":\"label\",\"sessionId\":\"sessionid\",\"replyToSessionId\":\"replytosessionid\",\"contentType\":\"secondcontenttype\",\"properties\":{\"c\":\"d\",\"a\":\"b\"}}}}", "isContentBase64": false } }, - "Set-AzServiceBusRule+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-01-01-preview+7": { + "Set-AzServiceBusRule+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-10-01-preview+7": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-10-01-preview", "Content": "{\n \"properties\": {\n \"correlationFilter\": {\n \"properties\": {\n \"c\": \"d\",\n \"a\": \"b\"\n },\n \"correlationId\": \"secondcorrelationid\",\n \"messageId\": \"messageid\",\n \"replyTo\": \"replyto\",\n \"label\": \"secondlabel\",\n \"sessionId\": \"sessionid\",\n \"replyToSessionId\": \"replytosessionid\",\n \"contentType\": \"secondcontenttype\"\n },\n \"filterType\": \"CorrelationFilter\"\n }\n}", "isContentBase64": false, "Headers": { @@ -332,31 +332,31 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1161" ], - "x-ms-request-id": [ "a4c7f5d4-f5fb-454d-a874-18ac67ad4b80" ], - "x-ms-correlation-request-id": [ "a4c7f5d4-f5fb-454d-a874-18ac67ad4b80" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111845Z:a4c7f5d4-f5fb-454d-a874-18ac67ad4b80" ], + "x-ms-request-id": [ "263037cd-051d-42c6-a8b7-081c64350b17" ], + "x-ms-correlation-request-id": [ "263037cd-051d-42c6-a8b7-081c64350b17" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143615Z:263037cd-051d-42c6-a8b7-081c64350b17" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:45 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "657" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1\",\"name\":\"correlationRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"CorrelationFilter\",\"correlationFilter\":{\"correlationId\":\"secondcorrelationid\",\"messageId\":\"messageid\",\"replyTo\":\"replyto\",\"label\":\"secondlabel\",\"sessionId\":\"sessionid\",\"replyToSessionId\":\"replytosessionid\",\"contentType\":\"secondcontenttype\",\"properties\":{\"c\":\"d\",\"a\":\"b\"}}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1\",\"name\":\"correlationRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"CorrelationFilter\",\"correlationFilter\":{\"correlationId\":\"secondcorrelationid\",\"messageId\":\"messageid\",\"replyTo\":\"replyto\",\"label\":\"secondlabel\",\"sessionId\":\"sessionid\",\"replyToSessionId\":\"replytosessionid\",\"contentType\":\"secondcontenttype\",\"properties\":{\"c\":\"d\",\"a\":\"b\"}}}}", "isContentBase64": false } }, - "Set-AzServiceBusRule+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-01-01-preview+8": { + "Set-AzServiceBusRule+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-10-01-preview+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "482" ], - "x-ms-client-request-id": [ "11a2f955-ab94-4bb7-bb3f-5e3a195cd370" ], + "x-ms-unique-id": [ "473" ], + "x-ms-client-request-id": [ "b6484586-55f6-417b-a10b-246471eaaac2" ], "CommandName": [ "Get-AzServiceBusRule" ], "FullCommandName": [ "Get-AzServiceBusRule_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -373,26 +373,26 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11902" ], - "x-ms-request-id": [ "88734f5b-e975-47bd-b6e5-7f4c347a2fb6" ], - "x-ms-correlation-request-id": [ "88734f5b-e975-47bd-b6e5-7f4c347a2fb6" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111845Z:88734f5b-e975-47bd-b6e5-7f4c347a2fb6" ], + "x-ms-request-id": [ "f182e7d7-e01c-468b-bd54-62163acc2d2a" ], + "x-ms-correlation-request-id": [ "f182e7d7-e01c-468b-bd54-62163acc2d2a" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143615Z:f182e7d7-e01c-468b-bd54-62163acc2d2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:45 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "657" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1\",\"name\":\"correlationRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"CorrelationFilter\",\"correlationFilter\":{\"correlationId\":\"secondcorrelationid\",\"messageId\":\"messageid\",\"replyTo\":\"replyto\",\"label\":\"secondlabel\",\"sessionId\":\"sessionid\",\"replyToSessionId\":\"replytosessionid\",\"contentType\":\"secondcontenttype\",\"properties\":{\"c\":\"d\",\"a\":\"b\"}}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1\",\"name\":\"correlationRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"CorrelationFilter\",\"correlationFilter\":{\"correlationId\":\"secondcorrelationid\",\"messageId\":\"messageid\",\"replyTo\":\"replyto\",\"label\":\"secondlabel\",\"sessionId\":\"sessionid\",\"replyToSessionId\":\"replytosessionid\",\"contentType\":\"secondcontenttype\",\"properties\":{\"c\":\"d\",\"a\":\"b\"}}}}", "isContentBase64": false } }, - "Set-AzServiceBusRule+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-01-01-preview+9": { + "Set-AzServiceBusRule+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-10-01-preview+9": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-10-01-preview", "Content": "{\n \"properties\": {\n \"correlationFilter\": {\n \"properties\": {\n \"c\": \"d\",\n \"a\": \"b\"\n },\n \"correlationId\": \"secondcorrelationid\",\n \"messageId\": \"secondmessageid\",\n \"replyTo\": \"replyto\",\n \"label\": \"secondlabel\",\n \"sessionId\": \"sessionid\",\n \"replyToSessionId\": \"replytosessionid\",\n \"contentType\": \"secondcontenttype\"\n },\n \"filterType\": \"CorrelationFilter\"\n }\n}", "isContentBase64": false, "Headers": { @@ -409,31 +409,31 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1160" ], - "x-ms-request-id": [ "66c31d25-75e5-4ed7-bac4-a352ddf4df32" ], - "x-ms-correlation-request-id": [ "66c31d25-75e5-4ed7-bac4-a352ddf4df32" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111847Z:66c31d25-75e5-4ed7-bac4-a352ddf4df32" ], + "x-ms-request-id": [ "6de768a4-f6b2-42ca-8cbb-81c7f047c413" ], + "x-ms-correlation-request-id": [ "6de768a4-f6b2-42ca-8cbb-81c7f047c413" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143617Z:6de768a4-f6b2-42ca-8cbb-81c7f047c413" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:46 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "663" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1\",\"name\":\"correlationRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"CorrelationFilter\",\"correlationFilter\":{\"correlationId\":\"secondcorrelationid\",\"messageId\":\"secondmessageid\",\"replyTo\":\"replyto\",\"label\":\"secondlabel\",\"sessionId\":\"sessionid\",\"replyToSessionId\":\"replytosessionid\",\"contentType\":\"secondcontenttype\",\"properties\":{\"c\":\"d\",\"a\":\"b\"}}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1\",\"name\":\"correlationRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"CorrelationFilter\",\"correlationFilter\":{\"correlationId\":\"secondcorrelationid\",\"messageId\":\"secondmessageid\",\"replyTo\":\"replyto\",\"label\":\"secondlabel\",\"sessionId\":\"sessionid\",\"replyToSessionId\":\"replytosessionid\",\"contentType\":\"secondcontenttype\",\"properties\":{\"c\":\"d\",\"a\":\"b\"}}}}", "isContentBase64": false } }, - "Set-AzServiceBusRule+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-01-01-preview+10": { + "Set-AzServiceBusRule+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-10-01-preview+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "484" ], - "x-ms-client-request-id": [ "a550fddd-2b60-4e52-87bc-80c07f6b6251" ], + "x-ms-unique-id": [ "475" ], + "x-ms-client-request-id": [ "cacd7c8b-2d12-4f84-bb50-d13ac4198579" ], "CommandName": [ "Get-AzServiceBusRule" ], "FullCommandName": [ "Get-AzServiceBusRule_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -450,26 +450,26 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11901" ], - "x-ms-request-id": [ "52b06ed2-037b-4c88-b368-8c30d0ba0c2b" ], - "x-ms-correlation-request-id": [ "52b06ed2-037b-4c88-b368-8c30d0ba0c2b" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111847Z:52b06ed2-037b-4c88-b368-8c30d0ba0c2b" ], + "x-ms-request-id": [ "37ba1e78-d03d-4c4f-8add-0261d3cfee80" ], + "x-ms-correlation-request-id": [ "37ba1e78-d03d-4c4f-8add-0261d3cfee80" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143618Z:37ba1e78-d03d-4c4f-8add-0261d3cfee80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:47 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "663" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1\",\"name\":\"correlationRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"CorrelationFilter\",\"correlationFilter\":{\"correlationId\":\"secondcorrelationid\",\"messageId\":\"secondmessageid\",\"replyTo\":\"replyto\",\"label\":\"secondlabel\",\"sessionId\":\"sessionid\",\"replyToSessionId\":\"replytosessionid\",\"contentType\":\"secondcontenttype\",\"properties\":{\"c\":\"d\",\"a\":\"b\"}}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1\",\"name\":\"correlationRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"CorrelationFilter\",\"correlationFilter\":{\"correlationId\":\"secondcorrelationid\",\"messageId\":\"secondmessageid\",\"replyTo\":\"replyto\",\"label\":\"secondlabel\",\"sessionId\":\"sessionid\",\"replyToSessionId\":\"replytosessionid\",\"contentType\":\"secondcontenttype\",\"properties\":{\"c\":\"d\",\"a\":\"b\"}}}}", "isContentBase64": false } }, - "Set-AzServiceBusRule+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-01-01-preview+11": { + "Set-AzServiceBusRule+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-10-01-preview+11": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-10-01-preview", "Content": "{\n \"properties\": {\n \"correlationFilter\": {\n \"properties\": {\n \"a\": \"b\"\n },\n \"correlationId\": \"secondcorrelationid\",\n \"messageId\": \"secondmessageid\",\n \"replyTo\": \"replyto\",\n \"label\": \"secondlabel\",\n \"sessionId\": \"sessionid\",\n \"replyToSessionId\": \"replytosessionid\",\n \"contentType\": \"secondcontenttype\"\n },\n \"filterType\": \"CorrelationFilter\"\n }\n}", "isContentBase64": false, "Headers": { @@ -486,31 +486,31 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1159" ], - "x-ms-request-id": [ "35261b8d-817d-4d90-a25a-be8f8b29370d" ], - "x-ms-correlation-request-id": [ "35261b8d-817d-4d90-a25a-be8f8b29370d" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111848Z:35261b8d-817d-4d90-a25a-be8f8b29370d" ], + "x-ms-request-id": [ "28d6bf76-d558-40f7-b570-36f5a841c3d5" ], + "x-ms-correlation-request-id": [ "28d6bf76-d558-40f7-b570-36f5a841c3d5" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143619Z:28d6bf76-d558-40f7-b570-36f5a841c3d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:48 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:19 GMT" ] }, "ContentHeaders": { "Content-Length": [ "655" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1\",\"name\":\"correlationRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"CorrelationFilter\",\"correlationFilter\":{\"correlationId\":\"secondcorrelationid\",\"messageId\":\"secondmessageid\",\"replyTo\":\"replyto\",\"label\":\"secondlabel\",\"sessionId\":\"sessionid\",\"replyToSessionId\":\"replytosessionid\",\"contentType\":\"secondcontenttype\",\"properties\":{\"a\":\"b\"}}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1\",\"name\":\"correlationRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"CorrelationFilter\",\"correlationFilter\":{\"correlationId\":\"secondcorrelationid\",\"messageId\":\"secondmessageid\",\"replyTo\":\"replyto\",\"label\":\"secondlabel\",\"sessionId\":\"sessionid\",\"replyToSessionId\":\"replytosessionid\",\"contentType\":\"secondcontenttype\",\"properties\":{\"a\":\"b\"}}}}", "isContentBase64": false } }, - "Set-AzServiceBusRule+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-01-01-preview+12": { + "Set-AzServiceBusRule+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-10-01-preview+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "486" ], - "x-ms-client-request-id": [ "b3db25c4-48ec-44f1-9680-c127b747e3ef" ], + "x-ms-unique-id": [ "477" ], + "x-ms-client-request-id": [ "7a24cd23-aeb6-444b-be5a-8e44685f6464" ], "CommandName": [ "Get-AzServiceBusRule" ], "FullCommandName": [ "Get-AzServiceBusRule_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -527,26 +527,26 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11900" ], - "x-ms-request-id": [ "3e7920f3-f93e-4dd1-b109-7762162da262" ], - "x-ms-correlation-request-id": [ "3e7920f3-f93e-4dd1-b109-7762162da262" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111849Z:3e7920f3-f93e-4dd1-b109-7762162da262" ], + "x-ms-request-id": [ "a4ab8702-2f4a-4116-ae11-cad09450ee00" ], + "x-ms-correlation-request-id": [ "a4ab8702-2f4a-4116-ae11-cad09450ee00" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143620Z:a4ab8702-2f4a-4116-ae11-cad09450ee00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:48 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "655" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1\",\"name\":\"correlationRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"CorrelationFilter\",\"correlationFilter\":{\"correlationId\":\"secondcorrelationid\",\"messageId\":\"secondmessageid\",\"replyTo\":\"replyto\",\"label\":\"secondlabel\",\"sessionId\":\"sessionid\",\"replyToSessionId\":\"replytosessionid\",\"contentType\":\"secondcontenttype\",\"properties\":{\"a\":\"b\"}}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1\",\"name\":\"correlationRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"CorrelationFilter\",\"correlationFilter\":{\"correlationId\":\"secondcorrelationid\",\"messageId\":\"secondmessageid\",\"replyTo\":\"replyto\",\"label\":\"secondlabel\",\"sessionId\":\"sessionid\",\"replyToSessionId\":\"replytosessionid\",\"contentType\":\"secondcontenttype\",\"properties\":{\"a\":\"b\"}}}}", "isContentBase64": false } }, - "Set-AzServiceBusRule+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-01-01-preview+13": { + "Set-AzServiceBusRule+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-10-01-preview+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-10-01-preview", "Content": "{\n \"properties\": {\n \"correlationFilter\": {\n \"properties\": {\n \"a\": \"b\"\n },\n \"correlationId\": \"secondcorrelationid\",\n \"messageId\": \"secondmessageid\",\n \"replyTo\": \"secondreplyto\",\n \"label\": \"secondlabel\",\n \"sessionId\": \"sessionid\",\n \"replyToSessionId\": \"replytosessionid\",\n \"contentType\": \"secondcontenttype\"\n },\n \"filterType\": \"CorrelationFilter\"\n }\n}", "isContentBase64": false, "Headers": { @@ -563,31 +563,31 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1158" ], - "x-ms-request-id": [ "2bccdd31-5707-49eb-9394-32a70d783b04" ], - "x-ms-correlation-request-id": [ "2bccdd31-5707-49eb-9394-32a70d783b04" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111850Z:2bccdd31-5707-49eb-9394-32a70d783b04" ], + "x-ms-request-id": [ "635e6a72-f1d2-4d63-84de-ad358be47749" ], + "x-ms-correlation-request-id": [ "635e6a72-f1d2-4d63-84de-ad358be47749" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143621Z:635e6a72-f1d2-4d63-84de-ad358be47749" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:50 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "661" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1\",\"name\":\"correlationRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"CorrelationFilter\",\"correlationFilter\":{\"correlationId\":\"secondcorrelationid\",\"messageId\":\"secondmessageid\",\"replyTo\":\"secondreplyto\",\"label\":\"secondlabel\",\"sessionId\":\"sessionid\",\"replyToSessionId\":\"replytosessionid\",\"contentType\":\"secondcontenttype\",\"properties\":{\"a\":\"b\"}}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1\",\"name\":\"correlationRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"CorrelationFilter\",\"correlationFilter\":{\"correlationId\":\"secondcorrelationid\",\"messageId\":\"secondmessageid\",\"replyTo\":\"secondreplyto\",\"label\":\"secondlabel\",\"sessionId\":\"sessionid\",\"replyToSessionId\":\"replytosessionid\",\"contentType\":\"secondcontenttype\",\"properties\":{\"a\":\"b\"}}}}", "isContentBase64": false } }, - "Set-AzServiceBusRule+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-01-01-preview+14": { + "Set-AzServiceBusRule+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-10-01-preview+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "488" ], - "x-ms-client-request-id": [ "de33baa9-0985-401d-825a-9870c8147330" ], + "x-ms-unique-id": [ "479" ], + "x-ms-client-request-id": [ "cfda0ed0-63c1-4648-828c-1e299cfa3852" ], "CommandName": [ "Get-AzServiceBusRule" ], "FullCommandName": [ "Get-AzServiceBusRule_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -604,26 +604,26 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11899" ], - "x-ms-request-id": [ "24cd6eac-d3ea-48f3-9cdd-d1fc10c601f0" ], - "x-ms-correlation-request-id": [ "24cd6eac-d3ea-48f3-9cdd-d1fc10c601f0" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111850Z:24cd6eac-d3ea-48f3-9cdd-d1fc10c601f0" ], + "x-ms-request-id": [ "9d3c4ffc-3ab0-4335-a8a0-248150ff3bda" ], + "x-ms-correlation-request-id": [ "9d3c4ffc-3ab0-4335-a8a0-248150ff3bda" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143622Z:9d3c4ffc-3ab0-4335-a8a0-248150ff3bda" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:50 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "661" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1\",\"name\":\"correlationRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"CorrelationFilter\",\"correlationFilter\":{\"correlationId\":\"secondcorrelationid\",\"messageId\":\"secondmessageid\",\"replyTo\":\"secondreplyto\",\"label\":\"secondlabel\",\"sessionId\":\"sessionid\",\"replyToSessionId\":\"replytosessionid\",\"contentType\":\"secondcontenttype\",\"properties\":{\"a\":\"b\"}}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1\",\"name\":\"correlationRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"CorrelationFilter\",\"correlationFilter\":{\"correlationId\":\"secondcorrelationid\",\"messageId\":\"secondmessageid\",\"replyTo\":\"secondreplyto\",\"label\":\"secondlabel\",\"sessionId\":\"sessionid\",\"replyToSessionId\":\"replytosessionid\",\"contentType\":\"secondcontenttype\",\"properties\":{\"a\":\"b\"}}}}", "isContentBase64": false } }, - "Set-AzServiceBusRule+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-01-01-preview+15": { + "Set-AzServiceBusRule+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-10-01-preview+15": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-10-01-preview", "Content": "{\n \"properties\": {\n \"correlationFilter\": {\n \"properties\": {\n \"a\": \"b\"\n },\n \"correlationId\": \"secondcorrelationid\",\n \"messageId\": \"secondmessageid\",\n \"replyTo\": \"secondreplyto\",\n \"label\": \"secondlabel\",\n \"sessionId\": \"sessionid\",\n \"replyToSessionId\": \"secondreplytosessionid\",\n \"contentType\": \"secondcontenttype\"\n },\n \"filterType\": \"CorrelationFilter\"\n }\n}", "isContentBase64": false, "Headers": { @@ -640,31 +640,31 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1157" ], - "x-ms-request-id": [ "cbbef94a-af93-492f-b44c-ac8b02b08562" ], - "x-ms-correlation-request-id": [ "cbbef94a-af93-492f-b44c-ac8b02b08562" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111852Z:cbbef94a-af93-492f-b44c-ac8b02b08562" ], + "x-ms-request-id": [ "dea9e65b-892f-475b-975b-3d38092ec906" ], + "x-ms-correlation-request-id": [ "dea9e65b-892f-475b-975b-3d38092ec906" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143623Z:dea9e65b-892f-475b-975b-3d38092ec906" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:51 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "667" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1\",\"name\":\"correlationRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"CorrelationFilter\",\"correlationFilter\":{\"correlationId\":\"secondcorrelationid\",\"messageId\":\"secondmessageid\",\"replyTo\":\"secondreplyto\",\"label\":\"secondlabel\",\"sessionId\":\"sessionid\",\"replyToSessionId\":\"secondreplytosessionid\",\"contentType\":\"secondcontenttype\",\"properties\":{\"a\":\"b\"}}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1\",\"name\":\"correlationRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"CorrelationFilter\",\"correlationFilter\":{\"correlationId\":\"secondcorrelationid\",\"messageId\":\"secondmessageid\",\"replyTo\":\"secondreplyto\",\"label\":\"secondlabel\",\"sessionId\":\"sessionid\",\"replyToSessionId\":\"secondreplytosessionid\",\"contentType\":\"secondcontenttype\",\"properties\":{\"a\":\"b\"}}}}", "isContentBase64": false } }, - "Set-AzServiceBusRule+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-01-01-preview+16": { + "Set-AzServiceBusRule+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-10-01-preview+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "490" ], - "x-ms-client-request-id": [ "2e3e2ec3-0b82-4feb-bad8-8be334795ae2" ], + "x-ms-unique-id": [ "481" ], + "x-ms-client-request-id": [ "8161ec45-7f41-4cf3-a149-bb0ef441264f" ], "CommandName": [ "Get-AzServiceBusRule" ], "FullCommandName": [ "Get-AzServiceBusRule_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -681,26 +681,26 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11898" ], - "x-ms-request-id": [ "becbb314-43ba-49a1-8888-2a8895db7722" ], - "x-ms-correlation-request-id": [ "becbb314-43ba-49a1-8888-2a8895db7722" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111852Z:becbb314-43ba-49a1-8888-2a8895db7722" ], + "x-ms-request-id": [ "a5465d3e-4396-472e-975a-724bd66309ce" ], + "x-ms-correlation-request-id": [ "a5465d3e-4396-472e-975a-724bd66309ce" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143624Z:a5465d3e-4396-472e-975a-724bd66309ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:51 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "667" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1\",\"name\":\"correlationRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"CorrelationFilter\",\"correlationFilter\":{\"correlationId\":\"secondcorrelationid\",\"messageId\":\"secondmessageid\",\"replyTo\":\"secondreplyto\",\"label\":\"secondlabel\",\"sessionId\":\"sessionid\",\"replyToSessionId\":\"secondreplytosessionid\",\"contentType\":\"secondcontenttype\",\"properties\":{\"a\":\"b\"}}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1\",\"name\":\"correlationRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"CorrelationFilter\",\"correlationFilter\":{\"correlationId\":\"secondcorrelationid\",\"messageId\":\"secondmessageid\",\"replyTo\":\"secondreplyto\",\"label\":\"secondlabel\",\"sessionId\":\"sessionid\",\"replyToSessionId\":\"secondreplytosessionid\",\"contentType\":\"secondcontenttype\",\"properties\":{\"a\":\"b\"}}}}", "isContentBase64": false } }, - "Set-AzServiceBusRule+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-01-01-preview+17": { + "Set-AzServiceBusRule+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-10-01-preview+17": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-10-01-preview", "Content": "{\n \"properties\": {\n \"correlationFilter\": {\n \"properties\": {\n \"a\": \"b\"\n },\n \"correlationId\": \"secondcorrelationid\",\n \"messageId\": \"secondmessageid\",\n \"replyTo\": \"secondreplyto\",\n \"label\": \"secondlabel\",\n \"sessionId\": \"secondsessionid\",\n \"replyToSessionId\": \"secondreplytosessionid\",\n \"contentType\": \"secondcontenttype\"\n },\n \"filterType\": \"CorrelationFilter\"\n }\n}", "isContentBase64": false, "Headers": { @@ -717,31 +717,31 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1156" ], - "x-ms-request-id": [ "eeb89311-cc5c-4dc9-942e-23716c74043c" ], - "x-ms-correlation-request-id": [ "eeb89311-cc5c-4dc9-942e-23716c74043c" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111853Z:eeb89311-cc5c-4dc9-942e-23716c74043c" ], + "x-ms-request-id": [ "ca93b6ac-9e12-4724-bf24-e76a769c172b" ], + "x-ms-correlation-request-id": [ "ca93b6ac-9e12-4724-bf24-e76a769c172b" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143626Z:ca93b6ac-9e12-4724-bf24-e76a769c172b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:53 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "673" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1\",\"name\":\"correlationRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"CorrelationFilter\",\"correlationFilter\":{\"correlationId\":\"secondcorrelationid\",\"messageId\":\"secondmessageid\",\"replyTo\":\"secondreplyto\",\"label\":\"secondlabel\",\"sessionId\":\"secondsessionid\",\"replyToSessionId\":\"secondreplytosessionid\",\"contentType\":\"secondcontenttype\",\"properties\":{\"a\":\"b\"}}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1\",\"name\":\"correlationRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"CorrelationFilter\",\"correlationFilter\":{\"correlationId\":\"secondcorrelationid\",\"messageId\":\"secondmessageid\",\"replyTo\":\"secondreplyto\",\"label\":\"secondlabel\",\"sessionId\":\"secondsessionid\",\"replyToSessionId\":\"secondreplytosessionid\",\"contentType\":\"secondcontenttype\",\"properties\":{\"a\":\"b\"}}}}", "isContentBase64": false } }, - "Set-AzServiceBusRule+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-01-01-preview+18": { + "Set-AzServiceBusRule+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-10-01-preview+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "492" ], - "x-ms-client-request-id": [ "7d799ce4-cb25-41f6-873f-68e67b8c767a" ], + "x-ms-unique-id": [ "483" ], + "x-ms-client-request-id": [ "ed0a955a-41d2-44dd-bb76-f765b9bbdf9c" ], "CommandName": [ "Get-AzServiceBusRule" ], "FullCommandName": [ "Get-AzServiceBusRule_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -758,26 +758,26 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11897" ], - "x-ms-request-id": [ "2be33dad-cd5e-4873-abe7-5ff2d7e08658" ], - "x-ms-correlation-request-id": [ "2be33dad-cd5e-4873-abe7-5ff2d7e08658" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111854Z:2be33dad-cd5e-4873-abe7-5ff2d7e08658" ], + "x-ms-request-id": [ "f384c50e-05d2-4937-bf20-e4b07825090c" ], + "x-ms-correlation-request-id": [ "f384c50e-05d2-4937-bf20-e4b07825090c" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143626Z:f384c50e-05d2-4937-bf20-e4b07825090c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:53 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "673" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1\",\"name\":\"correlationRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"CorrelationFilter\",\"correlationFilter\":{\"correlationId\":\"secondcorrelationid\",\"messageId\":\"secondmessageid\",\"replyTo\":\"secondreplyto\",\"label\":\"secondlabel\",\"sessionId\":\"secondsessionid\",\"replyToSessionId\":\"secondreplytosessionid\",\"contentType\":\"secondcontenttype\",\"properties\":{\"a\":\"b\"}}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1\",\"name\":\"correlationRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"CorrelationFilter\",\"correlationFilter\":{\"correlationId\":\"secondcorrelationid\",\"messageId\":\"secondmessageid\",\"replyTo\":\"secondreplyto\",\"label\":\"secondlabel\",\"sessionId\":\"secondsessionid\",\"replyToSessionId\":\"secondreplytosessionid\",\"contentType\":\"secondcontenttype\",\"properties\":{\"a\":\"b\"}}}}", "isContentBase64": false } }, - "Set-AzServiceBusRule+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-01-01-preview+19": { + "Set-AzServiceBusRule+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-10-01-preview+19": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-10-01-preview", "Content": "{\n \"properties\": {\n \"correlationFilter\": {\n \"properties\": {\n \"a\": \"b\"\n },\n \"correlationId\": \"secondcorrelationid\",\n \"messageId\": \"secondmessageid\",\n \"to\": \"secondto\",\n \"replyTo\": \"secondreplyto\",\n \"label\": \"secondlabel\",\n \"sessionId\": \"secondsessionid\",\n \"replyToSessionId\": \"secondreplytosessionid\",\n \"contentType\": \"secondcontenttype\"\n },\n \"filterType\": \"CorrelationFilter\"\n }\n}", "isContentBase64": false, "Headers": { @@ -794,31 +794,31 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1155" ], - "x-ms-request-id": [ "d1dc089d-9670-405e-ae42-9e4902433d03" ], - "x-ms-correlation-request-id": [ "d1dc089d-9670-405e-ae42-9e4902433d03" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111855Z:d1dc089d-9670-405e-ae42-9e4902433d03" ], + "x-ms-request-id": [ "81df7544-0fc2-47db-aaa9-5d9791781aa4" ], + "x-ms-correlation-request-id": [ "81df7544-0fc2-47db-aaa9-5d9791781aa4" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143628Z:81df7544-0fc2-47db-aaa9-5d9791781aa4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:54 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "689" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1\",\"name\":\"correlationRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"CorrelationFilter\",\"correlationFilter\":{\"correlationId\":\"secondcorrelationid\",\"messageId\":\"secondmessageid\",\"to\":\"secondto\",\"replyTo\":\"secondreplyto\",\"label\":\"secondlabel\",\"sessionId\":\"secondsessionid\",\"replyToSessionId\":\"secondreplytosessionid\",\"contentType\":\"secondcontenttype\",\"properties\":{\"a\":\"b\"}}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1\",\"name\":\"correlationRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"CorrelationFilter\",\"correlationFilter\":{\"correlationId\":\"secondcorrelationid\",\"messageId\":\"secondmessageid\",\"to\":\"secondto\",\"replyTo\":\"secondreplyto\",\"label\":\"secondlabel\",\"sessionId\":\"secondsessionid\",\"replyToSessionId\":\"secondreplytosessionid\",\"contentType\":\"secondcontenttype\",\"properties\":{\"a\":\"b\"}}}}", "isContentBase64": false } }, - "Set-AzServiceBusRule+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-01-01-preview+20": { + "Set-AzServiceBusRule+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-10-01-preview+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "494" ], - "x-ms-client-request-id": [ "a2ac415c-1b28-439e-b4af-eec55bbfafb6" ], + "x-ms-unique-id": [ "485" ], + "x-ms-client-request-id": [ "4fa5c6c5-793c-4438-9cbf-f42cd02d3602" ], "CommandName": [ "Get-AzServiceBusRule" ], "FullCommandName": [ "Get-AzServiceBusRule_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -835,19 +835,19 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11896" ], - "x-ms-request-id": [ "db66ad54-7469-420c-aa3a-a1ab0e331af2" ], - "x-ms-correlation-request-id": [ "db66ad54-7469-420c-aa3a-a1ab0e331af2" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111855Z:db66ad54-7469-420c-aa3a-a1ab0e331af2" ], + "x-ms-request-id": [ "353aaa5e-323f-48ae-84f7-7100fdde8180" ], + "x-ms-correlation-request-id": [ "353aaa5e-323f-48ae-84f7-7100fdde8180" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143629Z:353aaa5e-323f-48ae-84f7-7100fdde8180" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:18:55 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "689" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription1/rules/correlationRule1\",\"name\":\"correlationRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"CorrelationFilter\",\"correlationFilter\":{\"correlationId\":\"secondcorrelationid\",\"messageId\":\"secondmessageid\",\"to\":\"secondto\",\"replyTo\":\"secondreplyto\",\"label\":\"secondlabel\",\"sessionId\":\"secondsessionid\",\"replyToSessionId\":\"secondreplytosessionid\",\"contentType\":\"secondcontenttype\",\"properties\":{\"a\":\"b\"}}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription1/rules/correlationRule1\",\"name\":\"correlationRule1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions/rules\",\"location\":\"eastus\",\"properties\":{\"action\":{},\"filterType\":\"CorrelationFilter\",\"correlationFilter\":{\"correlationId\":\"secondcorrelationid\",\"messageId\":\"secondmessageid\",\"to\":\"secondto\",\"replyTo\":\"secondreplyto\",\"label\":\"secondlabel\",\"sessionId\":\"secondsessionid\",\"replyToSessionId\":\"secondreplytosessionid\",\"contentType\":\"secondcontenttype\",\"properties\":{\"a\":\"b\"}}}}", "isContentBase64": false } } diff --git a/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusRule.Tests.ps1 b/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusRule.Tests.ps1 index 0f214201c084..cd5846feb85c 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusRule.Tests.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusRule.Tests.ps1 @@ -15,7 +15,7 @@ if(($null -eq $TestName) -or ($TestName -contains 'Set-AzServiceBusRule')) } function AssertCorrelationFilterUpdates{ - param([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule]$expectedRule,[Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule]$actualRule) + param([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule]$expectedRule,[Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule]$actualRule) $expectedRule.Name | Should -Be $actualRule.Name $expectedRule.ResourceGroupName | Should -Be $actualRule.ResourceGroupName $expectedRule.ContentType | Should -Be $actualRule.ContentType diff --git a/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusSubscription.Recording.json b/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusSubscription.Recording.json index 59d51152f504..ab49b67ce7c9 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusSubscription.Recording.json +++ b/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusSubscription.Recording.json @@ -1,13 +1,49 @@ { - "Set-AzServiceBusSubscription+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription3%24%24D?api-version=2022-01-01-preview+1": { + "Set-AzServiceBusSubscription+[NoContext]+SetExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription3?api-version=2022-10-01-preview+1": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription3?api-version=2022-10-01-preview", + "Content": "{\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "3" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1154" ], + "x-ms-request-id": [ "8579a385-9443-48b3-a22e-99e73e32de8a" ], + "x-ms-correlation-request-id": [ "8579a385-9443-48b3-a22e-99e73e32de8a" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143644Z:8579a385-9443-48b3-a22e-99e73e32de8a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 19 Feb 2023 14:36:43 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "952" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription3\",\"name\":\"subscription3\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":10,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2023-02-19T14:36:44.0133435Z\",\"updatedAt\":\"2023-02-19T14:36:44.0133435Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\"}}", + "isContentBase64": false + } + }, + "Set-AzServiceBusSubscription+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription3?api-version=2022-10-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription3%24%24D?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "495" ], - "x-ms-client-request-id": [ "33d35daf-e7c1-42b6-93a1-fabfbacc16b4" ], + "x-ms-unique-id": [ "487" ], + "x-ms-client-request-id": [ "e31ff17e-3d73-4414-ae8b-481b5888a132" ], "CommandName": [ "Get-AzServiceBusSubscription" ], "FullCommandName": [ "Get-AzServiceBusSubscription_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -24,31 +60,31 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11895" ], - "x-ms-request-id": [ "03a2c02e-c872-479c-b8a5-926ae60f8781" ], - "x-ms-correlation-request-id": [ "03a2c02e-c872-479c-b8a5-926ae60f8781" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111915Z:03a2c02e-c872-479c-b8a5-926ae60f8781" ], + "x-ms-request-id": [ "36c92888-3486-427f-a74d-4eeabe5d605b" ], + "x-ms-correlation-request-id": [ "36c92888-3486-427f-a74d-4eeabe5d605b" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143644Z:36c92888-3486-427f-a74d-4eeabe5d605b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:14 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1020" ], + "Content-Length": [ "961" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription3$$D\",\"name\":\"subscription3$$D\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":true,\"clientAffineProperties\":{\"clientId\":\"clientid\",\"isDurable\":true,\"isShared\":true},\"lockDuration\":\"PT1M\",\"requiresSession\":true,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":10,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2022-11-24T10:29:24.3270771Z\",\"updatedAt\":\"2022-11-24T10:29:24.3270771Z\",\"accessedAt\":\"2022-11-24T10:29:24.327Z\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P7D\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription3\",\"name\":\"subscription3\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":10,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2023-02-19T14:36:44.0186565Z\",\"updatedAt\":\"2023-02-19T14:36:44.0186565Z\",\"accessedAt\":\"2023-02-19T14:36:44.0186565Z\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\"}}", "isContentBase64": false } }, - "Set-AzServiceBusSubscription+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription3%24%24D?api-version=2022-01-01-preview+2": { + "Set-AzServiceBusSubscription+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription3?api-version=2022-10-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription3%24%24D?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "496" ], - "x-ms-client-request-id": [ "0415ff50-bb14-4a05-9737-44de95dc0819" ], + "x-ms-unique-id": [ "488" ], + "x-ms-client-request-id": [ "961bdaf2-4a37-4e9d-ba2c-3380520036a9" ], "CommandName": [ "Get-AzServiceBusSubscription" ], "FullCommandName": [ "Get-AzServiceBusSubscription_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -65,33 +101,33 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11894" ], - "x-ms-request-id": [ "87e98a53-9be3-4233-a12d-b1d582027b6b" ], - "x-ms-correlation-request-id": [ "87e98a53-9be3-4233-a12d-b1d582027b6b" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111915Z:87e98a53-9be3-4233-a12d-b1d582027b6b" ], + "x-ms-request-id": [ "6b18f18a-8abf-439b-abf0-6eab3ed572ab" ], + "x-ms-correlation-request-id": [ "6b18f18a-8abf-439b-abf0-6eab3ed572ab" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143645Z:6b18f18a-8abf-439b-abf0-6eab3ed572ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:14 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1020" ], + "Content-Length": [ "961" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription3$$D\",\"name\":\"subscription3$$D\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":true,\"clientAffineProperties\":{\"clientId\":\"clientid\",\"isDurable\":true,\"isShared\":true},\"lockDuration\":\"PT1M\",\"requiresSession\":true,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":10,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2022-11-24T10:29:24.3270771Z\",\"updatedAt\":\"2022-11-24T10:29:24.3270771Z\",\"accessedAt\":\"2022-11-24T10:29:24.327Z\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P7D\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription3\",\"name\":\"subscription3\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":10,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2023-02-19T14:36:44.0186565Z\",\"updatedAt\":\"2023-02-19T14:36:44.0186565Z\",\"accessedAt\":\"2023-02-19T14:36:44.0186565Z\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\"}}", "isContentBase64": false } }, - "Set-AzServiceBusSubscription+[NoContext]+SetExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription3$$D?api-version=2022-01-01-preview+3": { + "Set-AzServiceBusSubscription+[NoContext]+SetExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription3?api-version=2022-10-01-preview+4": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription3$$D?api-version=2022-01-01-preview", - "Content": "{\n \"properties\": {\n \"clientAffineProperties\": {\n \"clientId\": \"clientid\",\n \"isDurable\": true,\n \"isShared\": true\n },\n \"lockDuration\": \"PT1M\",\n \"requiresSession\": true,\n \"defaultMessageTimeToLive\": \"P10675197D\",\n \"deadLetteringOnFilterEvaluationExceptions\": false,\n \"deadLetteringOnMessageExpiration\": false,\n \"maxDeliveryCount\": 10,\n \"status\": \"Active\",\n \"enableBatchedOperations\": true,\n \"autoDeleteOnIdle\": \"P7D\",\n \"isClientAffine\": true\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription3?api-version=2022-10-01-preview", + "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT1M\",\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P1DT3M4S\",\n \"deadLetteringOnFilterEvaluationExceptions\": true,\n \"deadLetteringOnMessageExpiration\": false,\n \"maxDeliveryCount\": 10,\n \"status\": \"Active\",\n \"enableBatchedOperations\": true,\n \"autoDeleteOnIdle\": \"P10675199DT2H48M5.4775807S\",\n \"isClientAffine\": false\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "495" ] + "Content-Length": [ "400" ] } }, "Response": { @@ -100,32 +136,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1154" ], - "x-ms-request-id": [ "f0ba7e73-fd68-4f65-add9-66280e38f8c8" ], - "x-ms-correlation-request-id": [ "f0ba7e73-fd68-4f65-add9-66280e38f8c8" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111915Z:f0ba7e73-fd68-4f65-add9-66280e38f8c8" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1153" ], + "x-ms-request-id": [ "9a04f4d4-04cf-4ab1-adae-7e5038557502" ], + "x-ms-correlation-request-id": [ "9a04f4d4-04cf-4ab1-adae-7e5038557502" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143645Z:9a04f4d4-04cf-4ab1-adae-7e5038557502" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:14 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1000" ], + "Content-Length": [ "934" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription3$$D\",\"name\":\"subscription3$$D\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":true,\"clientAffineProperties\":{\"clientId\":\"clientid\",\"isDurable\":true,\"isShared\":true},\"lockDuration\":\"PT1M\",\"requiresSession\":true,\"defaultMessageTimeToLive\":\"P10675197D\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":false,\"messageCount\":0,\"maxDeliveryCount\":10,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2022-11-24T11:19:15.7198597Z\",\"updatedAt\":\"2022-11-24T11:19:15.7198597Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P7D\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription3\",\"name\":\"subscription3\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":10,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2023-02-19T14:36:45.7477388Z\",\"updatedAt\":\"2023-02-19T14:36:45.7477388Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\"}}", "isContentBase64": false } }, - "Set-AzServiceBusSubscription+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription3%24%24D?api-version=2022-01-01-preview+4": { + "Set-AzServiceBusSubscription+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription3?api-version=2022-10-01-preview+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription3%24%24D?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription3?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "498" ], - "x-ms-client-request-id": [ "db163c8b-3bb4-4c9a-9ebf-a35f9e459cee" ], + "x-ms-unique-id": [ "490" ], + "x-ms-client-request-id": [ "36e13f09-441a-41a3-835c-6a512ff93f55" ], "CommandName": [ "Get-AzServiceBusSubscription" ], "FullCommandName": [ "Get-AzServiceBusSubscription_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -142,33 +178,33 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11893" ], - "x-ms-request-id": [ "7deca8e1-5b87-4566-b11b-3fc53a9ed2c6" ], - "x-ms-correlation-request-id": [ "7deca8e1-5b87-4566-b11b-3fc53a9ed2c6" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111916Z:7deca8e1-5b87-4566-b11b-3fc53a9ed2c6" ], + "x-ms-request-id": [ "06a428c7-fd82-4444-b4d8-a5b9fa3152b7" ], + "x-ms-correlation-request-id": [ "06a428c7-fd82-4444-b4d8-a5b9fa3152b7" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143646Z:06a428c7-fd82-4444-b4d8-a5b9fa3152b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:15 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1020" ], + "Content-Length": [ "939" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription3$$D\",\"name\":\"subscription3$$D\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":true,\"clientAffineProperties\":{\"clientId\":\"clientid\",\"isDurable\":true,\"isShared\":true},\"lockDuration\":\"PT1M\",\"requiresSession\":true,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":10,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2022-11-24T10:29:24.3270771Z\",\"updatedAt\":\"2022-11-24T10:29:24.3270771Z\",\"accessedAt\":\"2022-11-24T10:29:24.327Z\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P7D\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription3\",\"name\":\"subscription3\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":10,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2023-02-19T14:36:44.0186565Z\",\"updatedAt\":\"2023-02-19T14:36:45.7529942Z\",\"accessedAt\":\"2023-02-19T14:36:44.018Z\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\"}}", "isContentBase64": false } }, - "Set-AzServiceBusSubscription+[NoContext]+SetExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription3$$D?api-version=2022-01-01-preview+5": { + "Set-AzServiceBusSubscription+[NoContext]+SetExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription3?api-version=2022-10-01-preview+6": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription3$$D?api-version=2022-01-01-preview", - "Content": "{\n \"properties\": {\n \"clientAffineProperties\": {\n \"clientId\": \"clientid\",\n \"isDurable\": true,\n \"isShared\": true\n },\n \"lockDuration\": \"PT1M\",\n \"requiresSession\": true,\n \"defaultMessageTimeToLive\": \"P10675197D\",\n \"deadLetteringOnFilterEvaluationExceptions\": true,\n \"deadLetteringOnMessageExpiration\": false,\n \"maxDeliveryCount\": 10,\n \"status\": \"Active\",\n \"enableBatchedOperations\": true,\n \"autoDeleteOnIdle\": \"P7D\",\n \"isClientAffine\": true\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription3?api-version=2022-10-01-preview", + "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT1M\",\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P1DT3M4S\",\n \"deadLetteringOnFilterEvaluationExceptions\": true,\n \"deadLetteringOnMessageExpiration\": false,\n \"maxDeliveryCount\": 10,\n \"status\": \"Active\",\n \"enableBatchedOperations\": true,\n \"autoDeleteOnIdle\": \"P10675199DT2H48M5.4775807S\",\n \"isClientAffine\": false\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "494" ] + "Content-Length": [ "400" ] } }, "Response": { @@ -177,32 +213,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1153" ], - "x-ms-request-id": [ "f3fc1112-8cf8-461b-9d52-fd00e3d091a9" ], - "x-ms-correlation-request-id": [ "f3fc1112-8cf8-461b-9d52-fd00e3d091a9" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111916Z:f3fc1112-8cf8-461b-9d52-fd00e3d091a9" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1152" ], + "x-ms-request-id": [ "62b35940-df02-4adb-b0c9-7f0d4e09eb3f" ], + "x-ms-correlation-request-id": [ "62b35940-df02-4adb-b0c9-7f0d4e09eb3f" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143646Z:62b35940-df02-4adb-b0c9-7f0d4e09eb3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:15 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "999" ], + "Content-Length": [ "939" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription3$$D\",\"name\":\"subscription3$$D\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":true,\"clientAffineProperties\":{\"clientId\":\"clientid\",\"isDurable\":true,\"isShared\":true},\"lockDuration\":\"PT1M\",\"requiresSession\":true,\"defaultMessageTimeToLive\":\"P10675197D\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":10,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2022-11-24T11:19:16.4698624Z\",\"updatedAt\":\"2022-11-24T11:19:16.4698624Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P7D\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription3\",\"name\":\"subscription3\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":10,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2023-02-19T14:36:44.0186565Z\",\"updatedAt\":\"2023-02-19T14:36:45.7529942Z\",\"accessedAt\":\"2023-02-19T14:36:44.018Z\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\"}}", "isContentBase64": false } }, - "Set-AzServiceBusSubscription+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2?api-version=2022-01-01-preview+1": { + "Set-AzServiceBusSubscription+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "500" ], - "x-ms-client-request-id": [ "add83bcd-1cf7-4f85-af84-c3b5b7ac3f78" ], + "x-ms-unique-id": [ "492" ], + "x-ms-client-request-id": [ "09c8d64e-1dad-4d60-bd17-9788c6efea96" ], "CommandName": [ "Get-AzServiceBusSubscription" ], "FullCommandName": [ "Get-AzServiceBusSubscription_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -219,31 +255,31 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11892" ], - "x-ms-request-id": [ "3cc8b3f2-1d2f-46df-af93-dedd9a62e85a" ], - "x-ms-correlation-request-id": [ "3cc8b3f2-1d2f-46df-af93-dedd9a62e85a" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111916Z:3cc8b3f2-1d2f-46df-af93-dedd9a62e85a" ], + "x-ms-request-id": [ "a8506ac0-c214-43fa-aa43-20916c088ccb" ], + "x-ms-correlation-request-id": [ "a8506ac0-c214-43fa-aa43-20916c088ccb" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143647Z:a8506ac0-c214-43fa-aa43-20916c088ccb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:16 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1005" ], + "Content-Length": [ "1006" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2\",\"name\":\"subscription2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT3M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P428DT3H11M10S\",\"deadLetteringOnMessageExpiration\":true,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":12,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2022-11-24T10:29:23.0301941Z\",\"updatedAt\":\"2022-11-24T10:29:23.0301941Z\",\"accessedAt\":\"2022-11-24T10:29:23.03Z\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2\",\"name\":\"subscription2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT3M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P428DT3H11M10S\",\"deadLetteringOnMessageExpiration\":true,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":12,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2023-02-19T13:47:42.6427506Z\",\"updatedAt\":\"2023-02-19T13:47:42.6427506Z\",\"accessedAt\":\"2023-02-19T13:47:42.642Z\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", "isContentBase64": false } }, - "Set-AzServiceBusSubscription+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2?api-version=2022-01-01-preview+2": { + "Set-AzServiceBusSubscription+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2?api-version=2022-10-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "501" ], - "x-ms-client-request-id": [ "06dfb3a3-bce6-4cbe-bf4a-96c3db10cb0c" ], + "x-ms-unique-id": [ "493" ], + "x-ms-client-request-id": [ "d87c479a-1e48-415f-b34e-94debd124ab8" ], "CommandName": [ "Get-AzServiceBusSubscription" ], "FullCommandName": [ "Get-AzServiceBusSubscription_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -260,33 +296,33 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11891" ], - "x-ms-request-id": [ "a720ed08-ec24-445d-87c5-a745e44ea05b" ], - "x-ms-correlation-request-id": [ "a720ed08-ec24-445d-87c5-a745e44ea05b" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111917Z:a720ed08-ec24-445d-87c5-a745e44ea05b" ], + "x-ms-request-id": [ "7c1bfda8-84c7-49dd-a6cc-b50921fe16e9" ], + "x-ms-correlation-request-id": [ "7c1bfda8-84c7-49dd-a6cc-b50921fe16e9" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143648Z:7c1bfda8-84c7-49dd-a6cc-b50921fe16e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:16 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1005" ], + "Content-Length": [ "1006" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2\",\"name\":\"subscription2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT3M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P428DT3H11M10S\",\"deadLetteringOnMessageExpiration\":true,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":12,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2022-11-24T10:29:23.0301941Z\",\"updatedAt\":\"2022-11-24T10:29:23.0301941Z\",\"accessedAt\":\"2022-11-24T10:29:23.03Z\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2\",\"name\":\"subscription2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT3M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P428DT3H11M10S\",\"deadLetteringOnMessageExpiration\":true,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":12,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2023-02-19T13:47:42.6427506Z\",\"updatedAt\":\"2023-02-19T13:47:42.6427506Z\",\"accessedAt\":\"2023-02-19T13:47:42.642Z\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", "isContentBase64": false } }, - "Set-AzServiceBusSubscription+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2?api-version=2022-01-01-preview+3": { + "Set-AzServiceBusSubscription+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2?api-version=2022-10-01-preview+3": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2?api-version=2022-01-01-preview", - "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT3M\",\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P1DT3M4S\",\n \"deadLetteringOnFilterEvaluationExceptions\": true,\n \"deadLetteringOnMessageExpiration\": true,\n \"maxDeliveryCount\": 12,\n \"status\": \"Active\",\n \"enableBatchedOperations\": true,\n \"autoDeleteOnIdle\": \"P10675197D\",\n \"forwardTo\": \"queue1\",\n \"forwardDeadLetteredMessagesTo\": \"queue1\",\n \"isClientAffine\": false\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2?api-version=2022-10-01-preview", + "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT3M\",\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P1DT3M4S\",\n \"deadLetteringOnFilterEvaluationExceptions\": true,\n \"deadLetteringOnMessageExpiration\": true,\n \"maxDeliveryCount\": 12,\n \"status\": \"Active\",\n \"enableBatchedOperations\": true,\n \"autoDeleteOnIdle\": \"P10675199DT2H48M5.4775807S\",\n \"forwardTo\": \"queue1\",\n \"forwardDeadLetteredMessagesTo\": \"queue1\",\n \"isClientAffine\": false\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "457" ] + "Content-Length": [ "473" ] } }, "Response": { @@ -295,32 +331,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1152" ], - "x-ms-request-id": [ "9d5c6b2b-b768-48c5-a6a3-40edbaab1468" ], - "x-ms-correlation-request-id": [ "9d5c6b2b-b768-48c5-a6a3-40edbaab1468" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111917Z:9d5c6b2b-b768-48c5-a6a3-40edbaab1468" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1151" ], + "x-ms-request-id": [ "3d6154f5-f982-44b0-a2ef-0bdd6adcb202" ], + "x-ms-correlation-request-id": [ "3d6154f5-f982-44b0-a2ef-0bdd6adcb202" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143648Z:3d6154f5-f982-44b0-a2ef-0bdd6adcb202" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:16 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "995" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2\",\"name\":\"subscription2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT3M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":true,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":12,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2022-11-24T11:19:17.4073752Z\",\"updatedAt\":\"2022-11-24T11:19:17.4073752Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2\",\"name\":\"subscription2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT3M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":true,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":12,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2023-02-19T14:36:48.6543032Z\",\"updatedAt\":\"2023-02-19T14:36:48.6543032Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", "isContentBase64": false } }, - "Set-AzServiceBusSubscription+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2?api-version=2022-01-01-preview+4": { + "Set-AzServiceBusSubscription+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2?api-version=2022-10-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "503" ], - "x-ms-client-request-id": [ "8289d0ba-716b-4f4e-9313-57b730e32025" ], + "x-ms-unique-id": [ "495" ], + "x-ms-client-request-id": [ "838ea83b-dced-44b0-ae21-7e11f06698a6" ], "CommandName": [ "Get-AzServiceBusSubscription" ], "FullCommandName": [ "Get-AzServiceBusSubscription_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -337,33 +373,33 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11890" ], - "x-ms-request-id": [ "538cd625-644d-4963-917c-82515becb109" ], - "x-ms-correlation-request-id": [ "538cd625-644d-4963-917c-82515becb109" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111917Z:538cd625-644d-4963-917c-82515becb109" ], + "x-ms-request-id": [ "4ca75363-abbf-44a3-8014-768fd3ff7289" ], + "x-ms-correlation-request-id": [ "4ca75363-abbf-44a3-8014-768fd3ff7289" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143649Z:4ca75363-abbf-44a3-8014-768fd3ff7289" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:17 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "999" ], + "Content-Length": [ "1000" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2\",\"name\":\"subscription2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT3M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":true,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":12,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2022-11-24T10:29:23.0301941Z\",\"updatedAt\":\"2022-11-24T11:19:17.4076337Z\",\"accessedAt\":\"2022-11-24T10:29:23.03Z\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2\",\"name\":\"subscription2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT3M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":true,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":12,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2023-02-19T13:47:42.6427506Z\",\"updatedAt\":\"2023-02-19T14:36:48.6592704Z\",\"accessedAt\":\"2023-02-19T13:47:42.642Z\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", "isContentBase64": false } }, - "Set-AzServiceBusSubscription+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2?api-version=2022-01-01-preview+5": { + "Set-AzServiceBusSubscription+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2?api-version=2022-10-01-preview+5": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2?api-version=2022-01-01-preview", - "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT3M\",\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P1DT3M4S\",\n \"deadLetteringOnFilterEvaluationExceptions\": true,\n \"deadLetteringOnMessageExpiration\": false,\n \"maxDeliveryCount\": 12,\n \"status\": \"Active\",\n \"enableBatchedOperations\": true,\n \"autoDeleteOnIdle\": \"P10675197D\",\n \"forwardTo\": \"queue1\",\n \"forwardDeadLetteredMessagesTo\": \"queue1\",\n \"isClientAffine\": false\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2?api-version=2022-10-01-preview", + "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT3M\",\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P1DT3M4S\",\n \"deadLetteringOnFilterEvaluationExceptions\": true,\n \"deadLetteringOnMessageExpiration\": false,\n \"maxDeliveryCount\": 12,\n \"status\": \"Active\",\n \"enableBatchedOperations\": true,\n \"autoDeleteOnIdle\": \"P10675199DT2H48M5.4775807S\",\n \"forwardTo\": \"queue1\",\n \"forwardDeadLetteredMessagesTo\": \"queue1\",\n \"isClientAffine\": false\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "458" ] + "Content-Length": [ "474" ] } }, "Response": { @@ -372,32 +408,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1151" ], - "x-ms-request-id": [ "33d940de-77b7-4bd0-b03b-b4c8f0155257" ], - "x-ms-correlation-request-id": [ "33d940de-77b7-4bd0-b03b-b4c8f0155257" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111918Z:33d940de-77b7-4bd0-b03b-b4c8f0155257" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1150" ], + "x-ms-request-id": [ "9410ba90-8a4d-43b6-9113-0dc3c4764c5c" ], + "x-ms-correlation-request-id": [ "9410ba90-8a4d-43b6-9113-0dc3c4764c5c" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143649Z:9410ba90-8a4d-43b6-9113-0dc3c4764c5c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:17 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "996" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2\",\"name\":\"subscription2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT3M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":12,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2022-11-24T11:19:18.1261106Z\",\"updatedAt\":\"2022-11-24T11:19:18.1261106Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2\",\"name\":\"subscription2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT3M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":12,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2023-02-19T14:36:49.8730765Z\",\"updatedAt\":\"2023-02-19T14:36:49.8730765Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", "isContentBase64": false } }, - "Set-AzServiceBusSubscription+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2?api-version=2022-01-01-preview+6": { + "Set-AzServiceBusSubscription+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2?api-version=2022-10-01-preview+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "505" ], - "x-ms-client-request-id": [ "b47d5f9c-05c2-42ed-86dc-f935d70b1c01" ], + "x-ms-unique-id": [ "497" ], + "x-ms-client-request-id": [ "6678f96a-83e0-41ed-852a-f6483a09905a" ], "CommandName": [ "Get-AzServiceBusSubscription" ], "FullCommandName": [ "Get-AzServiceBusSubscription_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -414,33 +450,33 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11889" ], - "x-ms-request-id": [ "e997a72d-317e-4c27-9e81-e115f9147207" ], - "x-ms-correlation-request-id": [ "e997a72d-317e-4c27-9e81-e115f9147207" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111918Z:e997a72d-317e-4c27-9e81-e115f9147207" ], + "x-ms-request-id": [ "ce768ef8-bbed-4be5-987a-8596d44c2ff4" ], + "x-ms-correlation-request-id": [ "ce768ef8-bbed-4be5-987a-8596d44c2ff4" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143650Z:ce768ef8-bbed-4be5-987a-8596d44c2ff4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:17 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "999" ], + "Content-Length": [ "1001" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2\",\"name\":\"subscription2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT3M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":12,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2022-11-24T10:29:23.0301941Z\",\"updatedAt\":\"2022-11-24T11:19:18.126384Z\",\"accessedAt\":\"2022-11-24T10:29:23.03Z\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2\",\"name\":\"subscription2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT3M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":12,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2023-02-19T13:47:42.6427506Z\",\"updatedAt\":\"2023-02-19T14:36:49.8780331Z\",\"accessedAt\":\"2023-02-19T13:47:42.642Z\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", "isContentBase64": false } }, - "Set-AzServiceBusSubscription+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2?api-version=2022-01-01-preview+7": { + "Set-AzServiceBusSubscription+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2?api-version=2022-10-01-preview+7": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2?api-version=2022-01-01-preview", - "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT1M\",\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P1DT3M4S\",\n \"deadLetteringOnFilterEvaluationExceptions\": true,\n \"deadLetteringOnMessageExpiration\": false,\n \"maxDeliveryCount\": 12,\n \"status\": \"Active\",\n \"enableBatchedOperations\": true,\n \"autoDeleteOnIdle\": \"P10675197D\",\n \"forwardTo\": \"queue1\",\n \"forwardDeadLetteredMessagesTo\": \"queue1\",\n \"isClientAffine\": false\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2?api-version=2022-10-01-preview", + "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT1M\",\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P1DT3M4S\",\n \"deadLetteringOnFilterEvaluationExceptions\": true,\n \"deadLetteringOnMessageExpiration\": false,\n \"maxDeliveryCount\": 12,\n \"status\": \"Active\",\n \"enableBatchedOperations\": true,\n \"autoDeleteOnIdle\": \"P10675199DT2H48M5.4775807S\",\n \"forwardTo\": \"queue1\",\n \"forwardDeadLetteredMessagesTo\": \"queue1\",\n \"isClientAffine\": false\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "458" ] + "Content-Length": [ "474" ] } }, "Response": { @@ -449,32 +485,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1150" ], - "x-ms-request-id": [ "702ba918-c664-4230-939b-07c45b06677e" ], - "x-ms-correlation-request-id": [ "702ba918-c664-4230-939b-07c45b06677e" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111918Z:702ba918-c664-4230-939b-07c45b06677e" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1149" ], + "x-ms-request-id": [ "c18015f7-1c02-4a57-9123-bffed5e15d80" ], + "x-ms-correlation-request-id": [ "c18015f7-1c02-4a57-9123-bffed5e15d80" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143651Z:c18015f7-1c02-4a57-9123-bffed5e15d80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:17 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "996" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2\",\"name\":\"subscription2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":12,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2022-11-24T11:19:18.6886154Z\",\"updatedAt\":\"2022-11-24T11:19:18.6886154Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2\",\"name\":\"subscription2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":12,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2023-02-19T14:36:51.2013603Z\",\"updatedAt\":\"2023-02-19T14:36:51.2013603Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", "isContentBase64": false } }, - "Set-AzServiceBusSubscription+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2?api-version=2022-01-01-preview+8": { + "Set-AzServiceBusSubscription+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2?api-version=2022-10-01-preview+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "507" ], - "x-ms-client-request-id": [ "ce6abbf6-08a8-450f-a818-e160863339bb" ], + "x-ms-unique-id": [ "499" ], + "x-ms-client-request-id": [ "ac2d0d7d-daf4-4336-ad7f-ba1b5579401b" ], "CommandName": [ "Get-AzServiceBusSubscription" ], "FullCommandName": [ "Get-AzServiceBusSubscription_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -491,33 +527,33 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11888" ], - "x-ms-request-id": [ "c1e3b60d-3e0a-42a9-aea3-29f9acc2ad6e" ], - "x-ms-correlation-request-id": [ "c1e3b60d-3e0a-42a9-aea3-29f9acc2ad6e" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111919Z:c1e3b60d-3e0a-42a9-aea3-29f9acc2ad6e" ], + "x-ms-request-id": [ "ac6b772c-1c96-41f9-98c2-9bdc9d5ef1fe" ], + "x-ms-correlation-request-id": [ "ac6b772c-1c96-41f9-98c2-9bdc9d5ef1fe" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143651Z:ac6b772c-1c96-41f9-98c2-9bdc9d5ef1fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:18 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1000" ], + "Content-Length": [ "1001" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2\",\"name\":\"subscription2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":12,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2022-11-24T10:29:23.0301941Z\",\"updatedAt\":\"2022-11-24T11:19:18.6888845Z\",\"accessedAt\":\"2022-11-24T10:29:23.03Z\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2\",\"name\":\"subscription2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":12,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2023-02-19T13:47:42.6427506Z\",\"updatedAt\":\"2023-02-19T14:36:51.2061714Z\",\"accessedAt\":\"2023-02-19T13:47:42.642Z\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", "isContentBase64": false } }, - "Set-AzServiceBusSubscription+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2?api-version=2022-01-01-preview+9": { + "Set-AzServiceBusSubscription+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2?api-version=2022-10-01-preview+9": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2?api-version=2022-01-01-preview", - "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT1M\",\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P1DT3M4S\",\n \"deadLetteringOnFilterEvaluationExceptions\": true,\n \"deadLetteringOnMessageExpiration\": false,\n \"maxDeliveryCount\": 8,\n \"status\": \"Active\",\n \"enableBatchedOperations\": true,\n \"autoDeleteOnIdle\": \"P10675197D\",\n \"forwardTo\": \"queue1\",\n \"forwardDeadLetteredMessagesTo\": \"queue1\",\n \"isClientAffine\": false\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2?api-version=2022-10-01-preview", + "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT1M\",\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P1DT3M4S\",\n \"deadLetteringOnFilterEvaluationExceptions\": true,\n \"deadLetteringOnMessageExpiration\": false,\n \"maxDeliveryCount\": 8,\n \"status\": \"Active\",\n \"enableBatchedOperations\": true,\n \"autoDeleteOnIdle\": \"P10675199DT2H48M5.4775807S\",\n \"forwardTo\": \"queue1\",\n \"forwardDeadLetteredMessagesTo\": \"queue1\",\n \"isClientAffine\": false\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "457" ] + "Content-Length": [ "473" ] } }, "Response": { @@ -526,32 +562,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1149" ], - "x-ms-request-id": [ "c54b3bf4-c8e7-410b-92b6-08b7e2e4bef6" ], - "x-ms-correlation-request-id": [ "c54b3bf4-c8e7-410b-92b6-08b7e2e4bef6" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111919Z:c54b3bf4-c8e7-410b-92b6-08b7e2e4bef6" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1148" ], + "x-ms-request-id": [ "ef5182a5-cb0a-48b0-a92d-f41d60944690" ], + "x-ms-correlation-request-id": [ "ef5182a5-cb0a-48b0-a92d-f41d60944690" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143652Z:ef5182a5-cb0a-48b0-a92d-f41d60944690" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:18 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "995" ], + "Content-Length": [ "993" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2\",\"name\":\"subscription2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":8,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2022-11-24T11:19:19.2979891Z\",\"updatedAt\":\"2022-11-24T11:19:19.2979891Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2\",\"name\":\"subscription2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":8,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2023-02-19T14:36:52.357593Z\",\"updatedAt\":\"2023-02-19T14:36:52.357593Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", "isContentBase64": false } }, - "Set-AzServiceBusSubscription+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2?api-version=2022-01-01-preview+10": { + "Set-AzServiceBusSubscription+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2?api-version=2022-10-01-preview+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "509" ], - "x-ms-client-request-id": [ "dc60ece9-bb8f-4c37-92c6-0edb973f3002" ], + "x-ms-unique-id": [ "501" ], + "x-ms-client-request-id": [ "86d8a68d-04d9-4382-a4f3-87140fcdf25b" ], "CommandName": [ "Get-AzServiceBusSubscription" ], "FullCommandName": [ "Get-AzServiceBusSubscription_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -568,33 +604,33 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11887" ], - "x-ms-request-id": [ "21b971d6-c172-44a1-b16c-d491ca741a32" ], - "x-ms-correlation-request-id": [ "21b971d6-c172-44a1-b16c-d491ca741a32" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111919Z:21b971d6-c172-44a1-b16c-d491ca741a32" ], + "x-ms-request-id": [ "3718c161-58b0-43b4-a0bd-2652324379cf" ], + "x-ms-correlation-request-id": [ "3718c161-58b0-43b4-a0bd-2652324379cf" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143653Z:3718c161-58b0-43b4-a0bd-2652324379cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:18 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "999" ], + "Content-Length": [ "1000" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2\",\"name\":\"subscription2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":8,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2022-11-24T10:29:23.0301941Z\",\"updatedAt\":\"2022-11-24T11:19:19.2982611Z\",\"accessedAt\":\"2022-11-24T10:29:23.03Z\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2\",\"name\":\"subscription2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":8,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2023-02-19T13:47:42.6427506Z\",\"updatedAt\":\"2023-02-19T14:36:52.3624827Z\",\"accessedAt\":\"2023-02-19T13:47:42.642Z\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", "isContentBase64": false } }, - "Set-AzServiceBusSubscription+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2?api-version=2022-01-01-preview+11": { + "Set-AzServiceBusSubscription+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2?api-version=2022-10-01-preview+11": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2?api-version=2022-01-01-preview", - "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT1M\",\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P1DT3M4S\",\n \"deadLetteringOnFilterEvaluationExceptions\": true,\n \"deadLetteringOnMessageExpiration\": false,\n \"maxDeliveryCount\": 8,\n \"status\": \"Active\",\n \"enableBatchedOperations\": false,\n \"autoDeleteOnIdle\": \"P10675197D\",\n \"forwardTo\": \"queue1\",\n \"forwardDeadLetteredMessagesTo\": \"queue1\",\n \"isClientAffine\": false\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2?api-version=2022-10-01-preview", + "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT1M\",\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P1DT3M4S\",\n \"deadLetteringOnFilterEvaluationExceptions\": true,\n \"deadLetteringOnMessageExpiration\": false,\n \"maxDeliveryCount\": 8,\n \"status\": \"Active\",\n \"enableBatchedOperations\": false,\n \"autoDeleteOnIdle\": \"P10675199DT2H48M5.4775807S\",\n \"forwardTo\": \"queue1\",\n \"forwardDeadLetteredMessagesTo\": \"queue1\",\n \"isClientAffine\": false\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "458" ] + "Content-Length": [ "474" ] } }, "Response": { @@ -603,32 +639,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1148" ], - "x-ms-request-id": [ "66a60c4e-3b6a-4acc-88e8-7756754d9bd5" ], - "x-ms-correlation-request-id": [ "66a60c4e-3b6a-4acc-88e8-7756754d9bd5" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111919Z:66a60c4e-3b6a-4acc-88e8-7756754d9bd5" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1147" ], + "x-ms-request-id": [ "c721fa57-73e6-465b-8238-ed899868796c" ], + "x-ms-correlation-request-id": [ "c721fa57-73e6-465b-8238-ed899868796c" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143653Z:c721fa57-73e6-465b-8238-ed899868796c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:19 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "996" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2\",\"name\":\"subscription2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":8,\"status\":\"Active\",\"enableBatchedOperations\":false,\"createdAt\":\"2022-11-24T11:19:19.8605449Z\",\"updatedAt\":\"2022-11-24T11:19:19.8605449Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2\",\"name\":\"subscription2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":8,\"status\":\"Active\",\"enableBatchedOperations\":false,\"createdAt\":\"2023-02-19T14:36:53.5153841Z\",\"updatedAt\":\"2023-02-19T14:36:53.5153841Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", "isContentBase64": false } }, - "Set-AzServiceBusSubscription+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2?api-version=2022-01-01-preview+12": { + "Set-AzServiceBusSubscription+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2?api-version=2022-10-01-preview+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "511" ], - "x-ms-client-request-id": [ "d2f66f63-539a-4953-848a-356b11823294" ], + "x-ms-unique-id": [ "503" ], + "x-ms-client-request-id": [ "6927aeb3-36e9-4547-84a3-0990afd95d07" ], "CommandName": [ "Get-AzServiceBusSubscription" ], "FullCommandName": [ "Get-AzServiceBusSubscription_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -645,33 +681,33 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11886" ], - "x-ms-request-id": [ "9e2ebb71-69d6-4ad8-ba2f-dab96c74c8a9" ], - "x-ms-correlation-request-id": [ "9e2ebb71-69d6-4ad8-ba2f-dab96c74c8a9" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111920Z:9e2ebb71-69d6-4ad8-ba2f-dab96c74c8a9" ], + "x-ms-request-id": [ "45d01afb-e8c4-4b7d-9930-889577e049fa" ], + "x-ms-correlation-request-id": [ "45d01afb-e8c4-4b7d-9930-889577e049fa" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143654Z:45d01afb-e8c4-4b7d-9930-889577e049fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:19 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1000" ], + "Content-Length": [ "1001" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2\",\"name\":\"subscription2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":8,\"status\":\"Active\",\"enableBatchedOperations\":false,\"createdAt\":\"2022-11-24T10:29:23.0301941Z\",\"updatedAt\":\"2022-11-24T11:19:19.8763974Z\",\"accessedAt\":\"2022-11-24T10:29:23.03Z\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2\",\"name\":\"subscription2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":8,\"status\":\"Active\",\"enableBatchedOperations\":false,\"createdAt\":\"2023-02-19T13:47:42.6427506Z\",\"updatedAt\":\"2023-02-19T14:36:53.5343192Z\",\"accessedAt\":\"2023-02-19T13:47:42.642Z\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"forwardTo\":\"queue1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", "isContentBase64": false } }, - "Set-AzServiceBusSubscription+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2?api-version=2022-01-01-preview+13": { + "Set-AzServiceBusSubscription+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2?api-version=2022-10-01-preview+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2?api-version=2022-01-01-preview", - "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT1M\",\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P1DT3M4S\",\n \"deadLetteringOnFilterEvaluationExceptions\": true,\n \"deadLetteringOnMessageExpiration\": false,\n \"maxDeliveryCount\": 8,\n \"status\": \"Active\",\n \"enableBatchedOperations\": false,\n \"autoDeleteOnIdle\": \"P10675197D\",\n \"forwardTo\": \"topic1\",\n \"forwardDeadLetteredMessagesTo\": \"queue1\",\n \"isClientAffine\": false\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2?api-version=2022-10-01-preview", + "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT1M\",\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P1DT3M4S\",\n \"deadLetteringOnFilterEvaluationExceptions\": true,\n \"deadLetteringOnMessageExpiration\": false,\n \"maxDeliveryCount\": 8,\n \"status\": \"Active\",\n \"enableBatchedOperations\": false,\n \"autoDeleteOnIdle\": \"P10675199DT2H48M5.4775807S\",\n \"forwardTo\": \"topic1\",\n \"forwardDeadLetteredMessagesTo\": \"queue1\",\n \"isClientAffine\": false\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "458" ] + "Content-Length": [ "474" ] } }, "Response": { @@ -680,32 +716,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1147" ], - "x-ms-request-id": [ "81f2c4e9-62d9-406e-9ed5-117675becfe5" ], - "x-ms-correlation-request-id": [ "81f2c4e9-62d9-406e-9ed5-117675becfe5" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111920Z:81f2c4e9-62d9-406e-9ed5-117675becfe5" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1146" ], + "x-ms-request-id": [ "fadf2083-b053-4cb1-bd46-f73034fc4f7c" ], + "x-ms-correlation-request-id": [ "fadf2083-b053-4cb1-bd46-f73034fc4f7c" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143654Z:fadf2083-b053-4cb1-bd46-f73034fc4f7c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:19 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:53 GMT" ] }, "ContentHeaders": { "Content-Length": [ "996" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2\",\"name\":\"subscription2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":8,\"status\":\"Active\",\"enableBatchedOperations\":false,\"createdAt\":\"2022-11-24T11:19:20.5479948Z\",\"updatedAt\":\"2022-11-24T11:19:20.5479948Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"forwardTo\":\"topic1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2\",\"name\":\"subscription2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":8,\"status\":\"Active\",\"enableBatchedOperations\":false,\"createdAt\":\"2023-02-19T14:36:54.6733759Z\",\"updatedAt\":\"2023-02-19T14:36:54.6733759Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"forwardTo\":\"topic1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", "isContentBase64": false } }, - "Set-AzServiceBusSubscription+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2?api-version=2022-01-01-preview+14": { + "Set-AzServiceBusSubscription+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2?api-version=2022-10-01-preview+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "513" ], - "x-ms-client-request-id": [ "8d11b651-a7bd-42e3-9b91-3d28440c90e0" ], + "x-ms-unique-id": [ "505" ], + "x-ms-client-request-id": [ "f3e35fda-dfb1-45b2-96c1-ce476a509a2f" ], "CommandName": [ "Get-AzServiceBusSubscription" ], "FullCommandName": [ "Get-AzServiceBusSubscription_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -722,33 +758,33 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11885" ], - "x-ms-request-id": [ "cbb77521-cf06-44dc-8aef-63ef8fd889db" ], - "x-ms-correlation-request-id": [ "cbb77521-cf06-44dc-8aef-63ef8fd889db" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111920Z:cbb77521-cf06-44dc-8aef-63ef8fd889db" ], + "x-ms-request-id": [ "d0204c75-4cd3-4853-a07b-6baae0904d08" ], + "x-ms-correlation-request-id": [ "d0204c75-4cd3-4853-a07b-6baae0904d08" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143655Z:d0204c75-4cd3-4853-a07b-6baae0904d08" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:20 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1000" ], + "Content-Length": [ "1001" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2\",\"name\":\"subscription2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":8,\"status\":\"Active\",\"enableBatchedOperations\":false,\"createdAt\":\"2022-11-24T10:29:23.0301941Z\",\"updatedAt\":\"2022-11-24T11:19:20.5482673Z\",\"accessedAt\":\"2022-11-24T10:29:23.03Z\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"forwardTo\":\"topic1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2\",\"name\":\"subscription2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":8,\"status\":\"Active\",\"enableBatchedOperations\":false,\"createdAt\":\"2023-02-19T13:47:42.6427506Z\",\"updatedAt\":\"2023-02-19T14:36:54.6905792Z\",\"accessedAt\":\"2023-02-19T13:47:42.642Z\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"forwardTo\":\"topic1\",\"forwardDeadLetteredMessagesTo\":\"queue1\"}}", "isContentBase64": false } }, - "Set-AzServiceBusSubscription+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2?api-version=2022-01-01-preview+15": { + "Set-AzServiceBusSubscription+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2?api-version=2022-10-01-preview+15": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2?api-version=2022-01-01-preview", - "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT1M\",\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P1DT3M4S\",\n \"deadLetteringOnFilterEvaluationExceptions\": true,\n \"deadLetteringOnMessageExpiration\": false,\n \"maxDeliveryCount\": 8,\n \"status\": \"Active\",\n \"enableBatchedOperations\": false,\n \"autoDeleteOnIdle\": \"P10675197D\",\n \"forwardTo\": \"topic1\",\n \"forwardDeadLetteredMessagesTo\": \"topic1\",\n \"isClientAffine\": false\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2?api-version=2022-10-01-preview", + "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT1M\",\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P1DT3M4S\",\n \"deadLetteringOnFilterEvaluationExceptions\": true,\n \"deadLetteringOnMessageExpiration\": false,\n \"maxDeliveryCount\": 8,\n \"status\": \"Active\",\n \"enableBatchedOperations\": false,\n \"autoDeleteOnIdle\": \"P10675199DT2H48M5.4775807S\",\n \"forwardTo\": \"topic1\",\n \"forwardDeadLetteredMessagesTo\": \"topic1\",\n \"isClientAffine\": false\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "458" ] + "Content-Length": [ "474" ] } }, "Response": { @@ -757,32 +793,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1146" ], - "x-ms-request-id": [ "8eb9f0c7-cece-468a-8226-d158770fe9af" ], - "x-ms-correlation-request-id": [ "8eb9f0c7-cece-468a-8226-d158770fe9af" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111921Z:8eb9f0c7-cece-468a-8226-d158770fe9af" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1145" ], + "x-ms-request-id": [ "75dab43b-2a6c-4a3a-92bf-6fadb5763aa5" ], + "x-ms-correlation-request-id": [ "75dab43b-2a6c-4a3a-92bf-6fadb5763aa5" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143655Z:75dab43b-2a6c-4a3a-92bf-6fadb5763aa5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:20 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "996" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2\",\"name\":\"subscription2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":8,\"status\":\"Active\",\"enableBatchedOperations\":false,\"createdAt\":\"2022-11-24T11:19:21.0948668Z\",\"updatedAt\":\"2022-11-24T11:19:21.0948668Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"forwardTo\":\"topic1\",\"forwardDeadLetteredMessagesTo\":\"topic1\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2\",\"name\":\"subscription2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":8,\"status\":\"Active\",\"enableBatchedOperations\":false,\"createdAt\":\"2023-02-19T14:36:55.8492306Z\",\"updatedAt\":\"2023-02-19T14:36:55.8492306Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"forwardTo\":\"topic1\",\"forwardDeadLetteredMessagesTo\":\"topic1\"}}", "isContentBase64": false } }, - "Set-AzServiceBusSubscription+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2?api-version=2022-01-01-preview+16": { + "Set-AzServiceBusSubscription+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2?api-version=2022-10-01-preview+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "515" ], - "x-ms-client-request-id": [ "56d82486-2f27-434f-9a72-fa47d5914286" ], + "x-ms-unique-id": [ "507" ], + "x-ms-client-request-id": [ "eb7f3bbf-96d1-4119-a89f-b6419c5b80ee" ], "CommandName": [ "Get-AzServiceBusSubscription" ], "FullCommandName": [ "Get-AzServiceBusSubscription_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -799,33 +835,33 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11884" ], - "x-ms-request-id": [ "95f6e61e-0df9-48b7-97a1-41b3fd5c1a21" ], - "x-ms-correlation-request-id": [ "95f6e61e-0df9-48b7-97a1-41b3fd5c1a21" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111921Z:95f6e61e-0df9-48b7-97a1-41b3fd5c1a21" ], + "x-ms-request-id": [ "bb273f1e-3f69-4235-926e-4c3c01b76441" ], + "x-ms-correlation-request-id": [ "bb273f1e-3f69-4235-926e-4c3c01b76441" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143656Z:bb273f1e-3f69-4235-926e-4c3c01b76441" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:20 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "999" ], + "Content-Length": [ "1001" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2\",\"name\":\"subscription2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":8,\"status\":\"Active\",\"enableBatchedOperations\":false,\"createdAt\":\"2022-11-24T10:29:23.0301941Z\",\"updatedAt\":\"2022-11-24T11:19:21.095136Z\",\"accessedAt\":\"2022-11-24T10:29:23.03Z\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"forwardTo\":\"topic1\",\"forwardDeadLetteredMessagesTo\":\"topic1\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2\",\"name\":\"subscription2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":8,\"status\":\"Active\",\"enableBatchedOperations\":false,\"createdAt\":\"2023-02-19T13:47:42.6427506Z\",\"updatedAt\":\"2023-02-19T14:36:55.8624661Z\",\"accessedAt\":\"2023-02-19T13:47:42.642Z\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"forwardTo\":\"topic1\",\"forwardDeadLetteredMessagesTo\":\"topic1\"}}", "isContentBase64": false } }, - "Set-AzServiceBusSubscription+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2?api-version=2022-01-01-preview+17": { + "Set-AzServiceBusSubscription+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2?api-version=2022-10-01-preview+17": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2?api-version=2022-01-01-preview", - "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT1M\",\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P1DT3M4S\",\n \"deadLetteringOnFilterEvaluationExceptions\": true,\n \"deadLetteringOnMessageExpiration\": false,\n \"maxDeliveryCount\": 8,\n \"status\": \"ReceiveDisabled\",\n \"enableBatchedOperations\": false,\n \"autoDeleteOnIdle\": \"P10675197D\",\n \"forwardTo\": \"topic1\",\n \"forwardDeadLetteredMessagesTo\": \"topic1\",\n \"isClientAffine\": false\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2?api-version=2022-10-01-preview", + "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT1M\",\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P1DT3M4S\",\n \"deadLetteringOnFilterEvaluationExceptions\": true,\n \"deadLetteringOnMessageExpiration\": false,\n \"maxDeliveryCount\": 8,\n \"status\": \"ReceiveDisabled\",\n \"enableBatchedOperations\": false,\n \"autoDeleteOnIdle\": \"P10675199DT2H48M5.4775807S\",\n \"forwardTo\": \"topic1\",\n \"forwardDeadLetteredMessagesTo\": \"topic1\",\n \"isClientAffine\": false\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "467" ] + "Content-Length": [ "483" ] } }, "Response": { @@ -834,27 +870,27 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1145" ], - "x-ms-request-id": [ "9f4d144f-7fc0-4f25-9ee2-9ae5a8b3fa55" ], - "x-ms-correlation-request-id": [ "9f4d144f-7fc0-4f25-9ee2-9ae5a8b3fa55" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111921Z:9f4d144f-7fc0-4f25-9ee2-9ae5a8b3fa55" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1144" ], + "x-ms-request-id": [ "202db223-fae1-44e1-b8fa-98200b984b0a" ], + "x-ms-correlation-request-id": [ "202db223-fae1-44e1-b8fa-98200b984b0a" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143657Z:202db223-fae1-44e1-b8fa-98200b984b0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:20 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1005" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription2\",\"name\":\"subscription2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":8,\"status\":\"ReceiveDisabled\",\"enableBatchedOperations\":false,\"createdAt\":\"2022-11-24T11:19:21.6417492Z\",\"updatedAt\":\"2022-11-24T11:19:21.6417492Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"forwardTo\":\"topic1\",\"forwardDeadLetteredMessagesTo\":\"topic1\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription2\",\"name\":\"subscription2\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P1DT3M4S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":8,\"status\":\"ReceiveDisabled\",\"enableBatchedOperations\":false,\"createdAt\":\"2023-02-19T14:36:57.0523728Z\",\"updatedAt\":\"2023-02-19T14:36:57.0523728Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"forwardTo\":\"topic1\",\"forwardDeadLetteredMessagesTo\":\"topic1\"}}", "isContentBase64": false } }, - "Set-AzServiceBusSubscription+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription4?api-version=2022-01-01-preview+18": { + "Set-AzServiceBusSubscription+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription4?api-version=2022-10-01-preview+18": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription4?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription4?api-version=2022-10-01-preview", "Content": "{\n}", "isContentBase64": false, "Headers": { @@ -870,32 +906,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1144" ], - "x-ms-request-id": [ "b5920744-a990-45da-a4a0-059c5f0c4011" ], - "x-ms-correlation-request-id": [ "b5920744-a990-45da-a4a0-059c5f0c4011" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111923Z:b5920744-a990-45da-a4a0-059c5f0c4011" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1143" ], + "x-ms-request-id": [ "2e100598-7dba-4ba2-98bd-814d06953209" ], + "x-ms-correlation-request-id": [ "2e100598-7dba-4ba2-98bd-814d06953209" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143658Z:2e100598-7dba-4ba2-98bd-814d06953209" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:22 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "952" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription4\",\"name\":\"subscription4\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":10,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2022-11-24T11:19:23.0482863Z\",\"updatedAt\":\"2022-11-24T11:19:23.0482863Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription4\",\"name\":\"subscription4\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":10,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2023-02-19T14:36:58.6617771Z\",\"updatedAt\":\"2023-02-19T14:36:58.6617771Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\"}}", "isContentBase64": false } }, - "Set-AzServiceBusSubscription+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription4?api-version=2022-01-01-preview+19": { + "Set-AzServiceBusSubscription+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription4?api-version=2022-10-01-preview+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription4?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription4?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "518" ], - "x-ms-client-request-id": [ "12cb611f-39b7-429a-954f-280a23f722d4" ], + "x-ms-unique-id": [ "510" ], + "x-ms-client-request-id": [ "bdcb5686-9a34-48f2-959d-cb3a8070134e" ], "CommandName": [ "Get-AzServiceBusSubscription" ], "FullCommandName": [ "Get-AzServiceBusSubscription_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -912,33 +948,33 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11883" ], - "x-ms-request-id": [ "10125bb3-de5e-4fc3-b31e-dc3e8a1b714b" ], - "x-ms-correlation-request-id": [ "10125bb3-de5e-4fc3-b31e-dc3e8a1b714b" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111923Z:10125bb3-de5e-4fc3-b31e-dc3e8a1b714b" ], + "x-ms-request-id": [ "96ec0db3-e66a-482c-a4dc-b2ce7ae6a647" ], + "x-ms-correlation-request-id": [ "96ec0db3-e66a-482c-a4dc-b2ce7ae6a647" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143659Z:96ec0db3-e66a-482c-a4dc-b2ce7ae6a647" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:22 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "961" ], + "Content-Length": [ "958" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription4\",\"name\":\"subscription4\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":10,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2022-11-24T11:19:23.0482709Z\",\"updatedAt\":\"2022-11-24T11:19:23.0482709Z\",\"accessedAt\":\"2022-11-24T11:19:23.0482709Z\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription4\",\"name\":\"subscription4\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":10,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2023-02-19T14:36:58.659415Z\",\"updatedAt\":\"2023-02-19T14:36:58.659415Z\",\"accessedAt\":\"2023-02-19T14:36:58.659415Z\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\"}}", "isContentBase64": false } }, - "Set-AzServiceBusSubscription+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription4?api-version=2022-01-01-preview+20": { + "Set-AzServiceBusSubscription+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription4?api-version=2022-10-01-preview+20": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription4?api-version=2022-01-01-preview", - "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT1M\",\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P10675197D\",\n \"deadLetteringOnFilterEvaluationExceptions\": true,\n \"deadLetteringOnMessageExpiration\": false,\n \"maxDeliveryCount\": 10,\n \"status\": \"Active\",\n \"enableBatchedOperations\": true,\n \"autoDeleteOnIdle\": \"P5D\",\n \"isClientAffine\": false\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription4?api-version=2022-10-01-preview", + "Content": "{\n \"properties\": {\n \"lockDuration\": \"PT1M\",\n \"requiresSession\": false,\n \"defaultMessageTimeToLive\": \"P10675199DT2H48M5.4775807S\",\n \"deadLetteringOnFilterEvaluationExceptions\": true,\n \"deadLetteringOnMessageExpiration\": false,\n \"maxDeliveryCount\": 10,\n \"status\": \"Active\",\n \"enableBatchedOperations\": true,\n \"autoDeleteOnIdle\": \"P5D\",\n \"isClientAffine\": false\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "379" ] + "Content-Length": [ "395" ] } }, "Response": { @@ -947,32 +983,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1143" ], - "x-ms-request-id": [ "284411f8-5e62-4dfe-8011-7f8a7034cfd2" ], - "x-ms-correlation-request-id": [ "284411f8-5e62-4dfe-8011-7f8a7034cfd2" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111923Z:284411f8-5e62-4dfe-8011-7f8a7034cfd2" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1142" ], + "x-ms-request-id": [ "02c7c99c-fbc3-415f-9630-3eb9b42f204c" ], + "x-ms-correlation-request-id": [ "02c7c99c-fbc3-415f-9630-3eb9b42f204c" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143659Z:02c7c99c-fbc3-415f-9630-3eb9b42f204c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:22 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:36:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "913" ], + "Content-Length": [ "929" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription4\",\"name\":\"subscription4\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675197D\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":10,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2022-11-24T11:19:23.5482732Z\",\"updatedAt\":\"2022-11-24T11:19:23.5482732Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P5D\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription4\",\"name\":\"subscription4\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":10,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2023-02-19T14:36:59.7879871Z\",\"updatedAt\":\"2023-02-19T14:36:59.7879871Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P5D\"}}", "isContentBase64": false } }, - "Set-AzServiceBusSubscription+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription4?api-version=2022-01-01-preview+21": { + "Set-AzServiceBusSubscription+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription4?api-version=2022-10-01-preview+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription4?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription4?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "520" ], - "x-ms-client-request-id": [ "3f89f504-e772-4028-9215-3c403d164947" ], + "x-ms-unique-id": [ "512" ], + "x-ms-client-request-id": [ "0d1a0268-2b35-4912-b5df-be85ee6c2368" ], "CommandName": [ "Get-AzServiceBusSubscription" ], "FullCommandName": [ "Get-AzServiceBusSubscription_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -989,19 +1025,19 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11882" ], - "x-ms-request-id": [ "940f660f-b66a-4c84-93ac-4e40a006523e" ], - "x-ms-correlation-request-id": [ "940f660f-b66a-4c84-93ac-4e40a006523e" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111923Z:940f660f-b66a-4c84-93ac-4e40a006523e" ], + "x-ms-request-id": [ "32c61f40-9c59-46a9-8692-1d6d09f18329" ], + "x-ms-correlation-request-id": [ "32c61f40-9c59-46a9-8692-1d6d09f18329" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143700Z:32c61f40-9c59-46a9-8692-1d6d09f18329" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:23 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:37:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "918" ], + "Content-Length": [ "933" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topic1/subscriptions/subscription4\",\"name\":\"subscription4\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675197D\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":10,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2022-11-24T11:19:23.0482709Z\",\"updatedAt\":\"2022-11-24T11:19:23.5482709Z\",\"accessedAt\":\"2022-11-24T11:19:23.048Z\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P5D\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topic1/subscriptions/subscription4\",\"name\":\"subscription4\",\"type\":\"Microsoft.ServiceBus/namespaces/topics/subscriptions\",\"location\":\"eastus\",\"properties\":{\"isClientAffine\":false,\"lockDuration\":\"PT1M\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":10,\"status\":\"Active\",\"enableBatchedOperations\":true,\"createdAt\":\"2023-02-19T14:36:58.659415Z\",\"updatedAt\":\"2023-02-19T14:36:59.8000024Z\",\"accessedAt\":\"2023-02-19T14:36:58.659Z\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"P5D\"}}", "isContentBase64": false } } diff --git a/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusSubscription.Tests.ps1 b/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusSubscription.Tests.ps1 index 037c005cebf2..c099a0b8ae78 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusSubscription.Tests.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusSubscription.Tests.ps1 @@ -15,7 +15,7 @@ if(($null -eq $TestName) -or ($TestName -contains 'Set-AzServiceBusSubscription' } function AssertSubscriptionUpdates{ - param([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription]$expectedSub,[Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription]$actualSub) + param([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription]$expectedSub,[Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription]$actualSub) $expectedSub.Name | Should -Be $actualSub.Name $expectedSub.ResourceGroupName | Should -Be $actualSub.ResourceGroupName $expectedSub.DeadLetteringOnMessageExpiration | Should -Be $actualSub.DeadLetteringOnMessageExpiration @@ -29,46 +29,23 @@ function AssertSubscriptionUpdates{ $expectedSub.ClientId | Should -Be $actualSub.ClientId $expectedSub.IsShared | Should -Be $actualSub.IsShared $expectedSub.IsDurable | Should -Be $actualSub.IsDurable - - if ($expectedSub.DefaultMessageTimeToLive -gt (New-TimeSpan -Days 10675197)){ - $actualSub.DefaultMessageTimeToLive | Should -BeGreaterOrEqual (New-TimeSpan -Days 10675197) - } - else{ - $actualSub.DefaultMessageTimeToLive | Should -Be $expectedSub.DefaultMessageTimeToLive - } - - if ($expectedSub.DuplicateDetectionHistoryTimeWindow -gt (New-TimeSpan -Days 10675197)){ - $actualSub.DuplicateDetectionHistoryTimeWindow | Should -BeGreaterOrEqual (New-TimeSpan -Days 10675197) - } - else{ - $actualSub.DuplicateDetectionHistoryTimeWindow | Should -Be $expectedSub.DuplicateDetectionHistoryTimeWindow - } - - if ($expectedSub.LockDuration -gt (New-TimeSpan -Days 10675197)){ - $actualSub.LockDuration | Should -BeGreaterOrEqual (New-TimeSpan -Days 10675197) - } - else{ - $actualSub.LockDuration | Should -Be $expectedSub.LockDuration - } - - if ($expectedSub.AutoDeleteOnIdle -gt (New-TimeSpan -Days 10675197)){ - $actualSub.AutoDeleteOnIdle | Should -BeGreaterOrEqual (New-TimeSpan -Days 10675197) - } - else{ - $actualSub.AutoDeleteOnIdle | Should -Be $expectedSub.AutoDeleteOnIdle - } + $expectedSub.DefaultMessageTimeToLive | Should -Be $actualSub.DefaultMessageTimeToLive + $expectedSub.DuplicateDetectionHistoryTimeWindow | Should -Be $actualSub.DuplicateDetectionHistoryTimeWindow + $expectedSub.LockDuration | Should -Be $actualSub.LockDuration + $expectedSub.AutoDeleteOnIdle | Should -Be $actualSub.AutoDeleteOnIdle } Describe 'Set-AzServiceBusSubscription' { It 'SetExpanded' { - $currentSub = Get-AzServiceBusSubscription -ResourceGroupName $env.resourceGroup -NamespaceName $env.namespace -TopicName topic1 -Name 'subscription3$$D' - $updatedSub = Set-AzServiceBusSubscription -ResourceGroupName $env.resourceGroup -NamespaceName $env.namespace -TopicName topic1 -Name 'subscription3$$D' -DeadLetteringOnFilterEvaluationException:$false - $currentSub.DeadLetteringOnFilterEvaluationException = $false + $sb = New-AzServiceBusSubscription -ResourceGroupName $env.resourceGroup -NamespaceName $env.namespace -TopicName topic1 -Name subscription3 + $currentSub = Get-AzServiceBusSubscription -ResourceGroupName $env.resourceGroup -NamespaceName $env.namespace -TopicName topic1 -Name subscription3 + $updatedSub = Set-AzServiceBusSubscription -ResourceGroupName $env.resourceGroup -NamespaceName $env.namespace -TopicName topic1 -Name subscription3 -DefaultMessageTimeToLive (New-TimeSpan -Days 1 -Minutes 3 -Seconds 4) + $currentSub.DefaultMessageTimeToLive = (New-TimeSpan -Days 1 -Minutes 3 -Seconds 4) AssertSubscriptionUpdates $currentSub $updatedSub $currentSub = $updatedSub - $updatedSub = Set-AzServiceBusSubscription -ResourceGroupName $env.resourceGroup -NamespaceName $env.namespace -TopicName topic1 -Name 'subscription3$$D' -DeadLetteringOnFilterEvaluationException - $currentSub.DeadLetteringOnFilterEvaluationException = $true + $updatedSub = Set-AzServiceBusSubscription -ResourceGroupName $env.resourceGroup -NamespaceName $env.namespace -TopicName topic1 -Name subscription3 -LockDuration (New-TimeSpan -Minutes 1) + $currentSub.LockDuration = (New-TimeSpan -Minutes 1) AssertSubscriptionUpdates $currentSub $updatedSub $currentSub = $updatedSub } diff --git a/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusTopic.Recording.json b/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusTopic.Recording.json index 34477bd07cfd..8b89b2e701ff 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusTopic.Recording.json +++ b/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusTopic.Recording.json @@ -1,8 +1,8 @@ { - "Set-AzServiceBusTopic+[NoContext]+[NoScenario]+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate?api-version=2022-01-01-preview+1": { + "Set-AzServiceBusTopic+[NoContext]+[NoScenario]+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate?api-version=2022-10-01-preview+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate?api-version=2022-10-01-preview", "Content": "{\n}", "isContentBase64": false, "Headers": { @@ -18,32 +18,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1142" ], - "x-ms-request-id": [ "100069fe-de4c-4476-9a4b-da30b0d2de6f" ], - "x-ms-correlation-request-id": [ "100069fe-de4c-4476-9a4b-da30b0d2de6f" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111945Z:100069fe-de4c-4476-9a4b-da30b0d2de6f" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1141" ], + "x-ms-request-id": [ "5085d124-274b-48bc-a222-291da78e6b22" ], + "x-ms-correlation-request-id": [ "5085d124-274b-48bc-a222-291da78e6b22" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143716Z:5085d124-274b-48bc-a222-291da78e6b22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:45 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:37:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "960" ], + "Content-Length": [ "959" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate\",\"name\":\"topicToUpdate\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"2022-11-24T11:19:44.943Z\",\"updatedAt\":\"2022-11-24T11:19:45.07Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate\",\"name\":\"topicToUpdate\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"2023-02-19T14:37:16.13Z\",\"updatedAt\":\"2023-02-19T14:37:16.24Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", "isContentBase64": false } }, - "Set-AzServiceBusTopic+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate?api-version=2022-01-01-preview+1": { + "Set-AzServiceBusTopic+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "522" ], - "x-ms-client-request-id": [ "245a1a8e-905f-46f3-a0c7-542624639efc" ], + "x-ms-unique-id": [ "514" ], + "x-ms-client-request-id": [ "77da0583-64ef-4753-a53c-d392cb3a012d" ], "CommandName": [ "Get-AzServiceBusTopic" ], "FullCommandName": [ "Get-AzServiceBusTopic_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -60,33 +60,33 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11881" ], - "x-ms-request-id": [ "2814534e-9355-4749-b476-bcf1ed811e06" ], - "x-ms-correlation-request-id": [ "2814534e-9355-4749-b476-bcf1ed811e06" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111945Z:2814534e-9355-4749-b476-bcf1ed811e06" ], + "x-ms-request-id": [ "72d934ef-bcef-4974-b9e0-68a756f4954e" ], + "x-ms-correlation-request-id": [ "72d934ef-bcef-4974-b9e0-68a756f4954e" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143717Z:72d934ef-bcef-4974-b9e0-68a756f4954e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:45 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:37:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "961" ], + "Content-Length": [ "960" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate\",\"name\":\"topicToUpdate\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"2022-11-24T11:19:44.943Z\",\"updatedAt\":\"2022-11-24T11:19:45.07Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate\",\"name\":\"topicToUpdate\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"2023-02-19T14:37:16.13Z\",\"updatedAt\":\"2023-02-19T14:37:16.24Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", "isContentBase64": false } }, - "Set-AzServiceBusTopic+[NoContext]+SetExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate?api-version=2022-01-01-preview+2": { + "Set-AzServiceBusTopic+[NoContext]+SetExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate?api-version=2022-10-01-preview+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate?api-version=2022-01-01-preview", - "Content": "{\n \"properties\": {\n \"defaultMessageTimeToLive\": \"P7D\",\n \"maxSizeInMegabytes\": 1024,\n \"maxMessageSizeInKilobytes\": 1024,\n \"requiresDuplicateDetection\": false,\n \"duplicateDetectionHistoryTimeWindow\": \"PT10M\",\n \"enableBatchedOperations\": true,\n \"status\": \"Active\",\n \"supportOrdering\": true,\n \"autoDeleteOnIdle\": \"P10675197D\",\n \"enablePartitioning\": false,\n \"enableExpress\": false\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate?api-version=2022-10-01-preview", + "Content": "{\n \"properties\": {\n \"defaultMessageTimeToLive\": \"P7D\",\n \"maxSizeInMegabytes\": 1024,\n \"maxMessageSizeInKilobytes\": 1024,\n \"requiresDuplicateDetection\": false,\n \"duplicateDetectionHistoryTimeWindow\": \"PT10M\",\n \"enableBatchedOperations\": true,\n \"status\": \"Active\",\n \"supportOrdering\": true,\n \"autoDeleteOnIdle\": \"P10675199DT2H48M5.4775807S\",\n \"enablePartitioning\": false,\n \"enableExpress\": false\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "416" ] + "Content-Length": [ "432" ] } }, "Response": { @@ -95,32 +95,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1141" ], - "x-ms-request-id": [ "97548a15-80ba-45bc-9622-c80323cacab7" ], - "x-ms-correlation-request-id": [ "97548a15-80ba-45bc-9622-c80323cacab7" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111946Z:97548a15-80ba-45bc-9622-c80323cacab7" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1140" ], + "x-ms-request-id": [ "8bb0016b-ea76-4449-bfe1-2ce146e21c0e" ], + "x-ms-correlation-request-id": [ "8bb0016b-ea76-4449-bfe1-2ce146e21c0e" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143717Z:8bb0016b-ea76-4449-bfe1-2ce146e21c0e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:46 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:37:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "912" ], + "Content-Length": [ "928" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate\",\"name\":\"topicToUpdate\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P7D\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675197D\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate\",\"name\":\"topicToUpdate\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P7D\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", "isContentBase64": false } }, - "Set-AzServiceBusTopic+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate?api-version=2022-01-01-preview+3": { + "Set-AzServiceBusTopic+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate?api-version=2022-10-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "524" ], - "x-ms-client-request-id": [ "22e1790e-d7d9-47b8-b996-abab6e51c2ac" ], + "x-ms-unique-id": [ "516" ], + "x-ms-client-request-id": [ "2ccbd46c-68de-4760-9aa2-05ccfa589e9d" ], "CommandName": [ "Get-AzServiceBusTopic" ], "FullCommandName": [ "Get-AzServiceBusTopic_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -137,33 +137,33 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11880" ], - "x-ms-request-id": [ "133939d4-b91d-438c-ab20-51440a9e0883" ], - "x-ms-correlation-request-id": [ "133939d4-b91d-438c-ab20-51440a9e0883" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111946Z:133939d4-b91d-438c-ab20-51440a9e0883" ], + "x-ms-request-id": [ "2a30fe44-76a7-4657-80e9-6322efdd3049" ], + "x-ms-correlation-request-id": [ "2a30fe44-76a7-4657-80e9-6322efdd3049" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143718Z:2a30fe44-76a7-4657-80e9-6322efdd3049" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:46 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:37:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "923" ], + "Content-Length": [ "938" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate\",\"name\":\"topicToUpdate\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P7D\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675197D\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"2022-11-24T11:19:44.943Z\",\"updatedAt\":\"2022-11-24T11:19:45.993Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate\",\"name\":\"topicToUpdate\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P7D\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"2023-02-19T14:37:16.13Z\",\"updatedAt\":\"2023-02-19T14:37:17.827Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", "isContentBase64": false } }, - "Set-AzServiceBusTopic+[NoContext]+SetExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate?api-version=2022-01-01-preview+4": { + "Set-AzServiceBusTopic+[NoContext]+SetExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate?api-version=2022-10-01-preview+4": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate?api-version=2022-01-01-preview", - "Content": "{\n \"properties\": {\n \"defaultMessageTimeToLive\": \"P7D\",\n \"maxSizeInMegabytes\": 1024,\n \"maxMessageSizeInKilobytes\": 1024,\n \"requiresDuplicateDetection\": false,\n \"duplicateDetectionHistoryTimeWindow\": \"PT10M\",\n \"enableBatchedOperations\": false,\n \"status\": \"Active\",\n \"supportOrdering\": true,\n \"autoDeleteOnIdle\": \"P10675197D\",\n \"enablePartitioning\": false,\n \"enableExpress\": false\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate?api-version=2022-10-01-preview", + "Content": "{\n \"properties\": {\n \"defaultMessageTimeToLive\": \"P7D\",\n \"maxSizeInMegabytes\": 1024,\n \"maxMessageSizeInKilobytes\": 1024,\n \"requiresDuplicateDetection\": false,\n \"duplicateDetectionHistoryTimeWindow\": \"PT10M\",\n \"enableBatchedOperations\": false,\n \"status\": \"Active\",\n \"supportOrdering\": true,\n \"autoDeleteOnIdle\": \"P10675199DT2H48M5.4775807S\",\n \"enablePartitioning\": false,\n \"enableExpress\": false\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "417" ] + "Content-Length": [ "433" ] } }, "Response": { @@ -172,32 +172,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1140" ], - "x-ms-request-id": [ "9beb43f2-1588-49f5-b09f-b74480566d02" ], - "x-ms-correlation-request-id": [ "9beb43f2-1588-49f5-b09f-b74480566d02" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111946Z:9beb43f2-1588-49f5-b09f-b74480566d02" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1139" ], + "x-ms-request-id": [ "1ccdfee4-06ee-4a74-b315-2185719869e4" ], + "x-ms-correlation-request-id": [ "1ccdfee4-06ee-4a74-b315-2185719869e4" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143719Z:1ccdfee4-06ee-4a74-b315-2185719869e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:46 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:37:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "913" ], + "Content-Length": [ "929" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate\",\"name\":\"topicToUpdate\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P7D\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":false,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675197D\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate\",\"name\":\"topicToUpdate\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P7D\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":false,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", "isContentBase64": false } }, - "Set-AzServiceBusTopic+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate?api-version=2022-01-01-preview+5": { + "Set-AzServiceBusTopic+[NoContext]+SetExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate?api-version=2022-10-01-preview+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "526" ], - "x-ms-client-request-id": [ "ef66642b-9f49-4c22-aecb-1fe7351ab472" ], + "x-ms-unique-id": [ "518" ], + "x-ms-client-request-id": [ "fce6291f-090d-4e96-a8d2-459ad2458220" ], "CommandName": [ "Get-AzServiceBusTopic" ], "FullCommandName": [ "Get-AzServiceBusTopic_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -214,33 +214,33 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11879" ], - "x-ms-request-id": [ "eb653635-400f-4e63-9a7b-f39ece4930fd" ], - "x-ms-correlation-request-id": [ "eb653635-400f-4e63-9a7b-f39ece4930fd" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111947Z:eb653635-400f-4e63-9a7b-f39ece4930fd" ], + "x-ms-request-id": [ "a2cfb1d3-93ea-4d40-aa80-86e228504e39" ], + "x-ms-correlation-request-id": [ "a2cfb1d3-93ea-4d40-aa80-86e228504e39" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143719Z:a2cfb1d3-93ea-4d40-aa80-86e228504e39" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:46 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:37:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "924" ], + "Content-Length": [ "938" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate\",\"name\":\"topicToUpdate\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P7D\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":false,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675197D\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"2022-11-24T11:19:44.943Z\",\"updatedAt\":\"2022-11-24T11:19:46.667Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate\",\"name\":\"topicToUpdate\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P7D\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":false,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"2023-02-19T14:37:16.13Z\",\"updatedAt\":\"2023-02-19T14:37:18.99Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", "isContentBase64": false } }, - "Set-AzServiceBusTopic+[NoContext]+SetExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate?api-version=2022-01-01-preview+6": { + "Set-AzServiceBusTopic+[NoContext]+SetExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate?api-version=2022-10-01-preview+6": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate?api-version=2022-01-01-preview", - "Content": "{\n \"properties\": {\n \"defaultMessageTimeToLive\": \"P7D\",\n \"maxSizeInMegabytes\": 1024,\n \"maxMessageSizeInKilobytes\": 1024,\n \"requiresDuplicateDetection\": false,\n \"duplicateDetectionHistoryTimeWindow\": \"PT10M\",\n \"enableBatchedOperations\": true,\n \"status\": \"Active\",\n \"supportOrdering\": true,\n \"autoDeleteOnIdle\": \"P10675197D\",\n \"enablePartitioning\": false,\n \"enableExpress\": false\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate?api-version=2022-10-01-preview", + "Content": "{\n \"properties\": {\n \"defaultMessageTimeToLive\": \"P7D\",\n \"maxSizeInMegabytes\": 1024,\n \"maxMessageSizeInKilobytes\": 1024,\n \"requiresDuplicateDetection\": false,\n \"duplicateDetectionHistoryTimeWindow\": \"PT10M\",\n \"enableBatchedOperations\": true,\n \"status\": \"Active\",\n \"supportOrdering\": true,\n \"autoDeleteOnIdle\": \"P10675199DT2H48M5.4775807S\",\n \"enablePartitioning\": false,\n \"enableExpress\": false\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "416" ] + "Content-Length": [ "432" ] } }, "Response": { @@ -249,32 +249,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1139" ], - "x-ms-request-id": [ "47aa44f5-ccbc-439b-9bb3-e4318048539b" ], - "x-ms-correlation-request-id": [ "47aa44f5-ccbc-439b-9bb3-e4318048539b" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111947Z:47aa44f5-ccbc-439b-9bb3-e4318048539b" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1138" ], + "x-ms-request-id": [ "97014950-e780-4039-8d20-37d9ad0d5b42" ], + "x-ms-correlation-request-id": [ "97014950-e780-4039-8d20-37d9ad0d5b42" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143720Z:97014950-e780-4039-8d20-37d9ad0d5b42" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:47 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:37:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "912" ], + "Content-Length": [ "928" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate\",\"name\":\"topicToUpdate\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P7D\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675197D\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate\",\"name\":\"topicToUpdate\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P7D\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", "isContentBase64": false } }, - "Set-AzServiceBusTopic+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate?api-version=2022-01-01-preview+1": { + "Set-AzServiceBusTopic+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate?api-version=2022-10-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "528" ], - "x-ms-client-request-id": [ "cdc0b80a-70d7-4287-9430-8bba7b78f902" ], + "x-ms-unique-id": [ "520" ], + "x-ms-client-request-id": [ "f4155ecf-7a06-4066-991e-ec7d96dfc62a" ], "CommandName": [ "Get-AzServiceBusTopic" ], "FullCommandName": [ "Get-AzServiceBusTopic_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -291,31 +291,31 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11878" ], - "x-ms-request-id": [ "b5eec882-387f-433c-a167-1fdf828e4f36" ], - "x-ms-correlation-request-id": [ "b5eec882-387f-433c-a167-1fdf828e4f36" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111947Z:b5eec882-387f-433c-a167-1fdf828e4f36" ], + "x-ms-request-id": [ "8dfcd5ff-9da8-4195-a706-31c13ff0787a" ], + "x-ms-correlation-request-id": [ "8dfcd5ff-9da8-4195-a706-31c13ff0787a" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143721Z:8dfcd5ff-9da8-4195-a706-31c13ff0787a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:47 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:37:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "923" ], + "Content-Length": [ "938" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate\",\"name\":\"topicToUpdate\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P7D\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675197D\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"2022-11-24T11:19:44.943Z\",\"updatedAt\":\"2022-11-24T11:19:47.187Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate\",\"name\":\"topicToUpdate\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P7D\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"2023-02-19T14:37:16.13Z\",\"updatedAt\":\"2023-02-19T14:37:20.387Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", "isContentBase64": false } }, - "Set-AzServiceBusTopic+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate?api-version=2022-01-01-preview+2": { + "Set-AzServiceBusTopic+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate?api-version=2022-10-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "529" ], - "x-ms-client-request-id": [ "abe90193-90a3-4cce-bfcf-b65a593dfeb9" ], + "x-ms-unique-id": [ "521" ], + "x-ms-client-request-id": [ "98ebf166-c6fc-4fd2-aaf0-a9c37949e483" ], "CommandName": [ "Get-AzServiceBusTopic" ], "FullCommandName": [ "Get-AzServiceBusTopic_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -332,33 +332,33 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11877" ], - "x-ms-request-id": [ "620d0a2c-6c33-48cf-add5-a32bb06188ba" ], - "x-ms-correlation-request-id": [ "620d0a2c-6c33-48cf-add5-a32bb06188ba" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111947Z:620d0a2c-6c33-48cf-add5-a32bb06188ba" ], + "x-ms-request-id": [ "7814e1fa-9628-4a3b-bc08-2a3a81730518" ], + "x-ms-correlation-request-id": [ "7814e1fa-9628-4a3b-bc08-2a3a81730518" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143721Z:7814e1fa-9628-4a3b-bc08-2a3a81730518" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:47 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:37:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "923" ], + "Content-Length": [ "938" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate\",\"name\":\"topicToUpdate\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P7D\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675197D\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"2022-11-24T11:19:44.943Z\",\"updatedAt\":\"2022-11-24T11:19:47.187Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate\",\"name\":\"topicToUpdate\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P7D\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"2023-02-19T14:37:16.13Z\",\"updatedAt\":\"2023-02-19T14:37:20.387Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", "isContentBase64": false } }, - "Set-AzServiceBusTopic+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate?api-version=2022-01-01-preview+3": { + "Set-AzServiceBusTopic+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate?api-version=2022-10-01-preview+3": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate?api-version=2022-01-01-preview", - "Content": "{\n \"properties\": {\n \"defaultMessageTimeToLive\": \"P7D\",\n \"maxSizeInMegabytes\": 1024,\n \"maxMessageSizeInKilobytes\": 1024,\n \"requiresDuplicateDetection\": false,\n \"duplicateDetectionHistoryTimeWindow\": \"PT10M\",\n \"enableBatchedOperations\": true,\n \"status\": \"Active\",\n \"supportOrdering\": true,\n \"autoDeleteOnIdle\": \"P10675197D\",\n \"enablePartitioning\": false,\n \"enableExpress\": false\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate?api-version=2022-10-01-preview", + "Content": "{\n \"properties\": {\n \"defaultMessageTimeToLive\": \"P7D\",\n \"maxSizeInMegabytes\": 1024,\n \"maxMessageSizeInKilobytes\": 1024,\n \"requiresDuplicateDetection\": false,\n \"duplicateDetectionHistoryTimeWindow\": \"PT10M\",\n \"enableBatchedOperations\": true,\n \"status\": \"Active\",\n \"supportOrdering\": true,\n \"autoDeleteOnIdle\": \"P10675199DT2H48M5.4775807S\",\n \"enablePartitioning\": false,\n \"enableExpress\": false\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "416" ] + "Content-Length": [ "432" ] } }, "Response": { @@ -367,32 +367,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1138" ], - "x-ms-request-id": [ "b59b9bdd-92e6-4b0a-be14-00d36daf2668" ], - "x-ms-correlation-request-id": [ "b59b9bdd-92e6-4b0a-be14-00d36daf2668" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111948Z:b59b9bdd-92e6-4b0a-be14-00d36daf2668" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1137" ], + "x-ms-request-id": [ "2ee95a06-91e9-4554-aaf8-1609c1e17ee7" ], + "x-ms-correlation-request-id": [ "2ee95a06-91e9-4554-aaf8-1609c1e17ee7" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143722Z:2ee95a06-91e9-4554-aaf8-1609c1e17ee7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:47 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:37:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "876" ], + "Content-Length": [ "892" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate\",\"name\":\"topicToUpdate\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P7D\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675197D\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate\",\"name\":\"topicToUpdate\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P7D\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", "isContentBase64": false } }, - "Set-AzServiceBusTopic+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate?api-version=2022-01-01-preview+4": { + "Set-AzServiceBusTopic+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate?api-version=2022-10-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "531" ], - "x-ms-client-request-id": [ "726137b7-3551-4714-9dac-30fb004eb7ff" ], + "x-ms-unique-id": [ "523" ], + "x-ms-client-request-id": [ "1ba443af-d6d1-4c40-a990-7b1d14f000cd" ], "CommandName": [ "Get-AzServiceBusTopic" ], "FullCommandName": [ "Get-AzServiceBusTopic_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -409,33 +409,33 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11876" ], - "x-ms-request-id": [ "912d4f64-bab8-4ab4-ab2b-417177600858" ], - "x-ms-correlation-request-id": [ "912d4f64-bab8-4ab4-ab2b-417177600858" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111948Z:912d4f64-bab8-4ab4-ab2b-417177600858" ], + "x-ms-request-id": [ "22080741-3506-470f-9c97-ff020754c8d1" ], + "x-ms-correlation-request-id": [ "22080741-3506-470f-9c97-ff020754c8d1" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143722Z:22080741-3506-470f-9c97-ff020754c8d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:48 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:37:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "923" ], + "Content-Length": [ "938" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate\",\"name\":\"topicToUpdate\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P7D\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675197D\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"2022-11-24T11:19:44.943Z\",\"updatedAt\":\"2022-11-24T11:19:47.187Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate\",\"name\":\"topicToUpdate\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P7D\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"2023-02-19T14:37:16.13Z\",\"updatedAt\":\"2023-02-19T14:37:20.387Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", "isContentBase64": false } }, - "Set-AzServiceBusTopic+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate?api-version=2022-01-01-preview+5": { + "Set-AzServiceBusTopic+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate?api-version=2022-10-01-preview+5": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate?api-version=2022-01-01-preview", - "Content": "{\n \"properties\": {\n \"defaultMessageTimeToLive\": \"P7D\",\n \"maxSizeInMegabytes\": 1024,\n \"maxMessageSizeInKilobytes\": 1024,\n \"requiresDuplicateDetection\": false,\n \"duplicateDetectionHistoryTimeWindow\": \"PT10M\",\n \"enableBatchedOperations\": true,\n \"status\": \"Active\",\n \"supportOrdering\": false,\n \"autoDeleteOnIdle\": \"P10675197D\",\n \"enablePartitioning\": false,\n \"enableExpress\": false\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate?api-version=2022-10-01-preview", + "Content": "{\n \"properties\": {\n \"defaultMessageTimeToLive\": \"P7D\",\n \"maxSizeInMegabytes\": 1024,\n \"maxMessageSizeInKilobytes\": 1024,\n \"requiresDuplicateDetection\": false,\n \"duplicateDetectionHistoryTimeWindow\": \"PT10M\",\n \"enableBatchedOperations\": true,\n \"status\": \"Active\",\n \"supportOrdering\": false,\n \"autoDeleteOnIdle\": \"P10675199DT2H48M5.4775807S\",\n \"enablePartitioning\": false,\n \"enableExpress\": false\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "417" ] + "Content-Length": [ "433" ] } }, "Response": { @@ -444,32 +444,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1137" ], - "x-ms-request-id": [ "3d13db17-8db0-48ae-b1e4-3fea8d6db6f1" ], - "x-ms-correlation-request-id": [ "3d13db17-8db0-48ae-b1e4-3fea8d6db6f1" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111948Z:3d13db17-8db0-48ae-b1e4-3fea8d6db6f1" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1136" ], + "x-ms-request-id": [ "72a039d0-ec81-4e12-9572-4b4919b6afc7" ], + "x-ms-correlation-request-id": [ "72a039d0-ec81-4e12-9572-4b4919b6afc7" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143723Z:72a039d0-ec81-4e12-9572-4b4919b6afc7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:48 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:37:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "913" ], + "Content-Length": [ "929" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate\",\"name\":\"topicToUpdate\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P7D\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":false,\"autoDeleteOnIdle\":\"P10675197D\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate\",\"name\":\"topicToUpdate\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P7D\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":false,\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", "isContentBase64": false } }, - "Set-AzServiceBusTopic+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate?api-version=2022-01-01-preview+6": { + "Set-AzServiceBusTopic+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate?api-version=2022-10-01-preview+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "533" ], - "x-ms-client-request-id": [ "84a8999b-2b15-4484-bce7-81db75ad8ac0" ], + "x-ms-unique-id": [ "525" ], + "x-ms-client-request-id": [ "deb87ab2-f2fd-4df1-ae2c-76bc7125cb0b" ], "CommandName": [ "Get-AzServiceBusTopic" ], "FullCommandName": [ "Get-AzServiceBusTopic_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -486,33 +486,33 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11875" ], - "x-ms-request-id": [ "8b8026a2-4b52-47e6-a759-1bc2d2834a81" ], - "x-ms-correlation-request-id": [ "8b8026a2-4b52-47e6-a759-1bc2d2834a81" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111948Z:8b8026a2-4b52-47e6-a759-1bc2d2834a81" ], + "x-ms-request-id": [ "965f5bb2-f4b2-4757-a057-a7d68ad62b04" ], + "x-ms-correlation-request-id": [ "965f5bb2-f4b2-4757-a057-a7d68ad62b04" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143723Z:965f5bb2-f4b2-4757-a057-a7d68ad62b04" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:48 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:37:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "924" ], + "Content-Length": [ "939" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate\",\"name\":\"topicToUpdate\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P7D\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":false,\"autoDeleteOnIdle\":\"P10675197D\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"2022-11-24T11:19:44.943Z\",\"updatedAt\":\"2022-11-24T11:19:48.467Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate\",\"name\":\"topicToUpdate\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P7D\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":false,\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"2023-02-19T14:37:16.13Z\",\"updatedAt\":\"2023-02-19T14:37:23.247Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", "isContentBase64": false } }, - "Set-AzServiceBusTopic+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate?api-version=2022-01-01-preview+7": { + "Set-AzServiceBusTopic+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate?api-version=2022-10-01-preview+7": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate?api-version=2022-01-01-preview", - "Content": "{\n \"properties\": {\n \"defaultMessageTimeToLive\": \"P7D\",\n \"maxSizeInMegabytes\": 2048,\n \"maxMessageSizeInKilobytes\": 1024,\n \"requiresDuplicateDetection\": false,\n \"duplicateDetectionHistoryTimeWindow\": \"PT10M\",\n \"enableBatchedOperations\": true,\n \"status\": \"Active\",\n \"supportOrdering\": false,\n \"autoDeleteOnIdle\": \"P10675197D\",\n \"enablePartitioning\": false,\n \"enableExpress\": false\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate?api-version=2022-10-01-preview", + "Content": "{\n \"properties\": {\n \"defaultMessageTimeToLive\": \"P7D\",\n \"maxSizeInMegabytes\": 2048,\n \"maxMessageSizeInKilobytes\": 1024,\n \"requiresDuplicateDetection\": false,\n \"duplicateDetectionHistoryTimeWindow\": \"PT10M\",\n \"enableBatchedOperations\": true,\n \"status\": \"Active\",\n \"supportOrdering\": false,\n \"autoDeleteOnIdle\": \"P10675199DT2H48M5.4775807S\",\n \"enablePartitioning\": false,\n \"enableExpress\": false\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "417" ] + "Content-Length": [ "433" ] } }, "Response": { @@ -521,32 +521,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1136" ], - "x-ms-request-id": [ "c7906a1f-ac69-4baa-bf80-a1c78e0c99f7" ], - "x-ms-correlation-request-id": [ "c7906a1f-ac69-4baa-bf80-a1c78e0c99f7" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111949Z:c7906a1f-ac69-4baa-bf80-a1c78e0c99f7" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1135" ], + "x-ms-request-id": [ "c4ded249-19f8-4321-8574-636e7296d4db" ], + "x-ms-correlation-request-id": [ "c4ded249-19f8-4321-8574-636e7296d4db" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143724Z:c4ded249-19f8-4321-8574-636e7296d4db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:49 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:37:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "913" ], + "Content-Length": [ "929" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate\",\"name\":\"topicToUpdate\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P7D\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":false,\"autoDeleteOnIdle\":\"P10675197D\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate\",\"name\":\"topicToUpdate\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P7D\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":false,\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", "isContentBase64": false } }, - "Set-AzServiceBusTopic+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate?api-version=2022-01-01-preview+8": { + "Set-AzServiceBusTopic+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate?api-version=2022-10-01-preview+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "535" ], - "x-ms-client-request-id": [ "809092e7-fd21-461b-ae91-3679e5cc1e82" ], + "x-ms-unique-id": [ "527" ], + "x-ms-client-request-id": [ "32807631-cbe7-45ca-b3e1-54654ad63994" ], "CommandName": [ "Get-AzServiceBusTopic" ], "FullCommandName": [ "Get-AzServiceBusTopic_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -563,26 +563,26 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11874" ], - "x-ms-request-id": [ "2f640929-4d20-45f5-8c34-2e83c387aef1" ], - "x-ms-correlation-request-id": [ "2f640929-4d20-45f5-8c34-2e83c387aef1" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111949Z:2f640929-4d20-45f5-8c34-2e83c387aef1" ], + "x-ms-request-id": [ "65c8ad73-6e8a-407d-9d65-da6615dc807c" ], + "x-ms-correlation-request-id": [ "65c8ad73-6e8a-407d-9d65-da6615dc807c" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143725Z:65c8ad73-6e8a-407d-9d65-da6615dc807c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:49 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:37:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "924" ], + "Content-Length": [ "938" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate\",\"name\":\"topicToUpdate\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P7D\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":false,\"autoDeleteOnIdle\":\"P10675197D\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"2022-11-24T11:19:44.943Z\",\"updatedAt\":\"2022-11-24T11:19:49.057Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate\",\"name\":\"topicToUpdate\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P7D\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":false,\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"2023-02-19T14:37:16.13Z\",\"updatedAt\":\"2023-02-19T14:37:24.38Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", "isContentBase64": false } }, - "Set-AzServiceBusTopic+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate?api-version=2022-01-01-preview+9": { + "Set-AzServiceBusTopic+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate?api-version=2022-10-01-preview+9": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate?api-version=2022-10-01-preview", "Content": "{\n \"properties\": {\n \"defaultMessageTimeToLive\": \"P7D\",\n \"maxSizeInMegabytes\": 2048,\n \"maxMessageSizeInKilobytes\": 1024,\n \"requiresDuplicateDetection\": false,\n \"duplicateDetectionHistoryTimeWindow\": \"PT10M\",\n \"enableBatchedOperations\": true,\n \"status\": \"Active\",\n \"supportOrdering\": false,\n \"autoDeleteOnIdle\": \"P428DT3H11M2S\",\n \"enablePartitioning\": false,\n \"enableExpress\": false\n }\n}", "isContentBase64": false, "Headers": { @@ -598,32 +598,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1135" ], - "x-ms-request-id": [ "419c1b3f-5369-4772-95f6-e297f45e65b5" ], - "x-ms-correlation-request-id": [ "419c1b3f-5369-4772-95f6-e297f45e65b5" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111949Z:419c1b3f-5369-4772-95f6-e297f45e65b5" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1134" ], + "x-ms-request-id": [ "05d72053-02d7-4818-92e4-e41df67c87d2" ], + "x-ms-correlation-request-id": [ "05d72053-02d7-4818-92e4-e41df67c87d2" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143725Z:05d72053-02d7-4818-92e4-e41df67c87d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:49 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:37:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "916" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate\",\"name\":\"topicToUpdate\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P7D\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":false,\"autoDeleteOnIdle\":\"P428DT3H11M2S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate\",\"name\":\"topicToUpdate\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P7D\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":false,\"autoDeleteOnIdle\":\"P428DT3H11M2S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", "isContentBase64": false } }, - "Set-AzServiceBusTopic+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate?api-version=2022-01-01-preview+10": { + "Set-AzServiceBusTopic+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate?api-version=2022-10-01-preview+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "537" ], - "x-ms-client-request-id": [ "b247a975-07e6-46cc-b41a-e91816104a1e" ], + "x-ms-unique-id": [ "529" ], + "x-ms-client-request-id": [ "753e7003-847d-4fe0-ad5d-cd122313396f" ], "CommandName": [ "Get-AzServiceBusTopic" ], "FullCommandName": [ "Get-AzServiceBusTopic_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -640,26 +640,26 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11873" ], - "x-ms-request-id": [ "25a1a9d7-285d-4e78-9ce2-c6d215cf7e81" ], - "x-ms-correlation-request-id": [ "25a1a9d7-285d-4e78-9ce2-c6d215cf7e81" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111949Z:25a1a9d7-285d-4e78-9ce2-c6d215cf7e81" ], + "x-ms-request-id": [ "d7f8ea0c-381e-4478-a76b-8a4faa5951ab" ], + "x-ms-correlation-request-id": [ "d7f8ea0c-381e-4478-a76b-8a4faa5951ab" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143726Z:d7f8ea0c-381e-4478-a76b-8a4faa5951ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:49 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:37:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "926" ], + "Content-Length": [ "924" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate\",\"name\":\"topicToUpdate\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P7D\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":false,\"autoDeleteOnIdle\":\"P428DT3H11M2S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"2022-11-24T11:19:44.943Z\",\"updatedAt\":\"2022-11-24T11:19:49.58Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate\",\"name\":\"topicToUpdate\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P7D\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":false,\"autoDeleteOnIdle\":\"P428DT3H11M2S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"2023-02-19T14:37:16.13Z\",\"updatedAt\":\"2023-02-19T14:37:25.8Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", "isContentBase64": false } }, - "Set-AzServiceBusTopic+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate?api-version=2022-01-01-preview+11": { + "Set-AzServiceBusTopic+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate?api-version=2022-10-01-preview+11": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate?api-version=2022-10-01-preview", "Content": "{\n \"properties\": {\n \"defaultMessageTimeToLive\": \"P7D\",\n \"maxSizeInMegabytes\": 2048,\n \"maxMessageSizeInKilobytes\": 1024,\n \"requiresDuplicateDetection\": false,\n \"duplicateDetectionHistoryTimeWindow\": \"PT10M\",\n \"enableBatchedOperations\": true,\n \"status\": \"SendDisabled\",\n \"supportOrdering\": false,\n \"autoDeleteOnIdle\": \"P428DT3H11M2S\",\n \"enablePartitioning\": false,\n \"enableExpress\": false\n }\n}", "isContentBase64": false, "Headers": { @@ -675,32 +675,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1134" ], - "x-ms-request-id": [ "ff6db63d-4d5d-4dda-a665-f8a710370506" ], - "x-ms-correlation-request-id": [ "ff6db63d-4d5d-4dda-a665-f8a710370506" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111950Z:ff6db63d-4d5d-4dda-a665-f8a710370506" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1133" ], + "x-ms-request-id": [ "36f652f5-88f1-44e6-b3df-21a567357372" ], + "x-ms-correlation-request-id": [ "36f652f5-88f1-44e6-b3df-21a567357372" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143727Z:36f652f5-88f1-44e6-b3df-21a567357372" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:50 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:37:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "922" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate\",\"name\":\"topicToUpdate\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P7D\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"SendDisabled\",\"supportOrdering\":false,\"autoDeleteOnIdle\":\"P428DT3H11M2S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate\",\"name\":\"topicToUpdate\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P7D\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"SendDisabled\",\"supportOrdering\":false,\"autoDeleteOnIdle\":\"P428DT3H11M2S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", "isContentBase64": false } }, - "Set-AzServiceBusTopic+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate?api-version=2022-01-01-preview+12": { + "Set-AzServiceBusTopic+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate?api-version=2022-10-01-preview+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "539" ], - "x-ms-client-request-id": [ "cd01ef32-759c-4796-963c-0d5cc349b677" ], + "x-ms-unique-id": [ "531" ], + "x-ms-client-request-id": [ "40f201f6-5116-4f6c-a4d6-bb6b492011e8" ], "CommandName": [ "Get-AzServiceBusTopic" ], "FullCommandName": [ "Get-AzServiceBusTopic_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -717,26 +717,26 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11872" ], - "x-ms-request-id": [ "e0c59b91-b242-43ec-b05e-d01892be3b0f" ], - "x-ms-correlation-request-id": [ "e0c59b91-b242-43ec-b05e-d01892be3b0f" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111950Z:e0c59b91-b242-43ec-b05e-d01892be3b0f" ], + "x-ms-request-id": [ "38dae63d-f891-4393-86e8-ba8471e90255" ], + "x-ms-correlation-request-id": [ "38dae63d-f891-4393-86e8-ba8471e90255" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143727Z:38dae63d-f891-4393-86e8-ba8471e90255" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:50 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:37:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "933" ], + "Content-Length": [ "931" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate\",\"name\":\"topicToUpdate\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P7D\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"SendDisabled\",\"supportOrdering\":false,\"autoDeleteOnIdle\":\"P428DT3H11M2S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"2022-11-24T11:19:44.943Z\",\"updatedAt\":\"2022-11-24T11:19:50.167Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate\",\"name\":\"topicToUpdate\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P7D\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"SendDisabled\",\"supportOrdering\":false,\"autoDeleteOnIdle\":\"P428DT3H11M2S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"2023-02-19T14:37:16.13Z\",\"updatedAt\":\"2023-02-19T14:37:26.95Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", "isContentBase64": false } }, - "Set-AzServiceBusTopic+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate?api-version=2022-01-01-preview+13": { + "Set-AzServiceBusTopic+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate?api-version=2022-10-01-preview+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate?api-version=2022-10-01-preview", "Content": "{\n \"properties\": {\n \"defaultMessageTimeToLive\": \"P7D\",\n \"maxSizeInMegabytes\": 2048,\n \"maxMessageSizeInKilobytes\": 1024,\n \"requiresDuplicateDetection\": false,\n \"duplicateDetectionHistoryTimeWindow\": \"PT3M\",\n \"enableBatchedOperations\": true,\n \"status\": \"SendDisabled\",\n \"supportOrdering\": false,\n \"autoDeleteOnIdle\": \"P428DT3H11M2S\",\n \"enablePartitioning\": false,\n \"enableExpress\": false\n }\n}", "isContentBase64": false, "Headers": { @@ -752,32 +752,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1133" ], - "x-ms-request-id": [ "e329400a-21ec-4205-a82b-82abe12a220b" ], - "x-ms-correlation-request-id": [ "e329400a-21ec-4205-a82b-82abe12a220b" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111950Z:e329400a-21ec-4205-a82b-82abe12a220b" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1132" ], + "x-ms-request-id": [ "88188b25-2807-4276-a211-70e64bbd691e" ], + "x-ms-correlation-request-id": [ "88188b25-2807-4276-a211-70e64bbd691e" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143728Z:88188b25-2807-4276-a211-70e64bbd691e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:50 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:37:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "921" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/topics/topicToUpdate\",\"name\":\"topicToUpdate\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P7D\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT3M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"SendDisabled\",\"supportOrdering\":false,\"autoDeleteOnIdle\":\"P428DT3H11M2S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/topics/topicToUpdate\",\"name\":\"topicToUpdate\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":1024,\"defaultMessageTimeToLive\":\"P7D\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT3M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"SendDisabled\",\"supportOrdering\":false,\"autoDeleteOnIdle\":\"P428DT3H11M2S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", "isContentBase64": false } }, - "Set-AzServiceBusTopic+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNameck4gr6/topics/topic1?api-version=2022-01-01-preview+14": { + "Set-AzServiceBusTopic+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNametkv0jq/topics/topic1?api-version=2022-10-01-preview+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNameck4gr6/topics/topic1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNametkv0jq/topics/topic1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "541" ], - "x-ms-client-request-id": [ "896166f5-713e-4878-a7ad-67d624e8b783" ], + "x-ms-unique-id": [ "533" ], + "x-ms-client-request-id": [ "1a728501-3b48-4512-aeb9-2fd7d28e7b61" ], "CommandName": [ "Get-AzServiceBusTopic" ], "FullCommandName": [ "Get-AzServiceBusTopic_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -794,31 +794,31 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11871" ], - "x-ms-request-id": [ "3b71bd9e-172a-465e-b6cd-5d7c091451f9" ], - "x-ms-correlation-request-id": [ "3b71bd9e-172a-465e-b6cd-5d7c091451f9" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111951Z:3b71bd9e-172a-465e-b6cd-5d7c091451f9" ], + "x-ms-request-id": [ "38a94698-fb31-4183-9349-32698c8be719" ], + "x-ms-correlation-request-id": [ "38a94698-fb31-4183-9349-32698c8be719" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143729Z:38a94698-fb31-4183-9349-32698c8be719" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:51 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:37:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "954" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNameck4gr6/topics/topic1\",\"name\":\"topic1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":256,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":true,\"createdAt\":\"2022-11-24T10:29:50.6538345Z\",\"updatedAt\":\"2022-11-24T10:29:50.6538345Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNametkv0jq/topics/topic1\",\"name\":\"topic1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":256,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":true,\"createdAt\":\"2023-02-19T13:48:04.8237948Z\",\"updatedAt\":\"2023-02-19T13:48:04.8237948Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", "isContentBase64": false } }, - "Set-AzServiceBusTopic+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNameck4gr6/topics/topic1?api-version=2022-01-01-preview+15": { + "Set-AzServiceBusTopic+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNametkv0jq/topics/topic1?api-version=2022-10-01-preview+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNameck4gr6/topics/topic1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNametkv0jq/topics/topic1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "542" ], - "x-ms-client-request-id": [ "93d83bd4-d7d9-4ef8-b255-e4ab0e60b5d9" ], + "x-ms-unique-id": [ "534" ], + "x-ms-client-request-id": [ "d436c511-e646-4449-ab14-e4aa13833642" ], "CommandName": [ "Get-AzServiceBusTopic" ], "FullCommandName": [ "Get-AzServiceBusTopic_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -835,33 +835,33 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11870" ], - "x-ms-request-id": [ "921da7f2-691d-4d35-ac10-17b421bf0b81" ], - "x-ms-correlation-request-id": [ "921da7f2-691d-4d35-ac10-17b421bf0b81" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111951Z:921da7f2-691d-4d35-ac10-17b421bf0b81" ], + "x-ms-request-id": [ "5a4c1049-cf21-4da5-81a9-9f91981b06dd" ], + "x-ms-correlation-request-id": [ "5a4c1049-cf21-4da5-81a9-9f91981b06dd" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143729Z:5a4c1049-cf21-4da5-81a9-9f91981b06dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:51 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:37:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "954" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNameck4gr6/topics/topic1\",\"name\":\"topic1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":256,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":true,\"createdAt\":\"2022-11-24T10:29:50.6538345Z\",\"updatedAt\":\"2022-11-24T10:29:50.6538345Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNametkv0jq/topics/topic1\",\"name\":\"topic1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":256,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":true,\"createdAt\":\"2023-02-19T13:48:04.8237948Z\",\"updatedAt\":\"2023-02-19T13:48:04.8237948Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", "isContentBase64": false } }, - "Set-AzServiceBusTopic+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNameck4gr6/topics/topic1?api-version=2022-01-01-preview+16": { + "Set-AzServiceBusTopic+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNametkv0jq/topics/topic1?api-version=2022-10-01-preview+16": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNameck4gr6/topics/topic1?api-version=2022-01-01-preview", - "Content": "{\n \"properties\": {\n \"defaultMessageTimeToLive\": \"P10675197D\",\n \"maxSizeInMegabytes\": 1024,\n \"maxMessageSizeInKilobytes\": 256,\n \"requiresDuplicateDetection\": false,\n \"duplicateDetectionHistoryTimeWindow\": \"PT10M\",\n \"enableBatchedOperations\": true,\n \"status\": \"Active\",\n \"supportOrdering\": true,\n \"autoDeleteOnIdle\": \"P10675197D\",\n \"enablePartitioning\": false,\n \"enableExpress\": false\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNametkv0jq/topics/topic1?api-version=2022-10-01-preview", + "Content": "{\n \"properties\": {\n \"defaultMessageTimeToLive\": \"P10675199DT2H48M5.4775807S\",\n \"maxSizeInMegabytes\": 1024,\n \"maxMessageSizeInKilobytes\": 256,\n \"requiresDuplicateDetection\": false,\n \"duplicateDetectionHistoryTimeWindow\": \"PT10M\",\n \"enableBatchedOperations\": true,\n \"status\": \"Active\",\n \"supportOrdering\": true,\n \"autoDeleteOnIdle\": \"P10675199DT2H48M5.4775807S\",\n \"enablePartitioning\": false,\n \"enableExpress\": false\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "422" ] + "Content-Length": [ "454" ] } }, "Response": { @@ -870,32 +870,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1132" ], - "x-ms-request-id": [ "e1e6351e-84b7-47d4-b107-4aac7bcc15ec" ], - "x-ms-correlation-request-id": [ "e1e6351e-84b7-47d4-b107-4aac7bcc15ec" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111952Z:e1e6351e-84b7-47d4-b107-4aac7bcc15ec" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1131" ], + "x-ms-request-id": [ "4f4beaf4-443b-4b3b-abe8-f9816fa76cd4" ], + "x-ms-correlation-request-id": [ "4f4beaf4-443b-4b3b-abe8-f9816fa76cd4" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143730Z:4f4beaf4-443b-4b3b-abe8-f9816fa76cd4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:51 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:37:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "904" ], + "Content-Length": [ "936" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNameck4gr6/topics/topic1\",\"name\":\"topic1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":256,\"defaultMessageTimeToLive\":\"P10675197D\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675197D\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNametkv0jq/topics/topic1\",\"name\":\"topic1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":256,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", "isContentBase64": false } }, - "Set-AzServiceBusTopic+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNameck4gr6/topics/topic1?api-version=2022-01-01-preview+17": { + "Set-AzServiceBusTopic+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNametkv0jq/topics/topic1?api-version=2022-10-01-preview+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNameck4gr6/topics/topic1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNametkv0jq/topics/topic1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "544" ], - "x-ms-client-request-id": [ "988e58e8-4425-4141-9a09-79dac7243d8a" ], + "x-ms-unique-id": [ "536" ], + "x-ms-client-request-id": [ "d9ef83f0-059a-415e-a828-167b9d88234c" ], "CommandName": [ "Get-AzServiceBusTopic" ], "FullCommandName": [ "Get-AzServiceBusTopic_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -912,33 +912,33 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11869" ], - "x-ms-request-id": [ "e5d11e46-d453-45dc-87af-ec0ebc012314" ], - "x-ms-correlation-request-id": [ "e5d11e46-d453-45dc-87af-ec0ebc012314" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111952Z:e5d11e46-d453-45dc-87af-ec0ebc012314" ], + "x-ms-request-id": [ "8b8e3c66-1a15-4027-b485-1f407ac4b196" ], + "x-ms-correlation-request-id": [ "8b8e3c66-1a15-4027-b485-1f407ac4b196" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143731Z:8b8e3c66-1a15-4027-b485-1f407ac4b196" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:52 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:37:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "923" ], + "Content-Length": [ "955" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNameck4gr6/topics/topic1\",\"name\":\"topic1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":256,\"defaultMessageTimeToLive\":\"P10675197D\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675197D\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"2022-11-24T10:29:50.6538345Z\",\"updatedAt\":\"2022-11-24T11:19:51.7528362Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNametkv0jq/topics/topic1\",\"name\":\"topic1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":256,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":false,\"createdAt\":\"2023-02-19T13:48:04.8237948Z\",\"updatedAt\":\"2023-02-19T14:37:30.2353926Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", "isContentBase64": false } }, - "Set-AzServiceBusTopic+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNameck4gr6/topics/topic1?api-version=2022-01-01-preview+18": { + "Set-AzServiceBusTopic+[NoContext]+SetViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNametkv0jq/topics/topic1?api-version=2022-10-01-preview+18": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNameck4gr6/topics/topic1?api-version=2022-01-01-preview", - "Content": "{\n \"properties\": {\n \"defaultMessageTimeToLive\": \"P10675197D\",\n \"maxSizeInMegabytes\": 1024,\n \"maxMessageSizeInKilobytes\": 256,\n \"requiresDuplicateDetection\": false,\n \"duplicateDetectionHistoryTimeWindow\": \"PT10M\",\n \"enableBatchedOperations\": true,\n \"status\": \"Active\",\n \"supportOrdering\": true,\n \"autoDeleteOnIdle\": \"P10675197D\",\n \"enablePartitioning\": false,\n \"enableExpress\": true\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNametkv0jq/topics/topic1?api-version=2022-10-01-preview", + "Content": "{\n \"properties\": {\n \"defaultMessageTimeToLive\": \"P10675199DT2H48M5.4775807S\",\n \"maxSizeInMegabytes\": 1024,\n \"maxMessageSizeInKilobytes\": 256,\n \"requiresDuplicateDetection\": false,\n \"duplicateDetectionHistoryTimeWindow\": \"PT10M\",\n \"enableBatchedOperations\": true,\n \"status\": \"Active\",\n \"supportOrdering\": true,\n \"autoDeleteOnIdle\": \"P10675199DT2H48M5.4775807S\",\n \"enablePartitioning\": false,\n \"enableExpress\": true\n }\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "421" ] + "Content-Length": [ "453" ] } }, "Response": { @@ -947,32 +947,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1131" ], - "x-ms-request-id": [ "d7d36924-ea0b-48f4-907d-02c97b2cf068" ], - "x-ms-correlation-request-id": [ "d7d36924-ea0b-48f4-907d-02c97b2cf068" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111953Z:d7d36924-ea0b-48f4-907d-02c97b2cf068" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1130" ], + "x-ms-request-id": [ "aee190f1-c962-460d-b65c-a9eaf276c777" ], + "x-ms-correlation-request-id": [ "aee190f1-c962-460d-b65c-a9eaf276c777" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143731Z:aee190f1-c962-460d-b65c-a9eaf276c777" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:53 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:37:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "903" ], + "Content-Length": [ "935" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNameck4gr6/topics/topic1\",\"name\":\"topic1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":256,\"defaultMessageTimeToLive\":\"P10675197D\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675197D\",\"enablePartitioning\":false,\"enableExpress\":true,\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNametkv0jq/topics/topic1\",\"name\":\"topic1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":256,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":true,\"createdAt\":\"0001-01-01T00:00:00\",\"updatedAt\":\"0001-01-01T00:00:00\",\"accessedAt\":\"0001-01-01T00:00:00\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", "isContentBase64": false } }, - "Set-AzServiceBusTopic+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNameck4gr6/topics/topic1?api-version=2022-01-01-preview+19": { + "Set-AzServiceBusTopic+[NoContext]+SetViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNametkv0jq/topics/topic1?api-version=2022-10-01-preview+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNameck4gr6/topics/topic1?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNametkv0jq/topics/topic1?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "546" ], - "x-ms-client-request-id": [ "bb0433cd-2f55-468b-8c56-2e87117d1ff0" ], + "x-ms-unique-id": [ "538" ], + "x-ms-client-request-id": [ "ee148910-e496-4cb0-836b-029436aa988c" ], "CommandName": [ "Get-AzServiceBusTopic" ], "FullCommandName": [ "Get-AzServiceBusTopic_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -989,19 +989,19 @@ "Pragma": [ "no-cache" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11868" ], - "x-ms-request-id": [ "7297ccfd-8967-4b95-a86b-de0458e9dff1" ], - "x-ms-correlation-request-id": [ "7297ccfd-8967-4b95-a86b-de0458e9dff1" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T111953Z:7297ccfd-8967-4b95-a86b-de0458e9dff1" ], + "x-ms-request-id": [ "51795977-6eb8-4815-8522-dbe8eb2086b9" ], + "x-ms-correlation-request-id": [ "51795977-6eb8-4815-8522-dbe8eb2086b9" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143732Z:51795977-6eb8-4815-8522-dbe8eb2086b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:19:53 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:37:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "922" ], + "Content-Length": [ "954" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNameck4gr6/topics/topic1\",\"name\":\"topic1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":256,\"defaultMessageTimeToLive\":\"P10675197D\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675197D\",\"enablePartitioning\":false,\"enableExpress\":true,\"createdAt\":\"2022-11-24T10:29:50.6538345Z\",\"updatedAt\":\"2022-11-24T11:19:53.0497456Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNametkv0jq/topics/topic1\",\"name\":\"topic1\",\"type\":\"Microsoft.ServiceBus/namespaces/topics\",\"location\":\"eastus\",\"properties\":{\"maxMessageSizeInKilobytes\":256,\"defaultMessageTimeToLive\":\"P10675199DT2H48M5.4775807S\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"PT10M\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"status\":\"Active\",\"supportOrdering\":true,\"autoDeleteOnIdle\":\"P10675199DT2H48M5.4775807S\",\"enablePartitioning\":false,\"enableExpress\":true,\"createdAt\":\"2023-02-19T13:48:04.8237948Z\",\"updatedAt\":\"2023-02-19T14:37:31.6104051Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"subscriptionCount\":0,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0}}}", "isContentBase64": false } } diff --git a/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusTopic.Tests.ps1 b/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusTopic.Tests.ps1 index a67914192714..311986642c9a 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusTopic.Tests.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusTopic.Tests.ps1 @@ -15,7 +15,7 @@ if(($null -eq $TestName) -or ($TestName -contains 'Set-AzServiceBusTopic')) } function AssertTopicUpdates{ - param([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic]$expectedTopic,[Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic]$actualTopic) + param([Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic]$expectedTopic,[Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic]$actualTopic) $expectedTopic.Name | Should -Be $actualTopic.Name $expectedTopic.ResourceGroupName | Should -Be $actualTopic.ResourceGroupName $expectedTopic.MaxSizeInMegabytes | Should -Be $actualTopic.MaxSizeInMegabytes @@ -25,27 +25,9 @@ function AssertTopicUpdates{ $expectedTopic.EnablePartitioning | Should -Be $actualTopic.EnablePartitioning $expectedTopic.EnableExpress | Should -Be $actualTopic.EnableExpress $expectedTopic.SupportOrdering | Should -Be $actualTopic.SupportOrdering - - if ($expectedTopic.DefaultMessageTimeToLive -gt (New-TimeSpan -Days 10675197)){ - $actualTopic.DefaultMessageTimeToLive | Should -BeGreaterOrEqual (New-TimeSpan -Days 10675197) - } - else{ - $actualTopic.DefaultMessageTimeToLive | Should -Be $expectedTopic.DefaultMessageTimeToLive - } - - if ($expectedTopic.DuplicateDetectionHistoryTimeWindow -gt (New-TimeSpan -Days 10675197)){ - $actualTopic.DuplicateDetectionHistoryTimeWindow | Should -BeGreaterOrEqual (New-TimeSpan -Days 10675197) - } - else{ - $actualTopic.DuplicateDetectionHistoryTimeWindow | Should -Be $expectedTopic.DuplicateDetectionHistoryTimeWindow - } - - if ($expectedTopic.AutoDeleteOnIdle -gt (New-TimeSpan -Days 10675197)){ - $actualTopic.AutoDeleteOnIdle | Should -BeGreaterOrEqual (New-TimeSpan -Days 10675197) - } - else{ - $actualTopic.AutoDeleteOnIdle | Should -Be $expectedTopic.AutoDeleteOnIdle - } + $expectedTopic.DefaultMessageTimeToLive | Should -Be $actualTopic.DefaultMessageTimeToLive + $expectedTopic.DuplicateDetectionHistoryTimeWindow | Should -Be $actualTopic.DuplicateDetectionHistoryTimeWindow + $expectedTopic.AutoDeleteOnIdle | Should -Be $actualTopic.AutoDeleteOnIdle } Describe 'Set-AzServiceBusTopic' { diff --git a/src/ServiceBus/ServiceBus.Autorest/test/Start-AzServiceBusMigration.Recording.json b/src/ServiceBus/ServiceBus.Autorest/test/Start-AzServiceBusMigration.Recording.json index 60ee6cafc339..2832689d6146 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/Start-AzServiceBusMigration.Recording.json +++ b/src/ServiceBus/ServiceBus.Autorest/test/Start-AzServiceBusMigration.Recording.json @@ -1,9 +1,9 @@ { - "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview+1": { + "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview", - "Content": "{\n \"properties\": {\n \"targetNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSpm7e8a\",\n \"postMigrationName\": \"postMigrationjp4gc8\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview", + "Content": "{\n \"properties\": {\n \"targetNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNS5doyqa\",\n \"postMigrationName\": \"postMigration2i9j5p\"\n }\n}", "isContentBase64": false, "Headers": { }, @@ -17,35 +17,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "35fecd5e-5aa5-46d5-80dd-7b7e8584d23b_M9SN1_M9SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1130" ], - "x-ms-correlation-request-id": [ "4dc20ae8-c237-4f24-bc4c-0be7427c2657" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T112022Z:4dc20ae8-c237-4f24-bc4c-0be7427c2657" ], + "x-ms-request-id": [ "cbd13829-3a3c-4c46-b3d5-6b0baeffdfec_M6CH3_M6CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1129" ], + "x-ms-correlation-request-id": [ "8ede765d-2a27-4f28-a0c5-d4ba4a6987d0" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143754Z:8ede765d-2a27-4f28-a0c5-d4ba4a6987d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:20:22 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:37:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "577" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/$default\",\"name\":\"primaryNSujona4\",\"type\":\"Microsoft.ServiceBus/Namespaces/migrationconfigurations\",\"properties\":{\"provisioningState\":\"Accepted\",\"targetNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSpm7e8a\",\"postMigrationName\":\"postMigrationjp4gc8\",\"migrationState\":\"Initiating\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/$default\",\"name\":\"primaryNSp1xb3a\",\"type\":\"Microsoft.ServiceBus/Namespaces/migrationconfigurations\",\"properties\":{\"provisioningState\":\"Accepted\",\"targetNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNS5doyqa\",\"postMigrationName\":\"postMigration2i9j5p\",\"migrationState\":\"Initiating\"}}", "isContentBase64": false } }, - "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview+2": { + "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "548" ], - "x-ms-client-request-id": [ "fae0a261-6e6d-4a06-ae15-6620e9b65884" ], + "x-ms-unique-id": [ "540" ], + "x-ms-client-request-id": [ "539cdc0f-b661-4140-ab29-ae577bfda6e7" ], "CommandName": [ "Start-AzServiceBusMigration" ], "FullCommandName": [ "Start-AzServiceBusMigration_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -59,35 +59,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "a5265ad5-e3df-47db-9f5c-3131c95d9db8_M9SN1_M9SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "1d6eec13-f392-441d-b217-900fac34a421_M2CH3_M2CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11867" ], - "x-ms-correlation-request-id": [ "ceddeae7-9a4f-4168-beed-ef4071920a5e" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T112052Z:ceddeae7-9a4f-4168-beed-ef4071920a5e" ], + "x-ms-correlation-request-id": [ "3df7d84e-00cb-4b24-8d63-56af805c0163" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143825Z:3df7d84e-00cb-4b24-8d63-56af805c0163" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:20:51 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:38:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "577" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/$default\",\"name\":\"primaryNSujona4\",\"type\":\"Microsoft.ServiceBus/Namespaces/migrationconfigurations\",\"properties\":{\"provisioningState\":\"Accepted\",\"targetNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSpm7e8a\",\"postMigrationName\":\"postMigrationjp4gc8\",\"migrationState\":\"Initiating\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/$default\",\"name\":\"primaryNSp1xb3a\",\"type\":\"Microsoft.ServiceBus/Namespaces/migrationconfigurations\",\"properties\":{\"provisioningState\":\"Accepted\",\"targetNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNS5doyqa\",\"postMigrationName\":\"postMigration2i9j5p\",\"migrationState\":\"Initiating\"}}", "isContentBase64": false } }, - "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview+3": { + "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "549" ], - "x-ms-client-request-id": [ "fae0a261-6e6d-4a06-ae15-6620e9b65884" ], + "x-ms-unique-id": [ "541" ], + "x-ms-client-request-id": [ "539cdc0f-b661-4140-ab29-ae577bfda6e7" ], "CommandName": [ "Start-AzServiceBusMigration" ], "FullCommandName": [ "Start-AzServiceBusMigration_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -101,35 +101,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "29eb7e7a-b96a-4a48-9def-89eccf3275c8_M9SN1_M9SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "23e2b337-371a-455f-b1a7-ae327ac1e0c5_M6CH3_M6CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11866" ], - "x-ms-correlation-request-id": [ "71fead16-f35c-41ac-8906-37a7e386e372" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T112122Z:71fead16-f35c-41ac-8906-37a7e386e372" ], + "x-ms-correlation-request-id": [ "46e51f44-1964-4f92-bb34-65f66e2f9c4d" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143856Z:46e51f44-1964-4f92-bb34-65f66e2f9c4d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:21:22 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:38:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "577" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/$default\",\"name\":\"primaryNSujona4\",\"type\":\"Microsoft.ServiceBus/Namespaces/migrationconfigurations\",\"properties\":{\"provisioningState\":\"Accepted\",\"targetNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSpm7e8a\",\"postMigrationName\":\"postMigrationjp4gc8\",\"migrationState\":\"Initiating\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/$default\",\"name\":\"primaryNSp1xb3a\",\"type\":\"Microsoft.ServiceBus/Namespaces/migrationconfigurations\",\"properties\":{\"provisioningState\":\"Accepted\",\"targetNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNS5doyqa\",\"postMigrationName\":\"postMigration2i9j5p\",\"migrationState\":\"Initiating\"}}", "isContentBase64": false } }, - "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview+4": { + "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "550" ], - "x-ms-client-request-id": [ "fae0a261-6e6d-4a06-ae15-6620e9b65884" ], + "x-ms-unique-id": [ "542" ], + "x-ms-client-request-id": [ "539cdc0f-b661-4140-ab29-ae577bfda6e7" ], "CommandName": [ "Start-AzServiceBusMigration" ], "FullCommandName": [ "Start-AzServiceBusMigration_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -143,35 +143,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "ceadf9c5-d793-426a-95af-2955aad4b2b7_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "04f3a709-041f-47b8-8a17-ed8f40ccb0e1_M6CH3_M6CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11865" ], - "x-ms-correlation-request-id": [ "4c03a2be-43e4-4447-b3df-f9c9d5f550db" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T112153Z:4c03a2be-43e4-4447-b3df-f9c9d5f550db" ], + "x-ms-correlation-request-id": [ "7b8d585e-49a0-4ab0-a2e3-f0a01dce7804" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143926Z:7b8d585e-49a0-4ab0-a2e3-f0a01dce7804" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:21:53 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:39:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "612" ], + "Content-Length": [ "577" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/$default\",\"name\":\"primaryNSujona4\",\"type\":\"Microsoft.ServiceBus/Namespaces/migrationconfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSpm7e8a\",\"postMigrationName\":\"postMigrationjp4gc8\",\"pendingReplicationOperationsCount\":0,\"migrationState\":\"Active\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/$default\",\"name\":\"primaryNSp1xb3a\",\"type\":\"Microsoft.ServiceBus/Namespaces/migrationconfigurations\",\"properties\":{\"provisioningState\":\"Accepted\",\"targetNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNS5doyqa\",\"postMigrationName\":\"postMigration2i9j5p\",\"migrationState\":\"Initiating\"}}", "isContentBase64": false } }, - "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview+5": { + "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "551" ], - "x-ms-client-request-id": [ "fae0a261-6e6d-4a06-ae15-6620e9b65884" ], + "x-ms-unique-id": [ "543" ], + "x-ms-client-request-id": [ "539cdc0f-b661-4140-ab29-ae577bfda6e7" ], "CommandName": [ "Start-AzServiceBusMigration" ], "FullCommandName": [ "Start-AzServiceBusMigration_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -185,39 +185,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "27a3091b-d6a5-4c2b-b9d6-ea8bea94c516_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "6f7496f2-ba22-4c75-8e3a-6548c5a6b701_M10CH3_M10CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11864" ], - "x-ms-correlation-request-id": [ "9f9d43c4-21e5-48b6-a5d3-a7797e3cb12f" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T112154Z:9f9d43c4-21e5-48b6-a5d3-a7797e3cb12f" ], + "x-ms-correlation-request-id": [ "d7fb6648-d0ea-412a-b055-356de1cfb11a" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T143958Z:d7fb6648-d0ea-412a-b055-356de1cfb11a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:21:54 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:39:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "612" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/$default\",\"name\":\"primaryNSujona4\",\"type\":\"Microsoft.ServiceBus/Namespaces/migrationconfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSpm7e8a\",\"postMigrationName\":\"postMigrationjp4gc8\",\"pendingReplicationOperationsCount\":0,\"migrationState\":\"Active\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/$default\",\"name\":\"primaryNSp1xb3a\",\"type\":\"Microsoft.ServiceBus/Namespaces/migrationconfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNS5doyqa\",\"postMigrationName\":\"postMigration2i9j5p\",\"pendingReplicationOperationsCount\":0,\"migrationState\":\"Active\"}}", "isContentBase64": false } }, - "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview+6": { + "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "552" ], - "x-ms-client-request-id": [ "5e1b26c6-12e8-4700-b0cf-547bc2c9ca2c" ], - "CommandName": [ "Get-AzServiceBusMigration" ], - "FullCommandName": [ "Get-AzServiceBusMigration_Get" ], + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "544" ], + "x-ms-client-request-id": [ "539cdc0f-b661-4140-ab29-ae577bfda6e7" ], + "CommandName": [ "Start-AzServiceBusMigration" ], + "FullCommandName": [ "Start-AzServiceBusMigration_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceBus/0.1.0" ], - "Authorization": [ "[Filtered]" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceBus/0.1.0" ] }, "ContentHeaders": { } @@ -227,36 +227,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "5b5b849d-7213-4767-8a0d-89e37c4411ee_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "73ccc188-428b-4d09-868e-a15af096de69_M9CH3_M9CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11863" ], - "x-ms-correlation-request-id": [ "2ec9eb67-f1ad-4e6a-a1da-7ddd43e94721" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T112155Z:2ec9eb67-f1ad-4e6a-a1da-7ddd43e94721" ], + "x-ms-correlation-request-id": [ "9643d30f-f492-4d14-a220-1e636bf9ec10" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T144000Z:9643d30f-f492-4d14-a220-1e636bf9ec10" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:21:55 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:40:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "612" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/$default\",\"name\":\"primaryNSujona4\",\"type\":\"Microsoft.ServiceBus/Namespaces/migrationconfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSpm7e8a\",\"postMigrationName\":\"postMigrationjp4gc8\",\"pendingReplicationOperationsCount\":0,\"migrationState\":\"Active\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/$default\",\"name\":\"primaryNSp1xb3a\",\"type\":\"Microsoft.ServiceBus/Namespaces/migrationconfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNS5doyqa\",\"postMigrationName\":\"postMigration2i9j5p\",\"pendingReplicationOperationsCount\":0,\"migrationState\":\"Active\"}}", "isContentBase64": false } }, - "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default/revert?api-version=2022-01-01-preview+7": { + "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview+7": { "Request": { - "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default/revert?api-version=2022-01-01-preview", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "553" ], - "x-ms-client-request-id": [ "05ca885e-8726-4f56-a1a1-a46cce88e474" ], - "CommandName": [ "Stop-AzServiceBusMigration" ], - "FullCommandName": [ "Stop-AzServiceBusMigration_Revert" ], + "x-ms-unique-id": [ "545" ], + "x-ms-client-request-id": [ "ad8714e8-a408-4af6-8668-3138786de994" ], + "CommandName": [ "Get-AzServiceBusMigration" ], + "FullCommandName": [ "Get-AzServiceBusMigration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceBus/0.1.0" ], "Authorization": [ "[Filtered]" ] @@ -269,35 +269,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "de812580-cd2d-47d7-b8e3-e9fda262837e_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "3530b97d-6bed-4891-a1b0-fe9289a69837" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T112205Z:3530b97d-6bed-4891-a1b0-fe9289a69837" ], + "x-ms-request-id": [ "4c4bfa45-7b9e-43f6-a860-78dac5df7842_M9CH3_M9CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11862" ], + "x-ms-correlation-request-id": [ "e23d37a7-f2bc-45d8-8a93-8c449d5b0a0c" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T144002Z:e23d37a7-f2bc-45d8-8a93-8c449d5b0a0c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:22:05 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:40:01 GMT" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "612" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": null, + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/$default\",\"name\":\"primaryNSp1xb3a\",\"type\":\"Microsoft.ServiceBus/Namespaces/migrationconfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNS5doyqa\",\"postMigrationName\":\"postMigration2i9j5p\",\"pendingReplicationOperationsCount\":0,\"migrationState\":\"Active\"}}", "isContentBase64": false } }, - "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview+8": { + "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default/revert?api-version=2022-10-01-preview+8": { "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview", + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default/revert?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "554" ], - "x-ms-client-request-id": [ "b09a55fe-38df-4f3e-b9a7-38891736f89b" ], - "CommandName": [ "Get-AzServiceBusMigration" ], - "FullCommandName": [ "Get-AzServiceBusMigration_Get" ], + "x-ms-unique-id": [ "546" ], + "x-ms-client-request-id": [ "c17601ef-d0a8-4e52-9cd1-f88e455500c1" ], + "CommandName": [ "Stop-AzServiceBusMigration" ], + "FullCommandName": [ "Stop-AzServiceBusMigration_Revert" ], "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceBus/0.1.0" ], "Authorization": [ "[Filtered]" ] @@ -310,34 +311,33 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "a6df2c09-d724-4605-b133-dd7adef9e763_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11862" ], - "x-ms-correlation-request-id": [ "f308fd7d-243f-406d-89d3-6a7a67810d20" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T112205Z:f308fd7d-243f-406d-89d3-6a7a67810d20" ], + "x-ms-request-id": [ "3853c501-7822-41f8-8bf7-187a8c9b6101_M8CH3_M8CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], + "x-ms-correlation-request-id": [ "ace3befe-90ec-40dd-999d-d778bc0f5e5c" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T144013Z:ace3befe-90ec-40dd-999d-d778bc0f5e5c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:22:05 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:40:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "576" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/$default\",\"name\":\"primaryNSujona4\",\"type\":\"Microsoft.ServiceBus/Namespaces/migrationconfigurations\",\"properties\":{\"provisioningState\":\"Accepted\",\"targetNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSpm7e8a\",\"postMigrationName\":\"postMigrationjp4gc8\",\"migrationState\":\"Reverting\"}}", + "Content": null, "isContentBase64": false } }, - "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview+9": { + "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "555" ], - "x-ms-client-request-id": [ "dd55b465-6537-413f-b297-d1ad72725bb2" ], + "x-ms-unique-id": [ "547" ], + "x-ms-client-request-id": [ "514ca2c5-6303-4e9e-b353-945c4f03323a" ], "CommandName": [ "Get-AzServiceBusMigration" ], "FullCommandName": [ "Get-AzServiceBusMigration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -352,34 +352,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "59b81547-2944-4938-ae04-d703e402cc90_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "56ff3323-7eee-4e12-8d33-72755f50fa34_M8CH3_M8CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11861" ], - "x-ms-correlation-request-id": [ "2be4e142-1092-4be6-8332-5fe0cb82f8b8" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T112216Z:2be4e142-1092-4be6-8332-5fe0cb82f8b8" ], + "x-ms-correlation-request-id": [ "45f7f529-9062-47ac-a41f-eeb2d9a043be" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T144014Z:45f7f529-9062-47ac-a41f-eeb2d9a043be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:22:15 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:40:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "576" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/$default\",\"name\":\"primaryNSujona4\",\"type\":\"Microsoft.ServiceBus/Namespaces/migrationconfigurations\",\"properties\":{\"provisioningState\":\"Accepted\",\"targetNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSpm7e8a\",\"postMigrationName\":\"postMigrationjp4gc8\",\"migrationState\":\"Reverting\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/$default\",\"name\":\"primaryNSp1xb3a\",\"type\":\"Microsoft.ServiceBus/Namespaces/migrationconfigurations\",\"properties\":{\"provisioningState\":\"Accepted\",\"targetNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNS5doyqa\",\"postMigrationName\":\"postMigration2i9j5p\",\"migrationState\":\"Reverting\"}}", "isContentBase64": false } }, - "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview+10": { + "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "556" ], - "x-ms-client-request-id": [ "88b62802-23cc-4e39-b3ab-cde489bc5040" ], + "x-ms-unique-id": [ "548" ], + "x-ms-client-request-id": [ "9402d112-ce03-4cd6-bc5c-a55701924214" ], "CommandName": [ "Get-AzServiceBusMigration" ], "FullCommandName": [ "Get-AzServiceBusMigration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -394,34 +394,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "a392c073-d5a2-4618-8076-463dc944559b_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "1f41de12-4488-4028-81e9-f9d1232646f6_M8CH3_M8CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11860" ], - "x-ms-correlation-request-id": [ "068b1e06-feaf-4db0-bd6f-3f8e359f19ea" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T112226Z:068b1e06-feaf-4db0-bd6f-3f8e359f19ea" ], + "x-ms-correlation-request-id": [ "cdd30be4-145c-4467-b2d3-a4bcbd5df833" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T144025Z:cdd30be4-145c-4467-b2d3-a4bcbd5df833" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:22:26 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:40:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "576" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/$default\",\"name\":\"primaryNSujona4\",\"type\":\"Microsoft.ServiceBus/Namespaces/migrationconfigurations\",\"properties\":{\"provisioningState\":\"Accepted\",\"targetNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSpm7e8a\",\"postMigrationName\":\"postMigrationjp4gc8\",\"migrationState\":\"Reverting\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/$default\",\"name\":\"primaryNSp1xb3a\",\"type\":\"Microsoft.ServiceBus/Namespaces/migrationconfigurations\",\"properties\":{\"provisioningState\":\"Accepted\",\"targetNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNS5doyqa\",\"postMigrationName\":\"postMigration2i9j5p\",\"migrationState\":\"Reverting\"}}", "isContentBase64": false } }, - "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview+11": { + "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "557" ], - "x-ms-client-request-id": [ "2cdd7174-5bef-4446-9769-ec4efcce3716" ], + "x-ms-unique-id": [ "549" ], + "x-ms-client-request-id": [ "ae129a66-08ed-445b-a642-a02e8cbe5741" ], "CommandName": [ "Get-AzServiceBusMigration" ], "FullCommandName": [ "Get-AzServiceBusMigration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -436,34 +436,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "71ff41a4-e0f9-471a-b447-c2e5486260ae_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "14018a37-778f-4bef-9da3-fbe189cff8b2_M8CH3_M8CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11859" ], - "x-ms-correlation-request-id": [ "4c4e0510-981f-4736-89f2-97f719702360" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T112236Z:4c4e0510-981f-4736-89f2-97f719702360" ], + "x-ms-correlation-request-id": [ "8bf67b47-95af-499c-93cf-a01fd42d6fea" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T144035Z:8bf67b47-95af-499c-93cf-a01fd42d6fea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:22:36 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:40:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "576" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/$default\",\"name\":\"primaryNSujona4\",\"type\":\"Microsoft.ServiceBus/Namespaces/migrationconfigurations\",\"properties\":{\"provisioningState\":\"Accepted\",\"targetNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSpm7e8a\",\"postMigrationName\":\"postMigrationjp4gc8\",\"migrationState\":\"Reverting\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/$default\",\"name\":\"primaryNSp1xb3a\",\"type\":\"Microsoft.ServiceBus/Namespaces/migrationconfigurations\",\"properties\":{\"provisioningState\":\"Accepted\",\"targetNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNS5doyqa\",\"postMigrationName\":\"postMigration2i9j5p\",\"migrationState\":\"Reverting\"}}", "isContentBase64": false } }, - "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview+12": { + "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "558" ], - "x-ms-client-request-id": [ "474cf77b-6ee3-4515-94be-20eb9afa021e" ], + "x-ms-unique-id": [ "550" ], + "x-ms-client-request-id": [ "02d9c02b-1f0a-4221-9009-23391e78c507" ], "CommandName": [ "Get-AzServiceBusMigration" ], "FullCommandName": [ "Get-AzServiceBusMigration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -478,34 +478,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "0a24742e-cbdc-42f8-9167-3a2076dbdef2_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "449ad115-674f-4355-953c-29dc961b2f97_M8CH3_M8CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11858" ], - "x-ms-correlation-request-id": [ "5b01e238-b7a1-4661-96c9-a5afff2a3988" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T112247Z:5b01e238-b7a1-4661-96c9-a5afff2a3988" ], + "x-ms-correlation-request-id": [ "b4677346-375d-42fc-87ee-a644ab149f26" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T144046Z:b4677346-375d-42fc-87ee-a644ab149f26" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:22:46 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:40:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "576" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/$default\",\"name\":\"primaryNSujona4\",\"type\":\"Microsoft.ServiceBus/Namespaces/migrationconfigurations\",\"properties\":{\"provisioningState\":\"Accepted\",\"targetNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSpm7e8a\",\"postMigrationName\":\"postMigrationjp4gc8\",\"migrationState\":\"Reverting\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/$default\",\"name\":\"primaryNSp1xb3a\",\"type\":\"Microsoft.ServiceBus/Namespaces/migrationconfigurations\",\"properties\":{\"provisioningState\":\"Accepted\",\"targetNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNS5doyqa\",\"postMigrationName\":\"postMigration2i9j5p\",\"migrationState\":\"Reverting\"}}", "isContentBase64": false } }, - "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview+13": { + "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "559" ], - "x-ms-client-request-id": [ "daf04e8e-4bd7-4b1c-9d71-7e795cc7eea3" ], + "x-ms-unique-id": [ "551" ], + "x-ms-client-request-id": [ "ca2050ed-d910-457e-ae88-135201ddf255" ], "CommandName": [ "Get-AzServiceBusMigration" ], "FullCommandName": [ "Get-AzServiceBusMigration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -520,34 +520,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "97a46127-c252-42af-829c-945d8dba84c8_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "47ead15a-af54-403b-89af-48e8a2953903_M0CH3_M0CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11857" ], - "x-ms-correlation-request-id": [ "81e41b17-a298-4c31-9482-ac898df9f68b" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T112257Z:81e41b17-a298-4c31-9482-ac898df9f68b" ], + "x-ms-correlation-request-id": [ "41a6e986-f8da-487c-8101-fba3a67b84f0" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T144057Z:41a6e986-f8da-487c-8101-fba3a67b84f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:22:56 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:40:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "576" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/$default\",\"name\":\"primaryNSujona4\",\"type\":\"Microsoft.ServiceBus/Namespaces/migrationconfigurations\",\"properties\":{\"provisioningState\":\"Accepted\",\"targetNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSpm7e8a\",\"postMigrationName\":\"postMigrationjp4gc8\",\"migrationState\":\"Reverting\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/$default\",\"name\":\"primaryNSp1xb3a\",\"type\":\"Microsoft.ServiceBus/Namespaces/migrationconfigurations\",\"properties\":{\"provisioningState\":\"Accepted\",\"targetNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNS5doyqa\",\"postMigrationName\":\"postMigration2i9j5p\",\"migrationState\":\"Reverting\"}}", "isContentBase64": false } }, - "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview+14": { + "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "560" ], - "x-ms-client-request-id": [ "dc46e241-e415-4cfc-809a-a9ee8e8c0291" ], + "x-ms-unique-id": [ "552" ], + "x-ms-client-request-id": [ "98139a5f-bdf2-4f68-bd08-5262cb73461f" ], "CommandName": [ "Get-AzServiceBusMigration" ], "FullCommandName": [ "Get-AzServiceBusMigration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -562,34 +562,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "c094d46f-0c39-4460-b625-be2d87f2b849_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "069526c0-cc72-484e-9382-311808df34a9_M0CH3_M0CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11856" ], - "x-ms-correlation-request-id": [ "64c3933f-ecce-42a9-903f-2b78c10d5396" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T112308Z:64c3933f-ecce-42a9-903f-2b78c10d5396" ], + "x-ms-correlation-request-id": [ "09acdb0a-3144-4222-886a-b6b9b44abf06" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T144108Z:09acdb0a-3144-4222-886a-b6b9b44abf06" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:23:07 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:41:08 GMT" ] }, "ContentHeaders": { "Content-Length": [ "576" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/$default\",\"name\":\"primaryNSujona4\",\"type\":\"Microsoft.ServiceBus/Namespaces/migrationconfigurations\",\"properties\":{\"provisioningState\":\"Accepted\",\"targetNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSpm7e8a\",\"postMigrationName\":\"postMigrationjp4gc8\",\"migrationState\":\"Reverting\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/$default\",\"name\":\"primaryNSp1xb3a\",\"type\":\"Microsoft.ServiceBus/Namespaces/migrationconfigurations\",\"properties\":{\"provisioningState\":\"Accepted\",\"targetNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNS5doyqa\",\"postMigrationName\":\"postMigration2i9j5p\",\"migrationState\":\"Reverting\"}}", "isContentBase64": false } }, - "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview+15": { + "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "561" ], - "x-ms-client-request-id": [ "5b7ed30a-22a2-4389-8171-8dee28fe91d3" ], + "x-ms-unique-id": [ "553" ], + "x-ms-client-request-id": [ "978a6f5a-09ce-4534-a303-2408dfbfa907" ], "CommandName": [ "Get-AzServiceBusMigration" ], "FullCommandName": [ "Get-AzServiceBusMigration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -604,34 +604,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "224c8fa9-0254-4bc0-b740-6e6584f92ea5_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "e63c5fc6-24b1-42d2-a0c7-40ae2c8f206b_M0CH3_M0CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11855" ], - "x-ms-correlation-request-id": [ "82fd93fb-8b52-48f4-97d2-1ce24c157e93" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T112318Z:82fd93fb-8b52-48f4-97d2-1ce24c157e93" ], + "x-ms-correlation-request-id": [ "133977df-0ff8-4e43-9729-4384425ff4ab" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T144119Z:133977df-0ff8-4e43-9729-4384425ff4ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:23:18 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:41:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "576" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/$default\",\"name\":\"primaryNSujona4\",\"type\":\"Microsoft.ServiceBus/Namespaces/migrationconfigurations\",\"properties\":{\"provisioningState\":\"Accepted\",\"targetNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSpm7e8a\",\"postMigrationName\":\"postMigrationjp4gc8\",\"migrationState\":\"Reverting\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/$default\",\"name\":\"primaryNSp1xb3a\",\"type\":\"Microsoft.ServiceBus/Namespaces/migrationconfigurations\",\"properties\":{\"provisioningState\":\"Accepted\",\"targetNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNS5doyqa\",\"postMigrationName\":\"postMigration2i9j5p\",\"migrationState\":\"Reverting\"}}", "isContentBase64": false } }, - "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview+16": { + "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "562" ], - "x-ms-client-request-id": [ "4c5f5203-2098-4388-a67c-15923848dba3" ], + "x-ms-unique-id": [ "554" ], + "x-ms-client-request-id": [ "4a54ee8a-7c0e-484e-8f3e-39ac933b6b92" ], "CommandName": [ "Get-AzServiceBusMigration" ], "FullCommandName": [ "Get-AzServiceBusMigration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -646,34 +646,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "1eabba63-e710-442d-80c4-e3a17b6fbc29_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "990e77e8-d28a-4ce2-9b83-678ea4170b98_M0CH3_M0CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11854" ], - "x-ms-correlation-request-id": [ "d514e381-384f-4876-a878-c9efa93eb30f" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T112329Z:d514e381-384f-4876-a878-c9efa93eb30f" ], + "x-ms-correlation-request-id": [ "5cb86b65-23b6-4241-9164-52978e8dbeb7" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T144129Z:5cb86b65-23b6-4241-9164-52978e8dbeb7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:23:28 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:41:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "419" ], + "Content-Length": [ "576" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/$default\",\"name\":\"primaryNSujona4\",\"type\":\"Microsoft.ServiceBus/Namespaces/migrationconfigurations\",\"properties\":{\"provisioningState\":\"Accepted\",\"targetNamespace\":\"\",\"postMigrationName\":\"postMigrationjp4gc8\",\"migrationState\":\"Active\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/$default\",\"name\":\"primaryNSp1xb3a\",\"type\":\"Microsoft.ServiceBus/Namespaces/migrationconfigurations\",\"properties\":{\"provisioningState\":\"Accepted\",\"targetNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNS5doyqa\",\"postMigrationName\":\"postMigration2i9j5p\",\"migrationState\":\"Reverting\"}}", "isContentBase64": false } }, - "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview+17": { + "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "563" ], - "x-ms-client-request-id": [ "590b7c8b-7b76-405b-9798-b6890429d289" ], + "x-ms-unique-id": [ "555" ], + "x-ms-client-request-id": [ "eb4c93e9-95ea-4e71-b438-8f1fc3082f00" ], "CommandName": [ "Get-AzServiceBusMigration" ], "FullCommandName": [ "Get-AzServiceBusMigration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -688,34 +688,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "b78d6156-43e2-4ccc-97eb-9f3c54071eb8_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "b9884486-6409-4958-99c2-8211912b463d_M0CH3_M0CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11853" ], - "x-ms-correlation-request-id": [ "1d19e10c-483b-43f6-bc80-c92790b1c8b9" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T112339Z:1d19e10c-483b-43f6-bc80-c92790b1c8b9" ], + "x-ms-correlation-request-id": [ "a0f78b29-73c1-4851-b56a-4c5f488d537b" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T144140Z:a0f78b29-73c1-4851-b56a-4c5f488d537b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:23:39 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:41:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "420" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/$default\",\"name\":\"primaryNSujona4\",\"type\":\"Microsoft.ServiceBus/Namespaces/migrationconfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetNamespace\":\"\",\"postMigrationName\":\"postMigrationjp4gc8\",\"migrationState\":\"Active\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/$default\",\"name\":\"primaryNSp1xb3a\",\"type\":\"Microsoft.ServiceBus/Namespaces/migrationconfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetNamespace\":\"\",\"postMigrationName\":\"postMigration2i9j5p\",\"migrationState\":\"Active\"}}", "isContentBase64": false } }, - "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$DELETE+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview+18": { + "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$DELETE+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview+18": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "564" ], - "x-ms-client-request-id": [ "927959cc-5656-455e-8eba-75bb24e9339c" ], + "x-ms-unique-id": [ "556" ], + "x-ms-client-request-id": [ "6a520517-5b43-4326-a340-e6b426cbaea1" ], "CommandName": [ "Remove-AzServiceBusMigration" ], "FullCommandName": [ "Remove-AzServiceBusMigration_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -730,30 +730,30 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "89c8f58f-dfdb-46e9-a51f-2aa54c787ecf_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "6fbc3b93-d5e4-42ec-b220-9e30786378f2_M3CH3_M3CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-correlation-request-id": [ "09912748-e4e0-43e4-8d6d-393d841c88de" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T112349Z:09912748-e4e0-43e4-8d6d-393d841c88de" ], + "x-ms-correlation-request-id": [ "d170754c-53b5-474f-ab89-d7e52d5d2b95" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T144151Z:d170754c-53b5-474f-ab89-d7e52d5d2b95" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:23:49 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:41:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "150" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"message\":\"Cannot delete as Alias and Primary Namespace are same. CorrelationId: 09912748-e4e0-43e4-8d6d-393d841c88de\",\"code\":\"BadRequest\"}}", + "Content": "{\"error\":{\"message\":\"Cannot delete as Alias and Primary Namespace are same. CorrelationId: d170754c-53b5-474f-ab89-d7e52d5d2b95\",\"code\":\"BadRequest\"}}", "isContentBase64": false } }, - "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview+19": { + "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview+19": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview", - "Content": "{\n \"properties\": {\n \"targetNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSpm7e8a\",\n \"postMigrationName\": \"postMigrationjp4gc8\"\n }\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview", + "Content": "{\n \"properties\": {\n \"targetNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNS5doyqa\",\n \"postMigrationName\": \"postMigration2i9j5p\"\n }\n}", "isContentBase64": false, "Headers": { }, @@ -767,35 +767,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "02639109-e674-4a3e-9289-a89c75ca3497_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1129" ], - "x-ms-correlation-request-id": [ "4d34c330-5c16-4962-8c76-51795b7a59e3" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T112357Z:4d34c330-5c16-4962-8c76-51795b7a59e3" ], + "x-ms-request-id": [ "b568c4e7-5060-4162-80dc-60afa7598fea_M3CH3_M3CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1128" ], + "x-ms-correlation-request-id": [ "8b6c0f7a-7158-4c42-8a46-d788a2169108" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T144159Z:8b6c0f7a-7158-4c42-8a46-d788a2169108" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:23:56 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:41:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "577" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/$default\",\"name\":\"primaryNSujona4\",\"type\":\"Microsoft.ServiceBus/Namespaces/migrationconfigurations\",\"properties\":{\"provisioningState\":\"Accepted\",\"targetNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSpm7e8a\",\"postMigrationName\":\"postMigrationjp4gc8\",\"migrationState\":\"Initiating\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/$default\",\"name\":\"primaryNSp1xb3a\",\"type\":\"Microsoft.ServiceBus/Namespaces/migrationconfigurations\",\"properties\":{\"provisioningState\":\"Accepted\",\"targetNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNS5doyqa\",\"postMigrationName\":\"postMigration2i9j5p\",\"migrationState\":\"Initiating\"}}", "isContentBase64": false } }, - "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview+20": { + "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "566" ], - "x-ms-client-request-id": [ "cf6467df-824f-461c-a739-7b11190562d6" ], + "x-ms-unique-id": [ "558" ], + "x-ms-client-request-id": [ "6fda9e5e-cee9-45a2-a283-de44b096a944" ], "CommandName": [ "Start-AzServiceBusMigration" ], "FullCommandName": [ "Start-AzServiceBusMigration_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -809,35 +809,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "b37106aa-5d89-4900-91fc-4bda86f6b916_M1SN1_M1SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], + "x-ms-request-id": [ "f45b58f3-b2e0-46fb-8f60-30cac96e387a_M3CH3_M3CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11852" ], - "x-ms-correlation-request-id": [ "b336fdab-82f8-402d-9f46-5823cdaecfd0" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T112427Z:b336fdab-82f8-402d-9f46-5823cdaecfd0" ], + "x-ms-correlation-request-id": [ "734b7dc7-a830-4641-a970-1515ce47b615" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T144229Z:734b7dc7-a830-4641-a970-1515ce47b615" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:24:27 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:42:29 GMT" ] }, "ContentHeaders": { "Content-Length": [ "577" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/$default\",\"name\":\"primaryNSujona4\",\"type\":\"Microsoft.ServiceBus/Namespaces/migrationconfigurations\",\"properties\":{\"provisioningState\":\"Accepted\",\"targetNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSpm7e8a\",\"postMigrationName\":\"postMigrationjp4gc8\",\"migrationState\":\"Initiating\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/$default\",\"name\":\"primaryNSp1xb3a\",\"type\":\"Microsoft.ServiceBus/Namespaces/migrationconfigurations\",\"properties\":{\"provisioningState\":\"Accepted\",\"targetNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNS5doyqa\",\"postMigrationName\":\"postMigration2i9j5p\",\"migrationState\":\"Initiating\"}}", "isContentBase64": false } }, - "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview+21": { + "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "567" ], - "x-ms-client-request-id": [ "cf6467df-824f-461c-a739-7b11190562d6" ], + "x-ms-unique-id": [ "559" ], + "x-ms-client-request-id": [ "6fda9e5e-cee9-45a2-a283-de44b096a944" ], "CommandName": [ "Start-AzServiceBusMigration" ], "FullCommandName": [ "Start-AzServiceBusMigration_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -851,35 +851,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "dc55ba2d-b9b5-4b84-8a3d-2d0f7f2b240a_M1SN1_M1SN1" ], + "x-ms-request-id": [ "68af9bab-882f-45cb-bac9-ef981e7531aa_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11851" ], - "x-ms-correlation-request-id": [ "f8218911-618a-4929-b3c1-74db5775bf16" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T112457Z:f8218911-618a-4929-b3c1-74db5775bf16" ], + "x-ms-correlation-request-id": [ "195aec11-b9eb-4611-886e-5b5c1de8e69d" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T144301Z:195aec11-b9eb-4611-886e-5b5c1de8e69d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:24:57 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:43:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "577" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/$default\",\"name\":\"primaryNSujona4\",\"type\":\"Microsoft.ServiceBus/Namespaces/migrationconfigurations\",\"properties\":{\"provisioningState\":\"Accepted\",\"targetNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSpm7e8a\",\"postMigrationName\":\"postMigrationjp4gc8\",\"migrationState\":\"Initiating\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/$default\",\"name\":\"primaryNSp1xb3a\",\"type\":\"Microsoft.ServiceBus/Namespaces/migrationconfigurations\",\"properties\":{\"provisioningState\":\"Accepted\",\"targetNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNS5doyqa\",\"postMigrationName\":\"postMigration2i9j5p\",\"migrationState\":\"Initiating\"}}", "isContentBase64": false } }, - "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview+22": { + "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "568" ], - "x-ms-client-request-id": [ "cf6467df-824f-461c-a739-7b11190562d6" ], + "x-ms-unique-id": [ "560" ], + "x-ms-client-request-id": [ "6fda9e5e-cee9-45a2-a283-de44b096a944" ], "CommandName": [ "Start-AzServiceBusMigration" ], "FullCommandName": [ "Start-AzServiceBusMigration_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -893,35 +893,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "0da250fa-832c-462e-bfa3-bef0a10085d6_M1SN1_M1SN1" ], + "x-ms-request-id": [ "2ae1553b-6661-4f80-b9f6-332bc3f8c29a_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11850" ], - "x-ms-correlation-request-id": [ "ccde1ba0-60ab-46f4-8a8e-f219cc83761d" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T112528Z:ccde1ba0-60ab-46f4-8a8e-f219cc83761d" ], + "x-ms-correlation-request-id": [ "37569250-ffc2-4813-b9fa-7dde09acc785" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T144332Z:37569250-ffc2-4813-b9fa-7dde09acc785" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:25:28 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:43:32 GMT" ] }, "ContentHeaders": { "Content-Length": [ "612" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/$default\",\"name\":\"primaryNSujona4\",\"type\":\"Microsoft.ServiceBus/Namespaces/migrationconfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSpm7e8a\",\"postMigrationName\":\"postMigrationjp4gc8\",\"pendingReplicationOperationsCount\":0,\"migrationState\":\"Active\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/$default\",\"name\":\"primaryNSp1xb3a\",\"type\":\"Microsoft.ServiceBus/Namespaces/migrationconfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNS5doyqa\",\"postMigrationName\":\"postMigration2i9j5p\",\"pendingReplicationOperationsCount\":0,\"migrationState\":\"Active\"}}", "isContentBase64": false } }, - "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview+23": { + "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "569" ], - "x-ms-client-request-id": [ "cf6467df-824f-461c-a739-7b11190562d6" ], + "x-ms-unique-id": [ "561" ], + "x-ms-client-request-id": [ "6fda9e5e-cee9-45a2-a283-de44b096a944" ], "CommandName": [ "Start-AzServiceBusMigration" ], "FullCommandName": [ "Start-AzServiceBusMigration_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -935,34 +935,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "a240c64a-5308-471f-832a-df3caf4b524a_M1SN1_M1SN1" ], + "x-ms-request-id": [ "7d03b02a-53a0-4fc0-a430-fb283a30ec16_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11849" ], - "x-ms-correlation-request-id": [ "5ae7d9e2-83d4-48c8-a6d5-8dfe09fe0e1c" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T112529Z:5ae7d9e2-83d4-48c8-a6d5-8dfe09fe0e1c" ], + "x-ms-correlation-request-id": [ "939c096f-e1df-4cd7-b8f6-7ea2051494e5" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T144334Z:939c096f-e1df-4cd7-b8f6-7ea2051494e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:25:28 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:43:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "612" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/$default\",\"name\":\"primaryNSujona4\",\"type\":\"Microsoft.ServiceBus/Namespaces/migrationconfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSpm7e8a\",\"postMigrationName\":\"postMigrationjp4gc8\",\"pendingReplicationOperationsCount\":0,\"migrationState\":\"Active\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/$default\",\"name\":\"primaryNSp1xb3a\",\"type\":\"Microsoft.ServiceBus/Namespaces/migrationconfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNS5doyqa\",\"postMigrationName\":\"postMigration2i9j5p\",\"pendingReplicationOperationsCount\":0,\"migrationState\":\"Active\"}}", "isContentBase64": false } }, - "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview+24": { + "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "570" ], - "x-ms-client-request-id": [ "0406a604-99b5-4377-a821-1daa579d8fbb" ], + "x-ms-unique-id": [ "562" ], + "x-ms-client-request-id": [ "271c169a-9dcd-4409-86d8-a58c7735afc7" ], "CommandName": [ "Get-AzServiceBusMigration" ], "FullCommandName": [ "Get-AzServiceBusMigration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -977,34 +977,34 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "211e0a0c-18dd-4d12-9d69-51f2b5179cde_M1SN1_M1SN1" ], + "x-ms-request-id": [ "aac0752e-1d3d-4eee-bbac-4af41b351782_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11848" ], - "x-ms-correlation-request-id": [ "2442bced-7ff3-47a9-824e-1cd915529e33" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T112530Z:2442bced-7ff3-47a9-824e-1cd915529e33" ], + "x-ms-correlation-request-id": [ "673b8fc9-8c80-41b5-9344-0ce5d402eb99" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T144335Z:673b8fc9-8c80-41b5-9344-0ce5d402eb99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:25:29 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:43:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "612" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/$default\",\"name\":\"primaryNSujona4\",\"type\":\"Microsoft.ServiceBus/Namespaces/migrationconfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSpm7e8a\",\"postMigrationName\":\"postMigrationjp4gc8\",\"pendingReplicationOperationsCount\":0,\"migrationState\":\"Active\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/$default\",\"name\":\"primaryNSp1xb3a\",\"type\":\"Microsoft.ServiceBus/Namespaces/migrationconfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetNamespace\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNS5doyqa\",\"postMigrationName\":\"postMigration2i9j5p\",\"pendingReplicationOperationsCount\":0,\"migrationState\":\"Active\"}}", "isContentBase64": false } }, - "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default/upgrade?api-version=2022-01-01-preview+25": { + "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default/upgrade?api-version=2022-10-01-preview+25": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4/migrationConfigurations/%24default/upgrade?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a/migrationConfigurations/%24default/upgrade?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "571" ], - "x-ms-client-request-id": [ "e22822a5-9db2-4f28-a5eb-95c3105d810c" ], + "x-ms-unique-id": [ "563" ], + "x-ms-client-request-id": [ "7fe783c9-896d-4982-955e-4ffb1a088009" ], "CommandName": [ "Complete-AzServiceBusMigration" ], "FullCommandName": [ "Complete-AzServiceBusMigration_Complete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1019,15 +1019,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "cc9f5105-2b99-4184-8d12-81ef79f9894b_M1SN1_M1SN1" ], + "x-ms-request-id": [ "022eb4ca-ec72-4ba0-9771-6f516ec097c3_M0SN1_M0SN1" ], "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-correlation-request-id": [ "4b76c85c-3060-4045-9b66-be6c837559e0" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T112541Z:4b76c85c-3060-4045-9b66-be6c837559e0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], + "x-ms-correlation-request-id": [ "d2168cd4-9b90-48cc-b271-503c1a2750fe" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T144346Z:d2168cd4-9b90-48cc-b271-503c1a2750fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:25:40 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:43:46 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1037,15 +1037,15 @@ "isContentBase64": false } }, - "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSpm7e8a/disasterRecoveryConfigs/primaryNSujona4?api-version=2022-01-01-preview+26": { + "Start-AzServiceBusMigration+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNS5doyqa/disasterRecoveryConfigs/primaryNSp1xb3a?api-version=2022-10-01-preview+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSpm7e8a/disasterRecoveryConfigs/primaryNSujona4?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNS5doyqa/disasterRecoveryConfigs/primaryNSp1xb3a?api-version=2022-10-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "572" ], - "x-ms-client-request-id": [ "bfff7010-6a4d-427e-81c3-99e40d98ae63" ], + "x-ms-unique-id": [ "564" ], + "x-ms-client-request-id": [ "777323ba-e863-4282-8ed7-9ebed801efcb" ], "CommandName": [ "Get-AzServiceBusGeoDRConfiguration" ], "FullCommandName": [ "Get-AzServiceBusGeoDRConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1060,22 +1060,22 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "29d305ea-2bf8-47f2-a16d-a4dbe7057f24_M0SN1_M0SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11977" ], - "x-ms-correlation-request-id": [ "80737812-b811-4621-802b-feafb89fddb9" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T112941Z:80737812-b811-4621-802b-feafb89fddb9" ], + "x-ms-request-id": [ "36e9433d-b270-4fb1-b43a-ba98dbe977a2_M7CH3_M7CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11847" ], + "x-ms-correlation-request-id": [ "e3593069-8dad-4b5c-b278-c69c11325c02" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T144747Z:e3593069-8dad-4b5c-b278-c69c11325c02" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:29:41 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:47:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "422" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSpm7e8a/disasterRecoveryConfigs/primaryNSujona4\",\"name\":\"primaryNSujona4\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Succeeded\",\"partnerNamespace\":\"\",\"role\":\"PrimaryNotReplicating\",\"type\":\"MetadataReplication\"}}", + "Content": "{\"id\":\"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNS5doyqa/disasterRecoveryConfigs/primaryNSp1xb3a\",\"name\":\"primaryNSp1xb3a\",\"type\":\"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs\",\"properties\":{\"provisioningState\":\"Succeeded\",\"partnerNamespace\":\"\",\"role\":\"PrimaryNotReplicating\",\"type\":\"MetadataReplication\"}}", "isContentBase64": false } } diff --git a/src/ServiceBus/ServiceBus.Autorest/test/Test-AzServiceBusName.Recording.json b/src/ServiceBus/ServiceBus.Autorest/test/Test-AzServiceBusName.Recording.json index 88e45aaeecb2..8caaad1a6088 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/Test-AzServiceBusName.Recording.json +++ b/src/ServiceBus/ServiceBus.Autorest/test/Test-AzServiceBusName.Recording.json @@ -1,9 +1,9 @@ { - "Test-AzServiceBusName+[NoContext]+NamespaceAvailability+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ServiceBus/CheckNameAvailability?api-version=2022-01-01-preview+1": { + "Test-AzServiceBusName+[NoContext]+NamespaceAvailability+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ServiceBus/CheckNameAvailability?api-version=2022-10-01-preview+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ServiceBus/CheckNameAvailability?api-version=2022-01-01-preview", - "Content": "{\n \"name\": \"namespaceNamepfxymc\"\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.ServiceBus/CheckNameAvailability?api-version=2022-10-01-preview", + "Content": "{\n \"name\": \"namespaceNamehjil09\"\n}", "isContentBase64": false, "Headers": { }, @@ -17,15 +17,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "4c9d25e6-47fa-40aa-825c-5ea4d065ae62_M9SN1_M9SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-correlation-request-id": [ "80584bb9-988f-49fe-bf20-5a900ed68002" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T113039Z:80584bb9-988f-49fe-bf20-5a900ed68002" ], + "x-ms-request-id": [ "6abe660d-3c20-4245-8046-384de729f719_M5CH3_M5CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], + "x-ms-correlation-request-id": [ "536103f4-2aa0-4fdd-b773-dd5bbe4fe695" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T144828Z:536103f4-2aa0-4fdd-b773-dd5bbe4fe695" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:30:38 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:48:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "159" ], @@ -36,11 +36,11 @@ "isContentBase64": false } }, - "Test-AzServiceBusName+[NoContext]+AliasAvailability+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/disasterRecoveryConfigs/CheckNameAvailability?api-version=2022-01-01-preview+1": { + "Test-AzServiceBusName+[NoContext]+AliasAvailability+$POST+https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/disasterRecoveryConfigs/CheckNameAvailability?api-version=2022-10-01-preview+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc/disasterRecoveryConfigs/CheckNameAvailability?api-version=2022-01-01-preview", - "Content": "{\n \"name\": \"aliass875up\"\n}", + "RequestUri": "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09/disasterRecoveryConfigs/CheckNameAvailability?api-version=2022-10-01-preview", + "Content": "{\n \"name\": \"aliasq6x0t1\"\n}", "isContentBase64": false, "Headers": { }, @@ -54,15 +54,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "ddfab556-122d-460c-b4e6-e29c1c846b81_M9SN1_M9SN1" ], - "Server-SB": [ "Service-Bus-Resource-Provider/SN1" ], - "Server": [ "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], - "x-ms-correlation-request-id": [ "8f92651e-e351-412b-a7d3-cf9d47a5dc11" ], - "x-ms-routing-request-id": [ "SOUTHCENTRALUS:20221124T113039Z:8f92651e-e351-412b-a7d3-cf9d47a5dc11" ], + "x-ms-request-id": [ "58e3189a-f641-4c62-8981-a0026e3fdacf_M5CH3_M5CH3" ], + "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], + "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], + "x-ms-correlation-request-id": [ "7a88c3f7-a701-498b-82ce-d9d874b8591e" ], + "x-ms-routing-request-id": [ "KOREACENTRAL:20230219T144829Z:7a88c3f7-a701-498b-82ce-d9d874b8591e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 24 Nov 2022 11:30:39 GMT" ] + "Date": [ "Sun, 19 Feb 2023 14:48:29 GMT" ] }, "ContentHeaders": { "Content-Length": [ "38" ], diff --git a/src/ServiceBus/ServiceBus.Autorest/test/deployment-template/DisasterRecoveryParameter.json b/src/ServiceBus/ServiceBus.Autorest/test/deployment-template/DisasterRecoveryParameter.json index 95b4ce78cb10..c09969b26ad1 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/deployment-template/DisasterRecoveryParameter.json +++ b/src/ServiceBus/ServiceBus.Autorest/test/deployment-template/DisasterRecoveryParameter.json @@ -3,16 +3,16 @@ "contentVersion": "1.0.0.0", "parameters": { "primarynamespace_name": { - "value": "primaryNS9yownx" + "value": "primaryNSd7oma3" }, "secondarynamespace_name": { - "value": "secondaryNSkl95do" + "value": "secondaryNSjazpct" }, "migrationPrimaryNamespace": { - "value": "primaryNSujona4" + "value": "primaryNSp1xb3a" }, "migrationSecondaryNamespace": { - "value": "secondaryNSpm7e8a" + "value": "secondaryNS5doyqa" } } } diff --git a/src/ServiceBus/ServiceBus.Autorest/test/deployment-template/keyVaultParameter.json b/src/ServiceBus/ServiceBus.Autorest/test/deployment-template/keyVaultParameter.json index 04ee31caafe4..fca298465bd3 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/deployment-template/keyVaultParameter.json +++ b/src/ServiceBus/ServiceBus.Autorest/test/deployment-template/keyVaultParameter.json @@ -3,13 +3,13 @@ "contentVersion": "1.0.0.0", "parameters": { "key_Vault_Name": { - "value": "keyVaultNamexdjtwk" + "value": "keyVaultNamedur8ab" }, "tenant_id": { "value": "72f988bf-86f1-41af-91ab-2d7cd011db47" }, "object_id": { - "value": "b0cbb70a-a1a5-4253-a506-b5836ce29547" + "value": "05ff947d-d140-41f0-8107-16ca5893799b" }, "object_id_msi1": { "value": "624205aa-192c-4303-9606-990d06cbd997" diff --git a/src/ServiceBus/ServiceBus.Autorest/test/deployment-template/parameter.json b/src/ServiceBus/ServiceBus.Autorest/test/deployment-template/parameter.json index 8e5b6088a795..da7b47620942 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/deployment-template/parameter.json +++ b/src/ServiceBus/ServiceBus.Autorest/test/deployment-template/parameter.json @@ -3,22 +3,22 @@ "contentVersion": "1.0.0.0", "parameters": { "namespace_name": { - "value": "namespaceNamepfxymc" + "value": "namespaceNamehjil09" }, "system_assigned_namespace_name": { - "value": "namespaceNamende8cb" + "value": "namespaceNamembaip3" }, "standard_namespace_name": { - "value": "namespaceNameck4gr6" + "value": "namespaceNametkv0jq" }, "namespaceResourceId": { - "value": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc" + "value": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09" }, "peName1": { - "value": "pe1jlbfx6" + "value": "pe1w0yv9t" }, "peName2": { - "value": "pe2cxqud3" + "value": "pe2otyvgf" } } } diff --git a/src/ServiceBus/ServiceBus.Autorest/test/env.json b/src/ServiceBus/ServiceBus.Autorest/test/env.json index 0168da4d5e83..6a1f9c4dcb8e 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/env.json +++ b/src/ServiceBus/ServiceBus.Autorest/test/env.json @@ -1,43 +1,43 @@ { - "topicSecondaryKey": "q/cFi7aATxe+vgzYZ4qqlAM3FtgLakhyPNmUh9YdHgE=", - "namespaceV9": "namespaceV9ua0z73", - "namespacePrimaryKey": "q/cFi7aATxe+vgzYZ4qqlAM3FtgLakhyPNmUh9YdHgE=", - "topicPrimaryKey": "q/cFi7aATxe+vgzYZ4qqlAM3FtgLakhyPNmUh9YdHgE=", - "pe2": "pe2cxqud3", - "resourceGroup": "resourceGroupAutorestgpheoq", - "postMigrationName": "postMigrationjp4gc8", - "primaryNamespace": "primaryNS9yownx", - "migrationPrimaryNamespaceResourceId": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNSujona4", - "subnetId1": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/AutomatedPowershellTesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default", - "queueSecondaryKey": "q/cFi7aATxe+vgzYZ4qqlAM3FtgLakhyPNmUh9YdHgE=", - "systemAssignedNamespaceName": "namespaceNamende8cb", - "namespaceV2": "namespaceV2dnku5s", - "namespaceV5": "namespaceV59mqfhk", - "namespaceV7": "namespaceV7gt1uke", + "migrationSecondaryNamespaceResourceId": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNS5doyqa", + "queuePrimaryKey": "0LEcx/yFU8sXDd2zckHjaGoPK2eXXdO2uaOftyKomHw=", + "queueSecondaryKey": "0LEcx/yFU8sXDd2zckHjaGoPK2eXXdO2uaOftyKomHw=", + "migrationPrimaryNamespaceResourceId": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSp1xb3a", + "namespaceV5": "namespaceV5xdns25", + "primaryNamespace": "primaryNSd7oma3", + "Tenant": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "namespaceV3": "namespaceV3279pui", + "namespaceResourceId": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/namespaceNamehjil09", + "standardNamespace": "namespaceNametkv0jq", + "topicSecondaryKey": "0LEcx/yFU8sXDd2zckHjaGoPK2eXXdO2uaOftyKomHw=", "blobContainer": "container", - "primaryNamespaceResourceId": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/primaryNS9yownx", - "queuePrimaryKey": "q/cFi7aATxe+vgzYZ4qqlAM3FtgLakhyPNmUh9YdHgE=", + "subnetId1": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/AutomatedPowershellTesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default", + "namespaceV4": "namespaceV4du8ar3", + "namespaceSecondaryKey": "0LEcx/yFU8sXDd2zckHjaGoPK2eXXdO2uaOftyKomHw=", + "subnetId2": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/AutomatedPowershellTesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default2", "storageAccountId": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/AutomatedPowershellTesting/providers/Microsoft.Storage/storageAccounts/testpsstoragaccount", - "namespace": "namespaceNamepfxymc", - "migrationSecondaryNamespaceResourceId": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSpm7e8a", - "pe1": "pe1jlbfx6", - "secondaryNamespaceResourceId": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/secondaryNSkl95do", - "migrationPrimaryNamespace": "primaryNSujona4", - "keyVaultUri": "https://keyVaultNamexdjtwk.vault.azure.net/", - "migrationSecondaryNamespace": "secondaryNSpm7e8a", - "subnetId3": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/AutomatedPowershellTesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default3", - "secondaryNamespace": "secondaryNSkl95do", - "namespaceV4": "namespaceV47aly26", - "namespaceV6": "namespaceV6ne2fd8", + "pe2": "pe2otyvgf", + "namespaceV6": "namespaceV6umnflt", + "secondaryNamespaceResourceId": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/secondaryNSjazpct", + "resourceGroup": "resourceGroupAutorestxe2h9c", + "postMigrationName": "postMigration2i9j5p", + "namespaceV2": "namespaceV26ovc29", + "namespaceV9": "namespaceV94qljkm", + "topicPrimaryKey": "0LEcx/yFU8sXDd2zckHjaGoPK2eXXdO2uaOftyKomHw=", + "migrationSecondaryNamespace": "secondaryNS5doyqa", + "alias": "aliasq6x0t1", + "namespaceV7": "namespaceV7qbxiho", + "namespace": "namespaceNamehjil09", + "keyVaultUri": "https://keyVaultNamedur8ab.vault.azure.net/", + "SubscriptionId": "326100e2-f69d-4268-8503-075374f62b6e", + "namespacePrimaryKey": "0LEcx/yFU8sXDd2zckHjaGoPK2eXXdO2uaOftyKomHw=", "msi2": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2", - "namespaceV3": "namespaceV3mt0g8u", - "namespaceV8": "namespaceV85avye9", - "subnetId2": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/AutomatedPowershellTesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default2", + "migrationPrimaryNamespace": "primaryNSp1xb3a", + "namespaceV8": "namespaceV85v4e0c", + "primaryNamespaceResourceId": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestxe2h9c/providers/Microsoft.ServiceBus/namespaces/primaryNSd7oma3", + "subnetId3": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/AutomatedPowershellTesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default3", + "systemAssignedNamespaceName": "namespaceNamembaip3", "msi1": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1", - "standardNamespace": "namespaceNameck4gr6", - "Tenant": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "namespaceResourceId": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutorestgpheoq/providers/Microsoft.ServiceBus/namespaces/namespaceNamepfxymc", - "alias": "aliass875up", - "SubscriptionId": "326100e2-f69d-4268-8503-075374f62b6e", - "namespaceSecondaryKey": "q/cFi7aATxe+vgzYZ4qqlAM3FtgLakhyPNmUh9YdHgE=" + "secondaryNamespace": "secondaryNSjazpct", + "pe1": "pe1w0yv9t" } diff --git a/src/ServiceBus/ServiceBus.Autorest/test/localEnv.json b/src/ServiceBus/ServiceBus.Autorest/test/localEnv.json new file mode 100644 index 000000000000..7bbb870b214b --- /dev/null +++ b/src/ServiceBus/ServiceBus.Autorest/test/localEnv.json @@ -0,0 +1,43 @@ +{ + "migrationSecondaryNamespace": "secondaryNS70bd5l", + "Tenant": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "postMigrationName": "postMigration8izo02", + "queuePrimaryKey": "zobqk5Yadejx4i/IxA9S6OI1Hgh0CSzY2V/Jn2XDBbU=", + "resourceGroup": "resourceGroupAutoresth9y5k7", + "pe2": "pe2meraf2", + "SubscriptionId": "326100e2-f69d-4268-8503-075374f62b6e", + "namespaceV8": "namespaceV8564bms", + "secondaryNamespace": "secondaryNSne4fcr", + "migrationPrimaryNamespace": "primaryNS07w8gm", + "namespaceSecondaryKey": "zobqk5Yadejx4i/IxA9S6OI1Hgh0CSzY2V/Jn2XDBbU=", + "alias": "alias36f4jx", + "standardNamespace": "namespaceNamepytzea", + "keyVaultUri": "https://keyVaultName6voyhr.vault.azure.net/", + "namespacePrimaryKey": "zobqk5Yadejx4i/IxA9S6OI1Hgh0CSzY2V/Jn2XDBbU=", + "subnetId1": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/AutomatedPowershellTesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default", + "namespaceV9": "namespaceV9wglq0f", + "storageAccountId": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/AutomatedPowershellTesting/providers/Microsoft.Storage/storageAccounts/testpsstoragaccount", + "systemAssignedNamespaceName": "namespaceNamesjih2u", + "msi2": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2", + "namespaceV5": "namespaceV5dqg19s", + "topicSecondaryKey": "zobqk5Yadejx4i/IxA9S6OI1Hgh0CSzY2V/Jn2XDBbU=", + "secondaryNamespaceResourceId": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutoresth9y5k7/providers/Microsoft.ServiceBus/namespaces/secondaryNSne4fcr", + "migrationSecondaryNamespaceResourceId": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutoresth9y5k7/providers/Microsoft.ServiceBus/namespaces/secondaryNS70bd5l", + "namespaceResourceId": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutoresth9y5k7/providers/Microsoft.ServiceBus/namespaces/namespaceNameytbhqx", + "namespaceV6": "namespaceV6knrhdl", + "queueSecondaryKey": "zobqk5Yadejx4i/IxA9S6OI1Hgh0CSzY2V/Jn2XDBbU=", + "migrationPrimaryNamespaceResourceId": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutoresth9y5k7/providers/Microsoft.ServiceBus/namespaces/primaryNS07w8gm", + "namespace": "namespaceNameytbhqx", + "blobContainer": "container", + "primaryNamespace": "primaryNS8s0qhv", + "subnetId3": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/AutomatedPowershellTesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default3", + "namespaceV3": "namespaceV3qortp2", + "namespaceV2": "namespaceV2rjuszc", + "msi1": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1", + "namespaceV4": "namespaceV4kvrdm7", + "primaryNamespaceResourceId": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/resourceGroupAutoresth9y5k7/providers/Microsoft.ServiceBus/namespaces/primaryNS8s0qhv", + "pe1": "pe1c7vpn9", + "subnetId2": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/AutomatedPowershellTesting/providers/Microsoft.Network/virtualNetworks/test-vn-northeurope/subnets/default2", + "topicPrimaryKey": "zobqk5Yadejx4i/IxA9S6OI1Hgh0CSzY2V/Jn2XDBbU=", + "namespaceV7": "namespaceV7g71pno" +} diff --git a/src/ServiceBus/ServiceBus/Az.ServiceBus.psd1 b/src/ServiceBus/ServiceBus/Az.ServiceBus.psd1 index aacbff825dff..bab95e2057f0 100644 --- a/src/ServiceBus/ServiceBus/Az.ServiceBus.psd1 +++ b/src/ServiceBus/ServiceBus/Az.ServiceBus.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 01/12/2022 +# Generated on: 2/20/2023 # @{ @@ -139,7 +139,7 @@ PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. - Tags = 'Azure','ResourceManager','ARM','ServiceBus' + Tags = 'Azure', 'ResourceManager', 'ARM', 'ServiceBus' # A URL to the license for this module. LicenseUri = 'https://aka.ms/azps-license' @@ -164,7 +164,7 @@ PrivateData = @{ } # End of PSData hashtable - } # End of PrivateData hashtable +} # End of PrivateData hashtable # HelpInfo URI of this module # HelpInfoURI = '' diff --git a/src/ServiceBus/ServiceBus/ChangeLog.md b/src/ServiceBus/ServiceBus/ChangeLog.md index 0645fc32944f..fb173a1ce01c 100644 --- a/src/ServiceBus/ServiceBus/ChangeLog.md +++ b/src/ServiceBus/ServiceBus/ChangeLog.md @@ -19,6 +19,8 @@ - Additional information about change #1 --> ## Upcoming Release +* Upgraded API verision to 2022-10-01-preview +* Fixed a bug for `Set-AzServiceBusQueue` ## Version 2.1.0 * Added NamespaceV2 cmdlets for ServiceBus. diff --git a/src/ServiceBus/ServiceBus/help/Approve-AzServiceBusPrivateEndpointConnection.md b/src/ServiceBus/ServiceBus/help/Approve-AzServiceBusPrivateEndpointConnection.md index d9f659b28113..03e499f157fa 100644 --- a/src/ServiceBus/ServiceBus/help/Approve-AzServiceBusPrivateEndpointConnection.md +++ b/src/ServiceBus/ServiceBus/help/Approve-AzServiceBusPrivateEndpointConnection.md @@ -216,7 +216,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection ## NOTES diff --git a/src/ServiceBus/ServiceBus/help/Deny-AzServiceBusPrivateEndpointConnection.md b/src/ServiceBus/ServiceBus/help/Deny-AzServiceBusPrivateEndpointConnection.md index 45a4141234d5..2a624ff4904a 100644 --- a/src/ServiceBus/ServiceBus/help/Deny-AzServiceBusPrivateEndpointConnection.md +++ b/src/ServiceBus/ServiceBus/help/Deny-AzServiceBusPrivateEndpointConnection.md @@ -216,7 +216,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection ## NOTES diff --git a/src/ServiceBus/ServiceBus/help/Get-AzServiceBusAuthorizationRule.md b/src/ServiceBus/ServiceBus/help/Get-AzServiceBusAuthorizationRule.md index 57a9f1a965d0..9c8618eca5ad 100644 --- a/src/ServiceBus/ServiceBus/help/Get-AzServiceBusAuthorizationRule.md +++ b/src/ServiceBus/ServiceBus/help/Get-AzServiceBusAuthorizationRule.md @@ -234,7 +234,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule ## NOTES diff --git a/src/ServiceBus/ServiceBus/help/Get-AzServiceBusGeoDRConfiguration.md b/src/ServiceBus/ServiceBus/help/Get-AzServiceBusGeoDRConfiguration.md index 718998354dfb..4fc2f0656093 100644 --- a/src/ServiceBus/ServiceBus/help/Get-AzServiceBusGeoDRConfiguration.md +++ b/src/ServiceBus/ServiceBus/help/Get-AzServiceBusGeoDRConfiguration.md @@ -157,7 +157,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery ## NOTES diff --git a/src/ServiceBus/ServiceBus/help/Get-AzServiceBusKey.md b/src/ServiceBus/ServiceBus/help/Get-AzServiceBusKey.md index d435de516b3b..e5a199ce0a14 100644 --- a/src/ServiceBus/ServiceBus/help/Get-AzServiceBusKey.md +++ b/src/ServiceBus/ServiceBus/help/Get-AzServiceBusKey.md @@ -255,7 +255,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys ## NOTES diff --git a/src/ServiceBus/ServiceBus/help/Get-AzServiceBusMigration.md b/src/ServiceBus/ServiceBus/help/Get-AzServiceBusMigration.md index d8689a63c0c0..a0761ece4e8f 100644 --- a/src/ServiceBus/ServiceBus/help/Get-AzServiceBusMigration.md +++ b/src/ServiceBus/ServiceBus/help/Get-AzServiceBusMigration.md @@ -149,7 +149,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties ## NOTES diff --git a/src/ServiceBus/ServiceBus/help/Get-AzServiceBusNamespaceV2.md b/src/ServiceBus/ServiceBus/help/Get-AzServiceBusNamespaceV2.md index 76eed0ec920b..1d638a6355b2 100644 --- a/src/ServiceBus/ServiceBus/help/Get-AzServiceBusNamespaceV2.md +++ b/src/ServiceBus/ServiceBus/help/Get-AzServiceBusNamespaceV2.md @@ -205,7 +205,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace ## NOTES diff --git a/src/ServiceBus/ServiceBus/help/Get-AzServiceBusNetworkRuleSet.md b/src/ServiceBus/ServiceBus/help/Get-AzServiceBusNetworkRuleSet.md index a934a17ee8f0..17bf42a187b0 100644 --- a/src/ServiceBus/ServiceBus/help/Get-AzServiceBusNetworkRuleSet.md +++ b/src/ServiceBus/ServiceBus/help/Get-AzServiceBusNetworkRuleSet.md @@ -141,7 +141,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet ## NOTES diff --git a/src/ServiceBus/ServiceBus/help/Get-AzServiceBusPrivateEndpointConnection.md b/src/ServiceBus/ServiceBus/help/Get-AzServiceBusPrivateEndpointConnection.md index e224a8684671..e2c468ecadd6 100644 --- a/src/ServiceBus/ServiceBus/help/Get-AzServiceBusPrivateEndpointConnection.md +++ b/src/ServiceBus/ServiceBus/help/Get-AzServiceBusPrivateEndpointConnection.md @@ -164,7 +164,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateEndpointConnection +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateEndpointConnection ## NOTES diff --git a/src/ServiceBus/ServiceBus/help/Get-AzServiceBusPrivateLink.md b/src/ServiceBus/ServiceBus/help/Get-AzServiceBusPrivateLink.md index 6cd652106163..69d486f95733 100644 --- a/src/ServiceBus/ServiceBus/help/Get-AzServiceBusPrivateLink.md +++ b/src/ServiceBus/ServiceBus/help/Get-AzServiceBusPrivateLink.md @@ -108,7 +108,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IPrivateLinkResourcesListResult +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IPrivateLinkResourcesListResult ## NOTES diff --git a/src/ServiceBus/ServiceBus/help/Get-AzServiceBusQueue.md b/src/ServiceBus/ServiceBus/help/Get-AzServiceBusQueue.md index 052c235b518f..e4fb5be4b568 100644 --- a/src/ServiceBus/ServiceBus/help/Get-AzServiceBusQueue.md +++ b/src/ServiceBus/ServiceBus/help/Get-AzServiceBusQueue.md @@ -214,7 +214,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue ## NOTES diff --git a/src/ServiceBus/ServiceBus/help/Get-AzServiceBusRule.md b/src/ServiceBus/ServiceBus/help/Get-AzServiceBusRule.md index acddf222ee7a..e5001adabee1 100644 --- a/src/ServiceBus/ServiceBus/help/Get-AzServiceBusRule.md +++ b/src/ServiceBus/ServiceBus/help/Get-AzServiceBusRule.md @@ -237,7 +237,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule ## NOTES diff --git a/src/ServiceBus/ServiceBus/help/Get-AzServiceBusSubscription.md b/src/ServiceBus/ServiceBus/help/Get-AzServiceBusSubscription.md index 92a7980fb8f8..f837df2c95b8 100644 --- a/src/ServiceBus/ServiceBus/help/Get-AzServiceBusSubscription.md +++ b/src/ServiceBus/ServiceBus/help/Get-AzServiceBusSubscription.md @@ -230,7 +230,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription ## NOTES diff --git a/src/ServiceBus/ServiceBus/help/Get-AzServiceBusTopic.md b/src/ServiceBus/ServiceBus/help/Get-AzServiceBusTopic.md index aff6d81f9125..db47355d8e3e 100644 --- a/src/ServiceBus/ServiceBus/help/Get-AzServiceBusTopic.md +++ b/src/ServiceBus/ServiceBus/help/Get-AzServiceBusTopic.md @@ -204,7 +204,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic ## NOTES diff --git a/src/ServiceBus/ServiceBus/help/New-AzServiceBusAuthorizationRule.md b/src/ServiceBus/ServiceBus/help/New-AzServiceBusAuthorizationRule.md index 0384200be0a0..33e5da53c7aa 100644 --- a/src/ServiceBus/ServiceBus/help/New-AzServiceBusAuthorizationRule.md +++ b/src/ServiceBus/ServiceBus/help/New-AzServiceBusAuthorizationRule.md @@ -259,7 +259,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule ## NOTES diff --git a/src/ServiceBus/ServiceBus/help/New-AzServiceBusEncryptionConfig.md b/src/ServiceBus/ServiceBus/help/New-AzServiceBusEncryptionConfig.md index b95931e8bf6e..b24f405f7656 100644 --- a/src/ServiceBus/ServiceBus/help/New-AzServiceBusEncryptionConfig.md +++ b/src/ServiceBus/ServiceBus/help/New-AzServiceBusEncryptionConfig.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.dll-Help.xml Module Name: Az.ServiceBus -online version: +online version: https://learn.microsoft.com/powershell/module/az.servicebus/new-azservicebusencryptionconfig schema: 2.0.0 --- diff --git a/src/ServiceBus/ServiceBus/help/New-AzServiceBusGeoDRConfiguration.md b/src/ServiceBus/ServiceBus/help/New-AzServiceBusGeoDRConfiguration.md index b54a85a0fc7a..3e8a063c68eb 100644 --- a/src/ServiceBus/ServiceBus/help/New-AzServiceBusGeoDRConfiguration.md +++ b/src/ServiceBus/ServiceBus/help/New-AzServiceBusGeoDRConfiguration.md @@ -204,7 +204,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IArmDisasterRecovery +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IArmDisasterRecovery ## NOTES diff --git a/src/ServiceBus/ServiceBus/help/New-AzServiceBusIPRuleConfig.md b/src/ServiceBus/ServiceBus/help/New-AzServiceBusIPRuleConfig.md index 8841fd3bef58..e883ded85c4d 100644 --- a/src/ServiceBus/ServiceBus/help/New-AzServiceBusIPRuleConfig.md +++ b/src/ServiceBus/ServiceBus/help/New-AzServiceBusIPRuleConfig.md @@ -73,7 +73,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRules +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRules ## NOTES diff --git a/src/ServiceBus/ServiceBus/help/New-AzServiceBusKey.md b/src/ServiceBus/ServiceBus/help/New-AzServiceBusKey.md index 0f179ba71102..046a8e57ca56 100644 --- a/src/ServiceBus/ServiceBus/help/New-AzServiceBusKey.md +++ b/src/ServiceBus/ServiceBus/help/New-AzServiceBusKey.md @@ -289,7 +289,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IAccessKeys +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IAccessKeys ## NOTES diff --git a/src/ServiceBus/ServiceBus/help/New-AzServiceBusKeyVaultPropertiesObject.md b/src/ServiceBus/ServiceBus/help/New-AzServiceBusKeyVaultPropertiesObject.md index a5b5d45963d3..6fc51b574491 100644 --- a/src/ServiceBus/ServiceBus/help/New-AzServiceBusKeyVaultPropertiesObject.md +++ b/src/ServiceBus/ServiceBus/help/New-AzServiceBusKeyVaultPropertiesObject.md @@ -122,7 +122,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.KeyVaultProperties +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.KeyVaultProperties ## NOTES diff --git a/src/ServiceBus/ServiceBus/help/New-AzServiceBusNamespaceV2.md b/src/ServiceBus/ServiceBus/help/New-AzServiceBusNamespaceV2.md index 15f6819cfd1d..a44c7577108e 100644 --- a/src/ServiceBus/ServiceBus/help/New-AzServiceBusNamespaceV2.md +++ b/src/ServiceBus/ServiceBus/help/New-AzServiceBusNamespaceV2.md @@ -15,10 +15,11 @@ Creates a new ServiceBus namespace. ``` New-AzServiceBusNamespaceV2 -Name -ResourceGroupName [-SubscriptionId ] -Location [-AlternateName ] [-DisableLocalAuth] [-KeyVaultProperty ] - [-RequireInfrastructureEncryption] [-IdentityType ] [-ZoneRedundant] - [-UserAssignedIdentityId ] [-MinimumTlsVersion ] - [-PublicNetworkAccess ] [-SkuName ] [-SkuCapacity ] [-Tag ] - [-DefaultProfile ] [-AsJob] [-NoWait] [-WhatIf] [-Confirm] [] + [-PremiumMessagingPartition ] [-RequireInfrastructureEncryption] + [-IdentityType ] [-ZoneRedundant] [-UserAssignedIdentityId ] + [-MinimumTlsVersion ] [-PublicNetworkAccess ] [-SkuName ] + [-SkuCapacity ] [-Tag ] [-DefaultProfile ] [-AsJob] [-NoWait] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION @@ -278,7 +279,7 @@ Properties of KeyVault To construct, see NOTES section for KEYVAULTPROPERTY properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties[] +Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties[] Parameter Sets: (All) Aliases: @@ -350,6 +351,23 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -PremiumMessagingPartition +The number of partitions of a Service Bus namespace. +This property is only applicable to Premium SKU namespaces. +The default value is 1 and possible values are 1, 2 and 4 + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -PublicNetworkAccess This determines if traffic is allowed over public network. By default it is enabled. @@ -525,7 +543,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace ## NOTES diff --git a/src/ServiceBus/ServiceBus/help/New-AzServiceBusQueue.md b/src/ServiceBus/ServiceBus/help/New-AzServiceBusQueue.md index 569594327aa5..aea880337461 100644 --- a/src/ServiceBus/ServiceBus/help/New-AzServiceBusQueue.md +++ b/src/ServiceBus/ServiceBus/help/New-AzServiceBusQueue.md @@ -434,7 +434,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue ## NOTES diff --git a/src/ServiceBus/ServiceBus/help/New-AzServiceBusRule.md b/src/ServiceBus/ServiceBus/help/New-AzServiceBusRule.md index 520de44fe2d6..c9aabc25c9f2 100644 --- a/src/ServiceBus/ServiceBus/help/New-AzServiceBusRule.md +++ b/src/ServiceBus/ServiceBus/help/New-AzServiceBusRule.md @@ -465,7 +465,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule ## NOTES diff --git a/src/ServiceBus/ServiceBus/help/New-AzServiceBusSubscription.md b/src/ServiceBus/ServiceBus/help/New-AzServiceBusSubscription.md index 65a71bc52b95..c0e23a175261 100644 --- a/src/ServiceBus/ServiceBus/help/New-AzServiceBusSubscription.md +++ b/src/ServiceBus/ServiceBus/help/New-AzServiceBusSubscription.md @@ -441,7 +441,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription ## NOTES diff --git a/src/ServiceBus/ServiceBus/help/New-AzServiceBusTopic.md b/src/ServiceBus/ServiceBus/help/New-AzServiceBusTopic.md index 9a8fe78a5f8e..8cf50f819015 100644 --- a/src/ServiceBus/ServiceBus/help/New-AzServiceBusTopic.md +++ b/src/ServiceBus/ServiceBus/help/New-AzServiceBusTopic.md @@ -347,7 +347,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic ## NOTES diff --git a/src/ServiceBus/ServiceBus/help/New-AzServiceBusVirtualNetworkRuleConfig.md b/src/ServiceBus/ServiceBus/help/New-AzServiceBusVirtualNetworkRuleConfig.md index f8d4e9bad724..f560431246b3 100644 --- a/src/ServiceBus/ServiceBus/help/New-AzServiceBusVirtualNetworkRuleConfig.md +++ b/src/ServiceBus/ServiceBus/help/New-AzServiceBusVirtualNetworkRuleConfig.md @@ -74,7 +74,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRules +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRules ## NOTES diff --git a/src/ServiceBus/ServiceBus/help/Remove-AzServiceBusAuthorizationRule.md b/src/ServiceBus/ServiceBus/help/Remove-AzServiceBusAuthorizationRule.md index 151f86b49f03..9b58a5bc16eb 100644 --- a/src/ServiceBus/ServiceBus/help/Remove-AzServiceBusAuthorizationRule.md +++ b/src/ServiceBus/ServiceBus/help/Remove-AzServiceBusAuthorizationRule.md @@ -252,7 +252,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule ## NOTES diff --git a/src/ServiceBus/ServiceBus/help/Set-AzServiceBusAuthorizationRule.md b/src/ServiceBus/ServiceBus/help/Set-AzServiceBusAuthorizationRule.md index 9032aaddf687..da7dca018d70 100644 --- a/src/ServiceBus/ServiceBus/help/Set-AzServiceBusAuthorizationRule.md +++ b/src/ServiceBus/ServiceBus/help/Set-AzServiceBusAuthorizationRule.md @@ -285,7 +285,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbAuthorizationRule +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbAuthorizationRule ## NOTES diff --git a/src/ServiceBus/ServiceBus/help/Set-AzServiceBusNamespaceV2.md b/src/ServiceBus/ServiceBus/help/Set-AzServiceBusNamespaceV2.md index b822e9f1b342..2fd645a67c4c 100644 --- a/src/ServiceBus/ServiceBus/help/Set-AzServiceBusNamespaceV2.md +++ b/src/ServiceBus/ServiceBus/help/Set-AzServiceBusNamespaceV2.md @@ -383,7 +383,7 @@ Properties of KeyVault To construct, see NOTES section for KEYVAULTPROPERTY properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IKeyVaultProperties[] +Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IKeyVaultProperties[] Parameter Sets: (All) Aliases: @@ -600,7 +600,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbNamespace +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbNamespace ## NOTES diff --git a/src/ServiceBus/ServiceBus/help/Set-AzServiceBusNetworkRuleSet.md b/src/ServiceBus/ServiceBus/help/Set-AzServiceBusNetworkRuleSet.md index cf603a701494..e145c71f9856 100644 --- a/src/ServiceBus/ServiceBus/help/Set-AzServiceBusNetworkRuleSet.md +++ b/src/ServiceBus/ServiceBus/help/Set-AzServiceBusNetworkRuleSet.md @@ -188,7 +188,7 @@ List of IpRules To construct, see NOTES section for IPRULE properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetIPRules[] +Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetIPRules[] Parameter Sets: (All) Aliases: @@ -297,7 +297,7 @@ List of VirtualNetwork Rules To construct, see NOTES section for VIRTUALNETWORKRULE properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INwRuleSetVirtualNetworkRules[] +Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INwRuleSetVirtualNetworkRules[] Parameter Sets: (All) Aliases: @@ -348,7 +348,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.INetworkRuleSet +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.INetworkRuleSet ## NOTES diff --git a/src/ServiceBus/ServiceBus/help/Set-AzServiceBusQueue.md b/src/ServiceBus/ServiceBus/help/Set-AzServiceBusQueue.md index 263030c2a31e..d2ffc1fd0667 100644 --- a/src/ServiceBus/ServiceBus/help/Set-AzServiceBusQueue.md +++ b/src/ServiceBus/ServiceBus/help/Set-AzServiceBusQueue.md @@ -489,7 +489,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbQueue +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbQueue ## NOTES diff --git a/src/ServiceBus/ServiceBus/help/Set-AzServiceBusRule.md b/src/ServiceBus/ServiceBus/help/Set-AzServiceBusRule.md index c1a4b89d0fae..dd75d1d9fe9e 100644 --- a/src/ServiceBus/ServiceBus/help/Set-AzServiceBusRule.md +++ b/src/ServiceBus/ServiceBus/help/Set-AzServiceBusRule.md @@ -525,7 +525,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IRule +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IRule ## NOTES diff --git a/src/ServiceBus/ServiceBus/help/Set-AzServiceBusSubscription.md b/src/ServiceBus/ServiceBus/help/Set-AzServiceBusSubscription.md index c89c8f30bfb8..fa0b211bccc9 100644 --- a/src/ServiceBus/ServiceBus/help/Set-AzServiceBusSubscription.md +++ b/src/ServiceBus/ServiceBus/help/Set-AzServiceBusSubscription.md @@ -466,7 +466,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbSubscription +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbSubscription ## NOTES diff --git a/src/ServiceBus/ServiceBus/help/Set-AzServiceBusTopic.md b/src/ServiceBus/ServiceBus/help/Set-AzServiceBusTopic.md index 340ac2daa3af..e0ab37bb6237 100644 --- a/src/ServiceBus/ServiceBus/help/Set-AzServiceBusTopic.md +++ b/src/ServiceBus/ServiceBus/help/Set-AzServiceBusTopic.md @@ -412,7 +412,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ISbTopic +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ISbTopic ## NOTES diff --git a/src/ServiceBus/ServiceBus/help/Start-AzServiceBusMigration.md b/src/ServiceBus/ServiceBus/help/Start-AzServiceBusMigration.md index 44487e9737f0..9fd94f4bf81b 100644 --- a/src/ServiceBus/ServiceBus/help/Start-AzServiceBusMigration.md +++ b/src/ServiceBus/ServiceBus/help/Start-AzServiceBusMigration.md @@ -211,7 +211,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.IMigrationConfigProperties +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.IMigrationConfigProperties ## NOTES diff --git a/src/ServiceBus/ServiceBus/help/Test-AzServiceBusName.md b/src/ServiceBus/ServiceBus/help/Test-AzServiceBusName.md index f9442e384d66..675b23567e4d 100644 --- a/src/ServiceBus/ServiceBus/help/Test-AzServiceBusName.md +++ b/src/ServiceBus/ServiceBus/help/Test-AzServiceBusName.md @@ -169,7 +169,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api202201Preview.ICheckNameAvailabilityResult +### Microsoft.Azure.PowerShell.Cmdlets.ServiceBus.Models.Api20221001Preview.ICheckNameAvailabilityResult ## NOTES diff --git a/src/ServiceLinker/Az.ServiceLinker.format.ps1xml b/src/ServiceLinker/Az.ServiceLinker.format.ps1xml index 4c6d9450dd26..8c1c158049e7 100644 --- a/src/ServiceLinker/Az.ServiceLinker.format.ps1xml +++ b/src/ServiceLinker/Az.ServiceLinker.format.ps1xml @@ -8,31 +8,61 @@ + + + + + + + + + + + + + + + + + ConnectorName + + + DryrunName + LinkerName + + Location + + + ResourceGroupName + ResourceUri + + SubscriptionId + - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ErrorDetail + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ErrorDetail - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ErrorDetail + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ErrorDetail @@ -64,9 +94,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.Operation + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.Operation - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.Operation + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.Operation @@ -104,9 +134,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.OperationDisplay + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.OperationDisplay - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.OperationDisplay + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.OperationDisplay @@ -144,9 +174,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.OperationListResult + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.OperationListResult - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.OperationListResult + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.OperationListResult @@ -166,15 +196,33 @@ - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ProxyResource + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ProxyResource - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ProxyResource + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ProxyResource + + + + + + + + + + + + + + + + + + @@ -182,15 +230,33 @@ Name + + SystemDataCreatedAt + + + SystemDataCreatedBy + + + SystemDataCreatedByType + + + SystemDataLastModifiedAt + + + SystemDataLastModifiedBy + + + SystemDataLastModifiedByType + - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.Resource + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.Resource - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.Resource + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.Resource @@ -210,9 +276,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.SystemData + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.SystemData - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.SystemData + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.SystemData @@ -262,15 +328,18 @@ - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.AuthInfoBase + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AccessKeyInfoBase - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.AuthInfoBase + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AccessKeyInfoBase + + + @@ -278,27 +347,30 @@ AuthType + + Permission + - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.AzureKeyVaultProperties + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AuthInfoBase - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.AzureKeyVaultProperties + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AuthInfoBase - + - ConnectAsKubernetesCsiDriver + AuthType @@ -306,21 +378,21 @@ - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ConfluentBootstrapServer + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AzureKeyVaultProperties - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ConfluentBootstrapServer + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AzureKeyVaultProperties - + - Endpoint + ConnectAsKubernetesCsiDriver @@ -328,21 +400,27 @@ - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ConfluentSchemaRegistry + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.BasicErrorDryrunPrerequisiteResult - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ConfluentSchemaRegistry + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.BasicErrorDryrunPrerequisiteResult - + + + + - Endpoint + Code + + + Message @@ -350,33 +428,27 @@ - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.KeyVaultSecretReferenceSecretInfo + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationInfo - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.KeyVaultSecretReferenceSecretInfo + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationInfo - - - - + - + - SecretType - - - Name + Action - Version + DeleteOrUpdateBehavior @@ -384,27 +456,21 @@ - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.KeyVaultSecretUriSecretInfo + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationInfoAdditionalConfigurations - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.KeyVaultSecretUriSecretInfo + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationInfoAdditionalConfigurations - - - - + - SecretType - - - Value + Item @@ -412,21 +478,21 @@ - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.LinkerList + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationInfoCustomizedKeys - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.LinkerList + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationInfoCustomizedKeys - + - NextLink + Item @@ -434,33 +500,27 @@ - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.LinkerProperties + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationName - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.LinkerProperties + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationName - - - - + - + - ClientType - - - ProvisioningState + Description - Scope + Value @@ -468,21 +528,21 @@ - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.LinkerResource + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationNameResult - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.LinkerResource + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationNameResult - + - Name + NextLink @@ -490,9 +550,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SecretAuthInfo + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationNames - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SecretAuthInfo + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationNames @@ -500,7 +560,10 @@ - + + + + @@ -510,7 +573,10 @@ AuthType - Name + ClientType + + + TargetService @@ -518,21 +584,21 @@ - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SecretInfoBase + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfluentBootstrapServer - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SecretInfoBase + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfluentBootstrapServer - + - SecretType + Endpoint @@ -540,21 +606,21 @@ - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SecretStore + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfluentSchemaRegistry - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SecretStore + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfluentSchemaRegistry - + - KeyVaultId + Endpoint @@ -562,79 +628,105 @@ - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ServicePrincipalCertificateAuthInfo + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.CreateOrUpdateDryrunParameters - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ServicePrincipalCertificateAuthInfo + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.CreateOrUpdateDryrunParameters - + - + - + - + - - - - - - AuthType - - - Certificate - - - ClientId - - - PrincipalId - - - - - - - - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ServicePrincipalSecretAuthInfo - - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ServicePrincipalSecretAuthInfo - - - - + - + - + - + + + + + + + + + + + + + + + + + + + + + + - AuthType + ActionName - ClientId + ClientType - PrincipalId + ConfigurationInfoAction - Secret + ConfigurationInfoDeleteOrUpdateBehavior + + + FirewallRuleAzureService + + + FirewallRuleCallerClientIP + + + FirewallRuleIPRange + + + ProvisioningState + + + PublicNetworkSolutionAction + + + PublicNetworkSolutionDeleteOrUpdateBehavior + + + Scope + + + SecretStoreKeyVaultId + + + SecretStoreKeyVaultSecretName + + + VNetSolutionDeleteOrUpdateBehavior + + + VNetSolutionType @@ -642,27 +734,21 @@ - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SourceConfiguration + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DatabaseAadAuthInfo - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SourceConfiguration + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DatabaseAadAuthInfo - - - - + - Name - - - Value + UserName @@ -670,21 +756,21 @@ - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SystemAssignedIdentityAuthInfo + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunList - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SystemAssignedIdentityAuthInfo + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunList - + - AuthType + NextLink @@ -692,33 +778,45 @@ - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.UserAssignedIdentityAuthInfo + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunOperationPreview - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.UserAssignedIdentityAuthInfo + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunOperationPreview - + - + - + + + + + + + - AuthType + Action - ClientId + Description - SubscriptionId + Name + + + OperationType + + + Scope @@ -726,27 +824,21 @@ - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ValidateOperationResult + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunParameters - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ValidateOperationResult + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunParameters - - - - + - ResourceId - - - Status + ActionName @@ -754,26 +846,782 @@ - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ValidateResult + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunProperties - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ValidateResult + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunProperties - - - - - - - - - - - - - + + + + + + + + ProvisioningState + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunResource + + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunResource + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Name + + + SystemDataCreatedAt + + + SystemDataCreatedBy + + + SystemDataCreatedByType + + + SystemDataLastModifiedAt + + + SystemDataLastModifiedBy + + + SystemDataLastModifiedByType + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.FirewallRules + + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.FirewallRules + + + + + + + + + + + + + + + + + + AzureService + + + CallerClientIP + + + IPRange + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.KeyVaultSecretReferenceSecretInfo + + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.KeyVaultSecretReferenceSecretInfo + + + + + + + + + + + + + + + + + + SecretType + + + Name + + + Version + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.KeyVaultSecretUriSecretInfo + + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.KeyVaultSecretUriSecretInfo + + + + + + + + + + + + + + + SecretType + + + Value + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.LinkerProperties + + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.LinkerProperties + + + + + + + + + + + + + + + + + + ClientType + + + ProvisioningState + + + Scope + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.LinkerResource + + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.LinkerResource + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Name + + + SystemDataCreatedAt + + + SystemDataCreatedBy + + + SystemDataCreatedByType + + + SystemDataLastModifiedAt + + + SystemDataLastModifiedBy + + + SystemDataLastModifiedByType + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.PermissionsMissingDryrunPrerequisiteResult + + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.PermissionsMissingDryrunPrerequisiteResult + + + + + + + + + + + + + + + + + + Permission + + + RecommendedRole + + + Scope + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.PublicNetworkSolution + + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.PublicNetworkSolution + + + + + + + + + + + + + + + Action + + + DeleteOrUpdateBehavior + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ResourceList + + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ResourceList + + + + + + + + + + + + NextLink + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SecretAuthInfo + + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SecretAuthInfo + + + + + + + + + + + + + + + AuthType + + + Name + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SecretInfoBase + + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SecretInfoBase + + + + + + + + + + + + SecretType + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SecretStore + + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SecretStore + + + + + + + + + + + + + + + KeyVaultId + + + KeyVaultSecretName + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SelfHostedServer + + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SelfHostedServer + + + + + + + + + + + + Endpoint + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ServicePrincipalCertificateAuthInfo + + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ServicePrincipalCertificateAuthInfo + + + + + + + + + + + + + + + + + + + + + + + + + + + AuthType + + + Certificate + + + ClientId + + + DeleteOrUpdateBehavior + + + PrincipalId + + + Role + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ServicePrincipalSecretAuthInfo + + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ServicePrincipalSecretAuthInfo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + AuthType + + + UserName + + + ClientId + + + DeleteOrUpdateBehavior + + + PrincipalId + + + Role + + + Secret + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SourceConfiguration + + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SourceConfiguration + + + + + + + + + + + + + + + Name + + + Value + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SystemAssignedIdentityAuthInfo + + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SystemAssignedIdentityAuthInfo + + + + + + + + + + + + + + + + + + + + + AuthType + + + UserName + + + DeleteOrUpdateBehavior + + + Role + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.UserAccountAuthInfo + + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.UserAccountAuthInfo + + + + + + + + + + + + + + + + + + + + + + + + AuthType + + + UserName + + + DeleteOrUpdateBehavior + + + PrincipalId + + + Role + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.UserAssignedIdentityAuthInfo + + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.UserAssignedIdentityAuthInfo + + + + + + + + + + + + + + + + + + + + + + + + + + + AuthType + + + UserName + + + ClientId + + + DeleteOrUpdateBehavior + + + Role + + + SubscriptionId + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ValidateOperationResult + + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ValidateOperationResult + + + + + + + + + + + + + + + ResourceId + + + Status + + + + + + + + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ValidateResult + + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ValidateResult + + + + + + + + + + + + + + + + + @@ -812,9 +1660,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ValidationResultItem + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ValidationResultItem - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ValidationResultItem + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ValidationResultItem @@ -858,9 +1706,9 @@ - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ValueSecretInfo + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ValueSecretInfo - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ValueSecretInfo + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ValueSecretInfo @@ -885,5 +1733,27 @@ + + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.VNetSolution + + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.VNetSolution + + + + + + + + + + + + DeleteOrUpdateBehavior + + + + + + \ No newline at end of file diff --git a/src/ServiceLinker/Az.ServiceLinker.psd1 b/src/ServiceLinker/Az.ServiceLinker.psd1 index fb161db73c09..df0a2c682a48 100644 --- a/src/ServiceLinker/Az.ServiceLinker.psd1 +++ b/src/ServiceLinker/Az.ServiceLinker.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 5/19/2022 +# Generated on: 2/17/2023 # @{ @@ -72,6 +72,7 @@ FormatsToProcess = './Az.ServiceLinker.format.ps1xml' FunctionsToExport = 'Get-AzServiceLinkerConfigurationForContainerApp', 'Get-AzServiceLinkerConfigurationForSpringCloud', 'Get-AzServiceLinkerConfigurationForWebApp', + 'Get-AzServiceLinkerConfigurationName', 'Get-AzServiceLinkerForContainerApp', 'Get-AzServiceLinkerForSpringCloud', 'Get-AzServiceLinkerForWebApp', 'New-AzServiceLinkerAzureResourceObject', @@ -84,7 +85,7 @@ FunctionsToExport = 'Get-AzServiceLinkerConfigurationForContainerApp', 'New-AzServiceLinkerSystemAssignedIdentityAuthInfoObject', 'New-AzServiceLinkerUserAssignedIdentityAuthInfoObject', 'Remove-AzServiceLinkerForContainerApp', - 'Remove-AzServiceLinkerForSpringcloud', + 'Remove-AzServiceLinkerForSpringCloud', 'Remove-AzServiceLinkerForWebApp', 'Test-AzServiceLinkerForContainerApp', 'Test-AzServiceLinkerForSpringCloud', @@ -129,7 +130,7 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* First preview release for module Az.ServiceLinker' + # ReleaseNotes = '' # Prerelease string of this module # Prerelease = '' diff --git a/src/ServiceLinker/Az.ServiceLinker.psm1 b/src/ServiceLinker/Az.ServiceLinker.psm1 index 61a4a524b4c9..f8133c3801b1 100644 --- a/src/ServiceLinker/Az.ServiceLinker.psm1 +++ b/src/ServiceLinker/Az.ServiceLinker.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/ServiceLinker/Changelog.md b/src/ServiceLinker/Changelog.md index 4dd5905609f3..933e568d9876 100644 --- a/src/ServiceLinker/Changelog.md +++ b/src/ServiceLinker/Changelog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Updated API version to 2022-11-01-preview ## Version 0.1.0 * First preview release for module Az.ServiceLinker diff --git a/src/ServiceLinker/README.md b/src/ServiceLinker/README.md index 6252d388e810..dae874de4b55 100644 --- a/src/ServiceLinker/README.md +++ b/src/ServiceLinker/README.md @@ -30,18 +30,18 @@ For information on how to develop for `Az.ServiceLinker`, see [how-to.md](how-to > see https://aka.ms/autorest ``` yaml -branch: 3abdf3eaf45b42d78e242a2cca4a977e8dcf3103 +branch: e7bf3adfa2d5e5cdbb804eec35279501794f461c require: # readme.azure.noprofile.md is the common configuration file - $(this-folder)/../readme.azure.noprofile.md input-file: # You need to specify your swagger files here. - - $(repo)/specification/servicelinker/resource-manager/Microsoft.ServiceLinker/stable/2022-05-01/servicelinker.json + - $(repo)/specification/servicelinker/resource-manager/Microsoft.ServiceLinker/preview/2022-11-01-preview/servicelinker.json # If the swagger has not been put in the repo, you may uncomment the following line and refer to it locally # - $(this-folder)/../APISpecs/servicelinker/resource-manager/Microsoft.ServiceLinker/stable/2022-05-01/servicelinker.json # For new RP, the version is 0.1.0 -module-version: 0.1.0 +module-version: 0.1.1 # Normally, title is the service name title: ServiceLinker # subject-prefix: "ServiceLinker" @@ -61,6 +61,13 @@ directive: - where: verb: Set remove: true + - where: + subject: ConnectorDryrun|Connector|ConnectorConfiguration + remove: true + - where: + verb: New|Update + parameter-name: (.*)DeleteOrUpdateBehavior$ + hide: true - from: swagger-document where: - $.paths["/{resourceUri}/providers/Microsoft.ServiceLinker/linkers/{linkerName}"].put.parameters @@ -104,5 +111,4 @@ directive: set: default: script: '"none"' - ``` diff --git a/src/ServiceLinker/ServiceLinker.sln b/src/ServiceLinker/ServiceLinker.sln index e89d5f48a02f..faaaf2d47472 100644 --- a/src/ServiceLinker/ServiceLinker.sln +++ b/src/ServiceLinker/ServiceLinker.sln @@ -1,104 +1,58 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 16 -VisualStudioVersion = 16.0.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", "{D07D54B4-486C-4449-BC4B-37D05DF23A72}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Accounts", "..\Accounts\Accounts\Accounts.csproj", "{B118959B-3419-435D-830A-3B59F43C7074}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authentication", "..\Accounts\Authentication\Authentication.csproj", "{E35BE797-EFF1-4701-BBFD-D42AE3552272}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AssemblyLoading", "..\Accounts\AssemblyLoading\AssemblyLoading.csproj", "{30C368D7-E9DF-4DDB-92AB-5F57BAEFD9DB}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authentication.ResourceManager", "..\Accounts\Authentication.ResourceManager\Authentication.ResourceManager.csproj", "{CEF2650C-91AF-4EED-9141-7188B70BC582}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authentication", "..\Accounts\Authentication\Authentication.csproj", "{EA46BD77-E603-45E1-ABDE-A8D216F9A6C6}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AuthenticationAssemblyLoadContext", "..\Accounts\AuthenticationAssemblyLoadContext\AuthenticationAssemblyLoadContext.csproj", "{B910AA7E-1720-4C71-8AF0-4D56B94E087D}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authentication.ResourceManager", "..\Accounts\Authentication.ResourceManager\Authentication.ResourceManager.csproj", "{A7BC163E-B756-44F0-A4B6-19835488AC80}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authenticators", "..\Accounts\Authenticators\Authenticators.csproj", "{69256F27-92A2-4AFA-A8D7-927DD1B35838}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AuthenticationAssemblyLoadContext", "..\Accounts\AuthenticationAssemblyLoadContext\AuthenticationAssemblyLoadContext.csproj", "{5E9CA0A4-4E3A-4B26-B475-3B5BE42B868E}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.ServiceLinker", "Az.ServiceLinker.csproj", "{16C48553-31E3-47C7-A477-DC2457672362}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authenticators", "..\Accounts\Authenticators\Authenticators.csproj", "{9E2AB3C0-1844-46E6-81E8-2EF6E245EEBA}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.ServiceLinker", "Az.ServiceLinker.csproj", "{D647B496-0E93-4A2D-B7E6-D66DA93F406B}" 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 - {D07D54B4-486C-4449-BC4B-37D05DF23A72}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {D07D54B4-486C-4449-BC4B-37D05DF23A72}.Debug|Any CPU.Build.0 = Debug|Any CPU - {D07D54B4-486C-4449-BC4B-37D05DF23A72}.Debug|x64.ActiveCfg = Debug|Any CPU - {D07D54B4-486C-4449-BC4B-37D05DF23A72}.Debug|x64.Build.0 = Debug|Any CPU - {D07D54B4-486C-4449-BC4B-37D05DF23A72}.Debug|x86.ActiveCfg = Debug|Any CPU - {D07D54B4-486C-4449-BC4B-37D05DF23A72}.Debug|x86.Build.0 = Debug|Any CPU - {D07D54B4-486C-4449-BC4B-37D05DF23A72}.Release|Any CPU.ActiveCfg = Release|Any CPU - {D07D54B4-486C-4449-BC4B-37D05DF23A72}.Release|Any CPU.Build.0 = Release|Any CPU - {D07D54B4-486C-4449-BC4B-37D05DF23A72}.Release|x64.ActiveCfg = Release|Any CPU - {D07D54B4-486C-4449-BC4B-37D05DF23A72}.Release|x64.Build.0 = Release|Any CPU - {D07D54B4-486C-4449-BC4B-37D05DF23A72}.Release|x86.ActiveCfg = Release|Any CPU - {D07D54B4-486C-4449-BC4B-37D05DF23A72}.Release|x86.Build.0 = Release|Any CPU - {E35BE797-EFF1-4701-BBFD-D42AE3552272}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {E35BE797-EFF1-4701-BBFD-D42AE3552272}.Debug|Any CPU.Build.0 = Debug|Any CPU - {E35BE797-EFF1-4701-BBFD-D42AE3552272}.Debug|x64.ActiveCfg = Debug|Any CPU - {E35BE797-EFF1-4701-BBFD-D42AE3552272}.Debug|x64.Build.0 = Debug|Any CPU - {E35BE797-EFF1-4701-BBFD-D42AE3552272}.Debug|x86.ActiveCfg = Debug|Any CPU - {E35BE797-EFF1-4701-BBFD-D42AE3552272}.Debug|x86.Build.0 = Debug|Any CPU - {E35BE797-EFF1-4701-BBFD-D42AE3552272}.Release|Any CPU.ActiveCfg = Release|Any CPU - {E35BE797-EFF1-4701-BBFD-D42AE3552272}.Release|Any CPU.Build.0 = Release|Any CPU - {E35BE797-EFF1-4701-BBFD-D42AE3552272}.Release|x64.ActiveCfg = Release|Any CPU - {E35BE797-EFF1-4701-BBFD-D42AE3552272}.Release|x64.Build.0 = Release|Any CPU - {E35BE797-EFF1-4701-BBFD-D42AE3552272}.Release|x86.ActiveCfg = Release|Any CPU - {E35BE797-EFF1-4701-BBFD-D42AE3552272}.Release|x86.Build.0 = Release|Any CPU - {CEF2650C-91AF-4EED-9141-7188B70BC582}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {CEF2650C-91AF-4EED-9141-7188B70BC582}.Debug|Any CPU.Build.0 = Debug|Any CPU - {CEF2650C-91AF-4EED-9141-7188B70BC582}.Debug|x64.ActiveCfg = Debug|Any CPU - {CEF2650C-91AF-4EED-9141-7188B70BC582}.Debug|x64.Build.0 = Debug|Any CPU - {CEF2650C-91AF-4EED-9141-7188B70BC582}.Debug|x86.ActiveCfg = Debug|Any CPU - {CEF2650C-91AF-4EED-9141-7188B70BC582}.Debug|x86.Build.0 = Debug|Any CPU - {CEF2650C-91AF-4EED-9141-7188B70BC582}.Release|Any CPU.ActiveCfg = Release|Any CPU - {CEF2650C-91AF-4EED-9141-7188B70BC582}.Release|Any CPU.Build.0 = Release|Any CPU - {CEF2650C-91AF-4EED-9141-7188B70BC582}.Release|x64.ActiveCfg = Release|Any CPU - {CEF2650C-91AF-4EED-9141-7188B70BC582}.Release|x64.Build.0 = Release|Any CPU - {CEF2650C-91AF-4EED-9141-7188B70BC582}.Release|x86.ActiveCfg = Release|Any CPU - {CEF2650C-91AF-4EED-9141-7188B70BC582}.Release|x86.Build.0 = Release|Any CPU - {B910AA7E-1720-4C71-8AF0-4D56B94E087D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {B910AA7E-1720-4C71-8AF0-4D56B94E087D}.Debug|Any CPU.Build.0 = Debug|Any CPU - {B910AA7E-1720-4C71-8AF0-4D56B94E087D}.Debug|x64.ActiveCfg = Debug|Any CPU - {B910AA7E-1720-4C71-8AF0-4D56B94E087D}.Debug|x64.Build.0 = Debug|Any CPU - {B910AA7E-1720-4C71-8AF0-4D56B94E087D}.Debug|x86.ActiveCfg = Debug|Any CPU - {B910AA7E-1720-4C71-8AF0-4D56B94E087D}.Debug|x86.Build.0 = Debug|Any CPU - {B910AA7E-1720-4C71-8AF0-4D56B94E087D}.Release|Any CPU.ActiveCfg = Release|Any CPU - {B910AA7E-1720-4C71-8AF0-4D56B94E087D}.Release|Any CPU.Build.0 = Release|Any CPU - {B910AA7E-1720-4C71-8AF0-4D56B94E087D}.Release|x64.ActiveCfg = Release|Any CPU - {B910AA7E-1720-4C71-8AF0-4D56B94E087D}.Release|x64.Build.0 = Release|Any CPU - {B910AA7E-1720-4C71-8AF0-4D56B94E087D}.Release|x86.ActiveCfg = Release|Any CPU - {B910AA7E-1720-4C71-8AF0-4D56B94E087D}.Release|x86.Build.0 = Release|Any CPU - {69256F27-92A2-4AFA-A8D7-927DD1B35838}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {69256F27-92A2-4AFA-A8D7-927DD1B35838}.Debug|Any CPU.Build.0 = Debug|Any CPU - {69256F27-92A2-4AFA-A8D7-927DD1B35838}.Debug|x64.ActiveCfg = Debug|Any CPU - {69256F27-92A2-4AFA-A8D7-927DD1B35838}.Debug|x64.Build.0 = Debug|Any CPU - {69256F27-92A2-4AFA-A8D7-927DD1B35838}.Debug|x86.ActiveCfg = Debug|Any CPU - {69256F27-92A2-4AFA-A8D7-927DD1B35838}.Debug|x86.Build.0 = Debug|Any CPU - {69256F27-92A2-4AFA-A8D7-927DD1B35838}.Release|Any CPU.ActiveCfg = Release|Any CPU - {69256F27-92A2-4AFA-A8D7-927DD1B35838}.Release|Any CPU.Build.0 = Release|Any CPU - {69256F27-92A2-4AFA-A8D7-927DD1B35838}.Release|x64.ActiveCfg = Release|Any CPU - {69256F27-92A2-4AFA-A8D7-927DD1B35838}.Release|x64.Build.0 = Release|Any CPU - {69256F27-92A2-4AFA-A8D7-927DD1B35838}.Release|x86.ActiveCfg = Release|Any CPU - {69256F27-92A2-4AFA-A8D7-927DD1B35838}.Release|x86.Build.0 = Release|Any CPU - {16C48553-31E3-47C7-A477-DC2457672362}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {16C48553-31E3-47C7-A477-DC2457672362}.Debug|Any CPU.Build.0 = Debug|Any CPU - {16C48553-31E3-47C7-A477-DC2457672362}.Debug|x64.ActiveCfg = Debug|Any CPU - {16C48553-31E3-47C7-A477-DC2457672362}.Debug|x64.Build.0 = Debug|Any CPU - {16C48553-31E3-47C7-A477-DC2457672362}.Debug|x86.ActiveCfg = Debug|Any CPU - {16C48553-31E3-47C7-A477-DC2457672362}.Debug|x86.Build.0 = Debug|Any CPU - {16C48553-31E3-47C7-A477-DC2457672362}.Release|Any CPU.ActiveCfg = Release|Any CPU - {16C48553-31E3-47C7-A477-DC2457672362}.Release|Any CPU.Build.0 = Release|Any CPU - {16C48553-31E3-47C7-A477-DC2457672362}.Release|x64.ActiveCfg = Release|Any CPU - {16C48553-31E3-47C7-A477-DC2457672362}.Release|x64.Build.0 = Release|Any CPU - {16C48553-31E3-47C7-A477-DC2457672362}.Release|x86.ActiveCfg = Release|Any CPU - {16C48553-31E3-47C7-A477-DC2457672362}.Release|x86.Build.0 = Release|Any CPU + {B118959B-3419-435D-830A-3B59F43C7074}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B118959B-3419-435D-830A-3B59F43C7074}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B118959B-3419-435D-830A-3B59F43C7074}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B118959B-3419-435D-830A-3B59F43C7074}.Release|Any CPU.Build.0 = Release|Any CPU + {30C368D7-E9DF-4DDB-92AB-5F57BAEFD9DB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {30C368D7-E9DF-4DDB-92AB-5F57BAEFD9DB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {30C368D7-E9DF-4DDB-92AB-5F57BAEFD9DB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {30C368D7-E9DF-4DDB-92AB-5F57BAEFD9DB}.Release|Any CPU.Build.0 = Release|Any CPU + {EA46BD77-E603-45E1-ABDE-A8D216F9A6C6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {EA46BD77-E603-45E1-ABDE-A8D216F9A6C6}.Debug|Any CPU.Build.0 = Debug|Any CPU + {EA46BD77-E603-45E1-ABDE-A8D216F9A6C6}.Release|Any CPU.ActiveCfg = Release|Any CPU + {EA46BD77-E603-45E1-ABDE-A8D216F9A6C6}.Release|Any CPU.Build.0 = Release|Any CPU + {A7BC163E-B756-44F0-A4B6-19835488AC80}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A7BC163E-B756-44F0-A4B6-19835488AC80}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A7BC163E-B756-44F0-A4B6-19835488AC80}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A7BC163E-B756-44F0-A4B6-19835488AC80}.Release|Any CPU.Build.0 = Release|Any CPU + {5E9CA0A4-4E3A-4B26-B475-3B5BE42B868E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5E9CA0A4-4E3A-4B26-B475-3B5BE42B868E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5E9CA0A4-4E3A-4B26-B475-3B5BE42B868E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5E9CA0A4-4E3A-4B26-B475-3B5BE42B868E}.Release|Any CPU.Build.0 = Release|Any CPU + {9E2AB3C0-1844-46E6-81E8-2EF6E245EEBA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {9E2AB3C0-1844-46E6-81E8-2EF6E245EEBA}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9E2AB3C0-1844-46E6-81E8-2EF6E245EEBA}.Release|Any CPU.ActiveCfg = Release|Any CPU + {9E2AB3C0-1844-46E6-81E8-2EF6E245EEBA}.Release|Any CPU.Build.0 = Release|Any CPU + {D647B496-0E93-4A2D-B7E6-D66DA93F406B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D647B496-0E93-4A2D-B7E6-D66DA93F406B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D647B496-0E93-4A2D-B7E6-D66DA93F406B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D647B496-0E93-4A2D-B7E6-D66DA93F406B}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection EndGlobal diff --git a/src/ServiceLinker/custom/Get-AzServiceLinkerConfigurationForContainerApp.ps1 b/src/ServiceLinker/custom/Get-AzServiceLinkerConfigurationForContainerApp.ps1 index d92c9414c2f8..169a4b042083 100644 --- a/src/ServiceLinker/custom/Get-AzServiceLinkerConfigurationForContainerApp.ps1 +++ b/src/ServiceLinker/custom/Get-AzServiceLinkerConfigurationForContainerApp.ps1 @@ -24,7 +24,7 @@ list source configurations for a linker in container app. https://learn.microsoft.com/powershell/module/az.servicelinker/get-azservicelinkerconfigurationforcontainerapp #> function Get-AzServiceLinkerConfigurationForContainerApp { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfiguration])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] diff --git a/src/ServiceLinker/custom/Get-AzServiceLinkerConfigurationForSpringCloud.ps1 b/src/ServiceLinker/custom/Get-AzServiceLinkerConfigurationForSpringCloud.ps1 index 65be13d9ef86..db1fb5aff13f 100644 --- a/src/ServiceLinker/custom/Get-AzServiceLinkerConfigurationForSpringCloud.ps1 +++ b/src/ServiceLinker/custom/Get-AzServiceLinkerConfigurationForSpringCloud.ps1 @@ -23,7 +23,7 @@ list source configurations for a linker in spring cloud. https://learn.microsoft.com/powershell/module/az.servicelinker/get-azservicelinkerconfigurationforspringcloud #> function Get-AzServiceLinkerConfigurationForSpringCloud { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfiguration])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] diff --git a/src/ServiceLinker/custom/Get-AzServiceLinkerConfigurationForWebApp.ps1 b/src/ServiceLinker/custom/Get-AzServiceLinkerConfigurationForWebApp.ps1 index 1df662f43945..a61b42dd4c8a 100644 --- a/src/ServiceLinker/custom/Get-AzServiceLinkerConfigurationForWebApp.ps1 +++ b/src/ServiceLinker/custom/Get-AzServiceLinkerConfigurationForWebApp.ps1 @@ -23,7 +23,7 @@ list source configurations for a linker in webapp. https://learn.microsoft.com/powershell/module/az.servicelinker/get-azservicelinkerconfigurationforwebapp #> function Get-AzServiceLinkerConfigurationForWebApp { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfiguration])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] diff --git a/src/ServiceLinker/custom/Get-AzServiceLinkerForContainerApp.ps1 b/src/ServiceLinker/custom/Get-AzServiceLinkerForContainerApp.ps1 index 2073a66d34ac..db7f5860b05b 100644 --- a/src/ServiceLinker/custom/Get-AzServiceLinkerForContainerApp.ps1 +++ b/src/ServiceLinker/custom/Get-AzServiceLinkerForContainerApp.ps1 @@ -34,7 +34,7 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.servicelinker/get-azservicelinkerforcontainerapp #> function Get-AzServiceLinkerForContainerApp { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] diff --git a/src/ServiceLinker/custom/Get-AzServiceLinkerForSpringCloud.ps1 b/src/ServiceLinker/custom/Get-AzServiceLinkerForSpringCloud.ps1 index 17d6474e623d..d59790c5cad6 100644 --- a/src/ServiceLinker/custom/Get-AzServiceLinkerForSpringCloud.ps1 +++ b/src/ServiceLinker/custom/Get-AzServiceLinkerForSpringCloud.ps1 @@ -35,7 +35,7 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.servicelinker/get-azservicelinkerforspringcloud #> function Get-AzServiceLinkerForSpringCloud { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] diff --git a/src/ServiceLinker/custom/Get-AzServiceLinkerForWebApp.ps1 b/src/ServiceLinker/custom/Get-AzServiceLinkerForWebApp.ps1 index 637cdd12a21c..16aad01050e0 100644 --- a/src/ServiceLinker/custom/Get-AzServiceLinkerForWebApp.ps1 +++ b/src/ServiceLinker/custom/Get-AzServiceLinkerForWebApp.ps1 @@ -35,7 +35,7 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.servicelinker/get-azservicelinkerforwebapp #> function Get-AzServiceLinkerForWebApp { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] diff --git a/src/ServiceLinker/custom/New-AzServiceLinkerAzureResourceObject.ps1 b/src/ServiceLinker/custom/New-AzServiceLinkerAzureResourceObject.ps1 index caa7b366a29b..eae474212723 100644 --- a/src/ServiceLinker/custom/New-AzServiceLinkerAzureResourceObject.ps1 +++ b/src/ServiceLinker/custom/New-AzServiceLinkerAzureResourceObject.ps1 @@ -21,12 +21,12 @@ Create an in-memory object for AzureResource. Create an in-memory object for AzureResource. .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.AzureResource +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AzureResource .Link https://learn.microsoft.com/powershell/module/az.ServiceLinker/new-azservicelinkerazureresourceobject #> function New-AzServiceLinkerAzureResourceObject { - [OutputType('Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.AzureResource')] + [OutputType('Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AzureResource')] [CmdletBinding(PositionalBinding=$false)] Param( @@ -34,7 +34,7 @@ function New-AzServiceLinkerAzureResourceObject { [string] $Id, # [Parameter(HelpMessage="The azure resource connection related properties.")] - # [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResourcePropertiesBase] + # [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourcePropertiesBase] # $ResourceProperty, [Parameter(HelpMessage="True if connect via Kubernetes CSI Driver. Source must be AKS and target must be KeyVault.")] [bool] @@ -47,7 +47,7 @@ function New-AzServiceLinkerAzureResourceObject { ) process { - $Object = [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.AzureResource]::New() + $Object = [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AzureResource]::New() if ($PSBoundParameters.ContainsKey('Id')) { $Pattern = "/subscriptions/(?[^/]+)/resourceGroups/(?[^/]+)/providers/(?[^/]+)(/(?[^/]+)/(?[^/]+))+" @@ -57,7 +57,7 @@ function New-AzServiceLinkerAzureResourceObject { $Object.Id = $Id } if ($PSBoundParameters.ContainsKey('ConnectAsKubernetesCsiDriver')) { - $ResourceProperty = [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.AzureKeyVaultProperties]::New() + $ResourceProperty = [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AzureKeyVaultProperties]::New() $ResourceProperty.ConnectAsKubernetesCsiDriver = $ConnectAsKubernetesCsiDriver $Object.ResourceProperty = $ResourceProperty } diff --git a/src/ServiceLinker/custom/New-AzServiceLinkerConfluentBootstrapServerObject.ps1 b/src/ServiceLinker/custom/New-AzServiceLinkerConfluentBootstrapServerObject.ps1 index d2f470d1bc5a..deada327a51c 100644 --- a/src/ServiceLinker/custom/New-AzServiceLinkerConfluentBootstrapServerObject.ps1 +++ b/src/ServiceLinker/custom/New-AzServiceLinkerConfluentBootstrapServerObject.ps1 @@ -21,12 +21,12 @@ Create an in-memory object for ConfluentBootstrapServer. Create an in-memory object for ConfluentBootstrapServer. .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ConfluentBootstrapServer +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfluentBootstrapServer .Link https://learn.microsoft.com/powershell/module/az.ServiceLinker/new-azservicelinkerconfluentbootstrapserverobject #> function New-AzServiceLinkerConfluentBootstrapServerObject { - [OutputType('Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ConfluentBootstrapServer')] + [OutputType('Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfluentBootstrapServer')] [CmdletBinding(PositionalBinding=$false)] Param( @@ -41,7 +41,7 @@ function New-AzServiceLinkerConfluentBootstrapServerObject { ) process { - $Object = [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ConfluentBootstrapServer]::New() + $Object = [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfluentBootstrapServer]::New() if ($PSBoundParameters.ContainsKey('Endpoint')) { if($Endpoint -notmatch ".*confluent.cloud:[0-9]*") { diff --git a/src/ServiceLinker/custom/New-AzServiceLinkerConfluentSchemaRegistryObject.ps1 b/src/ServiceLinker/custom/New-AzServiceLinkerConfluentSchemaRegistryObject.ps1 index 15170ef09333..f57e78acf029 100644 --- a/src/ServiceLinker/custom/New-AzServiceLinkerConfluentSchemaRegistryObject.ps1 +++ b/src/ServiceLinker/custom/New-AzServiceLinkerConfluentSchemaRegistryObject.ps1 @@ -21,12 +21,12 @@ Create an in-memory object for ConfluentSchemaRegistry. Create an in-memory object for ConfluentSchemaRegistry. .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ConfluentSchemaRegistry +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfluentSchemaRegistry .Link https://learn.microsoft.com/powershell/module/az.ServiceLinker/new-azservicelinkerconfluentschemaregistryobject #> function New-AzServiceLinkerConfluentSchemaRegistryObject { - [OutputType('Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ConfluentSchemaRegistry')] + [OutputType('Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfluentSchemaRegistry')] [CmdletBinding(PositionalBinding=$false)] Param( @@ -41,7 +41,7 @@ function New-AzServiceLinkerConfluentSchemaRegistryObject { ) process { - $Object = [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ConfluentSchemaRegistry]::New() + $Object = [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfluentSchemaRegistry]::New() if ($PSBoundParameters.ContainsKey('Endpoint')) { if($Endpoint -notmatch "https://.*\.confluent\.cloud"){ diff --git a/src/ServiceLinker/custom/New-AzServiceLinkerForContainerApp.ps1 b/src/ServiceLinker/custom/New-AzServiceLinkerForContainerApp.ps1 index b838e9fac1a3..c86b4c12f8c1 100644 --- a/src/ServiceLinker/custom/New-AzServiceLinkerForContainerApp.ps1 +++ b/src/ServiceLinker/custom/New-AzServiceLinkerForContainerApp.ps1 @@ -23,8 +23,8 @@ Create or update linker resource in container app. https://learn.microsoft.com/powershell/module/az.servicelinker/new-azservicelinkerforcontainerapp #> function New-AzServiceLinkerForContainerApp { - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource])] - [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource])] + [CmdletBinding(DefaultParameterSetName = 'CreateExpanded', PositionalBinding = $false, SupportsShouldProcess, ConfirmImpact = 'Medium')] param( [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] @@ -41,7 +41,7 @@ function New-AzServiceLinkerForContainerApp { [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.DefaultInfo(Script = '(Get-AzContext).Subscription.Id')] [System.String] # Gets subscription ID which uniquely identify the Microsoft Azure subscription. # The subscription ID forms part of the URI for every service call. @@ -56,14 +56,14 @@ function New-AzServiceLinkerForContainerApp { [Parameter()] [Alias('LinkerName')] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.DefaultInfo(Script='"connect_"+(-join ((65..90) + (97..122) | Get-Random -Count 5 | % {[char]$_}))')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.DefaultInfo(Script = '"connect_"+(-join ((65..90) + (97..122) | Get-Random -Count 5 | % {[char]$_}))')] [System.String] # The name Linker resource. ${Name}, [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase] # The authentication type. # To construct, see NOTES section for AUTHINFO properties and create a hash table. ${AuthInfo}, @@ -71,12 +71,72 @@ function New-AzServiceLinkerForContainerApp { [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType])] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.DefaultInfo(Script='"none"')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.DefaultInfo(Script = '"none"')] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType] # The application client type ${ClientType}, - [Parameter(Mandatory)] + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType] + # Optional, indicate whether to apply configurations on source application. + # If enable, generate configurations and applied to the source application. + # Default is enable. + # If optOut, no configuration change will be made on source. + ${ConfigurationInfoAction}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info(PossibleTypes = ([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations]))] + [System.Collections.Hashtable] + # A dictionary of additional configurations to be added. + # Service will auto generate a set of basic configurations and this property is to full fill more customized configurations + ${ConfigurationInfoAdditionalConfiguration}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info(PossibleTypes = ([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys]))] + [System.Collections.Hashtable] + # Optional. + # A dictionary of default key name and customized key name mapping. + # If not specified, default key name will be used for generate configurations + ${ConfigurationInfoCustomizedKey}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType] + # Allow Azure services to access the target service if true. + ${FirewallRuleAzureService}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType] + # Allow caller client IP to access the target service if true. + # the property is used when connecting local application to target service. + ${FirewallRuleCallerClientIP}, + + [Parameter()] + [AllowEmptyCollection()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [System.String[]] + # This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client IPs for a given database account. + ${FirewallRuleIPRange}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType] + # Optional. + # Indicates public network solution. + # If enable, enable public network access of target service with best try. + # Default is enable. + # If optOut, opt out public network access configuration. + ${PublicNetworkSolutionAction}, + + [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] [System.String] # connection scope in source service. @@ -88,13 +148,19 @@ function New-AzServiceLinkerForContainerApp { # The key vault id to store secret ${SecretStoreKeyVaultId}, + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [System.String] + # The key vault secret name to store secret, only valid when storing one secret + ${SecretStoreKeyVaultSecretName}, + [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase] # The target service properties # To construct, see NOTES section for TARGETSERVICE properties and create a hash table. ${TargetService}, - + [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType])] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] @@ -175,4 +241,4 @@ function New-AzServiceLinkerForContainerApp { $PSBoundParameters = Set-Header -PSBoundParameters $PSBoundParameters Az.ServiceLinker.internal\New-AzServiceLinker @PSBoundParameters } -} \ No newline at end of file +} diff --git a/src/ServiceLinker/custom/New-AzServiceLinkerForSpringCloud.ps1 b/src/ServiceLinker/custom/New-AzServiceLinkerForSpringCloud.ps1 index b853ec36d4e3..3269055dd030 100644 --- a/src/ServiceLinker/custom/New-AzServiceLinkerForSpringCloud.ps1 +++ b/src/ServiceLinker/custom/New-AzServiceLinkerForSpringCloud.ps1 @@ -23,8 +23,8 @@ Create or update linker resource in spring cloud. https://learn.microsoft.com/powershell/module/az.servicelinker/new-azservicelinkerforspringcloud #> function New-AzServiceLinkerForSpringCloud { - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource])] - [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource])] + [CmdletBinding(DefaultParameterSetName = 'CreateExpanded', PositionalBinding = $false, SupportsShouldProcess, ConfirmImpact = 'Medium')] param( [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] @@ -46,7 +46,7 @@ function New-AzServiceLinkerForSpringCloud { [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.DefaultInfo(Script='"default"')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.DefaultInfo(Script = '"default"')] [System.String] # The deployment Name of spring cloud app to be connected. ${DeploymentName}, @@ -60,7 +60,7 @@ function New-AzServiceLinkerForSpringCloud { [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.DefaultInfo(Script = '(Get-AzContext).Subscription.Id')] [System.String] # Gets subscription ID which uniquely identify the Microsoft Azure subscription. # The subscription ID forms part of the URI for every service call. @@ -69,14 +69,14 @@ function New-AzServiceLinkerForSpringCloud { [Parameter()] [Alias('LinkerName')] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.DefaultInfo(Script='"connect_"+(-join ((65..90) + (97..122) | Get-Random -Count 5 | % {[char]$_}))')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.DefaultInfo(Script = '"connect_"+(-join ((65..90) + (97..122) | Get-Random -Count 5 | % {[char]$_}))')] [System.String] # The name Linker resource. ${Name}, [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase] # The authentication type. # To construct, see NOTES section for AUTHINFO properties and create a hash table. ${AuthInfo}, @@ -84,11 +84,71 @@ function New-AzServiceLinkerForSpringCloud { [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType])] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.DefaultInfo(Script='"none"')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.DefaultInfo(Script = '"none"')] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType] # The application client type ${ClientType}, + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType] + # Optional, indicate whether to apply configurations on source application. + # If enable, generate configurations and applied to the source application. + # Default is enable. + # If optOut, no configuration change will be made on source. + ${ConfigurationInfoAction}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info(PossibleTypes = ([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations]))] + [System.Collections.Hashtable] + # A dictionary of additional configurations to be added. + # Service will auto generate a set of basic configurations and this property is to full fill more customized configurations + ${ConfigurationInfoAdditionalConfiguration}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info(PossibleTypes = ([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys]))] + [System.Collections.Hashtable] + # Optional. + # A dictionary of default key name and customized key name mapping. + # If not specified, default key name will be used for generate configurations + ${ConfigurationInfoCustomizedKey}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType] + # Allow Azure services to access the target service if true. + ${FirewallRuleAzureService}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType] + # Allow caller client IP to access the target service if true. + # the property is used when connecting local application to target service. + ${FirewallRuleCallerClientIP}, + + [Parameter()] + [AllowEmptyCollection()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [System.String[]] + # This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client IPs for a given database account. + ${FirewallRuleIPRange}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType] + # Optional. + # Indicates public network solution. + # If enable, enable public network access of target service with best try. + # Default is enable. + # If optOut, opt out public network access configuration. + ${PublicNetworkSolutionAction}, + [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] [System.String] @@ -101,13 +161,19 @@ function New-AzServiceLinkerForSpringCloud { # The key vault id to store secret ${SecretStoreKeyVaultId}, + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [System.String] + # The key vault secret name to store secret, only valid when storing one secret + ${SecretStoreKeyVaultSecretName}, + [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase] # The target service properties # To construct, see NOTES section for TARGETSERVICE properties and create a hash table. ${TargetService}, - + [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType])] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] @@ -188,4 +254,4 @@ function New-AzServiceLinkerForSpringCloud { $PSBoundParameters = Set-Header -PSBoundParameters $PSBoundParameters Az.ServiceLinker.internal\New-AzServiceLinker @PSBoundParameters } -} \ No newline at end of file +} diff --git a/src/ServiceLinker/custom/New-AzServiceLinkerForWebApp.ps1 b/src/ServiceLinker/custom/New-AzServiceLinkerForWebApp.ps1 index c00b9a69a43a..b14f4dd0a5f9 100644 --- a/src/ServiceLinker/custom/New-AzServiceLinkerForWebApp.ps1 +++ b/src/ServiceLinker/custom/New-AzServiceLinkerForWebApp.ps1 @@ -23,7 +23,7 @@ Create or update linker resource in webapp. https://learn.microsoft.com/powershell/module/az.servicelinker/new-azservicelinkerforwebapp #> function New-AzServiceLinkerForWebApp { - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter()] @@ -57,14 +57,14 @@ function New-AzServiceLinkerForWebApp { [Parameter()] [Alias('LinkerName')] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.DefaultInfo(Script='"connect_"+(-join ((65..90) + (97..122) | Get-Random -Count 5 | % {[char]$_}))')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.DefaultInfo(Script = '"connect_"+(-join ((65..90) + (97..122) | Get-Random -Count 5 | % {[char]$_}))')] [System.String] # The name Linker resource. ${Name}, [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase] # The authentication type. # To construct, see NOTES section for AUTHINFO properties and create a hash table. ${AuthInfo}, @@ -72,11 +72,71 @@ function New-AzServiceLinkerForWebApp { [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType])] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.DefaultInfo(Script='"none"')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.DefaultInfo(Script = '"none"')] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType] # The application client type ${ClientType}, + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType] + # Optional, indicate whether to apply configurations on source application. + # If enable, generate configurations and applied to the source application. + # Default is enable. + # If optOut, no configuration change will be made on source. + ${ConfigurationInfoAction}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info(PossibleTypes = ([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations]))] + [System.Collections.Hashtable] + # A dictionary of additional configurations to be added. + # Service will auto generate a set of basic configurations and this property is to full fill more customized configurations + ${ConfigurationInfoAdditionalConfiguration}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info(PossibleTypes = ([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys]))] + [System.Collections.Hashtable] + # Optional. + # A dictionary of default key name and customized key name mapping. + # If not specified, default key name will be used for generate configurations + ${ConfigurationInfoCustomizedKey}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType] + # Allow Azure services to access the target service if true. + ${FirewallRuleAzureService}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType] + # Allow caller client IP to access the target service if true. + # the property is used when connecting local application to target service. + ${FirewallRuleCallerClientIP}, + + [Parameter()] + [AllowEmptyCollection()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [System.String[]] + # This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client IPs for a given database account. + ${FirewallRuleIPRange}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType] + # Optional. + # Indicates public network solution. + # If enable, enable public network access of target service with best try. + # Default is enable. + # If optOut, opt out public network access configuration. + ${PublicNetworkSolutionAction}, + [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] [System.String] @@ -89,13 +149,19 @@ function New-AzServiceLinkerForWebApp { # The key vault id to store secret ${SecretStoreKeyVaultId}, + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [System.String] + # The key vault secret name to store secret, only valid when storing one secret + ${SecretStoreKeyVaultSecretName}, + [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase] # The target service properties # To construct, see NOTES section for TARGETSERVICE properties and create a hash table. ${TargetService}, - + [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType])] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] @@ -176,4 +242,4 @@ function New-AzServiceLinkerForWebApp { $PSBoundParameters = Set-Header -PSBoundParameters $PSBoundParameters Az.ServiceLinker.internal\New-AzServiceLinker @PSBoundParameters } -} \ No newline at end of file +} diff --git a/src/ServiceLinker/custom/New-AzServiceLinkerKeyVaultSecretReferenceSecretInfoObject.ps1 b/src/ServiceLinker/custom/New-AzServiceLinkerKeyVaultSecretReferenceSecretInfoObject.ps1 index e25455ab6b3a..efd8561e2270 100644 --- a/src/ServiceLinker/custom/New-AzServiceLinkerKeyVaultSecretReferenceSecretInfoObject.ps1 +++ b/src/ServiceLinker/custom/New-AzServiceLinkerKeyVaultSecretReferenceSecretInfoObject.ps1 @@ -21,13 +21,13 @@ Create an in-memory object for KeyVaultSecretReferenceSecretInfo. Create an in-memory object for KeyVaultSecretReferenceSecretInfo. .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.KeyVaultSecretReferenceSecretInfo +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.KeyVaultSecretReferenceSecretInfo .Link https://learn.microsoft.com/powershell/module/az.ServiceLinker/new-azservicelinkerkeyvaultsecretreferencesecretinfoobject #> function New-AzServiceLinkerKeyVaultSecretReferenceSecretInfoObject { [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.DoNotExportAttribute()] - [OutputType('Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.KeyVaultSecretReferenceSecretInfo')] + [OutputType('Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.KeyVaultSecretReferenceSecretInfo')] [CmdletBinding(PositionalBinding=$false)] Param( @@ -44,7 +44,7 @@ function New-AzServiceLinkerKeyVaultSecretReferenceSecretInfoObject { ) process { - $Object = [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.KeyVaultSecretReferenceSecretInfo]::New() + $Object = [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.KeyVaultSecretReferenceSecretInfo]::New() if ($PSBoundParameters.ContainsKey('Name')) { $Object.Name = $Name diff --git a/src/ServiceLinker/custom/New-AzServiceLinkerKeyVaultSecretUriSecretInfoObject.ps1 b/src/ServiceLinker/custom/New-AzServiceLinkerKeyVaultSecretUriSecretInfoObject.ps1 index 3d7d43191fc9..cc8505ef5261 100644 --- a/src/ServiceLinker/custom/New-AzServiceLinkerKeyVaultSecretUriSecretInfoObject.ps1 +++ b/src/ServiceLinker/custom/New-AzServiceLinkerKeyVaultSecretUriSecretInfoObject.ps1 @@ -21,13 +21,13 @@ Create an in-memory object for KeyVaultSecretUriSecretInfo. Create an in-memory object for KeyVaultSecretUriSecretInfo. .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.KeyVaultSecretUriSecretInfo +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.KeyVaultSecretUriSecretInfo .Link https://learn.microsoft.com/powershell/module/az.ServiceLinker/new-azservicelinkerkeyvaultsecreturisecretinfoobject #> function New-AzServiceLinkerKeyVaultSecretUriSecretInfoObject { [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.DoNotExportAttribute()] - [OutputType('Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.KeyVaultSecretUriSecretInfo')] + [OutputType('Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.KeyVaultSecretUriSecretInfo')] [CmdletBinding(PositionalBinding=$false)] Param( @@ -41,7 +41,7 @@ function New-AzServiceLinkerKeyVaultSecretUriSecretInfoObject { ) process { - $Object = [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.KeyVaultSecretUriSecretInfo]::New() + $Object = [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.KeyVaultSecretUriSecretInfo]::New() if ($PSBoundParameters.ContainsKey('Value')) { $Object.Value = $Value diff --git a/src/ServiceLinker/custom/New-AzServiceLinkerSecretAuthInfoObject.ps1 b/src/ServiceLinker/custom/New-AzServiceLinkerSecretAuthInfoObject.ps1 index cff9c1223096..c277b75ab6a9 100644 --- a/src/ServiceLinker/custom/New-AzServiceLinkerSecretAuthInfoObject.ps1 +++ b/src/ServiceLinker/custom/New-AzServiceLinkerSecretAuthInfoObject.ps1 @@ -21,12 +21,12 @@ Create an in-memory object for SecretAuthInfo. Create an in-memory object for SecretAuthInfo. .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SecretAuthInfo +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SecretAuthInfo .Link https://learn.microsoft.com/powershell/module/az.ServiceLinker/new-azservicelinkersecretauthinfoobject #> function New-AzServiceLinkerSecretAuthInfoObject { - [OutputType('Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SecretAuthInfo')] + [OutputType('Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SecretAuthInfo')] [CmdletBinding(PositionalBinding=$false)] Param( @@ -34,7 +34,7 @@ function New-AzServiceLinkerSecretAuthInfoObject { [string] $Name, [Parameter(DontShow, HelpMessage="Password or key vault secret for secret auth.")] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBase] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBase] $SecretInfo, [Parameter(HelpMessage="Raw value of secret.")] @@ -54,7 +54,7 @@ function New-AzServiceLinkerSecretAuthInfoObject { ) process { - $Object = [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SecretAuthInfo]::New() + $Object = [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SecretAuthInfo]::New() if ($PSBoundParameters.ContainsKey('Name')) { $Object.Name = $Name diff --git a/src/ServiceLinker/custom/New-AzServiceLinkerServicePrincipalSecretAuthInfoObject.ps1 b/src/ServiceLinker/custom/New-AzServiceLinkerServicePrincipalSecretAuthInfoObject.ps1 index 37797ad34d82..b66d451318b0 100644 --- a/src/ServiceLinker/custom/New-AzServiceLinkerServicePrincipalSecretAuthInfoObject.ps1 +++ b/src/ServiceLinker/custom/New-AzServiceLinkerServicePrincipalSecretAuthInfoObject.ps1 @@ -21,12 +21,12 @@ Create an in-memory object for ServicePrincipalSecretAuthInfo. Create an in-memory object for ServicePrincipalSecretAuthInfo. .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ServicePrincipalSecretAuthInfo +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ServicePrincipalSecretAuthInfo .Link https://learn.microsoft.com/powershell/module/az.ServiceLinker/new-azservicelinkerserviceprincipalsecretauthinfoobject #> function New-AzServiceLinkerServicePrincipalSecretAuthInfoObject { - [OutputType('Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ServicePrincipalSecretAuthInfo')] + [OutputType('Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ServicePrincipalSecretAuthInfo')] [CmdletBinding(PositionalBinding=$false)] Param( @@ -47,7 +47,7 @@ function New-AzServiceLinkerServicePrincipalSecretAuthInfoObject { ) process { - $Object = [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ServicePrincipalSecretAuthInfo]::New() + $Object = [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ServicePrincipalSecretAuthInfo]::New() if ($PSBoundParameters.ContainsKey('ClientId')) { $Object.ClientId = $ClientId diff --git a/src/ServiceLinker/custom/New-AzServiceLinkerSystemAssignedIdentityAuthInfoObject.ps1 b/src/ServiceLinker/custom/New-AzServiceLinkerSystemAssignedIdentityAuthInfoObject.ps1 index 096d76d07c54..130923fa9fee 100644 --- a/src/ServiceLinker/custom/New-AzServiceLinkerSystemAssignedIdentityAuthInfoObject.ps1 +++ b/src/ServiceLinker/custom/New-AzServiceLinkerSystemAssignedIdentityAuthInfoObject.ps1 @@ -21,12 +21,12 @@ Create an in-memory object for SystemAssignedIdentityAuthInfo. Create an in-memory object for SystemAssignedIdentityAuthInfo. .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SystemAssignedIdentityAuthInfo +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SystemAssignedIdentityAuthInfo .Link https://learn.microsoft.com/powershell/module/az.ServiceLinker/new-azservicelinkersystemassignedidentityauthinfoobject #> function New-AzServiceLinkerSystemAssignedIdentityAuthInfoObject { - [OutputType('Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SystemAssignedIdentityAuthInfo')] + [OutputType('Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SystemAssignedIdentityAuthInfo')] [CmdletBinding(PositionalBinding=$false)] Param( @@ -38,7 +38,7 @@ function New-AzServiceLinkerSystemAssignedIdentityAuthInfoObject { ) process { - $Object = [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SystemAssignedIdentityAuthInfo]::New() + $Object = [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SystemAssignedIdentityAuthInfo]::New() if ($PSBoundParameters.ContainsKey('AuthType')) { $Object.AuthType = $AuthType diff --git a/src/ServiceLinker/custom/New-AzServiceLinkerUserAssignedIdentityAuthInfoObject.ps1 b/src/ServiceLinker/custom/New-AzServiceLinkerUserAssignedIdentityAuthInfoObject.ps1 index dbe3d776c360..a4656e34acfc 100644 --- a/src/ServiceLinker/custom/New-AzServiceLinkerUserAssignedIdentityAuthInfoObject.ps1 +++ b/src/ServiceLinker/custom/New-AzServiceLinkerUserAssignedIdentityAuthInfoObject.ps1 @@ -21,12 +21,12 @@ Create an in-memory object for UserAssignedIdentityAuthInfo. Create an in-memory object for UserAssignedIdentityAuthInfo. .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.UserAssignedIdentityAuthInfo +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.UserAssignedIdentityAuthInfo .Link https://learn.microsoft.com/powershell/module/az.ServiceLinker/new-azservicelinkeruserassignedidentityauthinfoobject #> function New-AzServiceLinkerUserAssignedIdentityAuthInfoObject { - [OutputType('Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.UserAssignedIdentityAuthInfo')] + [OutputType('Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.UserAssignedIdentityAuthInfo')] [CmdletBinding(PositionalBinding=$false)] Param( @@ -44,7 +44,7 @@ function New-AzServiceLinkerUserAssignedIdentityAuthInfoObject { ) process { - $Object = [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.UserAssignedIdentityAuthInfo]::New() + $Object = [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.UserAssignedIdentityAuthInfo]::New() if ($PSBoundParameters.ContainsKey('ClientId')) { $Object.ClientId = $ClientId diff --git a/src/ServiceLinker/custom/New-AzServiceLinkerValueSecretInfoObject.ps1 b/src/ServiceLinker/custom/New-AzServiceLinkerValueSecretInfoObject.ps1 index 856e64b3ecca..fe6f2836e136 100644 --- a/src/ServiceLinker/custom/New-AzServiceLinkerValueSecretInfoObject.ps1 +++ b/src/ServiceLinker/custom/New-AzServiceLinkerValueSecretInfoObject.ps1 @@ -21,13 +21,13 @@ Create an in-memory object for ValueSecretInfo. Create an in-memory object for ValueSecretInfo. .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ValueSecretInfo +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ValueSecretInfo .Link https://learn.microsoft.com/powershell/module/az.ServiceLinker/new-azservicelinkervaluesecretinfoobject #> function New-AzServiceLinkerValueSecretInfoObject { [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.DoNotExportAttribute()] - [OutputType('Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ValueSecretInfo')] + [OutputType('Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ValueSecretInfo')] [CmdletBinding(PositionalBinding=$false)] Param( @@ -41,7 +41,7 @@ function New-AzServiceLinkerValueSecretInfoObject { ) process { - $Object = [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ValueSecretInfo]::New() + $Object = [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ValueSecretInfo]::New() if ($PSBoundParameters.ContainsKey('Value')) { $Object.Value = $Value diff --git a/src/ServiceLinker/custom/README.md b/src/ServiceLinker/custom/README.md index ddb64e96493c..7b4de8a8caef 100644 --- a/src/ServiceLinker/custom/README.md +++ b/src/ServiceLinker/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.ServiceLinker.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.ServiceLinker.DoNotExportAttribute` - Used in C# and script cmdlets to suppress creating an exported cmdlet at build-time. These cmdlets will *not be exposed* by `Az.ServiceLinker`. - `Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.InternalExportAttribute` diff --git a/src/ServiceLinker/custom/Remove-AzServiceLinkerForSpringCloud.ps1 b/src/ServiceLinker/custom/Remove-AzServiceLinkerForSpringCloud.ps1 index fa300333ad0e..75d17dcedba8 100644 --- a/src/ServiceLinker/custom/Remove-AzServiceLinkerForSpringCloud.ps1 +++ b/src/ServiceLinker/custom/Remove-AzServiceLinkerForSpringCloud.ps1 @@ -34,7 +34,7 @@ INPUTOBJECT : Identity Parameter .Link https://learn.microsoft.com/powershell/module/az.servicelinker/remove-azservicelinkerforspringcloud #> -function Remove-AzServiceLinkerForSpringcloud { +function Remove-AzServiceLinkerForSpringCloud { [OutputType([System.Boolean])] [CmdletBinding(DefaultParameterSetName='Delete', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( diff --git a/src/ServiceLinker/custom/Test-AzServiceLinkerForContainerApp.ps1 b/src/ServiceLinker/custom/Test-AzServiceLinkerForContainerApp.ps1 index b0c2e5f4173f..534918c33d54 100644 --- a/src/ServiceLinker/custom/Test-AzServiceLinkerForContainerApp.ps1 +++ b/src/ServiceLinker/custom/Test-AzServiceLinkerForContainerApp.ps1 @@ -23,7 +23,7 @@ Validate a link in container app. .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResult +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResult .Notes COMPLEX PARAMETER PROPERTIES @@ -37,7 +37,7 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.servicelinker/test-azservicelinkerforcontainerapp #> function Test-AzServiceLinkerForContainerApp { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResult])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResult])] [CmdletBinding(DefaultParameterSetName='Validate', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Validate', Mandatory)] diff --git a/src/ServiceLinker/custom/Test-AzServiceLinkerForSpringCloud.ps1 b/src/ServiceLinker/custom/Test-AzServiceLinkerForSpringCloud.ps1 index c7a17662e33c..4e3a19d969f2 100644 --- a/src/ServiceLinker/custom/Test-AzServiceLinkerForSpringCloud.ps1 +++ b/src/ServiceLinker/custom/Test-AzServiceLinkerForSpringCloud.ps1 @@ -35,7 +35,7 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.servicelinker/test-azservicelinkerforspringcloud #> function Test-AzServiceLinkerForSpringCloud { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResult])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResult])] [CmdletBinding(DefaultParameterSetName='Validate', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Validate', Mandatory)] diff --git a/src/ServiceLinker/custom/Test-AzServiceLinkerForWebApp.ps1 b/src/ServiceLinker/custom/Test-AzServiceLinkerForWebApp.ps1 index 3cf38ac3ca14..351ad268ce9a 100644 --- a/src/ServiceLinker/custom/Test-AzServiceLinkerForWebApp.ps1 +++ b/src/ServiceLinker/custom/Test-AzServiceLinkerForWebApp.ps1 @@ -35,7 +35,7 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.servicelinker/test-azservicelinkerforwebapp #> function Test-AzServiceLinkerForWebApp { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResult])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResult])] [CmdletBinding(DefaultParameterSetName='Validate', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Validate', Mandatory)] diff --git a/src/ServiceLinker/custom/Update-AzServiceLinkerForContainerApp.ps1 b/src/ServiceLinker/custom/Update-AzServiceLinkerForContainerApp.ps1 index c3b5affe8866..945d86e90268 100644 --- a/src/ServiceLinker/custom/Update-AzServiceLinkerForContainerApp.ps1 +++ b/src/ServiceLinker/custom/Update-AzServiceLinkerForContainerApp.ps1 @@ -41,29 +41,29 @@ TARGETSERVICE : The target service properties https://learn.microsoft.com/powershell/module/az.servicelinker/update-azservicelinkerforcontainerapp #> function Update-AzServiceLinkerForContainerApp { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource])] -[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource])] +[CmdletBinding(DefaultParameterSetName = 'UpdateExpanded', PositionalBinding = $false, SupportsShouldProcess, ConfirmImpact = 'Medium')] param( - [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName = 'UpdateExpanded', Mandatory)] [Alias('LinkerName')] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] [System.String] # The name Linker resource. ${Name}, - [Parameter(ParameterSetName='UpdateExpanded')] + [Parameter(ParameterSetName = 'UpdateExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] [System.String] # The fully qualified Azure Resource manager identifier of the resource to be connected. ${ResourceUri}, - [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName = 'UpdateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] [System.String] # The Name of container app of the resource to be connected. ${ContainerApp}, - [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName = 'UpdateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] [System.String] # The resource group of the resource to be connected. @@ -71,13 +71,13 @@ param( [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.DefaultInfo(Script = '(Get-AzContext).Subscription.Id')] [System.String] # Gets subscription ID which uniquely identify the Microsoft Azure subscription. # The subscription ID forms part of the URI for every service call. ${SubscriptionId}, - [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName = 'UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity] # Identity Parameter @@ -86,7 +86,7 @@ param( [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase] # The authentication type. # To construct, see NOTES section for AUTHINFO properties and create a hash table. ${AuthInfo}, @@ -112,7 +112,7 @@ param( [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase] # The target service properties # To construct, see NOTES section for TARGETSERVICE properties and create a hash table. ${TargetService}, diff --git a/src/ServiceLinker/custom/Update-AzServiceLinkerForSpringCloud.ps1 b/src/ServiceLinker/custom/Update-AzServiceLinkerForSpringCloud.ps1 index 1ed419af49d6..ece80e6e8af9 100644 --- a/src/ServiceLinker/custom/Update-AzServiceLinkerForSpringCloud.ps1 +++ b/src/ServiceLinker/custom/Update-AzServiceLinkerForSpringCloud.ps1 @@ -41,7 +41,7 @@ TARGETSERVICE : The target service properties https://learn.microsoft.com/powershell/module/az.servicelinker/update-azservicelinkerforspringcloud #> function Update-AzServiceLinkerForSpringCloud { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource])] [CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] @@ -99,7 +99,7 @@ param( [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase] # The authentication type. # To construct, see NOTES section for AUTHINFO properties and create a hash table. ${AuthInfo}, @@ -125,7 +125,7 @@ param( [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase] # The target service properties # To construct, see NOTES section for TARGETSERVICE properties and create a hash table. ${TargetService}, diff --git a/src/ServiceLinker/custom/Update-AzServiceLinkerForWebApp.ps1 b/src/ServiceLinker/custom/Update-AzServiceLinkerForWebApp.ps1 index 1825accfbbc6..9f83765fbc58 100644 --- a/src/ServiceLinker/custom/Update-AzServiceLinkerForWebApp.ps1 +++ b/src/ServiceLinker/custom/Update-AzServiceLinkerForWebApp.ps1 @@ -41,7 +41,7 @@ TARGETSERVICE : The target service properties https://learn.microsoft.com/powershell/module/az.servicelinker/update-azservicelinkerforwebapp #> function Update-AzServiceLinkerForWebApp { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource])] [CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] @@ -86,7 +86,7 @@ param( [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase] # The authentication type. # To construct, see NOTES section for AUTHINFO properties and create a hash table. ${AuthInfo}, @@ -112,7 +112,7 @@ param( [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase] # The target service properties # To construct, see NOTES section for TARGETSERVICE properties and create a hash table. ${TargetService}, diff --git a/src/ServiceLinker/examples/Get-AzServiceLinkerConfigurationForContainerApp.md b/src/ServiceLinker/examples/Get-AzServiceLinkerConfigurationForContainerApp.md index d09a4c081464..94dea83e26f4 100644 --- a/src/ServiceLinker/examples/Get-AzServiceLinkerConfigurationForContainerApp.md +++ b/src/ServiceLinker/examples/Get-AzServiceLinkerConfigurationForContainerApp.md @@ -1,6 +1,6 @@ ### Example 1: Get container app's linker configuration list ```powershell -Get-AzServiceLinkerConfigurationForContainerApp -ContainerApp servicelinker-containerapp -ResourceGroupName servicelinker-test-group -LinkerName postgresql_linker |fl +Get-AzServiceLinkerConfigurationForContainerApp -ContainerApp servicelinker-containerapp -ResourceGroupName servicelinker-test-group -LinkerName postgresql_linker | Format-List ``` ```output diff --git a/src/ServiceLinker/examples/Get-AzServiceLinkerConfigurationForSpringCloud.md b/src/ServiceLinker/examples/Get-AzServiceLinkerConfigurationForSpringCloud.md index 8490fd6a14e4..d085b9a5eaac 100644 --- a/src/ServiceLinker/examples/Get-AzServiceLinkerConfigurationForSpringCloud.md +++ b/src/ServiceLinker/examples/Get-AzServiceLinkerConfigurationForSpringCloud.md @@ -1,6 +1,6 @@ ### Example 1: Get spring cloud's linker configuration list ```powershell -Get-AzServiceLinkerConfigurationForSpringCloud -ServiceName servicelinker-springcloud -AppName appconfiguration -ResourceGroupName servicelinker-test-group -LinkerName postgresql_linker |fl +Get-AzServiceLinkerConfigurationForSpringCloud -ServiceName servicelinker-springcloud -AppName appconfiguration -ResourceGroupName servicelinker-test-group -LinkerName postgresql_linker | Format-List ``` ```output diff --git a/src/ServiceLinker/examples/Get-AzServiceLinkerConfigurationForWebApp.md b/src/ServiceLinker/examples/Get-AzServiceLinkerConfigurationForWebApp.md index dbfeddec55e9..ec2e4a5adb39 100644 --- a/src/ServiceLinker/examples/Get-AzServiceLinkerConfigurationForWebApp.md +++ b/src/ServiceLinker/examples/Get-AzServiceLinkerConfigurationForWebApp.md @@ -1,6 +1,6 @@ ### Example 1: Get webapp's linker configuration list ```powershell -Get-AzServiceLinkerConfigurationForWebApp -WebApp servicelinker-webapp -ResourceGroupName servicelinker-test-group -LinkerName postgresql_linker |fl +Get-AzServiceLinkerConfigurationForWebApp -WebApp servicelinker-webapp -ResourceGroupName servicelinker-test-group -LinkerName postgresql_linker | Format-List ``` ```output diff --git a/src/ServiceLinker/examples/Get-AzServiceLinkerConfigurationName.md b/src/ServiceLinker/examples/Get-AzServiceLinkerConfigurationName.md new file mode 100644 index 000000000000..b07bf7823a5b --- /dev/null +++ b/src/ServiceLinker/examples/Get-AzServiceLinkerConfigurationName.md @@ -0,0 +1,14 @@ +### Example 1: Get expected configuration names of difference connection +```powershell +Get-AzServiceLinkerConfigurationName +``` + +```output +systemAssignedIdentity none {Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.Config… +userAssignedIdentity none {Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.Config… +servicePrincipalSecret none {Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.Config… +secret none {Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.Config… +accessKey none {Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.Config… +``` + +Get the expected configuration names of connection with each auth type and client type. diff --git a/src/ServiceLinker/examples/Get-AzServiceLinkerForContainerApp.md b/src/ServiceLinker/examples/Get-AzServiceLinkerForContainerApp.md index a7395e11bf28..003726854a34 100644 --- a/src/ServiceLinker/examples/Get-AzServiceLinkerForContainerApp.md +++ b/src/ServiceLinker/examples/Get-AzServiceLinkerForContainerApp.md @@ -1,6 +1,6 @@ ### Example 1: List all linkers in a container app ```powershell -Get-AzServiceLinkerForContainerApp -ContainerApp servicelinker-app -ResourceGroupName servicelinker-test-group -Scope 'simple-hello-world-container' +Get-AzServiceLinkerForContainerApp -ContainerApp servicelinker-app -ResourceGroupName servicelinker-test-group ``` ```output @@ -16,12 +16,12 @@ List all linkers in the container app ### Example 2: Get linker by name ```powershell -Get-AzServiceLinkerForContainerApp -ContainerApp servicelinker-app -ResourceGroupName servicelinker-test-group -Name postgresql_connection | fl +Get-AzServiceLinkerForContainerApp -ContainerApp servicelinker-app -ResourceGroupName servicelinker-test-group -Name postgresql_connection | Format-List ``` ```output AuthInfo : Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Model - s.Api20220501.SecretAuthInfo + s.Api20221101Preview.SecretAuthInfo ClientType : dotnet Id : /subscriptions/00000000-0000-0000-0000-000000000000/re sourceGroups/servicelinker-test-group/providers/ @@ -38,7 +38,7 @@ SystemDataLastModifiedAt : SystemDataLastModifiedBy : SystemDataLastModifiedByType : TargetService : Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Model - s.Api20220501.AzureResource + s.Api20221101Preview.AzureResource Type : microsoft.servicelinker/linkers VNetSolutionType : serviceEndpoint @@ -52,12 +52,12 @@ $identity = @{ ResourceUri = '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-app' LinkerName = 'postgresql_connection'} -$identity | Get-AzServiceLinkerForContainerApp |fl +$identity | Get-AzServiceLinkerForContainerApp | Format-List ``` ```output AuthInfo : Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Model - s.Api20220501.SecretAuthInfo + s.Api20221101Preview.SecretAuthInfo ClientType : dotnet Id : /subscriptions/00000000-0000-0000-0000-000000000000/re sourceGroups/servicelinker-test-group/providers/ @@ -74,7 +74,7 @@ SystemDataLastModifiedAt : SystemDataLastModifiedBy : SystemDataLastModifiedByType : TargetService : Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Model - s.Api20220501.AzureResource + s.Api20221101Preview.AzureResource Type : microsoft.servicelinker/linkers VNetSolutionType : serviceEndpoint diff --git a/src/ServiceLinker/examples/Get-AzServiceLinkerForSpringCloud.md b/src/ServiceLinker/examples/Get-AzServiceLinkerForSpringCloud.md index feedf63cf5a5..ec111a4bdab4 100644 --- a/src/ServiceLinker/examples/Get-AzServiceLinkerForSpringCloud.md +++ b/src/ServiceLinker/examples/Get-AzServiceLinkerForSpringCloud.md @@ -16,12 +16,12 @@ List all linkers in a spring cloud app's deployment ### Example 2: Get linker by name ```powershell -Get-AzServiceLinkerForSpringCloud -ServiceName servicelinker-springcloud -AppName appconfiguration -DeploymentName "default" -ResourceGroupName servicelinker-test-group -Name postgresql_connection | fl +Get-AzServiceLinkerForSpringCloud -ServiceName servicelinker-springcloud -AppName appconfiguration -DeploymentName "default" -ResourceGroupName servicelinker-test-group -Name postgresql_connection | Format-List ``` ```output AuthInfo : Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Model - s.Api20220501.SecretAuthInfo + s.Api20221101Preview.SecretAuthInfo ClientType : dotnet Id : /subscriptions/00000000-0000-0000-0000-000000000000/re sourceGroups/servicelinker-test-group/providers/ @@ -38,7 +38,7 @@ SystemDataLastModifiedAt : SystemDataLastModifiedBy : SystemDataLastModifiedByType : TargetService : Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Model - s.Api20220501.AzureResource + s.Api20221101Preview.AzureResource Type : microsoft.servicelinker/linkers VNetSolutionType : serviceEndpoint @@ -52,12 +52,12 @@ $identity = @{ ResourceUri = '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/appconfiguration/deployments/default' LinkerName = 'postgresql_connection'} -$identity | Get-AzServiceLinkerForSpringCloud |fl +$identity | Get-AzServiceLinkerForSpringCloud | Format-List ``` ```output AuthInfo : Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Model - s.Api20220501.SecretAuthInfo + s.Api20221101Preview.SecretAuthInfo ClientType : dotnet Id : /subscriptions/00000000-0000-0000-0000-000000000000/re sourceGroups/servicelinker-test-group/providers/ @@ -74,7 +74,7 @@ SystemDataLastModifiedAt : SystemDataLastModifiedBy : SystemDataLastModifiedByType : TargetService : Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Model - s.Api20220501.AzureResource + s.Api20221101Preview.AzureResource Type : microsoft.servicelinker/linkers VNetSolutionType : serviceEndpoint diff --git a/src/ServiceLinker/examples/Get-AzServiceLinkerForWebApp.md b/src/ServiceLinker/examples/Get-AzServiceLinkerForWebApp.md index 40def6f8ee92..8d2c2efb1566 100644 --- a/src/ServiceLinker/examples/Get-AzServiceLinkerForWebApp.md +++ b/src/ServiceLinker/examples/Get-AzServiceLinkerForWebApp.md @@ -16,12 +16,12 @@ List all linkers in the webapp ### Example 2: Get linker by name ```powershell -Get-AzServiceLinkerForWebApp -WebApp servicelinker-webapp -ResourceGroupName servicelinker-test-group -Name postgresql_connection | fl +Get-AzServiceLinkerForWebApp -WebApp servicelinker-webapp -ResourceGroupName servicelinker-test-group -Name postgresql_connection | Format-List ``` ```output AuthInfo : Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Model - s.Api20220501.SecretAuthInfo + s.Api20221101Preview.SecretAuthInfo ClientType : dotnet Id : /subscriptions/00000000-0000-0000-0000-000000000000/re sourceGroups/servicelinker-test-group/providers/ @@ -38,7 +38,7 @@ SystemDataLastModifiedAt : SystemDataLastModifiedBy : SystemDataLastModifiedByType : TargetService : Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Model - s.Api20220501.AzureResource + s.Api20221101Preview.AzureResource Type : microsoft.servicelinker/linkers VNetSolutionType : serviceEndpoint @@ -52,12 +52,12 @@ $identity = @{ ResourceUri = '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-webapp' LinkerName = 'postgresql_connection'} -$identity | Get-AzServiceLinkerForWebApp |fl +$identity | Get-AzServiceLinkerForWebApp | Format-List ``` ```output AuthInfo : Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Model - s.Api20220501.SecretAuthInfo + s.Api20221101Preview.SecretAuthInfo ClientType : dotnet Id : /subscriptions/00000000-0000-0000-0000-000000000000/re sourceGroups/servicelinker-test-group/providers/ @@ -74,7 +74,7 @@ SystemDataLastModifiedAt : SystemDataLastModifiedBy : SystemDataLastModifiedByType : TargetService : Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Model - s.Api20220501.AzureResource + s.Api20221101Preview.AzureResource Type : microsoft.servicelinker/linkers VNetSolutionType : serviceEndpoint diff --git a/src/ServiceLinker/examples/Test-AzServiceLinkerForContainerApp.md b/src/ServiceLinker/examples/Test-AzServiceLinkerForContainerApp.md index 22cbcd179bdc..e3a3794155e9 100644 --- a/src/ServiceLinker/examples/Test-AzServiceLinkerForContainerApp.md +++ b/src/ServiceLinker/examples/Test-AzServiceLinkerForContainerApp.md @@ -1,6 +1,6 @@ ### Example 1: Test Linker ```powershell -Test-AzServiceLinkerForContainerApp -ContainerApp servicelinker-app -ResourceGroupName servicelinker-test-group -Name postgresql_connection | fl +Test-AzServiceLinkerForContainerApp -ContainerApp servicelinker-app -ResourceGroupName servicelinker-test-group -Name postgresql_connection | Format-List ``` ```output diff --git a/src/ServiceLinker/examples/Test-AzServiceLinkerForSpringCloud.md b/src/ServiceLinker/examples/Test-AzServiceLinkerForSpringCloud.md index 06cbad1e8e96..3228b471cfd4 100644 --- a/src/ServiceLinker/examples/Test-AzServiceLinkerForSpringCloud.md +++ b/src/ServiceLinker/examples/Test-AzServiceLinkerForSpringCloud.md @@ -1,6 +1,6 @@ ### Example 1: Test Linker ```powershell -Test-AzServiceLinkerForSpringCloud -ServiceName servicelinker-springcloud -AppName appconfiguration -DeploymentName "default" -ResourceGroupName servicelinker-test-group -Name postgresql_connection | fl +Test-AzServiceLinkerForSpringCloud -ServiceName servicelinker-springcloud -AppName appconfiguration -DeploymentName "default" -ResourceGroupName servicelinker-test-group -Name postgresql_connection | Format-List ``` ```output diff --git a/src/ServiceLinker/examples/Test-AzServiceLinkerForWebApp.md b/src/ServiceLinker/examples/Test-AzServiceLinkerForWebApp.md index ed9db0172aba..b8380164689c 100644 --- a/src/ServiceLinker/examples/Test-AzServiceLinkerForWebApp.md +++ b/src/ServiceLinker/examples/Test-AzServiceLinkerForWebApp.md @@ -1,6 +1,6 @@ ### Example 1: Test Linker ```powershell -Test-AzServiceLinkerForWebApp -WebApp servicelinker-webapp -ResourceGroupName servicelinker-test-group -Name postgresql_connection | fl +Test-AzServiceLinkerForWebApp -WebApp servicelinker-webapp -ResourceGroupName servicelinker-test-group -Name postgresql_connection | Format-List ``` ```output diff --git a/src/ServiceLinker/exports/Get-AzServiceLinkerConfigurationForContainerApp.ps1 b/src/ServiceLinker/exports/Get-AzServiceLinkerConfigurationForContainerApp.ps1 index 64a123ff62ea..11dba22b0881 100644 --- a/src/ServiceLinker/exports/Get-AzServiceLinkerConfigurationForContainerApp.ps1 +++ b/src/ServiceLinker/exports/Get-AzServiceLinkerConfigurationForContainerApp.ps1 @@ -20,15 +20,15 @@ list source configurations for a linker in container app. .Description list source configurations for a linker in container app. .Example -Get-AzServiceLinkerConfigurationForContainerApp -ContainerApp servicelinker-containerapp -ResourceGroupName servicelinker-test-group -LinkerName postgresql_linker |fl +Get-AzServiceLinkerConfigurationForContainerApp -ContainerApp servicelinker-containerapp -ResourceGroupName servicelinker-test-group -LinkerName postgresql_linker | Format-List .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfiguration +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration .Link https://learn.microsoft.com/powershell/module/az.servicelinker/get-azservicelinkerconfigurationforcontainerapp #> function Get-AzServiceLinkerConfigurationForContainerApp { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfiguration])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] @@ -120,7 +120,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { diff --git a/src/ServiceLinker/exports/Get-AzServiceLinkerConfigurationForSpringCloud.ps1 b/src/ServiceLinker/exports/Get-AzServiceLinkerConfigurationForSpringCloud.ps1 index 8d838b5767af..793645453462 100644 --- a/src/ServiceLinker/exports/Get-AzServiceLinkerConfigurationForSpringCloud.ps1 +++ b/src/ServiceLinker/exports/Get-AzServiceLinkerConfigurationForSpringCloud.ps1 @@ -20,15 +20,15 @@ list source configurations for a linker in spring cloud. .Description list source configurations for a linker in spring cloud. .Example -Get-AzServiceLinkerConfigurationForSpringCloud -ServiceName servicelinker-springcloud -AppName appconfiguration -ResourceGroupName servicelinker-test-group -LinkerName postgresql_linker |fl +Get-AzServiceLinkerConfigurationForSpringCloud -ServiceName servicelinker-springcloud -AppName appconfiguration -ResourceGroupName servicelinker-test-group -LinkerName postgresql_linker | Format-List .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfiguration +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration .Link https://learn.microsoft.com/powershell/module/az.servicelinker/get-azservicelinkerconfigurationforspringcloud #> function Get-AzServiceLinkerConfigurationForSpringCloud { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfiguration])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] @@ -133,7 +133,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { diff --git a/src/ServiceLinker/exports/Get-AzServiceLinkerConfigurationForWebApp.ps1 b/src/ServiceLinker/exports/Get-AzServiceLinkerConfigurationForWebApp.ps1 index b3e966083a46..10d69695e35b 100644 --- a/src/ServiceLinker/exports/Get-AzServiceLinkerConfigurationForWebApp.ps1 +++ b/src/ServiceLinker/exports/Get-AzServiceLinkerConfigurationForWebApp.ps1 @@ -20,15 +20,15 @@ list source configurations for a linker in webapp. .Description list source configurations for a linker in webapp. .Example -Get-AzServiceLinkerConfigurationForWebApp -WebApp servicelinker-webapp -ResourceGroupName servicelinker-test-group -LinkerName postgresql_linker |fl +Get-AzServiceLinkerConfigurationForWebApp -WebApp servicelinker-webapp -ResourceGroupName servicelinker-test-group -LinkerName postgresql_linker | Format-List .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfiguration +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration .Link https://learn.microsoft.com/powershell/module/az.servicelinker/get-azservicelinkerconfigurationforwebapp #> function Get-AzServiceLinkerConfigurationForWebApp { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfiguration])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] @@ -120,7 +120,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { diff --git a/src/ServiceLinker/exports/Get-AzServiceLinkerConfigurationName.ps1 b/src/ServiceLinker/exports/Get-AzServiceLinkerConfigurationName.ps1 new file mode 100644 index 000000000000..ed05175c804e --- /dev/null +++ b/src/ServiceLinker/exports/Get-AzServiceLinkerConfigurationName.ps1 @@ -0,0 +1,166 @@ + +# ---------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# Code generated by Microsoft (R) AutoRest Code Generator.Changes may cause incorrect behavior and will be lost if the code +# is regenerated. +# ---------------------------------------------------------------------------------- + +<# +.Synopsis +Lists the configuration names generated by Service Connector for all target, client types, auth types. +.Description +Lists the configuration names generated by Service Connector for all target, client types, auth types. +.Example +Get-AzServiceLinkerConfigurationName + +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItem +.Link +https://learn.microsoft.com/powershell/module/az.servicelinker/get-azservicelinkerconfigurationname +#> +function Get-AzServiceLinkerConfigurationName { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItem])] +[CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] +param( + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Query')] + [System.String] + # OData filter options. + ${Filter}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Query')] + [System.String] + # OData skipToken option for pagination. + ${SkipToken}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + + if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() + } + $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId + if ($preTelemetryId -eq '') { + [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId =(New-Guid).ToString() + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.module]::Instance.Telemetry.Invoke('Create', $MyInvocation, $parameterSet, $PSCmdlet) + } else { + $internalCalledCmdlets = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets + if ($internalCalledCmdlets -eq '') { + [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets = $MyInvocation.MyCommand.Name + } else { + [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets += ',' + $MyInvocation.MyCommand.Name + } + [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId = 'internal' + } + + $mapping = @{ + List = 'Az.ServiceLinker.private\Get-AzServiceLinkerConfigurationName_List'; + } + $cmdInfo = Get-Command -Name $mapping[$parameterSet] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext() + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext() + throw + } + + finally { + $backupTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId + $backupInternalCalledCmdlets = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets + [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext() + } + +} +end { + try { + $steppablePipeline.End() + + [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId = $backupTelemetryId + [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets = $backupInternalCalledCmdlets + if ($preTelemetryId -eq '') { + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.module]::Instance.Telemetry.Invoke('Send', $MyInvocation, $parameterSet, $PSCmdlet) + [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext() + } + [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId = $preTelemetryId + + } catch { + [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext() + throw + } +} +} diff --git a/src/ServiceLinker/exports/Get-AzServiceLinkerForContainerApp.ps1 b/src/ServiceLinker/exports/Get-AzServiceLinkerForContainerApp.ps1 index f8178ad6eacc..e94d5ccdac04 100644 --- a/src/ServiceLinker/exports/Get-AzServiceLinkerForContainerApp.ps1 +++ b/src/ServiceLinker/exports/Get-AzServiceLinkerForContainerApp.ps1 @@ -20,34 +20,39 @@ Returns Linker resource for a given name in container app. .Description Returns Linker resource for a given name in container app. .Example -Get-AzServiceLinkerForContainerApp -ContainerApp servicelinker-app -ResourceGroupName servicelinker-test-group -Scope 'simple-hello-world-container' +Get-AzServiceLinkerForContainerApp -ContainerApp servicelinker-app -ResourceGroupName servicelinker-test-group .Example -Get-AzServiceLinkerForContainerApp -ContainerApp servicelinker-app -ResourceGroupName servicelinker-test-group -Name postgresql_connection | fl +Get-AzServiceLinkerForContainerApp -ContainerApp servicelinker-app -ResourceGroupName servicelinker-test-group -Name postgresql_connection | Format-List .Example $identity = @{ ResourceUri = '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-app' LinkerName = 'postgresql_connection'} -$identity | Get-AzServiceLinkerForContainerApp |fl +$identity | Get-AzServiceLinkerForContainerApp | Format-List .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. INPUTOBJECT : Identity Parameter + [ConnectorName ]: The name of resource. + [DryrunName ]: The name of dryrun. [Id ]: Resource identity path [LinkerName ]: The name Linker resource. + [Location ]: The name of Azure region. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. [ResourceUri ]: The fully qualified Azure Resource manager identifier of the resource to be connected. + [SubscriptionId ]: The ID of the target subscription. .Link https://learn.microsoft.com/powershell/module/az.servicelinker/get-azservicelinkerforcontainerapp #> function Get-AzServiceLinkerForContainerApp { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='List')] @@ -150,7 +155,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { diff --git a/src/ServiceLinker/exports/Get-AzServiceLinkerForSpringCloud.ps1 b/src/ServiceLinker/exports/Get-AzServiceLinkerForSpringCloud.ps1 index f0fc6a6990cb..e84477991cff 100644 --- a/src/ServiceLinker/exports/Get-AzServiceLinkerForSpringCloud.ps1 +++ b/src/ServiceLinker/exports/Get-AzServiceLinkerForSpringCloud.ps1 @@ -22,32 +22,37 @@ Returns Linker resource for a given name in spring cloud. .Example Get-AzServiceLinkerForSpringCloud -ServiceName servicelinker-springcloud -AppName appconfiguration -ResourceGroupName servicelinker-test-group -DeploymentName "default" .Example -Get-AzServiceLinkerForSpringCloud -ServiceName servicelinker-springcloud -AppName appconfiguration -DeploymentName "default" -ResourceGroupName servicelinker-test-group -Name postgresql_connection | fl +Get-AzServiceLinkerForSpringCloud -ServiceName servicelinker-springcloud -AppName appconfiguration -DeploymentName "default" -ResourceGroupName servicelinker-test-group -Name postgresql_connection | Format-List .Example $identity = @{ ResourceUri = '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/appconfiguration/deployments/default' LinkerName = 'postgresql_connection'} -$identity | Get-AzServiceLinkerForSpringCloud |fl +$identity | Get-AzServiceLinkerForSpringCloud | Format-List .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. INPUTOBJECT : Identity Parameter + [ConnectorName ]: The name of resource. + [DryrunName ]: The name of dryrun. [Id ]: Resource identity path [LinkerName ]: The name Linker resource. + [Location ]: The name of Azure region. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. [ResourceUri ]: The fully qualified Azure Resource manager identifier of the resource to be connected. + [SubscriptionId ]: The ID of the target subscription. .Link https://learn.microsoft.com/powershell/module/az.servicelinker/get-azservicelinkerforspringcloud #> function Get-AzServiceLinkerForSpringCloud { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='List')] @@ -165,7 +170,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { diff --git a/src/ServiceLinker/exports/Get-AzServiceLinkerForWebApp.ps1 b/src/ServiceLinker/exports/Get-AzServiceLinkerForWebApp.ps1 index c289d5427791..e41a3ea3e230 100644 --- a/src/ServiceLinker/exports/Get-AzServiceLinkerForWebApp.ps1 +++ b/src/ServiceLinker/exports/Get-AzServiceLinkerForWebApp.ps1 @@ -22,32 +22,37 @@ Returns Linker resource for a given name in webapp. .Example Get-AzServiceLinkerForWebApp -WebApp servicelinker-webapp -ResourceGroupName servicelinker-test-group .Example -Get-AzServiceLinkerForWebApp -WebApp servicelinker-webapp -ResourceGroupName servicelinker-test-group -Name postgresql_connection | fl +Get-AzServiceLinkerForWebApp -WebApp servicelinker-webapp -ResourceGroupName servicelinker-test-group -Name postgresql_connection | Format-List .Example $identity = @{ ResourceUri = '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-webapp' LinkerName = 'postgresql_connection'} -$identity | Get-AzServiceLinkerForWebApp |fl +$identity | Get-AzServiceLinkerForWebApp | Format-List .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. INPUTOBJECT : Identity Parameter + [ConnectorName ]: The name of resource. + [DryrunName ]: The name of dryrun. [Id ]: Resource identity path [LinkerName ]: The name Linker resource. + [Location ]: The name of Azure region. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. [ResourceUri ]: The fully qualified Azure Resource manager identifier of the resource to be connected. + [SubscriptionId ]: The ID of the target subscription. .Link https://learn.microsoft.com/powershell/module/az.servicelinker/get-azservicelinkerforwebapp #> function Get-AzServiceLinkerForWebApp { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='List')] @@ -150,7 +155,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { diff --git a/src/ServiceLinker/exports/New-AzServiceLinkerAzureResourceObject.ps1 b/src/ServiceLinker/exports/New-AzServiceLinkerAzureResourceObject.ps1 index 5b9ea86156fd..0c8e16636d7a 100644 --- a/src/ServiceLinker/exports/New-AzServiceLinkerAzureResourceObject.ps1 +++ b/src/ServiceLinker/exports/New-AzServiceLinkerAzureResourceObject.ps1 @@ -23,12 +23,12 @@ Create an in-memory object for AzureResource. New-AzServiceLinkerAzureResourceObject -Id /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/servicelinker-test-group/providers/Microsoft.KeyVault/vaults/servicelinker-test-kv -ConnectAsKubernetesCsiDriver 1 .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.AzureResource +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AzureResource .Link https://learn.microsoft.com/powershell/module/az.ServiceLinker/new-azservicelinkerazureresourceobject #> function New-AzServiceLinkerAzureResourceObject { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.AzureResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AzureResource])] [CmdletBinding(PositionalBinding=$false)] param( [Parameter(Mandatory)] @@ -62,7 +62,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { diff --git a/src/ServiceLinker/exports/New-AzServiceLinkerConfluentBootstrapServerObject.ps1 b/src/ServiceLinker/exports/New-AzServiceLinkerConfluentBootstrapServerObject.ps1 index 6db49bd353f9..5572210df2ea 100644 --- a/src/ServiceLinker/exports/New-AzServiceLinkerConfluentBootstrapServerObject.ps1 +++ b/src/ServiceLinker/exports/New-AzServiceLinkerConfluentBootstrapServerObject.ps1 @@ -23,12 +23,12 @@ Create an in-memory object for ConfluentBootstrapServer. New-AzServiceLinkerConfluentBootstrapServerObject -Endpoint "pkc-xxxx.eastus.azure.confluent.cloud:9092" .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ConfluentBootstrapServer +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfluentBootstrapServer .Link https://learn.microsoft.com/powershell/module/az.ServiceLinker/new-azservicelinkerconfluentbootstrapserverobject #> function New-AzServiceLinkerConfluentBootstrapServerObject { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ConfluentBootstrapServer])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfluentBootstrapServer])] [CmdletBinding(PositionalBinding=$false)] param( [Parameter(Mandatory)] @@ -55,7 +55,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { diff --git a/src/ServiceLinker/exports/New-AzServiceLinkerConfluentSchemaRegistryObject.ps1 b/src/ServiceLinker/exports/New-AzServiceLinkerConfluentSchemaRegistryObject.ps1 index 3b6ed567b51b..a1ea400cb68c 100644 --- a/src/ServiceLinker/exports/New-AzServiceLinkerConfluentSchemaRegistryObject.ps1 +++ b/src/ServiceLinker/exports/New-AzServiceLinkerConfluentSchemaRegistryObject.ps1 @@ -23,12 +23,12 @@ Create an in-memory object for ConfluentSchemaRegistry. New-AzServiceLinkerConfluentSchemaRegistryObject -Endpoint "https://psrc-xxxx.westus2.azure.confluent.cloud" .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ConfluentSchemaRegistry +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfluentSchemaRegistry .Link https://learn.microsoft.com/powershell/module/az.ServiceLinker/new-azservicelinkerconfluentschemaregistryobject #> function New-AzServiceLinkerConfluentSchemaRegistryObject { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ConfluentSchemaRegistry])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfluentSchemaRegistry])] [CmdletBinding(PositionalBinding=$false)] param( [Parameter(Mandatory)] @@ -55,7 +55,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { diff --git a/src/ServiceLinker/exports/New-AzServiceLinkerForContainerApp.ps1 b/src/ServiceLinker/exports/New-AzServiceLinkerForContainerApp.ps1 index 1602033c6bd6..5a9091497fd3 100644 --- a/src/ServiceLinker/exports/New-AzServiceLinkerForContainerApp.ps1 +++ b/src/ServiceLinker/exports/New-AzServiceLinkerForContainerApp.ps1 @@ -27,7 +27,7 @@ $authInfo=New-AzServiceLinkerSecretAuthInfoObject -Name testUser -SecretValue ** New-AzServiceLinkerForContainerApp -TargetService $target -AuthInfo $auth -ClientType dotnet -LinkerName testLinker -ContainerApp servicelinker-app -ResourceGroupName servicelinker-test-linux-group -Scope 'simple-hello-world-container' .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource .Notes COMPLEX PARAMETER PROPERTIES @@ -42,7 +42,7 @@ TARGETSERVICE : The target service properties https://learn.microsoft.com/powershell/module/az.servicelinker/new-azservicelinkerforcontainerapp #> function New-AzServiceLinkerForContainerApp { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter()] @@ -67,20 +67,14 @@ param( [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase] # The authentication type. # To construct, see NOTES section for AUTHINFO properties and create a hash table. ${AuthInfo}, [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [System.String] - # connection scope in source service. - ${Scope}, - - [Parameter(Mandatory)] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase] # The target service properties # To construct, see NOTES section for TARGETSERVICE properties and create a hash table. ${TargetService}, @@ -93,12 +87,84 @@ param( # The application client type ${ClientType}, + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType] + # Optional, indicate whether to apply configurations on source application. + # If enable, generate configurations and applied to the source application. + # Default is enable. + # If optOut, no configuration change will be made on source. + ${ConfigurationInfoAction}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations]))] + [System.Collections.Hashtable] + # A dictionary of additional configurations to be added. + # Service will auto generate a set of basic configurations and this property is to full fill more customized configurations + ${ConfigurationInfoAdditionalConfiguration}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys]))] + [System.Collections.Hashtable] + # Optional. + # A dictionary of default key name and customized key name mapping. + # If not specified, default key name will be used for generate configurations + ${ConfigurationInfoCustomizedKey}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType] + # Allow Azure services to access the target service if true. + ${FirewallRuleAzureService}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType] + # Allow caller client IP to access the target service if true. + # the property is used when connecting local application to target service. + ${FirewallRuleCallerClientIP}, + + [Parameter()] + [AllowEmptyCollection()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [System.String[]] + # This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client IPs for a given database account. + ${FirewallRuleIPRange}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType] + # Optional. + # Indicates public network solution. + # If enable, enable public network access of target service with best try. + # Default is enable. + # If optOut, opt out public network access configuration. + ${PublicNetworkSolutionAction}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [System.String] + # connection scope in source service. + ${Scope}, + [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] [System.String] # The key vault id to store secret ${SecretStoreKeyVaultId}, + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [System.String] + # The key vault secret name to store secret, only valid when storing one secret + ${SecretStoreKeyVaultSecretName}, + [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType])] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] @@ -196,7 +262,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { diff --git a/src/ServiceLinker/exports/New-AzServiceLinkerForSpringCloud.ps1 b/src/ServiceLinker/exports/New-AzServiceLinkerForSpringCloud.ps1 index 17c75dfdeb05..002048ff2a97 100644 --- a/src/ServiceLinker/exports/New-AzServiceLinkerForSpringCloud.ps1 +++ b/src/ServiceLinker/exports/New-AzServiceLinkerForSpringCloud.ps1 @@ -29,7 +29,7 @@ New-AzServiceLinkerForSpringCloud -TargetService $target -AuthInfo $auth -Client .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource .Notes COMPLEX PARAMETER PROPERTIES @@ -44,7 +44,7 @@ TARGETSERVICE : The target service properties https://learn.microsoft.com/powershell/module/az.servicelinker/new-azservicelinkerforspringcloud #> function New-AzServiceLinkerForSpringCloud { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter()] @@ -69,14 +69,14 @@ param( [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase] # The authentication type. # To construct, see NOTES section for AUTHINFO properties and create a hash table. ${AuthInfo}, [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase] # The target service properties # To construct, see NOTES section for TARGETSERVICE properties and create a hash table. ${TargetService}, @@ -89,6 +89,66 @@ param( # The application client type ${ClientType}, + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType] + # Optional, indicate whether to apply configurations on source application. + # If enable, generate configurations and applied to the source application. + # Default is enable. + # If optOut, no configuration change will be made on source. + ${ConfigurationInfoAction}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations]))] + [System.Collections.Hashtable] + # A dictionary of additional configurations to be added. + # Service will auto generate a set of basic configurations and this property is to full fill more customized configurations + ${ConfigurationInfoAdditionalConfiguration}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys]))] + [System.Collections.Hashtable] + # Optional. + # A dictionary of default key name and customized key name mapping. + # If not specified, default key name will be used for generate configurations + ${ConfigurationInfoCustomizedKey}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType] + # Allow Azure services to access the target service if true. + ${FirewallRuleAzureService}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType] + # Allow caller client IP to access the target service if true. + # the property is used when connecting local application to target service. + ${FirewallRuleCallerClientIP}, + + [Parameter()] + [AllowEmptyCollection()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [System.String[]] + # This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client IPs for a given database account. + ${FirewallRuleIPRange}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType] + # Optional. + # Indicates public network solution. + # If enable, enable public network access of target service with best try. + # Default is enable. + # If optOut, opt out public network access configuration. + ${PublicNetworkSolutionAction}, + [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] [System.String] @@ -101,6 +161,12 @@ param( # The key vault id to store secret ${SecretStoreKeyVaultId}, + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [System.String] + # The key vault secret name to store secret, only valid when storing one secret + ${SecretStoreKeyVaultSecretName}, + [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType])] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] @@ -211,7 +277,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { diff --git a/src/ServiceLinker/exports/New-AzServiceLinkerForWebApp.ps1 b/src/ServiceLinker/exports/New-AzServiceLinkerForWebApp.ps1 index fc290b985424..466bf4013876 100644 --- a/src/ServiceLinker/exports/New-AzServiceLinkerForWebApp.ps1 +++ b/src/ServiceLinker/exports/New-AzServiceLinkerForWebApp.ps1 @@ -27,7 +27,7 @@ $authInfo=New-AzServiceLinkerSecretAuthInfoObject -Name testUser -SecretValue ** New-AzServiceLinkerForWebApp -TargetService $target -AuthInfo $auth -ClientType dotnet -LinkerName testLinker -WebApp servicelinker-app -ResourceGroupName servicelinker-test-group .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource .Notes COMPLEX PARAMETER PROPERTIES @@ -42,7 +42,7 @@ TARGETSERVICE : The target service properties https://learn.microsoft.com/powershell/module/az.servicelinker/new-azservicelinkerforwebapp #> function New-AzServiceLinkerForWebApp { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter()] @@ -67,14 +67,14 @@ param( [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase] # The authentication type. # To construct, see NOTES section for AUTHINFO properties and create a hash table. ${AuthInfo}, [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase] # The target service properties # To construct, see NOTES section for TARGETSERVICE properties and create a hash table. ${TargetService}, @@ -87,6 +87,66 @@ param( # The application client type ${ClientType}, + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType] + # Optional, indicate whether to apply configurations on source application. + # If enable, generate configurations and applied to the source application. + # Default is enable. + # If optOut, no configuration change will be made on source. + ${ConfigurationInfoAction}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations]))] + [System.Collections.Hashtable] + # A dictionary of additional configurations to be added. + # Service will auto generate a set of basic configurations and this property is to full fill more customized configurations + ${ConfigurationInfoAdditionalConfiguration}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys]))] + [System.Collections.Hashtable] + # Optional. + # A dictionary of default key name and customized key name mapping. + # If not specified, default key name will be used for generate configurations + ${ConfigurationInfoCustomizedKey}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType] + # Allow Azure services to access the target service if true. + ${FirewallRuleAzureService}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType] + # Allow caller client IP to access the target service if true. + # the property is used when connecting local application to target service. + ${FirewallRuleCallerClientIP}, + + [Parameter()] + [AllowEmptyCollection()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [System.String[]] + # This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client IPs for a given database account. + ${FirewallRuleIPRange}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType] + # Optional. + # Indicates public network solution. + # If enable, enable public network access of target service with best try. + # Default is enable. + # If optOut, opt out public network access configuration. + ${PublicNetworkSolutionAction}, + [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] [System.String] @@ -99,6 +159,12 @@ param( # The key vault id to store secret ${SecretStoreKeyVaultId}, + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [System.String] + # The key vault secret name to store secret, only valid when storing one secret + ${SecretStoreKeyVaultSecretName}, + [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType])] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] @@ -197,7 +263,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { diff --git a/src/ServiceLinker/exports/New-AzServiceLinkerSecretAuthInfoObject.ps1 b/src/ServiceLinker/exports/New-AzServiceLinkerSecretAuthInfoObject.ps1 index 90737ed7ce85..7c394a7b0d60 100644 --- a/src/ServiceLinker/exports/New-AzServiceLinkerSecretAuthInfoObject.ps1 +++ b/src/ServiceLinker/exports/New-AzServiceLinkerSecretAuthInfoObject.ps1 @@ -27,12 +27,12 @@ New-AzServiceLinkerSecretAuthInfoObject -Name user -SecretKeyVaultUri "https://s New-AzServiceLinkerSecretAuthInfoObject -Name user -SecretNameInKeyVault test-secret .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SecretAuthInfo +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SecretAuthInfo .Link https://learn.microsoft.com/powershell/module/az.ServiceLinker/new-azservicelinkersecretauthinfoobject #> function New-AzServiceLinkerSecretAuthInfoObject { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SecretAuthInfo])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SecretAuthInfo])] [CmdletBinding(PositionalBinding=$false)] param( [Parameter()] @@ -43,7 +43,7 @@ param( [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBase] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBase] # Password or key vault secret for secret auth. # To construct, see NOTES section for SECRETINFO properties and create a hash table. ${SecretInfo}, @@ -84,7 +84,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { diff --git a/src/ServiceLinker/exports/New-AzServiceLinkerServicePrincipalSecretAuthInfoObject.ps1 b/src/ServiceLinker/exports/New-AzServiceLinkerServicePrincipalSecretAuthInfoObject.ps1 index d0e12925f6e6..d8b4877c36c2 100644 --- a/src/ServiceLinker/exports/New-AzServiceLinkerServicePrincipalSecretAuthInfoObject.ps1 +++ b/src/ServiceLinker/exports/New-AzServiceLinkerServicePrincipalSecretAuthInfoObject.ps1 @@ -23,12 +23,12 @@ Create an in-memory object for ServicePrincipalSecretAuthInfo. New-AzServiceLinkerServicePrincipalSecretAuthInfoObject -ClientId 00000000-0000-0000-0000-000000000000 -PrincipalId 00000000-0000-0000-0000-000000000000 -Secret secret .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ServicePrincipalSecretAuthInfo +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ServicePrincipalSecretAuthInfo .Link https://learn.microsoft.com/powershell/module/az.ServiceLinker/new-azservicelinkerserviceprincipalsecretauthinfoobject #> function New-AzServiceLinkerServicePrincipalSecretAuthInfoObject { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ServicePrincipalSecretAuthInfo])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ServicePrincipalSecretAuthInfo])] [CmdletBinding(PositionalBinding=$false)] param( [Parameter(Mandatory)] @@ -67,7 +67,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { diff --git a/src/ServiceLinker/exports/New-AzServiceLinkerSystemAssignedIdentityAuthInfoObject.ps1 b/src/ServiceLinker/exports/New-AzServiceLinkerSystemAssignedIdentityAuthInfoObject.ps1 index 40f4ae092d69..086112f730b1 100644 --- a/src/ServiceLinker/exports/New-AzServiceLinkerSystemAssignedIdentityAuthInfoObject.ps1 +++ b/src/ServiceLinker/exports/New-AzServiceLinkerSystemAssignedIdentityAuthInfoObject.ps1 @@ -23,12 +23,12 @@ Create an in-memory object for SystemAssignedIdentityAuthInfo. New-AzServiceLinkerSystemAssignedIdentityAuthInfoObject .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SystemAssignedIdentityAuthInfo +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SystemAssignedIdentityAuthInfo .Link https://learn.microsoft.com/powershell/module/az.ServiceLinker/new-azservicelinkersystemassignedidentityauthinfoobject #> function New-AzServiceLinkerSystemAssignedIdentityAuthInfoObject { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SystemAssignedIdentityAuthInfo])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SystemAssignedIdentityAuthInfo])] [CmdletBinding(PositionalBinding=$false)] param( [Parameter(DontShow)] @@ -49,7 +49,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { diff --git a/src/ServiceLinker/exports/New-AzServiceLinkerUserAssignedIdentityAuthInfoObject.ps1 b/src/ServiceLinker/exports/New-AzServiceLinkerUserAssignedIdentityAuthInfoObject.ps1 index 58d8b44cd8df..060f7937b068 100644 --- a/src/ServiceLinker/exports/New-AzServiceLinkerUserAssignedIdentityAuthInfoObject.ps1 +++ b/src/ServiceLinker/exports/New-AzServiceLinkerUserAssignedIdentityAuthInfoObject.ps1 @@ -23,12 +23,12 @@ Create an in-memory object for UserAssignedIdentityAuthInfo. New-AzServiceLinkerUserAssignedIdentityAuthInfoObject -ClientId 00000000-0000-0000-0000-000000000000 -SubscriptionId 00000000-0000-0000-0000-000000000000 .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.UserAssignedIdentityAuthInfo +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.UserAssignedIdentityAuthInfo .Link https://learn.microsoft.com/powershell/module/az.ServiceLinker/new-azservicelinkeruserassignedidentityauthinfoobject #> function New-AzServiceLinkerUserAssignedIdentityAuthInfoObject { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.UserAssignedIdentityAuthInfo])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.UserAssignedIdentityAuthInfo])] [CmdletBinding(PositionalBinding=$false)] param( [Parameter()] @@ -61,7 +61,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { diff --git a/src/ServiceLinker/exports/ProxyCmdletDefinitions.ps1 b/src/ServiceLinker/exports/ProxyCmdletDefinitions.ps1 index 0954dbd53ce2..2bc680499312 100644 --- a/src/ServiceLinker/exports/ProxyCmdletDefinitions.ps1 +++ b/src/ServiceLinker/exports/ProxyCmdletDefinitions.ps1 @@ -14,21 +14,172 @@ # is regenerated. # ---------------------------------------------------------------------------------- +<# +.Synopsis +Lists the configuration names generated by Service Connector for all target, client types, auth types. +.Description +Lists the configuration names generated by Service Connector for all target, client types, auth types. +.Example +Get-AzServiceLinkerConfigurationName + +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItem +.Link +https://learn.microsoft.com/powershell/module/az.servicelinker/get-azservicelinkerconfigurationname +#> +function Get-AzServiceLinkerConfigurationName { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItem])] +[CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] +param( + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Query')] + [System.String] + # OData filter options. + ${Filter}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Query')] + [System.String] + # OData skipToken option for pagination. + ${SkipToken}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + + if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() + } + $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId + if ($preTelemetryId -eq '') { + [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId =(New-Guid).ToString() + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.module]::Instance.Telemetry.Invoke('Create', $MyInvocation, $parameterSet, $PSCmdlet) + } else { + $internalCalledCmdlets = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets + if ($internalCalledCmdlets -eq '') { + [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets = $MyInvocation.MyCommand.Name + } else { + [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets += ',' + $MyInvocation.MyCommand.Name + } + [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId = 'internal' + } + + $mapping = @{ + List = 'Az.ServiceLinker.private\Get-AzServiceLinkerConfigurationName_List'; + } + $cmdInfo = Get-Command -Name $mapping[$parameterSet] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext() + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext() + throw + } + + finally { + $backupTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId + $backupInternalCalledCmdlets = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets + [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext() + } + +} +end { + try { + $steppablePipeline.End() + + [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId = $backupTelemetryId + [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::InternalCalledCmdlets = $backupInternalCalledCmdlets + if ($preTelemetryId -eq '') { + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.module]::Instance.Telemetry.Invoke('Send', $MyInvocation, $parameterSet, $PSCmdlet) + [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext() + } + [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId = $preTelemetryId + + } catch { + [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::ClearTelemetryContext() + throw + } +} +} + <# .Synopsis list source configurations for a linker in container app. .Description list source configurations for a linker in container app. .Example -Get-AzServiceLinkerConfigurationForContainerApp -ContainerApp servicelinker-containerapp -ResourceGroupName servicelinker-test-group -LinkerName postgresql_linker |fl +Get-AzServiceLinkerConfigurationForContainerApp -ContainerApp servicelinker-containerapp -ResourceGroupName servicelinker-test-group -LinkerName postgresql_linker | Format-List .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfiguration +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration .Link https://learn.microsoft.com/powershell/module/az.servicelinker/get-azservicelinkerconfigurationforcontainerapp #> function Get-AzServiceLinkerConfigurationForContainerApp { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfiguration])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] @@ -120,7 +271,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { @@ -194,15 +345,15 @@ list source configurations for a linker in spring cloud. .Description list source configurations for a linker in spring cloud. .Example -Get-AzServiceLinkerConfigurationForSpringCloud -ServiceName servicelinker-springcloud -AppName appconfiguration -ResourceGroupName servicelinker-test-group -LinkerName postgresql_linker |fl +Get-AzServiceLinkerConfigurationForSpringCloud -ServiceName servicelinker-springcloud -AppName appconfiguration -ResourceGroupName servicelinker-test-group -LinkerName postgresql_linker | Format-List .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfiguration +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration .Link https://learn.microsoft.com/powershell/module/az.servicelinker/get-azservicelinkerconfigurationforspringcloud #> function Get-AzServiceLinkerConfigurationForSpringCloud { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfiguration])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] @@ -307,7 +458,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { @@ -384,15 +535,15 @@ list source configurations for a linker in webapp. .Description list source configurations for a linker in webapp. .Example -Get-AzServiceLinkerConfigurationForWebApp -WebApp servicelinker-webapp -ResourceGroupName servicelinker-test-group -LinkerName postgresql_linker |fl +Get-AzServiceLinkerConfigurationForWebApp -WebApp servicelinker-webapp -ResourceGroupName servicelinker-test-group -LinkerName postgresql_linker | Format-List .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfiguration +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration .Link https://learn.microsoft.com/powershell/module/az.servicelinker/get-azservicelinkerconfigurationforwebapp #> function Get-AzServiceLinkerConfigurationForWebApp { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfiguration])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] @@ -484,7 +635,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { @@ -558,34 +709,39 @@ Returns Linker resource for a given name in container app. .Description Returns Linker resource for a given name in container app. .Example -Get-AzServiceLinkerForContainerApp -ContainerApp servicelinker-app -ResourceGroupName servicelinker-test-group -Scope 'simple-hello-world-container' +Get-AzServiceLinkerForContainerApp -ContainerApp servicelinker-app -ResourceGroupName servicelinker-test-group .Example -Get-AzServiceLinkerForContainerApp -ContainerApp servicelinker-app -ResourceGroupName servicelinker-test-group -Name postgresql_connection | fl +Get-AzServiceLinkerForContainerApp -ContainerApp servicelinker-app -ResourceGroupName servicelinker-test-group -Name postgresql_connection | Format-List .Example $identity = @{ ResourceUri = '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-app' LinkerName = 'postgresql_connection'} -$identity | Get-AzServiceLinkerForContainerApp |fl +$identity | Get-AzServiceLinkerForContainerApp | Format-List .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. INPUTOBJECT : Identity Parameter + [ConnectorName ]: The name of resource. + [DryrunName ]: The name of dryrun. [Id ]: Resource identity path [LinkerName ]: The name Linker resource. + [Location ]: The name of Azure region. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. [ResourceUri ]: The fully qualified Azure Resource manager identifier of the resource to be connected. + [SubscriptionId ]: The ID of the target subscription. .Link https://learn.microsoft.com/powershell/module/az.servicelinker/get-azservicelinkerforcontainerapp #> function Get-AzServiceLinkerForContainerApp { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='List')] @@ -688,7 +844,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { @@ -766,32 +922,37 @@ Returns Linker resource for a given name in spring cloud. .Example Get-AzServiceLinkerForSpringCloud -ServiceName servicelinker-springcloud -AppName appconfiguration -ResourceGroupName servicelinker-test-group -DeploymentName "default" .Example -Get-AzServiceLinkerForSpringCloud -ServiceName servicelinker-springcloud -AppName appconfiguration -DeploymentName "default" -ResourceGroupName servicelinker-test-group -Name postgresql_connection | fl +Get-AzServiceLinkerForSpringCloud -ServiceName servicelinker-springcloud -AppName appconfiguration -DeploymentName "default" -ResourceGroupName servicelinker-test-group -Name postgresql_connection | Format-List .Example $identity = @{ ResourceUri = '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/appconfiguration/deployments/default' LinkerName = 'postgresql_connection'} -$identity | Get-AzServiceLinkerForSpringCloud |fl +$identity | Get-AzServiceLinkerForSpringCloud | Format-List .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. INPUTOBJECT : Identity Parameter + [ConnectorName ]: The name of resource. + [DryrunName ]: The name of dryrun. [Id ]: Resource identity path [LinkerName ]: The name Linker resource. + [Location ]: The name of Azure region. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. [ResourceUri ]: The fully qualified Azure Resource manager identifier of the resource to be connected. + [SubscriptionId ]: The ID of the target subscription. .Link https://learn.microsoft.com/powershell/module/az.servicelinker/get-azservicelinkerforspringcloud #> function Get-AzServiceLinkerForSpringCloud { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='List')] @@ -909,7 +1070,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { @@ -990,32 +1151,37 @@ Returns Linker resource for a given name in webapp. .Example Get-AzServiceLinkerForWebApp -WebApp servicelinker-webapp -ResourceGroupName servicelinker-test-group .Example -Get-AzServiceLinkerForWebApp -WebApp servicelinker-webapp -ResourceGroupName servicelinker-test-group -Name postgresql_connection | fl +Get-AzServiceLinkerForWebApp -WebApp servicelinker-webapp -ResourceGroupName servicelinker-test-group -Name postgresql_connection | Format-List .Example $identity = @{ ResourceUri = '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-webapp' LinkerName = 'postgresql_connection'} -$identity | Get-AzServiceLinkerForWebApp |fl +$identity | Get-AzServiceLinkerForWebApp | Format-List .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. INPUTOBJECT : Identity Parameter + [ConnectorName ]: The name of resource. + [DryrunName ]: The name of dryrun. [Id ]: Resource identity path [LinkerName ]: The name Linker resource. + [Location ]: The name of Azure region. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. [ResourceUri ]: The fully qualified Azure Resource manager identifier of the resource to be connected. + [SubscriptionId ]: The ID of the target subscription. .Link https://learn.microsoft.com/powershell/module/az.servicelinker/get-azservicelinkerforwebapp #> function Get-AzServiceLinkerForWebApp { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='List')] @@ -1118,7 +1284,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { @@ -1197,12 +1363,12 @@ Create an in-memory object for AzureResource. New-AzServiceLinkerAzureResourceObject -Id /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/servicelinker-test-group/providers/Microsoft.KeyVault/vaults/servicelinker-test-kv -ConnectAsKubernetesCsiDriver 1 .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.AzureResource +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AzureResource .Link https://learn.microsoft.com/powershell/module/az.ServiceLinker/new-azservicelinkerazureresourceobject #> function New-AzServiceLinkerAzureResourceObject { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.AzureResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AzureResource])] [CmdletBinding(PositionalBinding=$false)] param( [Parameter(Mandatory)] @@ -1236,7 +1402,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { @@ -1313,12 +1479,12 @@ Create an in-memory object for ConfluentBootstrapServer. New-AzServiceLinkerConfluentBootstrapServerObject -Endpoint "pkc-xxxx.eastus.azure.confluent.cloud:9092" .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ConfluentBootstrapServer +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfluentBootstrapServer .Link https://learn.microsoft.com/powershell/module/az.ServiceLinker/new-azservicelinkerconfluentbootstrapserverobject #> function New-AzServiceLinkerConfluentBootstrapServerObject { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ConfluentBootstrapServer])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfluentBootstrapServer])] [CmdletBinding(PositionalBinding=$false)] param( [Parameter(Mandatory)] @@ -1345,7 +1511,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { @@ -1422,12 +1588,12 @@ Create an in-memory object for ConfluentSchemaRegistry. New-AzServiceLinkerConfluentSchemaRegistryObject -Endpoint "https://psrc-xxxx.westus2.azure.confluent.cloud" .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ConfluentSchemaRegistry +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfluentSchemaRegistry .Link https://learn.microsoft.com/powershell/module/az.ServiceLinker/new-azservicelinkerconfluentschemaregistryobject #> function New-AzServiceLinkerConfluentSchemaRegistryObject { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ConfluentSchemaRegistry])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfluentSchemaRegistry])] [CmdletBinding(PositionalBinding=$false)] param( [Parameter(Mandatory)] @@ -1454,7 +1620,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { @@ -1535,7 +1701,7 @@ $authInfo=New-AzServiceLinkerSecretAuthInfoObject -Name testUser -SecretValue ** New-AzServiceLinkerForContainerApp -TargetService $target -AuthInfo $auth -ClientType dotnet -LinkerName testLinker -ContainerApp servicelinker-app -ResourceGroupName servicelinker-test-linux-group -Scope 'simple-hello-world-container' .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource .Notes COMPLEX PARAMETER PROPERTIES @@ -1550,7 +1716,7 @@ TARGETSERVICE : The target service properties https://learn.microsoft.com/powershell/module/az.servicelinker/new-azservicelinkerforcontainerapp #> function New-AzServiceLinkerForContainerApp { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter()] @@ -1575,20 +1741,14 @@ param( [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase] # The authentication type. # To construct, see NOTES section for AUTHINFO properties and create a hash table. ${AuthInfo}, [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [System.String] - # connection scope in source service. - ${Scope}, - - [Parameter(Mandatory)] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase] # The target service properties # To construct, see NOTES section for TARGETSERVICE properties and create a hash table. ${TargetService}, @@ -1601,12 +1761,84 @@ param( # The application client type ${ClientType}, + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType] + # Optional, indicate whether to apply configurations on source application. + # If enable, generate configurations and applied to the source application. + # Default is enable. + # If optOut, no configuration change will be made on source. + ${ConfigurationInfoAction}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations]))] + [System.Collections.Hashtable] + # A dictionary of additional configurations to be added. + # Service will auto generate a set of basic configurations and this property is to full fill more customized configurations + ${ConfigurationInfoAdditionalConfiguration}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys]))] + [System.Collections.Hashtable] + # Optional. + # A dictionary of default key name and customized key name mapping. + # If not specified, default key name will be used for generate configurations + ${ConfigurationInfoCustomizedKey}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType] + # Allow Azure services to access the target service if true. + ${FirewallRuleAzureService}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType] + # Allow caller client IP to access the target service if true. + # the property is used when connecting local application to target service. + ${FirewallRuleCallerClientIP}, + + [Parameter()] + [AllowEmptyCollection()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [System.String[]] + # This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client IPs for a given database account. + ${FirewallRuleIPRange}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType] + # Optional. + # Indicates public network solution. + # If enable, enable public network access of target service with best try. + # Default is enable. + # If optOut, opt out public network access configuration. + ${PublicNetworkSolutionAction}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [System.String] + # connection scope in source service. + ${Scope}, + [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] [System.String] # The key vault id to store secret ${SecretStoreKeyVaultId}, + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [System.String] + # The key vault secret name to store secret, only valid when storing one secret + ${SecretStoreKeyVaultSecretName}, + [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType])] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] @@ -1704,7 +1936,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { @@ -1793,7 +2025,7 @@ New-AzServiceLinkerForSpringCloud -TargetService $target -AuthInfo $auth -Client .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource .Notes COMPLEX PARAMETER PROPERTIES @@ -1808,7 +2040,7 @@ TARGETSERVICE : The target service properties https://learn.microsoft.com/powershell/module/az.servicelinker/new-azservicelinkerforspringcloud #> function New-AzServiceLinkerForSpringCloud { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter()] @@ -1833,14 +2065,14 @@ param( [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase] # The authentication type. # To construct, see NOTES section for AUTHINFO properties and create a hash table. ${AuthInfo}, [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase] # The target service properties # To construct, see NOTES section for TARGETSERVICE properties and create a hash table. ${TargetService}, @@ -1853,6 +2085,66 @@ param( # The application client type ${ClientType}, + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType] + # Optional, indicate whether to apply configurations on source application. + # If enable, generate configurations and applied to the source application. + # Default is enable. + # If optOut, no configuration change will be made on source. + ${ConfigurationInfoAction}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations]))] + [System.Collections.Hashtable] + # A dictionary of additional configurations to be added. + # Service will auto generate a set of basic configurations and this property is to full fill more customized configurations + ${ConfigurationInfoAdditionalConfiguration}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys]))] + [System.Collections.Hashtable] + # Optional. + # A dictionary of default key name and customized key name mapping. + # If not specified, default key name will be used for generate configurations + ${ConfigurationInfoCustomizedKey}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType] + # Allow Azure services to access the target service if true. + ${FirewallRuleAzureService}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType] + # Allow caller client IP to access the target service if true. + # the property is used when connecting local application to target service. + ${FirewallRuleCallerClientIP}, + + [Parameter()] + [AllowEmptyCollection()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [System.String[]] + # This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client IPs for a given database account. + ${FirewallRuleIPRange}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType] + # Optional. + # Indicates public network solution. + # If enable, enable public network access of target service with best try. + # Default is enable. + # If optOut, opt out public network access configuration. + ${PublicNetworkSolutionAction}, + [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] [System.String] @@ -1865,6 +2157,12 @@ param( # The key vault id to store secret ${SecretStoreKeyVaultId}, + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [System.String] + # The key vault secret name to store secret, only valid when storing one secret + ${SecretStoreKeyVaultSecretName}, + [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType])] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] @@ -1975,7 +2273,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { @@ -2065,7 +2363,7 @@ $authInfo=New-AzServiceLinkerSecretAuthInfoObject -Name testUser -SecretValue ** New-AzServiceLinkerForWebApp -TargetService $target -AuthInfo $auth -ClientType dotnet -LinkerName testLinker -WebApp servicelinker-app -ResourceGroupName servicelinker-test-group .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource .Notes COMPLEX PARAMETER PROPERTIES @@ -2080,7 +2378,7 @@ TARGETSERVICE : The target service properties https://learn.microsoft.com/powershell/module/az.servicelinker/new-azservicelinkerforwebapp #> function New-AzServiceLinkerForWebApp { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter()] @@ -2105,14 +2403,14 @@ param( [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase] # The authentication type. # To construct, see NOTES section for AUTHINFO properties and create a hash table. ${AuthInfo}, [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase] # The target service properties # To construct, see NOTES section for TARGETSERVICE properties and create a hash table. ${TargetService}, @@ -2125,6 +2423,66 @@ param( # The application client type ${ClientType}, + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType] + # Optional, indicate whether to apply configurations on source application. + # If enable, generate configurations and applied to the source application. + # Default is enable. + # If optOut, no configuration change will be made on source. + ${ConfigurationInfoAction}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations]))] + [System.Collections.Hashtable] + # A dictionary of additional configurations to be added. + # Service will auto generate a set of basic configurations and this property is to full fill more customized configurations + ${ConfigurationInfoAdditionalConfiguration}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys]))] + [System.Collections.Hashtable] + # Optional. + # A dictionary of default key name and customized key name mapping. + # If not specified, default key name will be used for generate configurations + ${ConfigurationInfoCustomizedKey}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType] + # Allow Azure services to access the target service if true. + ${FirewallRuleAzureService}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType] + # Allow caller client IP to access the target service if true. + # the property is used when connecting local application to target service. + ${FirewallRuleCallerClientIP}, + + [Parameter()] + [AllowEmptyCollection()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [System.String[]] + # This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client IPs for a given database account. + ${FirewallRuleIPRange}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType] + # Optional. + # Indicates public network solution. + # If enable, enable public network access of target service with best try. + # Default is enable. + # If optOut, opt out public network access configuration. + ${PublicNetworkSolutionAction}, + [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] [System.String] @@ -2137,6 +2495,12 @@ param( # The key vault id to store secret ${SecretStoreKeyVaultId}, + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [System.String] + # The key vault secret name to store secret, only valid when storing one secret + ${SecretStoreKeyVaultSecretName}, + [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType])] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] @@ -2235,7 +2599,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { @@ -2322,12 +2686,12 @@ New-AzServiceLinkerSecretAuthInfoObject -Name user -SecretKeyVaultUri "https://s New-AzServiceLinkerSecretAuthInfoObject -Name user -SecretNameInKeyVault test-secret .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SecretAuthInfo +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SecretAuthInfo .Link https://learn.microsoft.com/powershell/module/az.ServiceLinker/new-azservicelinkersecretauthinfoobject #> function New-AzServiceLinkerSecretAuthInfoObject { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SecretAuthInfo])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SecretAuthInfo])] [CmdletBinding(PositionalBinding=$false)] param( [Parameter()] @@ -2338,7 +2702,7 @@ param( [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBase] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBase] # Password or key vault secret for secret auth. # To construct, see NOTES section for SECRETINFO properties and create a hash table. ${SecretInfo}, @@ -2379,7 +2743,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { @@ -2456,12 +2820,12 @@ Create an in-memory object for ServicePrincipalSecretAuthInfo. New-AzServiceLinkerServicePrincipalSecretAuthInfoObject -ClientId 00000000-0000-0000-0000-000000000000 -PrincipalId 00000000-0000-0000-0000-000000000000 -Secret secret .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ServicePrincipalSecretAuthInfo +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ServicePrincipalSecretAuthInfo .Link https://learn.microsoft.com/powershell/module/az.ServiceLinker/new-azservicelinkerserviceprincipalsecretauthinfoobject #> function New-AzServiceLinkerServicePrincipalSecretAuthInfoObject { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ServicePrincipalSecretAuthInfo])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ServicePrincipalSecretAuthInfo])] [CmdletBinding(PositionalBinding=$false)] param( [Parameter(Mandatory)] @@ -2500,7 +2864,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { @@ -2577,12 +2941,12 @@ Create an in-memory object for SystemAssignedIdentityAuthInfo. New-AzServiceLinkerSystemAssignedIdentityAuthInfoObject .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SystemAssignedIdentityAuthInfo +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SystemAssignedIdentityAuthInfo .Link https://learn.microsoft.com/powershell/module/az.ServiceLinker/new-azservicelinkersystemassignedidentityauthinfoobject #> function New-AzServiceLinkerSystemAssignedIdentityAuthInfoObject { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SystemAssignedIdentityAuthInfo])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SystemAssignedIdentityAuthInfo])] [CmdletBinding(PositionalBinding=$false)] param( [Parameter(DontShow)] @@ -2603,7 +2967,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { @@ -2680,12 +3044,12 @@ Create an in-memory object for UserAssignedIdentityAuthInfo. New-AzServiceLinkerUserAssignedIdentityAuthInfoObject -ClientId 00000000-0000-0000-0000-000000000000 -SubscriptionId 00000000-0000-0000-0000-000000000000 .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.UserAssignedIdentityAuthInfo +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.UserAssignedIdentityAuthInfo .Link https://learn.microsoft.com/powershell/module/az.ServiceLinker/new-azservicelinkeruserassignedidentityauthinfoobject #> function New-AzServiceLinkerUserAssignedIdentityAuthInfoObject { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.UserAssignedIdentityAuthInfo])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.UserAssignedIdentityAuthInfo])] [CmdletBinding(PositionalBinding=$false)] param( [Parameter()] @@ -2718,7 +3082,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { @@ -2804,9 +3168,14 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. INPUTOBJECT : Identity Parameter + [ConnectorName ]: The name of resource. + [DryrunName ]: The name of dryrun. [Id ]: Resource identity path [LinkerName ]: The name Linker resource. + [Location ]: The name of Azure region. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. [ResourceUri ]: The fully qualified Azure Resource manager identifier of the resource to be connected. + [SubscriptionId ]: The ID of the target subscription. .Link https://learn.microsoft.com/powershell/module/az.servicelinker/remove-azservicelinkerforcontainerapp #> @@ -2929,7 +3298,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { @@ -3016,13 +3385,18 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. INPUTOBJECT : Identity Parameter + [ConnectorName ]: The name of resource. + [DryrunName ]: The name of dryrun. [Id ]: Resource identity path [LinkerName ]: The name Linker resource. + [Location ]: The name of Azure region. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. [ResourceUri ]: The fully qualified Azure Resource manager identifier of the resource to be connected. + [SubscriptionId ]: The ID of the target subscription. .Link https://learn.microsoft.com/powershell/module/az.servicelinker/remove-azservicelinkerforspringcloud #> -function Remove-AzServiceLinkerForSpringcloud { +function Remove-AzServiceLinkerForSpringCloud { [OutputType([System.Boolean])] [CmdletBinding(DefaultParameterSetName='Delete', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( @@ -3154,7 +3528,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { @@ -3171,8 +3545,8 @@ begin { } $mapping = @{ - Delete = 'Az.ServiceLinker.custom\Remove-AzServiceLinkerForSpringcloud'; - DeleteViaIdentity = 'Az.ServiceLinker.custom\Remove-AzServiceLinkerForSpringcloud'; + Delete = 'Az.ServiceLinker.custom\Remove-AzServiceLinkerForSpringCloud'; + DeleteViaIdentity = 'Az.ServiceLinker.custom\Remove-AzServiceLinkerForSpringCloud'; } if (('Delete') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('DeploymentName')) { $PSBoundParameters['DeploymentName'] = "default" @@ -3244,9 +3618,14 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. INPUTOBJECT : Identity Parameter + [ConnectorName ]: The name of resource. + [DryrunName ]: The name of dryrun. [Id ]: Resource identity path [LinkerName ]: The name Linker resource. + [Location ]: The name of Azure region. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. [ResourceUri ]: The fully qualified Azure Resource manager identifier of the resource to be connected. + [SubscriptionId ]: The ID of the target subscription. .Link https://learn.microsoft.com/powershell/module/az.servicelinker/remove-azservicelinkerforwebapp #> @@ -3369,7 +3748,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { @@ -3444,26 +3823,31 @@ Validate a link. .Description Validate a link in container app. .Example -Test-AzServiceLinkerForContainerApp -ContainerApp servicelinker-app -ResourceGroupName servicelinker-test-group -Name postgresql_connection | fl +Test-AzServiceLinkerForContainerApp -ContainerApp servicelinker-app -ResourceGroupName servicelinker-test-group -Name postgresql_connection | Format-List .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResult +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResult .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. INPUTOBJECT : Identity Parameter + [ConnectorName ]: The name of resource. + [DryrunName ]: The name of dryrun. [Id ]: Resource identity path [LinkerName ]: The name Linker resource. + [Location ]: The name of Azure region. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. [ResourceUri ]: The fully qualified Azure Resource manager identifier of the resource to be connected. + [SubscriptionId ]: The ID of the target subscription. .Link https://learn.microsoft.com/powershell/module/az.servicelinker/test-azservicelinkerforcontainerapp #> function Test-AzServiceLinkerForContainerApp { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResult])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResult])] [CmdletBinding(DefaultParameterSetName='Validate', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Validate', Mandatory)] @@ -3575,7 +3959,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { @@ -3650,26 +4034,31 @@ Validate a link in spring cloud. .Description Validate a link in spring cloud. .Example -Test-AzServiceLinkerForSpringCloud -ServiceName servicelinker-springcloud -AppName appconfiguration -DeploymentName "default" -ResourceGroupName servicelinker-test-group -Name postgresql_connection | fl +Test-AzServiceLinkerForSpringCloud -ServiceName servicelinker-springcloud -AppName appconfiguration -DeploymentName "default" -ResourceGroupName servicelinker-test-group -Name postgresql_connection | Format-List .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResult +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResult .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. INPUTOBJECT : Identity Parameter + [ConnectorName ]: The name of resource. + [DryrunName ]: The name of dryrun. [Id ]: Resource identity path [LinkerName ]: The name Linker resource. + [Location ]: The name of Azure region. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. [ResourceUri ]: The fully qualified Azure Resource manager identifier of the resource to be connected. + [SubscriptionId ]: The ID of the target subscription. .Link https://learn.microsoft.com/powershell/module/az.servicelinker/test-azservicelinkerforspringcloud #> function Test-AzServiceLinkerForSpringCloud { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResult])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResult])] [CmdletBinding(DefaultParameterSetName='Validate', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Validate', Mandatory)] @@ -3794,7 +4183,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { @@ -3872,26 +4261,31 @@ Validate a link in webapp. .Description Validate a link in webapp. .Example -Test-AzServiceLinkerForWebApp -WebApp servicelinker-webapp -ResourceGroupName servicelinker-test-group -Name postgresql_connection | fl +Test-AzServiceLinkerForWebApp -WebApp servicelinker-webapp -ResourceGroupName servicelinker-test-group -Name postgresql_connection | Format-List .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResult +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResult .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. INPUTOBJECT : Identity Parameter + [ConnectorName ]: The name of resource. + [DryrunName ]: The name of dryrun. [Id ]: Resource identity path [LinkerName ]: The name Linker resource. + [Location ]: The name of Azure region. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. [ResourceUri ]: The fully qualified Azure Resource manager identifier of the resource to be connected. + [SubscriptionId ]: The ID of the target subscription. .Link https://learn.microsoft.com/powershell/module/az.servicelinker/test-azservicelinkerforwebapp #> function Test-AzServiceLinkerForWebApp { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResult])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResult])] [CmdletBinding(DefaultParameterSetName='Validate', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Validate', Mandatory)] @@ -4003,7 +4397,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { @@ -4085,7 +4479,7 @@ Update-AzServiceLinkerForContainerApp -ResourceGroupName servicelinker-test-linu .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource .Notes COMPLEX PARAMETER PROPERTIES @@ -4095,9 +4489,14 @@ AUTHINFO : The authentication type. AuthType : The authentication type. INPUTOBJECT : Identity Parameter + [ConnectorName ]: The name of resource. + [DryrunName ]: The name of dryrun. [Id ]: Resource identity path [LinkerName ]: The name Linker resource. + [Location ]: The name of Azure region. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. [ResourceUri ]: The fully qualified Azure Resource manager identifier of the resource to be connected. + [SubscriptionId ]: The ID of the target subscription. TARGETSERVICE : The target service properties Type : The target service type. @@ -4105,7 +4504,7 @@ TARGETSERVICE : The target service properties https://learn.microsoft.com/powershell/module/az.servicelinker/update-azservicelinkerforcontainerapp #> function Update-AzServiceLinkerForContainerApp { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource])] [CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] @@ -4136,7 +4535,7 @@ param( [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase] # The authentication type. # To construct, see NOTES section for AUTHINFO properties and create a hash table. ${AuthInfo}, @@ -4156,7 +4555,7 @@ param( [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase] # The target service properties # To construct, see NOTES section for TARGETSERVICE properties and create a hash table. ${TargetService}, @@ -4263,7 +4662,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { @@ -4345,7 +4744,7 @@ Update-AzServiceLinkerForSpringCloud -ServiceName servicelinker-springcloud -App .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource .Notes COMPLEX PARAMETER PROPERTIES @@ -4355,9 +4754,14 @@ AUTHINFO : The authentication type. AuthType : The authentication type. INPUTOBJECT : Identity Parameter + [ConnectorName ]: The name of resource. + [DryrunName ]: The name of dryrun. [Id ]: Resource identity path [LinkerName ]: The name Linker resource. + [Location ]: The name of Azure region. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. [ResourceUri ]: The fully qualified Azure Resource manager identifier of the resource to be connected. + [SubscriptionId ]: The ID of the target subscription. TARGETSERVICE : The target service properties Type : The target service type. @@ -4365,7 +4769,7 @@ TARGETSERVICE : The target service properties https://learn.microsoft.com/powershell/module/az.servicelinker/update-azservicelinkerforspringcloud #> function Update-AzServiceLinkerForSpringCloud { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource])] [CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] @@ -4396,7 +4800,7 @@ param( [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase] # The authentication type. # To construct, see NOTES section for AUTHINFO properties and create a hash table. ${AuthInfo}, @@ -4410,7 +4814,7 @@ param( [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase] # The target service properties # To construct, see NOTES section for TARGETSERVICE properties and create a hash table. ${TargetService}, @@ -4536,7 +4940,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { @@ -4621,7 +5025,7 @@ Update-AzServiceLinkerForWebApp -ResourceGroupName servicelinker-test-linux-grou .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource .Notes COMPLEX PARAMETER PROPERTIES @@ -4631,9 +5035,14 @@ AUTHINFO : The authentication type. AuthType : The authentication type. INPUTOBJECT : Identity Parameter + [ConnectorName ]: The name of resource. + [DryrunName ]: The name of dryrun. [Id ]: Resource identity path [LinkerName ]: The name Linker resource. + [Location ]: The name of Azure region. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. [ResourceUri ]: The fully qualified Azure Resource manager identifier of the resource to be connected. + [SubscriptionId ]: The ID of the target subscription. TARGETSERVICE : The target service properties Type : The target service type. @@ -4641,7 +5050,7 @@ TARGETSERVICE : The target service properties https://learn.microsoft.com/powershell/module/az.servicelinker/update-azservicelinkerforwebapp #> function Update-AzServiceLinkerForWebApp { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource])] [CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] @@ -4672,7 +5081,7 @@ param( [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase] # The authentication type. # To construct, see NOTES section for AUTHINFO properties and create a hash table. ${AuthInfo}, @@ -4686,7 +5095,7 @@ param( [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase] # The target service properties # To construct, see NOTES section for TARGETSERVICE properties and create a hash table. ${TargetService}, @@ -4799,7 +5208,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { diff --git a/src/ServiceLinker/exports/README.md b/src/ServiceLinker/exports/README.md index 0e8209403a94..b5959c261318 100644 --- a/src/ServiceLinker/exports/README.md +++ b/src/ServiceLinker/exports/README.md @@ -1,5 +1,5 @@ # Exports -This directory contains the cmdlets *exported by* `Az.ServiceLinker`. No other cmdlets in this repository are directly exported. What that means is the `Az.ServiceLinker` 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.ServiceLinker`. No other cmdlets in this repository are directly exported. What that means is the `Az.ServiceLinker` 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/ServiceLinker/exports/Remove-AzServiceLinkerForContainerApp.ps1 b/src/ServiceLinker/exports/Remove-AzServiceLinkerForContainerApp.ps1 index 8c5f3a172456..bd53094bbf2a 100644 --- a/src/ServiceLinker/exports/Remove-AzServiceLinkerForContainerApp.ps1 +++ b/src/ServiceLinker/exports/Remove-AzServiceLinkerForContainerApp.ps1 @@ -32,9 +32,14 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. INPUTOBJECT : Identity Parameter + [ConnectorName ]: The name of resource. + [DryrunName ]: The name of dryrun. [Id ]: Resource identity path [LinkerName ]: The name Linker resource. + [Location ]: The name of Azure region. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. [ResourceUri ]: The fully qualified Azure Resource manager identifier of the resource to be connected. + [SubscriptionId ]: The ID of the target subscription. .Link https://learn.microsoft.com/powershell/module/az.servicelinker/remove-azservicelinkerforcontainerapp #> @@ -157,7 +162,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { diff --git a/src/ServiceLinker/exports/Remove-AzServiceLinkerForSpringcloud.ps1 b/src/ServiceLinker/exports/Remove-AzServiceLinkerForSpringcloud.ps1 index a6c4834503c0..3a96123afb66 100644 --- a/src/ServiceLinker/exports/Remove-AzServiceLinkerForSpringcloud.ps1 +++ b/src/ServiceLinker/exports/Remove-AzServiceLinkerForSpringcloud.ps1 @@ -32,13 +32,18 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. INPUTOBJECT : Identity Parameter + [ConnectorName ]: The name of resource. + [DryrunName ]: The name of dryrun. [Id ]: Resource identity path [LinkerName ]: The name Linker resource. + [Location ]: The name of Azure region. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. [ResourceUri ]: The fully qualified Azure Resource manager identifier of the resource to be connected. + [SubscriptionId ]: The ID of the target subscription. .Link https://learn.microsoft.com/powershell/module/az.servicelinker/remove-azservicelinkerforspringcloud #> -function Remove-AzServiceLinkerForSpringcloud { +function Remove-AzServiceLinkerForSpringCloud { [OutputType([System.Boolean])] [CmdletBinding(DefaultParameterSetName='Delete', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( @@ -170,7 +175,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { @@ -187,8 +192,8 @@ begin { } $mapping = @{ - Delete = 'Az.ServiceLinker.custom\Remove-AzServiceLinkerForSpringcloud'; - DeleteViaIdentity = 'Az.ServiceLinker.custom\Remove-AzServiceLinkerForSpringcloud'; + Delete = 'Az.ServiceLinker.custom\Remove-AzServiceLinkerForSpringCloud'; + DeleteViaIdentity = 'Az.ServiceLinker.custom\Remove-AzServiceLinkerForSpringCloud'; } if (('Delete') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('DeploymentName')) { $PSBoundParameters['DeploymentName'] = "default" diff --git a/src/ServiceLinker/exports/Remove-AzServiceLinkerForWebApp.ps1 b/src/ServiceLinker/exports/Remove-AzServiceLinkerForWebApp.ps1 index d134c141c3d7..47b0b4d439a6 100644 --- a/src/ServiceLinker/exports/Remove-AzServiceLinkerForWebApp.ps1 +++ b/src/ServiceLinker/exports/Remove-AzServiceLinkerForWebApp.ps1 @@ -32,9 +32,14 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. INPUTOBJECT : Identity Parameter + [ConnectorName ]: The name of resource. + [DryrunName ]: The name of dryrun. [Id ]: Resource identity path [LinkerName ]: The name Linker resource. + [Location ]: The name of Azure region. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. [ResourceUri ]: The fully qualified Azure Resource manager identifier of the resource to be connected. + [SubscriptionId ]: The ID of the target subscription. .Link https://learn.microsoft.com/powershell/module/az.servicelinker/remove-azservicelinkerforwebapp #> @@ -157,7 +162,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { diff --git a/src/ServiceLinker/exports/Test-AzServiceLinkerForContainerApp.ps1 b/src/ServiceLinker/exports/Test-AzServiceLinkerForContainerApp.ps1 index 0f8189166a84..fc287a854354 100644 --- a/src/ServiceLinker/exports/Test-AzServiceLinkerForContainerApp.ps1 +++ b/src/ServiceLinker/exports/Test-AzServiceLinkerForContainerApp.ps1 @@ -20,26 +20,31 @@ Validate a link. .Description Validate a link in container app. .Example -Test-AzServiceLinkerForContainerApp -ContainerApp servicelinker-app -ResourceGroupName servicelinker-test-group -Name postgresql_connection | fl +Test-AzServiceLinkerForContainerApp -ContainerApp servicelinker-app -ResourceGroupName servicelinker-test-group -Name postgresql_connection | Format-List .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResult +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResult .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. INPUTOBJECT : Identity Parameter + [ConnectorName ]: The name of resource. + [DryrunName ]: The name of dryrun. [Id ]: Resource identity path [LinkerName ]: The name Linker resource. + [Location ]: The name of Azure region. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. [ResourceUri ]: The fully qualified Azure Resource manager identifier of the resource to be connected. + [SubscriptionId ]: The ID of the target subscription. .Link https://learn.microsoft.com/powershell/module/az.servicelinker/test-azservicelinkerforcontainerapp #> function Test-AzServiceLinkerForContainerApp { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResult])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResult])] [CmdletBinding(DefaultParameterSetName='Validate', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Validate', Mandatory)] @@ -151,7 +156,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { diff --git a/src/ServiceLinker/exports/Test-AzServiceLinkerForSpringCloud.ps1 b/src/ServiceLinker/exports/Test-AzServiceLinkerForSpringCloud.ps1 index 92d1e06c7e7e..314052d71cef 100644 --- a/src/ServiceLinker/exports/Test-AzServiceLinkerForSpringCloud.ps1 +++ b/src/ServiceLinker/exports/Test-AzServiceLinkerForSpringCloud.ps1 @@ -20,26 +20,31 @@ Validate a link in spring cloud. .Description Validate a link in spring cloud. .Example -Test-AzServiceLinkerForSpringCloud -ServiceName servicelinker-springcloud -AppName appconfiguration -DeploymentName "default" -ResourceGroupName servicelinker-test-group -Name postgresql_connection | fl +Test-AzServiceLinkerForSpringCloud -ServiceName servicelinker-springcloud -AppName appconfiguration -DeploymentName "default" -ResourceGroupName servicelinker-test-group -Name postgresql_connection | Format-List .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResult +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResult .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. INPUTOBJECT : Identity Parameter + [ConnectorName ]: The name of resource. + [DryrunName ]: The name of dryrun. [Id ]: Resource identity path [LinkerName ]: The name Linker resource. + [Location ]: The name of Azure region. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. [ResourceUri ]: The fully qualified Azure Resource manager identifier of the resource to be connected. + [SubscriptionId ]: The ID of the target subscription. .Link https://learn.microsoft.com/powershell/module/az.servicelinker/test-azservicelinkerforspringcloud #> function Test-AzServiceLinkerForSpringCloud { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResult])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResult])] [CmdletBinding(DefaultParameterSetName='Validate', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Validate', Mandatory)] @@ -164,7 +169,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { diff --git a/src/ServiceLinker/exports/Test-AzServiceLinkerForWebApp.ps1 b/src/ServiceLinker/exports/Test-AzServiceLinkerForWebApp.ps1 index 7fb498ab8206..fd51648c9d16 100644 --- a/src/ServiceLinker/exports/Test-AzServiceLinkerForWebApp.ps1 +++ b/src/ServiceLinker/exports/Test-AzServiceLinkerForWebApp.ps1 @@ -20,26 +20,31 @@ Validate a link in webapp. .Description Validate a link in webapp. .Example -Test-AzServiceLinkerForWebApp -WebApp servicelinker-webapp -ResourceGroupName servicelinker-test-group -Name postgresql_connection | fl +Test-AzServiceLinkerForWebApp -WebApp servicelinker-webapp -ResourceGroupName servicelinker-test-group -Name postgresql_connection | Format-List .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResult +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResult .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. INPUTOBJECT : Identity Parameter + [ConnectorName ]: The name of resource. + [DryrunName ]: The name of dryrun. [Id ]: Resource identity path [LinkerName ]: The name Linker resource. + [Location ]: The name of Azure region. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. [ResourceUri ]: The fully qualified Azure Resource manager identifier of the resource to be connected. + [SubscriptionId ]: The ID of the target subscription. .Link https://learn.microsoft.com/powershell/module/az.servicelinker/test-azservicelinkerforwebapp #> function Test-AzServiceLinkerForWebApp { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResult])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResult])] [CmdletBinding(DefaultParameterSetName='Validate', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Validate', Mandatory)] @@ -151,7 +156,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { diff --git a/src/ServiceLinker/exports/Update-AzServiceLinkerForContainerApp.ps1 b/src/ServiceLinker/exports/Update-AzServiceLinkerForContainerApp.ps1 index 786cd437ae65..f7d39bf04742 100644 --- a/src/ServiceLinker/exports/Update-AzServiceLinkerForContainerApp.ps1 +++ b/src/ServiceLinker/exports/Update-AzServiceLinkerForContainerApp.ps1 @@ -27,7 +27,7 @@ Update-AzServiceLinkerForContainerApp -ResourceGroupName servicelinker-test-linu .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource .Notes COMPLEX PARAMETER PROPERTIES @@ -37,9 +37,14 @@ AUTHINFO : The authentication type. AuthType : The authentication type. INPUTOBJECT : Identity Parameter + [ConnectorName ]: The name of resource. + [DryrunName ]: The name of dryrun. [Id ]: Resource identity path [LinkerName ]: The name Linker resource. + [Location ]: The name of Azure region. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. [ResourceUri ]: The fully qualified Azure Resource manager identifier of the resource to be connected. + [SubscriptionId ]: The ID of the target subscription. TARGETSERVICE : The target service properties Type : The target service type. @@ -47,7 +52,7 @@ TARGETSERVICE : The target service properties https://learn.microsoft.com/powershell/module/az.servicelinker/update-azservicelinkerforcontainerapp #> function Update-AzServiceLinkerForContainerApp { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource])] [CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] @@ -78,7 +83,7 @@ param( [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase] # The authentication type. # To construct, see NOTES section for AUTHINFO properties and create a hash table. ${AuthInfo}, @@ -98,7 +103,7 @@ param( [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase] # The target service properties # To construct, see NOTES section for TARGETSERVICE properties and create a hash table. ${TargetService}, @@ -205,7 +210,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { diff --git a/src/ServiceLinker/exports/Update-AzServiceLinkerForSpringCloud.ps1 b/src/ServiceLinker/exports/Update-AzServiceLinkerForSpringCloud.ps1 index baa31322a1cf..20359e2976a3 100644 --- a/src/ServiceLinker/exports/Update-AzServiceLinkerForSpringCloud.ps1 +++ b/src/ServiceLinker/exports/Update-AzServiceLinkerForSpringCloud.ps1 @@ -27,7 +27,7 @@ Update-AzServiceLinkerForSpringCloud -ServiceName servicelinker-springcloud -App .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource .Notes COMPLEX PARAMETER PROPERTIES @@ -37,9 +37,14 @@ AUTHINFO : The authentication type. AuthType : The authentication type. INPUTOBJECT : Identity Parameter + [ConnectorName ]: The name of resource. + [DryrunName ]: The name of dryrun. [Id ]: Resource identity path [LinkerName ]: The name Linker resource. + [Location ]: The name of Azure region. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. [ResourceUri ]: The fully qualified Azure Resource manager identifier of the resource to be connected. + [SubscriptionId ]: The ID of the target subscription. TARGETSERVICE : The target service properties Type : The target service type. @@ -47,7 +52,7 @@ TARGETSERVICE : The target service properties https://learn.microsoft.com/powershell/module/az.servicelinker/update-azservicelinkerforspringcloud #> function Update-AzServiceLinkerForSpringCloud { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource])] [CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] @@ -78,7 +83,7 @@ param( [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase] # The authentication type. # To construct, see NOTES section for AUTHINFO properties and create a hash table. ${AuthInfo}, @@ -92,7 +97,7 @@ param( [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase] # The target service properties # To construct, see NOTES section for TARGETSERVICE properties and create a hash table. ${TargetService}, @@ -218,7 +223,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { diff --git a/src/ServiceLinker/exports/Update-AzServiceLinkerForWebApp.ps1 b/src/ServiceLinker/exports/Update-AzServiceLinkerForWebApp.ps1 index ecf820f60d13..291e4e65ef22 100644 --- a/src/ServiceLinker/exports/Update-AzServiceLinkerForWebApp.ps1 +++ b/src/ServiceLinker/exports/Update-AzServiceLinkerForWebApp.ps1 @@ -27,7 +27,7 @@ Update-AzServiceLinkerForWebApp -ResourceGroupName servicelinker-test-linux-grou .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource .Notes COMPLEX PARAMETER PROPERTIES @@ -37,9 +37,14 @@ AUTHINFO : The authentication type. AuthType : The authentication type. INPUTOBJECT : Identity Parameter + [ConnectorName ]: The name of resource. + [DryrunName ]: The name of dryrun. [Id ]: Resource identity path [LinkerName ]: The name Linker resource. + [Location ]: The name of Azure region. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. [ResourceUri ]: The fully qualified Azure Resource manager identifier of the resource to be connected. + [SubscriptionId ]: The ID of the target subscription. TARGETSERVICE : The target service properties Type : The target service type. @@ -47,7 +52,7 @@ TARGETSERVICE : The target service properties https://learn.microsoft.com/powershell/module/az.servicelinker/update-azservicelinkerforwebapp #> function Update-AzServiceLinkerForWebApp { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource])] [CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] @@ -78,7 +83,7 @@ param( [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase] # The authentication type. # To construct, see NOTES section for AUTHINFO properties and create a hash table. ${AuthInfo}, @@ -92,7 +97,7 @@ param( [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase] # The target service properties # To construct, see NOTES section for TARGETSERVICE properties and create a hash table. ${TargetService}, @@ -205,7 +210,7 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) { - [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() + [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() } $preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId if ($preTelemetryId -eq '') { diff --git a/src/ServiceLinker/generate-info.json b/src/ServiceLinker/generate-info.json index d1cc7510b40b..2977747ab846 100644 --- a/src/ServiceLinker/generate-info.json +++ b/src/ServiceLinker/generate-info.json @@ -1,8 +1,8 @@ { + "swagger_commit": "71e8a754d34d1af32bf81f23445f286422ca4c40", "node": "v14.15.5", "autorest": "`-- (empty)", - "autorest_powershell": "3.0.486", - "swagger_commit": "4fd842fb73656039ec94ce367bcedee25a57bd18", + "autorest_core": "3.9.4", "autorest_modelerfour": "4.15.414", - "autorest_core": "3.8.4" + "autorest_powershell": "3.0.498" } diff --git a/src/ServiceLinker/generated/Module.cs b/src/ServiceLinker/generated/Module.cs index 3180a673488b..a29bb8cbd72d 100644 --- a/src/ServiceLinker/generated/Module.cs +++ b/src/ServiceLinker/generated/Module.cs @@ -125,7 +125,7 @@ public void Init() /// Creates the module instance. private Module() { - /// constructor + // constructor ClientAPI = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ServiceLinker(); _handler.Proxy = _webProxy; _pipeline = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.HttpPipeline(new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.HttpClientFactory(new global::System.Net.Http.HttpClient())); diff --git a/src/ServiceLinker/generated/api/Models/Any.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Any.PowerShell.cs index 71e2a36d0e20..d38d950319f5 100644 --- a/src/ServiceLinker/generated/api/Models/Any.PowerShell.cs +++ b/src/ServiceLinker/generated/api/Models/Any.PowerShell.cs @@ -31,7 +31,8 @@ public partial class Any /// /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Collections.IDictionary content that should be used. @@ -43,7 +44,8 @@ public partial class Any /// /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Management.Automation.PSObject content that should be used. diff --git a/src/ServiceLinker/generated/api/Models/Any.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Any.TypeConverter.cs index 1dd06c352c22..183ba37a60b5 100644 --- a/src/ServiceLinker/generated/api/Models/Any.TypeConverter.cs +++ b/src/ServiceLinker/generated/api/Models/Any.TypeConverter.cs @@ -14,19 +14,19 @@ public partial class AnyTypeConverter : global::System.Management.Automation.PST { /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); /// - /// Determines if the converter can convert the parameter to the . + /// Determines if the converter can convert the parameter to the type. /// /// the instance to check if it can be converted to the type. @@ -74,19 +74,20 @@ public static bool CanConvertFrom(dynamic sourceValue) } /// - /// Determines if the parameter can be converted to the parameter + /// Determines if the parameter can be converted to the + /// parameter /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false + /// true if the converter can convert the parameter to the parameter, otherwise false /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to @@ -98,8 +99,7 @@ public static bool CanConvertFrom(dynamic sourceValue) public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); /// - /// Converts the parameter to the parameter using and + /// Converts the parameter into an instance of /// /// the value to convert into an instance of . /// diff --git a/src/ServiceLinker/generated/api/Models/Api20/ProxyResource.cs b/src/ServiceLinker/generated/api/Models/Api20/ProxyResource.cs deleted file mode 100644 index 7bb8d981903e..000000000000 --- a/src/ServiceLinker/generated/api/Models/Api20/ProxyResource.cs +++ /dev/null @@ -1,80 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20 -{ - using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; - - /// - /// The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location - /// - public partial class ProxyResource : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IProxyResource, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IProxyResourceInternal, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IValidates - { - /// - /// Backing field for Inherited model - /// - private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResource __resource = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.Resource(); - - /// - /// Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} - /// - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] - public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)__resource).Id; } - - /// Internal Acessors for Id - string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)__resource).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)__resource).Id = value; } - - /// Internal Acessors for Name - string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)__resource).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)__resource).Name = value; } - - /// Internal Acessors for Type - string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)__resource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)__resource).Type = value; } - - /// The name of the resource - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] - public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)__resource).Name; } - - /// - /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" - /// - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] - public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)__resource).Type; } - - /// Creates an new instance. - public ProxyResource() - { - - } - - /// Validates that this object meets the validation criteria. - /// an instance that will receive validation - /// events. - /// - /// A that will be complete when validation is completed. - /// - public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) - { - await eventListener.AssertNotNull(nameof(__resource), __resource); - await eventListener.AssertObjectIsValid(nameof(__resource), __resource); - } - } - /// The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location - public partial interface IProxyResource : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResource - { - - } - /// The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location - internal partial interface IProxyResourceInternal : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal - { - - } -} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20/Resource.cs b/src/ServiceLinker/generated/api/Models/Api20/Resource.cs deleted file mode 100644 index 0b9bfb0dfcfb..000000000000 --- a/src/ServiceLinker/generated/api/Models/Api20/Resource.cs +++ /dev/null @@ -1,108 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20 -{ - using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; - - /// - /// Common fields that are returned in the response for all Azure Resource Manager resources - /// - public partial class Resource : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResource, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal - { - - /// Backing field for property. - private string _id; - - /// - /// Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} - /// - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] - public string Id { get => this._id; } - - /// Internal Acessors for Id - string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal.Id { get => this._id; set { {_id = value;} } } - - /// Internal Acessors for Name - string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal.Name { get => this._name; set { {_name = value;} } } - - /// Internal Acessors for Type - string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal.Type { get => this._type; set { {_type = value;} } } - - /// Backing field for property. - private string _name; - - /// The name of the resource - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] - public string Name { get => this._name; } - - /// Backing field for property. - private string _type; - - /// - /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" - /// - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] - public string Type { get => this._type; } - - /// Creates an new instance. - public Resource() - { - - } - } - /// Common fields that are returned in the response for all Azure Resource Manager resources - public partial interface IResource : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable - { - /// - /// Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} - /// - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( - Required = false, - ReadOnly = true, - Description = @"Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", - SerializedName = @"id", - PossibleTypes = new [] { typeof(string) })] - string Id { get; } - /// The name of the resource - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( - Required = false, - ReadOnly = true, - Description = @"The name of the resource", - SerializedName = @"name", - PossibleTypes = new [] { typeof(string) })] - string Name { get; } - /// - /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" - /// - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( - Required = false, - ReadOnly = true, - Description = @"The type of the resource. E.g. ""Microsoft.Compute/virtualMachines"" or ""Microsoft.Storage/storageAccounts""", - SerializedName = @"type", - PossibleTypes = new [] { typeof(string) })] - string Type { get; } - - } - /// Common fields that are returned in the response for all Azure Resource Manager resources - internal partial interface IResourceInternal - - { - /// - /// Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} - /// - string Id { get; set; } - /// The name of the resource - string Name { get; set; } - /// - /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" - /// - string Type { get; set; } - - } -} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/LinkerList.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20220501/LinkerList.TypeConverter.cs deleted file mode 100644 index 26fc213ff555..000000000000 --- a/src/ServiceLinker/generated/api/Models/Api20220501/LinkerList.TypeConverter.cs +++ /dev/null @@ -1,146 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 -{ - using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; - - /// - /// A PowerShell PSTypeConverter to support converting to an instance of - /// - public partial class LinkerListTypeConverter : global::System.Management.Automation.PSTypeConverter - { - - /// - /// Determines if the converter can convert the parameter to the - /// parameter. - /// - /// the to convert from - /// the to convert to - /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. - /// - public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); - - /// - /// Determines if the converter can convert the parameter to the . - /// - /// the instance to check if it can be converted to the type. - /// - /// true if the instance could be converted to a type, otherwise false - /// - public static bool CanConvertFrom(dynamic sourceValue) - { - if (null == sourceValue) - { - return true; - } - global::System.Type type = sourceValue.GetType(); - if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) - { - // we say yest to PSObjects - return true; - } - if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) - { - // we say yest to Hashtables/dictionaries - return true; - } - try - { - if (null != sourceValue.ToJsonString()) - { - return true; - } - } - catch - { - // Not one of our objects - } - try - { - string text = sourceValue.ToString()?.Trim(); - return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonType.Object; - } - catch - { - // Doesn't look like it can be treated as JSON - } - return false; - } - - /// - /// Determines if the parameter can be converted to the parameter - /// - /// the to convert from - /// the to convert to - /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false - /// - public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; - - /// - /// Converts the parameter to the parameter using and - /// - /// the to convert from - /// the to convert to - /// not used by this TypeConverter. - /// when set to true, will ignore the case when converting. - /// - /// an instance of , or null if there is no suitable conversion. - /// - public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); - - /// - /// Converts the parameter to the parameter using and - /// - /// the value to convert into an instance of . - /// - /// an instance of , or null if there is no suitable conversion. - /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerList ConvertFrom(dynamic sourceValue) - { - if (null == sourceValue) - { - return null; - } - global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerList).IsAssignableFrom(type)) - { - return sourceValue; - } - try - { - return LinkerList.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; - } - catch - { - // Unable to use JSON pattern - } - if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) - { - return LinkerList.DeserializeFromPSObject(sourceValue); - } - if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) - { - return LinkerList.DeserializeFromDictionary(sourceValue); - } - return null; - } - - /// NotImplemented -- this will return null - /// the to convert from - /// the to convert to - /// not used by this TypeConverter. - /// when set to true, will ignore the case when converting. - /// will always return null. - public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; - } -} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/LinkerPatch.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20220501/LinkerPatch.PowerShell.cs deleted file mode 100644 index c45428ef1853..000000000000 --- a/src/ServiceLinker/generated/api/Models/Api20220501/LinkerPatch.PowerShell.cs +++ /dev/null @@ -1,214 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 -{ - using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; - - /// A linker to be updated. - [System.ComponentModel.TypeConverter(typeof(LinkerPatchTypeConverter))] - public partial class LinkerPatch - { - - /// - /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the - /// object before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Collections.IDictionary content that should be used. - - partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); - - /// - /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object - /// before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Management.Automation.PSObject content that should be used. - - partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); - - /// - /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Collections.IDictionary content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); - - /// - /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatch DeserializeFromDictionary(global::System.Collections.IDictionary content) - { - return new LinkerPatch(content); - } - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatch DeserializeFromPSObject(global::System.Management.Automation.PSObject content) - { - return new LinkerPatch(content); - } - - /// - /// Creates a new instance of , deserializing the content from a json string. - /// - /// a string containing a JSON serialized instance of this model. - /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatch FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - internal LinkerPatch(global::System.Collections.IDictionary content) - { - bool returnNow = false; - BeforeDeserializeDictionary(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("Property")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatchInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatchInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.LinkerPropertiesTypeConverter.ConvertFrom); - } - if (content.Contains("SecretStore")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatchInternal)this).SecretStore = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretStore) content.GetValueForProperty("SecretStore",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatchInternal)this).SecretStore, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SecretStoreTypeConverter.ConvertFrom); - } - if (content.Contains("ClientType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatchInternal)this).ClientType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType?) content.GetValueForProperty("ClientType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatchInternal)this).ClientType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType.CreateFrom); - } - if (content.Contains("VNetSolution")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatchInternal)this).VNetSolution = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IVNetSolution) content.GetValueForProperty("VNetSolution",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatchInternal)this).VNetSolution, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.VNetSolutionTypeConverter.ConvertFrom); - } - if (content.Contains("TargetService")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatchInternal)this).TargetService = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase) content.GetValueForProperty("TargetService",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatchInternal)this).TargetService, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.TargetServiceBaseTypeConverter.ConvertFrom); - } - if (content.Contains("AuthInfo")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatchInternal)this).AuthInfo = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase) content.GetValueForProperty("AuthInfo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatchInternal)this).AuthInfo, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.AuthInfoBaseTypeConverter.ConvertFrom); - } - if (content.Contains("ProvisioningState")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatchInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatchInternal)this).ProvisioningState, global::System.Convert.ToString); - } - if (content.Contains("Scope")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatchInternal)this).Scope = (string) content.GetValueForProperty("Scope",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatchInternal)this).Scope, global::System.Convert.ToString); - } - if (content.Contains("VNetSolutionType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatchInternal)this).VNetSolutionType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType?) content.GetValueForProperty("VNetSolutionType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatchInternal)this).VNetSolutionType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType.CreateFrom); - } - if (content.Contains("SecretStoreKeyVaultId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatchInternal)this).SecretStoreKeyVaultId = (string) content.GetValueForProperty("SecretStoreKeyVaultId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatchInternal)this).SecretStoreKeyVaultId, global::System.Convert.ToString); - } - AfterDeserializeDictionary(content); - } - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - internal LinkerPatch(global::System.Management.Automation.PSObject content) - { - bool returnNow = false; - BeforeDeserializePSObject(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("Property")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatchInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatchInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.LinkerPropertiesTypeConverter.ConvertFrom); - } - if (content.Contains("SecretStore")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatchInternal)this).SecretStore = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretStore) content.GetValueForProperty("SecretStore",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatchInternal)this).SecretStore, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SecretStoreTypeConverter.ConvertFrom); - } - if (content.Contains("ClientType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatchInternal)this).ClientType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType?) content.GetValueForProperty("ClientType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatchInternal)this).ClientType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType.CreateFrom); - } - if (content.Contains("VNetSolution")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatchInternal)this).VNetSolution = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IVNetSolution) content.GetValueForProperty("VNetSolution",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatchInternal)this).VNetSolution, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.VNetSolutionTypeConverter.ConvertFrom); - } - if (content.Contains("TargetService")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatchInternal)this).TargetService = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase) content.GetValueForProperty("TargetService",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatchInternal)this).TargetService, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.TargetServiceBaseTypeConverter.ConvertFrom); - } - if (content.Contains("AuthInfo")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatchInternal)this).AuthInfo = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase) content.GetValueForProperty("AuthInfo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatchInternal)this).AuthInfo, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.AuthInfoBaseTypeConverter.ConvertFrom); - } - if (content.Contains("ProvisioningState")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatchInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatchInternal)this).ProvisioningState, global::System.Convert.ToString); - } - if (content.Contains("Scope")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatchInternal)this).Scope = (string) content.GetValueForProperty("Scope",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatchInternal)this).Scope, global::System.Convert.ToString); - } - if (content.Contains("VNetSolutionType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatchInternal)this).VNetSolutionType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType?) content.GetValueForProperty("VNetSolutionType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatchInternal)this).VNetSolutionType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType.CreateFrom); - } - if (content.Contains("SecretStoreKeyVaultId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatchInternal)this).SecretStoreKeyVaultId = (string) content.GetValueForProperty("SecretStoreKeyVaultId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatchInternal)this).SecretStoreKeyVaultId, global::System.Convert.ToString); - } - AfterDeserializePSObject(content); - } - - /// Serializes this instance to a json string. - - /// a containing this model serialized to JSON text. - public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeAll)?.ToString(); - } - /// A linker to be updated. - [System.ComponentModel.TypeConverter(typeof(LinkerPatchTypeConverter))] - public partial interface ILinkerPatch - - { - - } -} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/LinkerPatch.cs b/src/ServiceLinker/generated/api/Models/Api20220501/LinkerPatch.cs deleted file mode 100644 index 0e1bf05892db..000000000000 --- a/src/ServiceLinker/generated/api/Models/Api20220501/LinkerPatch.cs +++ /dev/null @@ -1,157 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 -{ - using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; - - /// A linker to be updated. - public partial class LinkerPatch : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatch, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatchInternal - { - - /// The authentication type. - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase AuthInfo { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)Property).AuthInfo; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)Property).AuthInfo = value ?? null /* model class */; } - - /// The application client type - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType? ClientType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)Property).ClientType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)Property).ClientType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType)""); } - - /// Internal Acessors for Property - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerProperties Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatchInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.LinkerProperties()); set { {_property = value;} } } - - /// Internal Acessors for ProvisioningState - string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatchInternal.ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)Property).ProvisioningState; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)Property).ProvisioningState = value; } - - /// Internal Acessors for SecretStore - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretStore Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatchInternal.SecretStore { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)Property).SecretStore; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)Property).SecretStore = value; } - - /// Internal Acessors for VNetSolution - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IVNetSolution Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatchInternal.VNetSolution { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)Property).VNetSolution; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)Property).VNetSolution = value; } - - /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerProperties _property; - - /// Linker properties - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.LinkerProperties()); set => this._property = value; } - - /// The provisioning state. - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] - public string ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)Property).ProvisioningState; } - - /// connection scope in source service. - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] - public string Scope { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)Property).Scope; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)Property).Scope = value ?? null; } - - /// The key vault id to store secret - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] - public string SecretStoreKeyVaultId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)Property).SecretStoreKeyVaultId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)Property).SecretStoreKeyVaultId = value ?? null; } - - /// The target service properties - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase TargetService { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)Property).TargetService; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)Property).TargetService = value ?? null /* model class */; } - - /// Type of VNet solution. - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType? VNetSolutionType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)Property).VNetSolutionType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)Property).VNetSolutionType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType)""); } - - /// Creates an new instance. - public LinkerPatch() - { - - } - } - /// A linker to be updated. - public partial interface ILinkerPatch : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable - { - /// The authentication type. - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"The authentication type.", - SerializedName = @"authInfo", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase AuthInfo { get; set; } - /// The application client type - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"The application client type", - SerializedName = @"clientType", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType? ClientType { get; set; } - /// The provisioning state. - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( - Required = false, - ReadOnly = true, - Description = @"The provisioning state. ", - SerializedName = @"provisioningState", - PossibleTypes = new [] { typeof(string) })] - string ProvisioningState { get; } - /// connection scope in source service. - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"connection scope in source service.", - SerializedName = @"scope", - PossibleTypes = new [] { typeof(string) })] - string Scope { get; set; } - /// The key vault id to store secret - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"The key vault id to store secret", - SerializedName = @"keyVaultId", - PossibleTypes = new [] { typeof(string) })] - string SecretStoreKeyVaultId { get; set; } - /// The target service properties - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"The target service properties", - SerializedName = @"targetService", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase TargetService { get; set; } - /// Type of VNet solution. - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"Type of VNet solution.", - SerializedName = @"type", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType? VNetSolutionType { get; set; } - - } - /// A linker to be updated. - internal partial interface ILinkerPatchInternal - - { - /// The authentication type. - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase AuthInfo { get; set; } - /// The application client type - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType? ClientType { get; set; } - /// Linker properties - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerProperties Property { get; set; } - /// The provisioning state. - string ProvisioningState { get; set; } - /// connection scope in source service. - string Scope { get; set; } - /// An option to store secret value in secure place - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretStore SecretStore { get; set; } - /// The key vault id to store secret - string SecretStoreKeyVaultId { get; set; } - /// The target service properties - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase TargetService { get; set; } - /// The VNet solution. - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IVNetSolution VNetSolution { get; set; } - /// Type of VNet solution. - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType? VNetSolutionType { get; set; } - - } -} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/LinkerProperties.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20220501/LinkerProperties.PowerShell.cs deleted file mode 100644 index 62ef62d28422..000000000000 --- a/src/ServiceLinker/generated/api/Models/Api20220501/LinkerProperties.PowerShell.cs +++ /dev/null @@ -1,206 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 -{ - using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; - - /// The properties of the linker. - [System.ComponentModel.TypeConverter(typeof(LinkerPropertiesTypeConverter))] - public partial class LinkerProperties - { - - /// - /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the - /// object before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Collections.IDictionary content that should be used. - - partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); - - /// - /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object - /// before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Management.Automation.PSObject content that should be used. - - partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); - - /// - /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Collections.IDictionary content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); - - /// - /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) - { - return new LinkerProperties(content); - } - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) - { - return new LinkerProperties(content); - } - - /// - /// Creates a new instance of , deserializing the content from a json string. - /// - /// a string containing a JSON serialized instance of this model. - /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - internal LinkerProperties(global::System.Collections.IDictionary content) - { - bool returnNow = false; - BeforeDeserializeDictionary(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("VNetSolution")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)this).VNetSolution = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IVNetSolution) content.GetValueForProperty("VNetSolution",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)this).VNetSolution, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.VNetSolutionTypeConverter.ConvertFrom); - } - if (content.Contains("SecretStore")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)this).SecretStore = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretStore) content.GetValueForProperty("SecretStore",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)this).SecretStore, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SecretStoreTypeConverter.ConvertFrom); - } - if (content.Contains("TargetService")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)this).TargetService = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase) content.GetValueForProperty("TargetService",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)this).TargetService, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.TargetServiceBaseTypeConverter.ConvertFrom); - } - if (content.Contains("AuthInfo")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)this).AuthInfo = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase) content.GetValueForProperty("AuthInfo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)this).AuthInfo, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.AuthInfoBaseTypeConverter.ConvertFrom); - } - if (content.Contains("ClientType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)this).ClientType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType?) content.GetValueForProperty("ClientType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)this).ClientType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType.CreateFrom); - } - if (content.Contains("ProvisioningState")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)this).ProvisioningState, global::System.Convert.ToString); - } - if (content.Contains("Scope")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)this).Scope = (string) content.GetValueForProperty("Scope",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)this).Scope, global::System.Convert.ToString); - } - if (content.Contains("VNetSolutionType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)this).VNetSolutionType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType?) content.GetValueForProperty("VNetSolutionType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)this).VNetSolutionType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType.CreateFrom); - } - if (content.Contains("SecretStoreKeyVaultId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)this).SecretStoreKeyVaultId = (string) content.GetValueForProperty("SecretStoreKeyVaultId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)this).SecretStoreKeyVaultId, global::System.Convert.ToString); - } - AfterDeserializeDictionary(content); - } - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - internal LinkerProperties(global::System.Management.Automation.PSObject content) - { - bool returnNow = false; - BeforeDeserializePSObject(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("VNetSolution")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)this).VNetSolution = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IVNetSolution) content.GetValueForProperty("VNetSolution",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)this).VNetSolution, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.VNetSolutionTypeConverter.ConvertFrom); - } - if (content.Contains("SecretStore")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)this).SecretStore = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretStore) content.GetValueForProperty("SecretStore",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)this).SecretStore, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SecretStoreTypeConverter.ConvertFrom); - } - if (content.Contains("TargetService")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)this).TargetService = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase) content.GetValueForProperty("TargetService",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)this).TargetService, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.TargetServiceBaseTypeConverter.ConvertFrom); - } - if (content.Contains("AuthInfo")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)this).AuthInfo = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase) content.GetValueForProperty("AuthInfo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)this).AuthInfo, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.AuthInfoBaseTypeConverter.ConvertFrom); - } - if (content.Contains("ClientType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)this).ClientType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType?) content.GetValueForProperty("ClientType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)this).ClientType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType.CreateFrom); - } - if (content.Contains("ProvisioningState")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)this).ProvisioningState, global::System.Convert.ToString); - } - if (content.Contains("Scope")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)this).Scope = (string) content.GetValueForProperty("Scope",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)this).Scope, global::System.Convert.ToString); - } - if (content.Contains("VNetSolutionType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)this).VNetSolutionType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType?) content.GetValueForProperty("VNetSolutionType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)this).VNetSolutionType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType.CreateFrom); - } - if (content.Contains("SecretStoreKeyVaultId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)this).SecretStoreKeyVaultId = (string) content.GetValueForProperty("SecretStoreKeyVaultId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)this).SecretStoreKeyVaultId, global::System.Convert.ToString); - } - AfterDeserializePSObject(content); - } - - /// Serializes this instance to a json string. - - /// a containing this model serialized to JSON text. - public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeAll)?.ToString(); - } - /// The properties of the linker. - [System.ComponentModel.TypeConverter(typeof(LinkerPropertiesTypeConverter))] - public partial interface ILinkerProperties - - { - - } -} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/LinkerProperties.cs b/src/ServiceLinker/generated/api/Models/Api20220501/LinkerProperties.cs deleted file mode 100644 index 7fe0443b02f2..000000000000 --- a/src/ServiceLinker/generated/api/Models/Api20220501/LinkerProperties.cs +++ /dev/null @@ -1,174 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 -{ - using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; - - /// The properties of the linker. - public partial class LinkerProperties : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerProperties, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal - { - - /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase _authInfo; - - /// The authentication type. - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase AuthInfo { get => (this._authInfo = this._authInfo ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.AuthInfoBase()); set => this._authInfo = value; } - - /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType? _clientType; - - /// The application client type - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType? ClientType { get => this._clientType; set => this._clientType = value; } - - /// Internal Acessors for ProvisioningState - string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal.ProvisioningState { get => this._provisioningState; set { {_provisioningState = value;} } } - - /// Internal Acessors for SecretStore - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretStore Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal.SecretStore { get => (this._secretStore = this._secretStore ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SecretStore()); set { {_secretStore = value;} } } - - /// Internal Acessors for VNetSolution - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IVNetSolution Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal.VNetSolution { get => (this._vNetSolution = this._vNetSolution ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.VNetSolution()); set { {_vNetSolution = value;} } } - - /// Backing field for property. - private string _provisioningState; - - /// The provisioning state. - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] - public string ProvisioningState { get => this._provisioningState; } - - /// Backing field for property. - private string _scope; - - /// connection scope in source service. - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] - public string Scope { get => this._scope; set => this._scope = value; } - - /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretStore _secretStore; - - /// An option to store secret value in secure place - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretStore SecretStore { get => (this._secretStore = this._secretStore ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SecretStore()); set => this._secretStore = value; } - - /// The key vault id to store secret - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] - public string SecretStoreKeyVaultId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretStoreInternal)SecretStore).KeyVaultId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretStoreInternal)SecretStore).KeyVaultId = value ?? null; } - - /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase _targetService; - - /// The target service properties - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase TargetService { get => (this._targetService = this._targetService ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.TargetServiceBase()); set => this._targetService = value; } - - /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IVNetSolution _vNetSolution; - - /// The VNet solution. - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IVNetSolution VNetSolution { get => (this._vNetSolution = this._vNetSolution ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.VNetSolution()); set => this._vNetSolution = value; } - - /// Type of VNet solution. - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType? VNetSolutionType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IVNetSolutionInternal)VNetSolution).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IVNetSolutionInternal)VNetSolution).Type = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType)""); } - - /// Creates an new instance. - public LinkerProperties() - { - - } - } - /// The properties of the linker. - public partial interface ILinkerProperties : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable - { - /// The authentication type. - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"The authentication type.", - SerializedName = @"authInfo", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase AuthInfo { get; set; } - /// The application client type - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"The application client type", - SerializedName = @"clientType", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType? ClientType { get; set; } - /// The provisioning state. - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( - Required = false, - ReadOnly = true, - Description = @"The provisioning state. ", - SerializedName = @"provisioningState", - PossibleTypes = new [] { typeof(string) })] - string ProvisioningState { get; } - /// connection scope in source service. - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"connection scope in source service.", - SerializedName = @"scope", - PossibleTypes = new [] { typeof(string) })] - string Scope { get; set; } - /// The key vault id to store secret - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"The key vault id to store secret", - SerializedName = @"keyVaultId", - PossibleTypes = new [] { typeof(string) })] - string SecretStoreKeyVaultId { get; set; } - /// The target service properties - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"The target service properties", - SerializedName = @"targetService", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase TargetService { get; set; } - /// Type of VNet solution. - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"Type of VNet solution.", - SerializedName = @"type", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType? VNetSolutionType { get; set; } - - } - /// The properties of the linker. - internal partial interface ILinkerPropertiesInternal - - { - /// The authentication type. - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase AuthInfo { get; set; } - /// The application client type - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType? ClientType { get; set; } - /// The provisioning state. - string ProvisioningState { get; set; } - /// connection scope in source service. - string Scope { get; set; } - /// An option to store secret value in secure place - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretStore SecretStore { get; set; } - /// The key vault id to store secret - string SecretStoreKeyVaultId { get; set; } - /// The target service properties - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase TargetService { get; set; } - /// The VNet solution. - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IVNetSolution VNetSolution { get; set; } - /// Type of VNet solution. - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType? VNetSolutionType { get; set; } - - } -} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/LinkerResource.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20220501/LinkerResource.PowerShell.cs deleted file mode 100644 index 99493526bbe8..000000000000 --- a/src/ServiceLinker/generated/api/Models/Api20220501/LinkerResource.PowerShell.cs +++ /dev/null @@ -1,294 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 -{ - using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; - - /// Linker of source and target resource - [System.ComponentModel.TypeConverter(typeof(LinkerResourceTypeConverter))] - public partial class LinkerResource - { - - /// - /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the - /// object before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Collections.IDictionary content that should be used. - - partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); - - /// - /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object - /// before it is returned. Implement this method in a partial class to enable this behavior - /// - /// The global::System.Management.Automation.PSObject content that should be used. - - partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); - - /// - /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Collections.IDictionary content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); - - /// - /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization - /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. - /// Implement this method in a partial class to enable this behavior. - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// Determines if the rest of the serialization should be processed, or if the method should return - /// instantly. - - partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource DeserializeFromDictionary(global::System.Collections.IDictionary content) - { - return new LinkerResource(content); - } - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource DeserializeFromPSObject(global::System.Management.Automation.PSObject content) - { - return new LinkerResource(content); - } - - /// - /// Creates a new instance of , deserializing the content from a json string. - /// - /// a string containing a JSON serialized instance of this model. - /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - internal LinkerResource(global::System.Collections.IDictionary content) - { - bool returnNow = false; - BeforeDeserializeDictionary(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("Property")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.LinkerPropertiesTypeConverter.ConvertFrom); - } - if (content.Contains("SystemData")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.SystemDataTypeConverter.ConvertFrom); - } - if (content.Contains("Id")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)this).Id, global::System.Convert.ToString); - } - if (content.Contains("Name")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)this).Name, global::System.Convert.ToString); - } - if (content.Contains("Type")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)this).Type, global::System.Convert.ToString); - } - if (content.Contains("SecretStore")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).SecretStore = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretStore) content.GetValueForProperty("SecretStore",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).SecretStore, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SecretStoreTypeConverter.ConvertFrom); - } - if (content.Contains("ClientType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).ClientType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType?) content.GetValueForProperty("ClientType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).ClientType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType.CreateFrom); - } - if (content.Contains("SystemDataCreatedBy")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); - } - if (content.Contains("SystemDataCreatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("VNetSolution")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).VNetSolution = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IVNetSolution) content.GetValueForProperty("VNetSolution",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).VNetSolution, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.VNetSolutionTypeConverter.ConvertFrom); - } - if (content.Contains("TargetService")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).TargetService = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase) content.GetValueForProperty("TargetService",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).TargetService, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.TargetServiceBaseTypeConverter.ConvertFrom); - } - if (content.Contains("AuthInfo")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).AuthInfo = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase) content.GetValueForProperty("AuthInfo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).AuthInfo, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.AuthInfoBaseTypeConverter.ConvertFrom); - } - if (content.Contains("ProvisioningState")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).ProvisioningState, global::System.Convert.ToString); - } - if (content.Contains("Scope")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).Scope = (string) content.GetValueForProperty("Scope",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).Scope, global::System.Convert.ToString); - } - if (content.Contains("VNetSolutionType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).VNetSolutionType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType?) content.GetValueForProperty("VNetSolutionType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).VNetSolutionType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType.CreateFrom); - } - if (content.Contains("SystemDataCreatedByType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType.CreateFrom); - } - if (content.Contains("SystemDataLastModifiedBy")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); - } - if (content.Contains("SystemDataLastModifiedByType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType.CreateFrom); - } - if (content.Contains("SystemDataLastModifiedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("SecretStoreKeyVaultId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).SecretStoreKeyVaultId = (string) content.GetValueForProperty("SecretStoreKeyVaultId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).SecretStoreKeyVaultId, global::System.Convert.ToString); - } - AfterDeserializeDictionary(content); - } - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - internal LinkerResource(global::System.Management.Automation.PSObject content) - { - bool returnNow = false; - BeforeDeserializePSObject(content, ref returnNow); - if (returnNow) - { - return; - } - // actually deserialize - if (content.Contains("Property")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.LinkerPropertiesTypeConverter.ConvertFrom); - } - if (content.Contains("SystemData")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.SystemDataTypeConverter.ConvertFrom); - } - if (content.Contains("Id")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)this).Id, global::System.Convert.ToString); - } - if (content.Contains("Name")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)this).Name, global::System.Convert.ToString); - } - if (content.Contains("Type")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)this).Type, global::System.Convert.ToString); - } - if (content.Contains("SecretStore")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).SecretStore = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretStore) content.GetValueForProperty("SecretStore",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).SecretStore, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SecretStoreTypeConverter.ConvertFrom); - } - if (content.Contains("ClientType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).ClientType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType?) content.GetValueForProperty("ClientType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).ClientType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType.CreateFrom); - } - if (content.Contains("SystemDataCreatedBy")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); - } - if (content.Contains("SystemDataCreatedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("VNetSolution")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).VNetSolution = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IVNetSolution) content.GetValueForProperty("VNetSolution",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).VNetSolution, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.VNetSolutionTypeConverter.ConvertFrom); - } - if (content.Contains("TargetService")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).TargetService = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase) content.GetValueForProperty("TargetService",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).TargetService, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.TargetServiceBaseTypeConverter.ConvertFrom); - } - if (content.Contains("AuthInfo")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).AuthInfo = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase) content.GetValueForProperty("AuthInfo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).AuthInfo, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.AuthInfoBaseTypeConverter.ConvertFrom); - } - if (content.Contains("ProvisioningState")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).ProvisioningState, global::System.Convert.ToString); - } - if (content.Contains("Scope")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).Scope = (string) content.GetValueForProperty("Scope",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).Scope, global::System.Convert.ToString); - } - if (content.Contains("VNetSolutionType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).VNetSolutionType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType?) content.GetValueForProperty("VNetSolutionType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).VNetSolutionType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType.CreateFrom); - } - if (content.Contains("SystemDataCreatedByType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType.CreateFrom); - } - if (content.Contains("SystemDataLastModifiedBy")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); - } - if (content.Contains("SystemDataLastModifiedByType")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType.CreateFrom); - } - if (content.Contains("SystemDataLastModifiedAt")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); - } - if (content.Contains("SecretStoreKeyVaultId")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).SecretStoreKeyVaultId = (string) content.GetValueForProperty("SecretStoreKeyVaultId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal)this).SecretStoreKeyVaultId, global::System.Convert.ToString); - } - AfterDeserializePSObject(content); - } - - /// Serializes this instance to a json string. - - /// a containing this model serialized to JSON text. - public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeAll)?.ToString(); - } - /// Linker of source and target resource - [System.ComponentModel.TypeConverter(typeof(LinkerResourceTypeConverter))] - public partial interface ILinkerResource - - { - - } -} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/LinkerResource.cs b/src/ServiceLinker/generated/api/Models/Api20220501/LinkerResource.cs deleted file mode 100644 index e4b534bb665a..000000000000 --- a/src/ServiceLinker/generated/api/Models/Api20220501/LinkerResource.cs +++ /dev/null @@ -1,297 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 -{ - using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; - - /// Linker of source and target resource - public partial class LinkerResource : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IValidates - { - /// - /// Backing field for Inherited model - /// - private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResource __resource = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.Resource(); - - /// The authentication type. - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase AuthInfo { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)Property).AuthInfo; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)Property).AuthInfo = value ?? null /* model class */; } - - /// The application client type - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType? ClientType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)Property).ClientType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)Property).ClientType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType)""); } - - /// - /// Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} - /// - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] - public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)__resource).Id; } - - /// Internal Acessors for Id - string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)__resource).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)__resource).Id = value; } - - /// Internal Acessors for Name - string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)__resource).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)__resource).Name = value; } - - /// Internal Acessors for Type - string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)__resource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)__resource).Type = value; } - - /// Internal Acessors for Property - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerProperties Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.LinkerProperties()); set { {_property = value;} } } - - /// Internal Acessors for ProvisioningState - string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal.ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)Property).ProvisioningState; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)Property).ProvisioningState = value; } - - /// Internal Acessors for SecretStore - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretStore Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal.SecretStore { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)Property).SecretStore; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)Property).SecretStore = value; } - - /// Internal Acessors for SystemData - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemData Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal.SystemData { get => (this._systemData = this._systemData ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.SystemData()); set { {_systemData = value;} } } - - /// Internal Acessors for VNetSolution - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IVNetSolution Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResourceInternal.VNetSolution { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)Property).VNetSolution; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)Property).VNetSolution = value; } - - /// The name of the resource - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] - public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)__resource).Name; } - - /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerProperties _property; - - /// The properties of the linker. - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.LinkerProperties()); set => this._property = value; } - - /// The provisioning state. - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] - public string ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)Property).ProvisioningState; } - - /// connection scope in source service. - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] - public string Scope { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)Property).Scope; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)Property).Scope = value ?? null; } - - /// The key vault id to store secret - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] - public string SecretStoreKeyVaultId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)Property).SecretStoreKeyVaultId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)Property).SecretStoreKeyVaultId = value ?? null; } - - /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemData _systemData; - - /// The system data. - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemData SystemData { get => (this._systemData = this._systemData ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.SystemData()); } - - /// The timestamp of resource creation (UTC). - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] - public global::System.DateTime? SystemDataCreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemDataInternal)SystemData).CreatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemDataInternal)SystemData).CreatedAt = value ?? default(global::System.DateTime); } - - /// The identity that created the resource. - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] - public string SystemDataCreatedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemDataInternal)SystemData).CreatedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemDataInternal)SystemData).CreatedBy = value ?? null; } - - /// The type of identity that created the resource. - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType? SystemDataCreatedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemDataInternal)SystemData).CreatedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemDataInternal)SystemData).CreatedByType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType)""); } - - /// The timestamp of resource last modification (UTC) - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] - public global::System.DateTime? SystemDataLastModifiedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemDataInternal)SystemData).LastModifiedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemDataInternal)SystemData).LastModifiedAt = value ?? default(global::System.DateTime); } - - /// The identity that last modified the resource. - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] - public string SystemDataLastModifiedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemDataInternal)SystemData).LastModifiedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemDataInternal)SystemData).LastModifiedBy = value ?? null; } - - /// The type of identity that last modified the resource. - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType? SystemDataLastModifiedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemDataInternal)SystemData).LastModifiedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemDataInternal)SystemData).LastModifiedByType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType)""); } - - /// The target service properties - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase TargetService { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)Property).TargetService; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)Property).TargetService = value ?? null /* model class */; } - - /// - /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" - /// - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] - public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)__resource).Type; } - - /// Type of VNet solution. - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType? VNetSolutionType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)Property).VNetSolutionType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPropertiesInternal)Property).VNetSolutionType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType)""); } - - /// Creates an new instance. - public LinkerResource() - { - - } - - /// Validates that this object meets the validation criteria. - /// an instance that will receive validation - /// events. - /// - /// A that will be complete when validation is completed. - /// - public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) - { - await eventListener.AssertNotNull(nameof(__resource), __resource); - await eventListener.AssertObjectIsValid(nameof(__resource), __resource); - } - } - /// Linker of source and target resource - public partial interface ILinkerResource : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResource - { - /// The authentication type. - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"The authentication type.", - SerializedName = @"authInfo", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase AuthInfo { get; set; } - /// The application client type - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"The application client type", - SerializedName = @"clientType", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType? ClientType { get; set; } - /// The provisioning state. - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( - Required = false, - ReadOnly = true, - Description = @"The provisioning state. ", - SerializedName = @"provisioningState", - PossibleTypes = new [] { typeof(string) })] - string ProvisioningState { get; } - /// connection scope in source service. - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"connection scope in source service.", - SerializedName = @"scope", - PossibleTypes = new [] { typeof(string) })] - string Scope { get; set; } - /// The key vault id to store secret - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"The key vault id to store secret", - SerializedName = @"keyVaultId", - PossibleTypes = new [] { typeof(string) })] - string SecretStoreKeyVaultId { get; set; } - /// The timestamp of resource creation (UTC). - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"The timestamp of resource creation (UTC).", - SerializedName = @"createdAt", - PossibleTypes = new [] { typeof(global::System.DateTime) })] - global::System.DateTime? SystemDataCreatedAt { get; set; } - /// The identity that created the resource. - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"The identity that created the resource.", - SerializedName = @"createdBy", - PossibleTypes = new [] { typeof(string) })] - string SystemDataCreatedBy { get; set; } - /// The type of identity that created the resource. - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"The type of identity that created the resource.", - SerializedName = @"createdByType", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType? SystemDataCreatedByType { get; set; } - /// The timestamp of resource last modification (UTC) - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"The timestamp of resource last modification (UTC)", - SerializedName = @"lastModifiedAt", - PossibleTypes = new [] { typeof(global::System.DateTime) })] - global::System.DateTime? SystemDataLastModifiedAt { get; set; } - /// The identity that last modified the resource. - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"The identity that last modified the resource.", - SerializedName = @"lastModifiedBy", - PossibleTypes = new [] { typeof(string) })] - string SystemDataLastModifiedBy { get; set; } - /// The type of identity that last modified the resource. - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"The type of identity that last modified the resource.", - SerializedName = @"lastModifiedByType", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType? SystemDataLastModifiedByType { get; set; } - /// The target service properties - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"The target service properties", - SerializedName = @"targetService", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase TargetService { get; set; } - /// Type of VNet solution. - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"Type of VNet solution.", - SerializedName = @"type", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType? VNetSolutionType { get; set; } - - } - /// Linker of source and target resource - internal partial interface ILinkerResourceInternal : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal - { - /// The authentication type. - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase AuthInfo { get; set; } - /// The application client type - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType? ClientType { get; set; } - /// The properties of the linker. - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerProperties Property { get; set; } - /// The provisioning state. - string ProvisioningState { get; set; } - /// connection scope in source service. - string Scope { get; set; } - /// An option to store secret value in secure place - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretStore SecretStore { get; set; } - /// The key vault id to store secret - string SecretStoreKeyVaultId { get; set; } - /// The system data. - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemData SystemData { get; set; } - /// The timestamp of resource creation (UTC). - global::System.DateTime? SystemDataCreatedAt { get; set; } - /// The identity that created the resource. - string SystemDataCreatedBy { get; set; } - /// The type of identity that created the resource. - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType? SystemDataCreatedByType { get; set; } - /// The timestamp of resource last modification (UTC) - global::System.DateTime? SystemDataLastModifiedAt { get; set; } - /// The identity that last modified the resource. - string SystemDataLastModifiedBy { get; set; } - /// The type of identity that last modified the resource. - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType? SystemDataLastModifiedByType { get; set; } - /// The target service properties - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase TargetService { get; set; } - /// The VNet solution. - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IVNetSolution VNetSolution { get; set; } - /// Type of VNet solution. - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType? VNetSolutionType { get; set; } - - } -} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/SourceConfigurationResult.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20220501/SourceConfigurationResult.TypeConverter.cs deleted file mode 100644 index b7a68551f48b..000000000000 --- a/src/ServiceLinker/generated/api/Models/Api20220501/SourceConfigurationResult.TypeConverter.cs +++ /dev/null @@ -1,147 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 -{ - using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; - - /// - /// A PowerShell PSTypeConverter to support converting to an instance of - /// - public partial class SourceConfigurationResultTypeConverter : global::System.Management.Automation.PSTypeConverter - { - - /// - /// Determines if the converter can convert the parameter to the - /// parameter. - /// - /// the to convert from - /// the to convert to - /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. - /// - public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); - - /// - /// Determines if the converter can convert the parameter to the . - /// - /// the instance to check if it can be converted to the type. - /// - /// true if the instance could be converted to a type, otherwise false - /// - public static bool CanConvertFrom(dynamic sourceValue) - { - if (null == sourceValue) - { - return true; - } - global::System.Type type = sourceValue.GetType(); - if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) - { - // we say yest to PSObjects - return true; - } - if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) - { - // we say yest to Hashtables/dictionaries - return true; - } - try - { - if (null != sourceValue.ToJsonString()) - { - return true; - } - } - catch - { - // Not one of our objects - } - try - { - string text = sourceValue.ToString()?.Trim(); - return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonType.Object; - } - catch - { - // Doesn't look like it can be treated as JSON - } - return false; - } - - /// - /// Determines if the parameter can be converted to the parameter - /// - /// the to convert from - /// the to convert to - /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false - /// - public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; - - /// - /// Converts the parameter to the parameter using and - /// - /// the to convert from - /// the to convert to - /// not used by this TypeConverter. - /// when set to true, will ignore the case when converting. - /// - /// an instance of , or null if there is no suitable conversion. - /// - public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); - - /// - /// Converts the parameter to the parameter using and - /// - /// the value to convert into an instance of . - /// - /// an instance of , or null if there is no suitable conversion. - /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfigurationResult ConvertFrom(dynamic sourceValue) - { - if (null == sourceValue) - { - return null; - } - global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfigurationResult).IsAssignableFrom(type)) - { - return sourceValue; - } - try - { - return SourceConfigurationResult.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; - } - catch - { - // Unable to use JSON pattern - } - if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) - { - return SourceConfigurationResult.DeserializeFromPSObject(sourceValue); - } - if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) - { - return SourceConfigurationResult.DeserializeFromDictionary(sourceValue); - } - return null; - } - - /// NotImplemented -- this will return null - /// the to convert from - /// the to convert to - /// not used by this TypeConverter. - /// when set to true, will ignore the case when converting. - /// will always return null. - public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; - } -} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/SystemAssignedIdentityAuthInfo.cs b/src/ServiceLinker/generated/api/Models/Api20220501/SystemAssignedIdentityAuthInfo.cs deleted file mode 100644 index 7853841aa2a8..000000000000 --- a/src/ServiceLinker/generated/api/Models/Api20220501/SystemAssignedIdentityAuthInfo.cs +++ /dev/null @@ -1,57 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 -{ - using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; - - /// The authentication info when authType is systemAssignedIdentity - public partial class SystemAssignedIdentityAuthInfo : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISystemAssignedIdentityAuthInfo, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISystemAssignedIdentityAuthInfoInternal, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IValidates - { - /// - /// Backing field for Inherited model - /// - private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase __authInfoBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.AuthInfoBase(); - - /// The authentication type. - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType AuthType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBaseInternal)__authInfoBase).AuthType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBaseInternal)__authInfoBase).AuthType = value ; } - - /// Creates an new instance. - public SystemAssignedIdentityAuthInfo() - { - - } - - /// Validates that this object meets the validation criteria. - /// an instance that will receive validation - /// events. - /// - /// A that will be complete when validation is completed. - /// - public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) - { - await eventListener.AssertNotNull(nameof(__authInfoBase), __authInfoBase); - await eventListener.AssertObjectIsValid(nameof(__authInfoBase), __authInfoBase); - } - } - /// The authentication info when authType is systemAssignedIdentity - public partial interface ISystemAssignedIdentityAuthInfo : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase - { - - } - /// The authentication info when authType is systemAssignedIdentity - internal partial interface ISystemAssignedIdentityAuthInfoInternal : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBaseInternal - { - - } -} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/UserAssignedIdentityAuthInfo.cs b/src/ServiceLinker/generated/api/Models/Api20220501/UserAssignedIdentityAuthInfo.cs deleted file mode 100644 index 3227575f7792..000000000000 --- a/src/ServiceLinker/generated/api/Models/Api20220501/UserAssignedIdentityAuthInfo.cs +++ /dev/null @@ -1,91 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for license information. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is regenerated. - -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 -{ - using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; - - /// The authentication info when authType is userAssignedIdentity - public partial class UserAssignedIdentityAuthInfo : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IUserAssignedIdentityAuthInfo, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IUserAssignedIdentityAuthInfoInternal, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IValidates - { - /// - /// Backing field for Inherited model - /// - private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase __authInfoBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.AuthInfoBase(); - - /// The authentication type. - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType AuthType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBaseInternal)__authInfoBase).AuthType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBaseInternal)__authInfoBase).AuthType = value ; } - - /// Backing field for property. - private string _clientId; - - /// Client Id for userAssignedIdentity. - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] - public string ClientId { get => this._clientId; set => this._clientId = value; } - - /// Backing field for property. - private string _subscriptionId; - - /// Subscription id for userAssignedIdentity. - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] - public string SubscriptionId { get => this._subscriptionId; set => this._subscriptionId = value; } - - /// Creates an new instance. - public UserAssignedIdentityAuthInfo() - { - - } - - /// Validates that this object meets the validation criteria. - /// an instance that will receive validation - /// events. - /// - /// A that will be complete when validation is completed. - /// - public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) - { - await eventListener.AssertNotNull(nameof(__authInfoBase), __authInfoBase); - await eventListener.AssertObjectIsValid(nameof(__authInfoBase), __authInfoBase); - } - } - /// The authentication info when authType is userAssignedIdentity - public partial interface IUserAssignedIdentityAuthInfo : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase - { - /// Client Id for userAssignedIdentity. - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"Client Id for userAssignedIdentity.", - SerializedName = @"clientId", - PossibleTypes = new [] { typeof(string) })] - string ClientId { get; set; } - /// Subscription id for userAssignedIdentity. - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( - Required = false, - ReadOnly = false, - Description = @"Subscription id for userAssignedIdentity.", - SerializedName = @"subscriptionId", - PossibleTypes = new [] { typeof(string) })] - string SubscriptionId { get; set; } - - } - /// The authentication info when authType is userAssignedIdentity - internal partial interface IUserAssignedIdentityAuthInfoInternal : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBaseInternal - { - /// Client Id for userAssignedIdentity. - string ClientId { get; set; } - /// Subscription id for userAssignedIdentity. - string SubscriptionId { get; set; } - - } -} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/AccessKeyInfoBase.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/AccessKeyInfoBase.PowerShell.cs new file mode 100644 index 000000000000..1207022000ec --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/AccessKeyInfoBase.PowerShell.cs @@ -0,0 +1,156 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// + /// The access key directly from target resource properties, which target service is Azure Resource, such as Microsoft.Storage + /// + [System.ComponentModel.TypeConverter(typeof(AccessKeyInfoBaseTypeConverter))] + public partial class AccessKeyInfoBase + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal AccessKeyInfoBase(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Permission")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAccessKeyInfoBaseInternal)this).Permission = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AccessKeyPermissions[]) content.GetValueForProperty("Permission",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAccessKeyInfoBaseInternal)this).Permission, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AccessKeyPermissions.CreateFrom)); + } + if (content.Contains("AuthType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)this).AuthType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType) content.GetValueForProperty("AuthType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)this).AuthType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType.CreateFrom); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal AccessKeyInfoBase(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Permission")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAccessKeyInfoBaseInternal)this).Permission = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AccessKeyPermissions[]) content.GetValueForProperty("Permission",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAccessKeyInfoBaseInternal)this).Permission, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AccessKeyPermissions.CreateFrom)); + } + if (content.Contains("AuthType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)this).AuthType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType) content.GetValueForProperty("AuthType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)this).AuthType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType.CreateFrom); + } + AfterDeserializePSObject(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAccessKeyInfoBase DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new AccessKeyInfoBase(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAccessKeyInfoBase DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new AccessKeyInfoBase(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAccessKeyInfoBase FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// The access key directly from target resource properties, which target service is Azure Resource, such as Microsoft.Storage + [System.ComponentModel.TypeConverter(typeof(AccessKeyInfoBaseTypeConverter))] + public partial interface IAccessKeyInfoBase + + { + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/AccessKeyInfoBase.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/AccessKeyInfoBase.TypeConverter.cs new file mode 100644 index 000000000000..e2c2d8940c92 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/AccessKeyInfoBase.TypeConverter.cs @@ -0,0 +1,147 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class AccessKeyInfoBaseTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// type. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the + /// parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter into an instance of + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAccessKeyInfoBase ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAccessKeyInfoBase).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return AccessKeyInfoBase.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return AccessKeyInfoBase.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return AccessKeyInfoBase.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/AccessKeyInfoBase.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/AccessKeyInfoBase.cs new file mode 100644 index 000000000000..4401f3036b93 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/AccessKeyInfoBase.cs @@ -0,0 +1,85 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// + /// The access key directly from target resource properties, which target service is Azure Resource, such as Microsoft.Storage + /// + public partial class AccessKeyInfoBase : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAccessKeyInfoBase, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAccessKeyInfoBaseInternal, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IValidates + { + /// + /// Backing field for Inherited model + /// + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase __authInfoBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AuthInfoBase(); + + /// The authentication type. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType AuthType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)__authInfoBase).AuthType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)__authInfoBase).AuthType = value ; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AccessKeyPermissions[] _permission; + + /// + /// Permissions of the accessKey. `Read` and `Write` are for Azure Cosmos DB and Azure App Configuration, `Listen`, `Send` + /// and `Manage` are for Azure Event Hub and Azure Service Bus. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AccessKeyPermissions[] Permission { get => this._permission; set => this._permission = value; } + + /// Creates an new instance. + public AccessKeyInfoBase() + { + + } + + /// Validates that this object meets the validation criteria. + /// an instance that will receive validation + /// events. + /// + /// A that will be complete when validation is completed. + /// + public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) + { + await eventListener.AssertNotNull(nameof(__authInfoBase), __authInfoBase); + await eventListener.AssertObjectIsValid(nameof(__authInfoBase), __authInfoBase); + } + } + /// The access key directly from target resource properties, which target service is Azure Resource, such as Microsoft.Storage + public partial interface IAccessKeyInfoBase : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase + { + /// + /// Permissions of the accessKey. `Read` and `Write` are for Azure Cosmos DB and Azure App Configuration, `Listen`, `Send` + /// and `Manage` are for Azure Event Hub and Azure Service Bus. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Permissions of the accessKey. `Read` and `Write` are for Azure Cosmos DB and Azure App Configuration, `Listen`, `Send` and `Manage` are for Azure Event Hub and Azure Service Bus.", + SerializedName = @"permissions", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AccessKeyPermissions) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AccessKeyPermissions[] Permission { get; set; } + + } + /// The access key directly from target resource properties, which target service is Azure Resource, such as Microsoft.Storage + internal partial interface IAccessKeyInfoBaseInternal : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal + { + /// + /// Permissions of the accessKey. `Read` and `Write` are for Azure Cosmos DB and Azure App Configuration, `Listen`, `Send` + /// and `Manage` are for Azure Event Hub and Azure Service Bus. + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AccessKeyPermissions[] Permission { get; set; } + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/AccessKeyInfoBase.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/AccessKeyInfoBase.json.cs new file mode 100644 index 000000000000..a27131093baa --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/AccessKeyInfoBase.json.cs @@ -0,0 +1,120 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// + /// The access key directly from target resource properties, which target service is Azure Resource, such as Microsoft.Storage + /// + public partial class AccessKeyInfoBase + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the + /// output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject instance to deserialize from. + internal AccessKeyInfoBase(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + __authInfoBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AuthInfoBase(json); + {_permission = If( json?.PropertyT("permissions"), out var __jsonPermissions) ? If( __jsonPermissions as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AccessKeyPermissions) (__u is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString __t ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AccessKeyPermissions)(__t.ToString()) : ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AccessKeyPermissions)""))) ))() : null : Permission;} + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAccessKeyInfoBase. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAccessKeyInfoBase. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAccessKeyInfoBase FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new AccessKeyInfoBase(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + __authInfoBase?.ToJson(container, serializationMode); + if (null != this._permission) + { + var __w = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.XNodeArray(); + foreach( var __x in this._permission ) + { + AddIf(null != (((object)__x)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(__x.ToString()) : null ,__w.Add); + } + container.Add("permissions",__w); + } + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/AuthInfoBase.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/AuthInfoBase.PowerShell.cs similarity index 79% rename from src/ServiceLinker/generated/api/Models/Api20220501/AuthInfoBase.PowerShell.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/AuthInfoBase.PowerShell.cs index d87122d42dff..6c6a7aeaad2f 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/AuthInfoBase.PowerShell.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/AuthInfoBase.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -31,7 +31,8 @@ public partial class AuthInfoBase /// /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Collections.IDictionary content that should be used. @@ -43,7 +44,8 @@ public partial class AuthInfoBase /// /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -53,7 +55,7 @@ public partial class AuthInfoBase partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -68,13 +70,13 @@ internal AuthInfoBase(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("AuthType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBaseInternal)this).AuthType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType) content.GetValueForProperty("AuthType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBaseInternal)this).AuthType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)this).AuthType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType) content.GetValueForProperty("AuthType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)this).AuthType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType.CreateFrom); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -89,33 +91,33 @@ internal AuthInfoBase(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("AuthType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBaseInternal)this).AuthType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType) content.GetValueForProperty("AuthType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBaseInternal)this).AuthType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)this).AuthType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType) content.GetValueForProperty("AuthType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)this).AuthType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType.CreateFrom); } AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new AuthInfoBase(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new AuthInfoBase(content); } @@ -125,7 +127,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api2022050 /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/AuthInfoBase.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/AuthInfoBase.TypeConverter.cs similarity index 82% rename from src/ServiceLinker/generated/api/Models/Api20220501/AuthInfoBase.TypeConverter.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/AuthInfoBase.TypeConverter.cs index 65c12dfde814..daa19eca4867 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/AuthInfoBase.TypeConverter.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/AuthInfoBase.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -14,19 +14,20 @@ public partial class AuthInfoBaseTypeConverter : global::System.Management.Autom { /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); /// - /// Determines if the converter can convert the parameter to the . + /// Determines if the converter can convert the parameter to the + /// type. /// /// the instance to check if it can be converted to the type. @@ -74,19 +75,20 @@ public static bool CanConvertFrom(dynamic sourceValue) } /// - /// Determines if the parameter can be converted to the parameter + /// Determines if the parameter can be converted to the + /// parameter /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false + /// true if the converter can convert the parameter to the parameter, otherwise false /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to @@ -98,21 +100,20 @@ public static bool CanConvertFrom(dynamic sourceValue) public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); /// - /// Converts the parameter to the parameter using and + /// Converts the parameter into an instance of /// /// the value to convert into an instance of . /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/AuthInfoBase.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/AuthInfoBase.cs similarity index 95% rename from src/ServiceLinker/generated/api/Models/Api20220501/AuthInfoBase.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/AuthInfoBase.cs index e8b4a9056eb5..ba1d3a29b322 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/AuthInfoBase.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/AuthInfoBase.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; /// The authentication info public partial class AuthInfoBase : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBaseInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal { /// Backing field for property. diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/AuthInfoBase.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/AuthInfoBase.json.cs similarity index 93% rename from src/ServiceLinker/generated/api/Models/Api20220501/AuthInfoBase.json.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/AuthInfoBase.json.cs index 2161ec63a4c3..0f743254b1bb 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/AuthInfoBase.json.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/AuthInfoBase.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; @@ -70,15 +70,15 @@ internal AuthInfoBase(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.J } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase. - /// Note: the Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase interface is polymorphic, + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase. + /// Note: the Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase interface is polymorphic, /// and the precise model class that will get deserialized is determined at runtime based on the payload. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) { if (!(node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json)) { @@ -88,6 +88,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api2022050 switch ( json.StringProperty("authType") ) { + case "accessKey": + { + return new AccessKeyInfoBase(json); + } case "secret": { return new SecretAuthInfo(json); @@ -108,6 +112,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api2022050 { return new ServicePrincipalCertificateAuthInfo(json); } + case "userAccount": + { + return new UserAccountAuthInfo(json); + } } return new AuthInfoBase(json); } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/AzureKeyVaultProperties.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/AzureKeyVaultProperties.PowerShell.cs similarity index 74% rename from src/ServiceLinker/generated/api/Models/Api20220501/AzureKeyVaultProperties.PowerShell.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/AzureKeyVaultProperties.PowerShell.cs index 0c88749abf60..14d449e1e709 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/AzureKeyVaultProperties.PowerShell.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/AzureKeyVaultProperties.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -31,7 +31,8 @@ public partial class AzureKeyVaultProperties /// /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Collections.IDictionary content that should be used. @@ -43,7 +44,8 @@ public partial class AzureKeyVaultProperties /// /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -53,7 +55,7 @@ public partial class AzureKeyVaultProperties partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -68,17 +70,17 @@ internal AzureKeyVaultProperties(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("ConnectAsKubernetesCsiDriver")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureKeyVaultPropertiesInternal)this).ConnectAsKubernetesCsiDriver = (bool?) content.GetValueForProperty("ConnectAsKubernetesCsiDriver",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureKeyVaultPropertiesInternal)this).ConnectAsKubernetesCsiDriver, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureKeyVaultPropertiesInternal)this).ConnectAsKubernetesCsiDriver = (bool?) content.GetValueForProperty("ConnectAsKubernetesCsiDriver",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureKeyVaultPropertiesInternal)this).ConnectAsKubernetesCsiDriver, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResourcePropertiesBaseInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResourcePropertiesBaseInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourcePropertiesBaseInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourcePropertiesBaseInternal)this).Type, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -93,39 +95,39 @@ internal AzureKeyVaultProperties(global::System.Management.Automation.PSObject c // actually deserialize if (content.Contains("ConnectAsKubernetesCsiDriver")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureKeyVaultPropertiesInternal)this).ConnectAsKubernetesCsiDriver = (bool?) content.GetValueForProperty("ConnectAsKubernetesCsiDriver",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureKeyVaultPropertiesInternal)this).ConnectAsKubernetesCsiDriver, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureKeyVaultPropertiesInternal)this).ConnectAsKubernetesCsiDriver = (bool?) content.GetValueForProperty("ConnectAsKubernetesCsiDriver",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureKeyVaultPropertiesInternal)this).ConnectAsKubernetesCsiDriver, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResourcePropertiesBaseInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResourcePropertiesBaseInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourcePropertiesBaseInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourcePropertiesBaseInternal)this).Type, global::System.Convert.ToString); } AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureKeyVaultProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureKeyVaultProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new AzureKeyVaultProperties(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureKeyVaultProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureKeyVaultProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new AzureKeyVaultProperties(content); } @@ -135,7 +137,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api2022050 /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureKeyVaultProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureKeyVaultProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/AzureKeyVaultProperties.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/AzureKeyVaultProperties.TypeConverter.cs similarity index 81% rename from src/ServiceLinker/generated/api/Models/Api20220501/AzureKeyVaultProperties.TypeConverter.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/AzureKeyVaultProperties.TypeConverter.cs index 9a8f6ce78eb0..589c8529738f 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/AzureKeyVaultProperties.TypeConverter.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/AzureKeyVaultProperties.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -14,20 +14,20 @@ public partial class AzureKeyVaultPropertiesTypeConverter : global::System.Manag { /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); /// - /// Determines if the converter can convert the parameter to the . + /// Determines if the converter can convert the parameter to the + /// type. /// /// the instance to check if it can be converted to the type. @@ -75,19 +75,20 @@ public static bool CanConvertFrom(dynamic sourceValue) } /// - /// Determines if the parameter can be converted to the parameter + /// Determines if the parameter can be converted to the + /// parameter /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false + /// true if the converter can convert the parameter to the parameter, otherwise false /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to @@ -99,21 +100,20 @@ public static bool CanConvertFrom(dynamic sourceValue) public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); /// - /// Converts the parameter to the parameter using and + /// Converts the parameter into an instance of /// /// the value to convert into an instance of . /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureKeyVaultProperties ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureKeyVaultProperties ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureKeyVaultProperties).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureKeyVaultProperties).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/AzureKeyVaultProperties.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/AzureKeyVaultProperties.cs similarity index 79% rename from src/ServiceLinker/generated/api/Models/Api20220501/AzureKeyVaultProperties.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/AzureKeyVaultProperties.cs index ef21e6f37cc4..276f924f534a 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/AzureKeyVaultProperties.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/AzureKeyVaultProperties.cs @@ -3,21 +3,21 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; /// The resource properties when type is Azure Key Vault public partial class AzureKeyVaultProperties : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureKeyVaultProperties, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureKeyVaultPropertiesInternal, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureKeyVaultProperties, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureKeyVaultPropertiesInternal, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IValidates { /// - /// Backing field for Inherited model /// - private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResourcePropertiesBase __azureResourcePropertiesBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.AzureResourcePropertiesBase(); + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourcePropertiesBase __azureResourcePropertiesBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AzureResourcePropertiesBase(); /// Backing field for property. private bool? _connectAsKubernetesCsiDriver; @@ -27,11 +27,11 @@ public partial class AzureKeyVaultProperties : public bool? ConnectAsKubernetesCsiDriver { get => this._connectAsKubernetesCsiDriver; set => this._connectAsKubernetesCsiDriver = value; } /// Internal Acessors for Type - string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResourcePropertiesBaseInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResourcePropertiesBaseInternal)__azureResourcePropertiesBase).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResourcePropertiesBaseInternal)__azureResourcePropertiesBase).Type = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourcePropertiesBaseInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourcePropertiesBaseInternal)__azureResourcePropertiesBase).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourcePropertiesBaseInternal)__azureResourcePropertiesBase).Type = value; } /// The azure resource type. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] - public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResourcePropertiesBaseInternal)__azureResourcePropertiesBase).Type; } + public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourcePropertiesBaseInternal)__azureResourcePropertiesBase).Type; } /// Creates an new instance. public AzureKeyVaultProperties() @@ -54,7 +54,7 @@ public AzureKeyVaultProperties() /// The resource properties when type is Azure Key Vault public partial interface IAzureKeyVaultProperties : Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResourcePropertiesBase + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourcePropertiesBase { /// True if connect via Kubernetes CSI Driver. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( @@ -68,7 +68,7 @@ public partial interface IAzureKeyVaultProperties : } /// The resource properties when type is Azure Key Vault internal partial interface IAzureKeyVaultPropertiesInternal : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResourcePropertiesBaseInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourcePropertiesBaseInternal { /// True if connect via Kubernetes CSI Driver. bool? ConnectAsKubernetesCsiDriver { get; set; } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/AzureKeyVaultProperties.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/AzureKeyVaultProperties.json.cs similarity index 95% rename from src/ServiceLinker/generated/api/Models/Api20220501/AzureKeyVaultProperties.json.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/AzureKeyVaultProperties.json.cs index 774c2ffdddb8..04eca9d7fb0c 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/AzureKeyVaultProperties.json.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/AzureKeyVaultProperties.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; @@ -65,19 +65,19 @@ internal AzureKeyVaultProperties(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinke { return; } - __azureResourcePropertiesBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.AzureResourcePropertiesBase(json); + __azureResourcePropertiesBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AzureResourcePropertiesBase(json); {_connectAsKubernetesCsiDriver = If( json?.PropertyT("connectAsKubernetesCsiDriver"), out var __jsonConnectAsKubernetesCsiDriver) ? (bool?)__jsonConnectAsKubernetesCsiDriver : ConnectAsKubernetesCsiDriver;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureKeyVaultProperties. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureKeyVaultProperties. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureKeyVaultProperties. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureKeyVaultProperties. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureKeyVaultProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureKeyVaultProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new AzureKeyVaultProperties(json) : null; } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/AzureResource.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/AzureResource.PowerShell.cs similarity index 69% rename from src/ServiceLinker/generated/api/Models/Api20220501/AzureResource.PowerShell.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/AzureResource.PowerShell.cs index d2147482d181..6377091c7842 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/AzureResource.PowerShell.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/AzureResource.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -31,7 +31,8 @@ public partial class AzureResource /// /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Collections.IDictionary content that should be used. @@ -43,7 +44,8 @@ public partial class AzureResource /// /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -53,7 +55,7 @@ public partial class AzureResource partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -68,21 +70,21 @@ internal AzureResource(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Id")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResourceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourceInternal)this).Id, global::System.Convert.ToString); } if (content.Contains("ResourceProperty")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResourceInternal)this).ResourceProperty = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResourcePropertiesBase) content.GetValueForProperty("ResourceProperty",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResourceInternal)this).ResourceProperty, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.AzureResourcePropertiesBaseTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourceInternal)this).ResourceProperty = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourcePropertiesBase) content.GetValueForProperty("ResourceProperty",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourceInternal)this).ResourceProperty, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AzureResourcePropertiesBaseTypeConverter.ConvertFrom); } if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBaseInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBaseInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBaseInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBaseInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType.CreateFrom); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -97,41 +99,41 @@ internal AzureResource(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("Id")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResourceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourceInternal)this).Id, global::System.Convert.ToString); } if (content.Contains("ResourceProperty")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResourceInternal)this).ResourceProperty = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResourcePropertiesBase) content.GetValueForProperty("ResourceProperty",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResourceInternal)this).ResourceProperty, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.AzureResourcePropertiesBaseTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourceInternal)this).ResourceProperty = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourcePropertiesBase) content.GetValueForProperty("ResourceProperty",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourceInternal)this).ResourceProperty, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AzureResourcePropertiesBaseTypeConverter.ConvertFrom); } if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBaseInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBaseInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBaseInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBaseInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType.CreateFrom); } AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResource DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResource DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new AzureResource(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResource DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResource DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new AzureResource(content); } @@ -141,7 +143,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api2022050 /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResource FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResource FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/AzureResource.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/AzureResource.TypeConverter.cs similarity index 82% rename from src/ServiceLinker/generated/api/Models/Api20220501/AzureResource.TypeConverter.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/AzureResource.TypeConverter.cs index b5bab6246887..797cd2476829 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/AzureResource.TypeConverter.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/AzureResource.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -14,19 +14,20 @@ public partial class AzureResourceTypeConverter : global::System.Management.Auto { /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); /// - /// Determines if the converter can convert the parameter to the . + /// Determines if the converter can convert the parameter to the + /// type. /// /// the instance to check if it can be converted to the type. @@ -74,19 +75,20 @@ public static bool CanConvertFrom(dynamic sourceValue) } /// - /// Determines if the parameter can be converted to the parameter + /// Determines if the parameter can be converted to the + /// parameter /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false + /// true if the converter can convert the parameter to the parameter, otherwise false /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to @@ -98,21 +100,20 @@ public static bool CanConvertFrom(dynamic sourceValue) public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); /// - /// Converts the parameter to the parameter using and + /// Converts the parameter into an instance of /// /// the value to convert into an instance of . /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResource ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResource ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResource).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResource).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/AzureResource.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/AzureResource.cs similarity index 78% rename from src/ServiceLinker/generated/api/Models/Api20220501/AzureResource.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/AzureResource.cs index 9952c99c91e9..695cc29bd18f 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/AzureResource.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/AzureResource.cs @@ -3,21 +3,21 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; /// The azure resource info when target service type is AzureResource public partial class AzureResource : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResource, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResourceInternal, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResource, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourceInternal, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IValidates { /// - /// Backing field for Inherited model /// - private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase __targetServiceBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.TargetServiceBase(); + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase __targetServiceBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.TargetServiceBase(); /// Backing field for property. private string _id; @@ -27,15 +27,15 @@ public partial class AzureResource : public string Id { get => this._id; set => this._id = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResourcePropertiesBase _resourceProperty; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourcePropertiesBase _resourceProperty; /// The azure resource connection related properties. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResourcePropertiesBase ResourceProperty { get => (this._resourceProperty = this._resourceProperty ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.AzureResourcePropertiesBase()); set => this._resourceProperty = value; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourcePropertiesBase ResourceProperty { get => (this._resourceProperty = this._resourceProperty ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AzureResourcePropertiesBase()); set => this._resourceProperty = value; } /// The target service type. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBaseInternal)__targetServiceBase).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBaseInternal)__targetServiceBase).Type = value ; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBaseInternal)__targetServiceBase).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBaseInternal)__targetServiceBase).Type = value ; } /// Creates an new instance. public AzureResource() @@ -58,7 +58,7 @@ public AzureResource() /// The azure resource info when target service type is AzureResource public partial interface IAzureResource : Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase { /// The Id of azure resource. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( @@ -74,18 +74,18 @@ public partial interface IAzureResource : ReadOnly = false, Description = @"The azure resource connection related properties.", SerializedName = @"resourceProperties", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResourcePropertiesBase) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResourcePropertiesBase ResourceProperty { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourcePropertiesBase) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourcePropertiesBase ResourceProperty { get; set; } } /// The azure resource info when target service type is AzureResource internal partial interface IAzureResourceInternal : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBaseInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBaseInternal { /// The Id of azure resource. string Id { get; set; } /// The azure resource connection related properties. - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResourcePropertiesBase ResourceProperty { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourcePropertiesBase ResourceProperty { get; set; } } } \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/AzureResource.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/AzureResource.json.cs similarity index 94% rename from src/ServiceLinker/generated/api/Models/Api20220501/AzureResource.json.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/AzureResource.json.cs index 74bca5fc314f..610a6d2b96d7 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/AzureResource.json.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/AzureResource.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; @@ -65,20 +65,20 @@ internal AzureResource(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime. { return; } - __targetServiceBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.TargetServiceBase(json); + __targetServiceBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.TargetServiceBase(json); {_id = If( json?.PropertyT("id"), out var __jsonId) ? (string)__jsonId : (string)Id;} - {_resourceProperty = If( json?.PropertyT("resourceProperties"), out var __jsonResourceProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.AzureResourcePropertiesBase.FromJson(__jsonResourceProperties) : ResourceProperty;} + {_resourceProperty = If( json?.PropertyT("resourceProperties"), out var __jsonResourceProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AzureResourcePropertiesBase.FromJson(__jsonResourceProperties) : ResourceProperty;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResource. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResource. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResource. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResource. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResource FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResource FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new AzureResource(json) : null; } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/AzureResourcePropertiesBase.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/AzureResourcePropertiesBase.PowerShell.cs similarity index 80% rename from src/ServiceLinker/generated/api/Models/Api20220501/AzureResourcePropertiesBase.PowerShell.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/AzureResourcePropertiesBase.PowerShell.cs index 059a3dbdb177..5735e79a024b 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/AzureResourcePropertiesBase.PowerShell.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/AzureResourcePropertiesBase.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -31,7 +31,8 @@ public partial class AzureResourcePropertiesBase /// /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Collections.IDictionary content that should be used. @@ -43,7 +44,8 @@ public partial class AzureResourcePropertiesBase /// /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -53,7 +55,7 @@ public partial class AzureResourcePropertiesBase partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -68,13 +70,13 @@ internal AzureResourcePropertiesBase(global::System.Collections.IDictionary cont // actually deserialize if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResourcePropertiesBaseInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResourcePropertiesBaseInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourcePropertiesBaseInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourcePropertiesBaseInternal)this).Type, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -89,35 +91,35 @@ internal AzureResourcePropertiesBase(global::System.Management.Automation.PSObje // actually deserialize if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResourcePropertiesBaseInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResourcePropertiesBaseInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourcePropertiesBaseInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourcePropertiesBaseInternal)this).Type, global::System.Convert.ToString); } AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResourcePropertiesBase DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourcePropertiesBase DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new AzureResourcePropertiesBase(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResourcePropertiesBase DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourcePropertiesBase DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new AzureResourcePropertiesBase(content); } @@ -127,7 +129,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api2022050 /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResourcePropertiesBase FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourcePropertiesBase FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/AzureResourcePropertiesBase.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/AzureResourcePropertiesBase.TypeConverter.cs similarity index 81% rename from src/ServiceLinker/generated/api/Models/Api20220501/AzureResourcePropertiesBase.TypeConverter.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/AzureResourcePropertiesBase.TypeConverter.cs index a99eee09f8fb..603f92d0188b 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/AzureResourcePropertiesBase.TypeConverter.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/AzureResourcePropertiesBase.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -14,20 +14,20 @@ public partial class AzureResourcePropertiesBaseTypeConverter : global::System.M { /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); /// - /// Determines if the converter can convert the parameter to the . + /// Determines if the converter can convert the parameter to the + /// type. /// /// the instance to check if it can be converted to the type. @@ -75,19 +75,20 @@ public static bool CanConvertFrom(dynamic sourceValue) } /// - /// Determines if the parameter can be converted to the parameter + /// Determines if the parameter can be converted to the + /// parameter /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false + /// true if the converter can convert the parameter to the parameter, otherwise false /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to @@ -99,21 +100,20 @@ public static bool CanConvertFrom(dynamic sourceValue) public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); /// - /// Converts the parameter to the parameter using and + /// Converts the parameter into an instance of /// /// the value to convert into an instance of . /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResourcePropertiesBase ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourcePropertiesBase ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResourcePropertiesBase).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourcePropertiesBase).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/AzureResourcePropertiesBase.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/AzureResourcePropertiesBase.cs similarity index 89% rename from src/ServiceLinker/generated/api/Models/Api20220501/AzureResourcePropertiesBase.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/AzureResourcePropertiesBase.cs index a218338b52e3..cb0240d990ee 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/AzureResourcePropertiesBase.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/AzureResourcePropertiesBase.cs @@ -3,18 +3,18 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; /// The azure resource properties public partial class AzureResourcePropertiesBase : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResourcePropertiesBase, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResourcePropertiesBaseInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourcePropertiesBase, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourcePropertiesBaseInternal { /// Internal Acessors for Type - string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResourcePropertiesBaseInternal.Type { get => this._type; set { {_type = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourcePropertiesBaseInternal.Type { get => this._type; set { {_type = value;} } } /// Backing field for property. private string _type= @"KeyVault"; diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/AzureResourcePropertiesBase.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/AzureResourcePropertiesBase.json.cs similarity index 93% rename from src/ServiceLinker/generated/api/Models/Api20220501/AzureResourcePropertiesBase.json.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/AzureResourcePropertiesBase.json.cs index 5b58d5b702e0..b40ac68e7ac0 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/AzureResourcePropertiesBase.json.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/AzureResourcePropertiesBase.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; @@ -70,15 +70,15 @@ internal AzureResourcePropertiesBase(Microsoft.Azure.PowerShell.Cmdlets.ServiceL } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResourcePropertiesBase. - /// Note: the Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResourcePropertiesBase interface is - /// polymorphic, and the precise model class that will get deserialized is determined at runtime based on the payload. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourcePropertiesBase. + /// Note: the Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourcePropertiesBase interface + /// is polymorphic, and the precise model class that will get deserialized is determined at runtime based on the payload. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResourcePropertiesBase. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourcePropertiesBase. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAzureResourcePropertiesBase FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAzureResourcePropertiesBase FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) { if (!(node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json)) { diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/UserAssignedIdentityAuthInfo.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/BasicErrorDryrunPrerequisiteResult.PowerShell.cs similarity index 57% rename from src/ServiceLinker/generated/api/Models/Api20220501/UserAssignedIdentityAuthInfo.PowerShell.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/BasicErrorDryrunPrerequisiteResult.PowerShell.cs index 3bbcbefc709b..1b0264870e30 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/UserAssignedIdentityAuthInfo.PowerShell.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/BasicErrorDryrunPrerequisiteResult.PowerShell.cs @@ -3,13 +3,13 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; - /// The authentication info when authType is userAssignedIdentity - [System.ComponentModel.TypeConverter(typeof(UserAssignedIdentityAuthInfoTypeConverter))] - public partial class UserAssignedIdentityAuthInfo + /// The represent of basic error + [System.ComponentModel.TypeConverter(typeof(BasicErrorDryrunPrerequisiteResultTypeConverter))] + public partial class BasicErrorDryrunPrerequisiteResult { /// @@ -31,7 +31,8 @@ public partial class UserAssignedIdentityAuthInfo /// /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Collections.IDictionary content that should be used. @@ -43,7 +44,8 @@ public partial class UserAssignedIdentityAuthInfo /// /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -53,51 +55,11 @@ public partial class UserAssignedIdentityAuthInfo partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IUserAssignedIdentityAuthInfo DeserializeFromDictionary(global::System.Collections.IDictionary content) - { - return new UserAssignedIdentityAuthInfo(content); - } - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IUserAssignedIdentityAuthInfo DeserializeFromPSObject(global::System.Management.Automation.PSObject content) - { - return new UserAssignedIdentityAuthInfo(content); - } - - /// - /// Creates a new instance of , deserializing the content from a json string. - /// - /// a string containing a JSON serialized instance of this model. - /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IUserAssignedIdentityAuthInfo FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); - - /// Serializes this instance to a json string. - - /// a containing this model serialized to JSON text. - public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeAll)?.ToString(); - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - internal UserAssignedIdentityAuthInfo(global::System.Collections.IDictionary content) + internal BasicErrorDryrunPrerequisiteResult(global::System.Collections.IDictionary content) { bool returnNow = false; BeforeDeserializeDictionary(content, ref returnNow); @@ -106,27 +68,27 @@ internal UserAssignedIdentityAuthInfo(global::System.Collections.IDictionary con return; } // actually deserialize - if (content.Contains("ClientId")) + if (content.Contains("Code")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IUserAssignedIdentityAuthInfoInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IUserAssignedIdentityAuthInfoInternal)this).ClientId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IBasicErrorDryrunPrerequisiteResultInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IBasicErrorDryrunPrerequisiteResultInternal)this).Code, global::System.Convert.ToString); } - if (content.Contains("SubscriptionId")) + if (content.Contains("Message")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IUserAssignedIdentityAuthInfoInternal)this).SubscriptionId = (string) content.GetValueForProperty("SubscriptionId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IUserAssignedIdentityAuthInfoInternal)this).SubscriptionId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IBasicErrorDryrunPrerequisiteResultInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IBasicErrorDryrunPrerequisiteResultInternal)this).Message, global::System.Convert.ToString); } - if (content.Contains("AuthType")) + if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBaseInternal)this).AuthType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType) content.GetValueForProperty("AuthType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBaseInternal)this).AuthType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResultInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPrerequisiteResultType) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResultInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPrerequisiteResultType.CreateFrom); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. - internal UserAssignedIdentityAuthInfo(global::System.Management.Automation.PSObject content) + internal BasicErrorDryrunPrerequisiteResult(global::System.Management.Automation.PSObject content) { bool returnNow = false; BeforeDeserializePSObject(content, ref returnNow); @@ -135,24 +97,66 @@ internal UserAssignedIdentityAuthInfo(global::System.Management.Automation.PSObj return; } // actually deserialize - if (content.Contains("ClientId")) + if (content.Contains("Code")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IUserAssignedIdentityAuthInfoInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IUserAssignedIdentityAuthInfoInternal)this).ClientId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IBasicErrorDryrunPrerequisiteResultInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IBasicErrorDryrunPrerequisiteResultInternal)this).Code, global::System.Convert.ToString); } - if (content.Contains("SubscriptionId")) + if (content.Contains("Message")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IUserAssignedIdentityAuthInfoInternal)this).SubscriptionId = (string) content.GetValueForProperty("SubscriptionId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IUserAssignedIdentityAuthInfoInternal)this).SubscriptionId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IBasicErrorDryrunPrerequisiteResultInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IBasicErrorDryrunPrerequisiteResultInternal)this).Message, global::System.Convert.ToString); } - if (content.Contains("AuthType")) + if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBaseInternal)this).AuthType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType) content.GetValueForProperty("AuthType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBaseInternal)this).AuthType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResultInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPrerequisiteResultType) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResultInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPrerequisiteResultType.CreateFrom); } AfterDeserializePSObject(content); } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IBasicErrorDryrunPrerequisiteResult DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new BasicErrorDryrunPrerequisiteResult(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IBasicErrorDryrunPrerequisiteResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new BasicErrorDryrunPrerequisiteResult(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// + /// an instance of the model class. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IBasicErrorDryrunPrerequisiteResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeAll)?.ToString(); } - /// The authentication info when authType is userAssignedIdentity - [System.ComponentModel.TypeConverter(typeof(UserAssignedIdentityAuthInfoTypeConverter))] - public partial interface IUserAssignedIdentityAuthInfo + /// The represent of basic error + [System.ComponentModel.TypeConverter(typeof(BasicErrorDryrunPrerequisiteResultTypeConverter))] + public partial interface IBasicErrorDryrunPrerequisiteResult { diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/BasicErrorDryrunPrerequisiteResult.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/BasicErrorDryrunPrerequisiteResult.TypeConverter.cs new file mode 100644 index 000000000000..772111e04e47 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/BasicErrorDryrunPrerequisiteResult.TypeConverter.cs @@ -0,0 +1,149 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class BasicErrorDryrunPrerequisiteResultTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// type. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise + /// false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the + /// parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter into an instance of + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IBasicErrorDryrunPrerequisiteResult ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IBasicErrorDryrunPrerequisiteResult).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return BasicErrorDryrunPrerequisiteResult.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return BasicErrorDryrunPrerequisiteResult.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return BasicErrorDryrunPrerequisiteResult.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/BasicErrorDryrunPrerequisiteResult.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/BasicErrorDryrunPrerequisiteResult.cs new file mode 100644 index 000000000000..b2b089192aca --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/BasicErrorDryrunPrerequisiteResult.cs @@ -0,0 +1,91 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// The represent of basic error + public partial class BasicErrorDryrunPrerequisiteResult : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IBasicErrorDryrunPrerequisiteResult, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IBasicErrorDryrunPrerequisiteResultInternal, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IValidates + { + /// + /// Backing field for Inherited model + /// + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResult __dryrunPrerequisiteResult = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunPrerequisiteResult(); + + /// Backing field for property. + private string _code; + + /// The error code. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public string Code { get => this._code; set => this._code = value; } + + /// Backing field for property. + private string _message; + + /// The error message. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public string Message { get => this._message; set => this._message = value; } + + /// The type of dryrun result. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPrerequisiteResultType Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResultInternal)__dryrunPrerequisiteResult).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResultInternal)__dryrunPrerequisiteResult).Type = value ; } + + /// Creates an new instance. + public BasicErrorDryrunPrerequisiteResult() + { + + } + + /// Validates that this object meets the validation criteria. + /// an instance that will receive validation + /// events. + /// + /// A that will be complete when validation is completed. + /// + public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) + { + await eventListener.AssertNotNull(nameof(__dryrunPrerequisiteResult), __dryrunPrerequisiteResult); + await eventListener.AssertObjectIsValid(nameof(__dryrunPrerequisiteResult), __dryrunPrerequisiteResult); + } + } + /// The represent of basic error + public partial interface IBasicErrorDryrunPrerequisiteResult : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResult + { + /// The error code. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The error code.", + SerializedName = @"code", + PossibleTypes = new [] { typeof(string) })] + string Code { get; set; } + /// The error message. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The error message.", + SerializedName = @"message", + PossibleTypes = new [] { typeof(string) })] + string Message { get; set; } + + } + /// The represent of basic error + internal partial interface IBasicErrorDryrunPrerequisiteResultInternal : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResultInternal + { + /// The error code. + string Code { get; set; } + /// The error message. + string Message { get; set; } + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/BasicErrorDryrunPrerequisiteResult.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/BasicErrorDryrunPrerequisiteResult.json.cs new file mode 100644 index 000000000000..528d68dae2fd --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/BasicErrorDryrunPrerequisiteResult.json.cs @@ -0,0 +1,113 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// The represent of basic error + public partial class BasicErrorDryrunPrerequisiteResult + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the + /// output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject instance to deserialize from. + internal BasicErrorDryrunPrerequisiteResult(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + __dryrunPrerequisiteResult = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunPrerequisiteResult(json); + {_code = If( json?.PropertyT("code"), out var __jsonCode) ? (string)__jsonCode : (string)Code;} + {_message = If( json?.PropertyT("message"), out var __jsonMessage) ? (string)__jsonMessage : (string)Message;} + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IBasicErrorDryrunPrerequisiteResult. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IBasicErrorDryrunPrerequisiteResult. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IBasicErrorDryrunPrerequisiteResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new BasicErrorDryrunPrerequisiteResult(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + __dryrunPrerequisiteResult?.ToJson(container, serializationMode); + AddIf( null != (((object)this._code)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._code.ToString()) : null, "code" ,container.Add ); + AddIf( null != (((object)this._message)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._message.ToString()) : null, "message" ,container.Add ); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationInfo.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationInfo.PowerShell.cs new file mode 100644 index 000000000000..408f5b0ac05a --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationInfo.PowerShell.cs @@ -0,0 +1,172 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// + /// The configuration information, used to generate configurations or save to applications + /// + [System.ComponentModel.TypeConverter(typeof(ConfigurationInfoTypeConverter))] + public partial class ConfigurationInfo + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal ConfigurationInfo(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("DeleteOrUpdateBehavior")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoInternal)this).DeleteOrUpdateBehavior = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior?) content.GetValueForProperty("DeleteOrUpdateBehavior",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoInternal)this).DeleteOrUpdateBehavior, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior.CreateFrom); + } + if (content.Contains("Action")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoInternal)this).Action = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType?) content.GetValueForProperty("Action",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoInternal)this).Action, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType.CreateFrom); + } + if (content.Contains("CustomizedKey")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoInternal)this).CustomizedKey = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys) content.GetValueForProperty("CustomizedKey",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoInternal)this).CustomizedKey, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationInfoCustomizedKeysTypeConverter.ConvertFrom); + } + if (content.Contains("AdditionalConfiguration")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoInternal)this).AdditionalConfiguration = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations) content.GetValueForProperty("AdditionalConfiguration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoInternal)this).AdditionalConfiguration, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationInfoAdditionalConfigurationsTypeConverter.ConvertFrom); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal ConfigurationInfo(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("DeleteOrUpdateBehavior")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoInternal)this).DeleteOrUpdateBehavior = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior?) content.GetValueForProperty("DeleteOrUpdateBehavior",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoInternal)this).DeleteOrUpdateBehavior, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior.CreateFrom); + } + if (content.Contains("Action")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoInternal)this).Action = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType?) content.GetValueForProperty("Action",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoInternal)this).Action, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType.CreateFrom); + } + if (content.Contains("CustomizedKey")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoInternal)this).CustomizedKey = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys) content.GetValueForProperty("CustomizedKey",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoInternal)this).CustomizedKey, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationInfoCustomizedKeysTypeConverter.ConvertFrom); + } + if (content.Contains("AdditionalConfiguration")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoInternal)this).AdditionalConfiguration = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations) content.GetValueForProperty("AdditionalConfiguration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoInternal)this).AdditionalConfiguration, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationInfoAdditionalConfigurationsTypeConverter.ConvertFrom); + } + AfterDeserializePSObject(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfo DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new ConfigurationInfo(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfo DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new ConfigurationInfo(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfo FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// The configuration information, used to generate configurations or save to applications + [System.ComponentModel.TypeConverter(typeof(ConfigurationInfoTypeConverter))] + public partial interface IConfigurationInfo + + { + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationInfo.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationInfo.TypeConverter.cs new file mode 100644 index 000000000000..e1fed8292a32 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationInfo.TypeConverter.cs @@ -0,0 +1,147 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class ConfigurationInfoTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// type. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the + /// parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter into an instance of + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfo ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfo).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return ConfigurationInfo.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return ConfigurationInfo.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return ConfigurationInfo.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationInfo.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationInfo.cs new file mode 100644 index 000000000000..c4ac47346971 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationInfo.cs @@ -0,0 +1,137 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// + /// The configuration information, used to generate configurations or save to applications + /// + public partial class ConfigurationInfo : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfo, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoInternal + { + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType? _action; + + /// + /// Optional, indicate whether to apply configurations on source application. If enable, generate configurations and applied + /// to the source application. Default is enable. If optOut, no configuration change will be made on source. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType? Action { get => this._action; set => this._action = value; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations _additionalConfiguration; + + /// + /// A dictionary of additional configurations to be added. Service will auto generate a set of basic configurations and this + /// property is to full fill more customized configurations + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations AdditionalConfiguration { get => (this._additionalConfiguration = this._additionalConfiguration ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationInfoAdditionalConfigurations()); set => this._additionalConfiguration = value; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys _customizedKey; + + /// + /// Optional. A dictionary of default key name and customized key name mapping. If not specified, default key name will be + /// used for generate configurations + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys CustomizedKey { get => (this._customizedKey = this._customizedKey ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationInfoCustomizedKeys()); set => this._customizedKey = value; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? _deleteOrUpdateBehavior; + + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? DeleteOrUpdateBehavior { get => this._deleteOrUpdateBehavior; set => this._deleteOrUpdateBehavior = value; } + + /// Creates an new instance. + public ConfigurationInfo() + { + + } + } + /// The configuration information, used to generate configurations or save to applications + public partial interface IConfigurationInfo : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable + { + /// + /// Optional, indicate whether to apply configurations on source application. If enable, generate configurations and applied + /// to the source application. Default is enable. If optOut, no configuration change will be made on source. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Optional, indicate whether to apply configurations on source application. If enable, generate configurations and applied to the source application. Default is enable. If optOut, no configuration change will be made on source.", + SerializedName = @"action", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType? Action { get; set; } + /// + /// A dictionary of additional configurations to be added. Service will auto generate a set of basic configurations and this + /// property is to full fill more customized configurations + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"A dictionary of additional configurations to be added. Service will auto generate a set of basic configurations and this property is to full fill more customized configurations", + SerializedName = @"additionalConfigurations", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations AdditionalConfiguration { get; set; } + /// + /// Optional. A dictionary of default key name and customized key name mapping. If not specified, default key name will be + /// used for generate configurations + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Optional. A dictionary of default key name and customized key name mapping. If not specified, default key name will be used for generate configurations", + SerializedName = @"customizedKeys", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys CustomizedKey { get; set; } + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Indicates whether to clean up previous operation when Linker is updating or deleting", + SerializedName = @"deleteOrUpdateBehavior", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? DeleteOrUpdateBehavior { get; set; } + + } + /// The configuration information, used to generate configurations or save to applications + internal partial interface IConfigurationInfoInternal + + { + /// + /// Optional, indicate whether to apply configurations on source application. If enable, generate configurations and applied + /// to the source application. Default is enable. If optOut, no configuration change will be made on source. + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType? Action { get; set; } + /// + /// A dictionary of additional configurations to be added. Service will auto generate a set of basic configurations and this + /// property is to full fill more customized configurations + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations AdditionalConfiguration { get; set; } + /// + /// Optional. A dictionary of default key name and customized key name mapping. If not specified, default key name will be + /// used for generate configurations + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys CustomizedKey { get; set; } + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? DeleteOrUpdateBehavior { get; set; } + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationInfo.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationInfo.json.cs new file mode 100644 index 000000000000..a25db7096226 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationInfo.json.cs @@ -0,0 +1,116 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// + /// The configuration information, used to generate configurations or save to applications + /// + public partial class ConfigurationInfo + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the + /// output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject instance to deserialize from. + internal ConfigurationInfo(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_deleteOrUpdateBehavior = If( json?.PropertyT("deleteOrUpdateBehavior"), out var __jsonDeleteOrUpdateBehavior) ? (string)__jsonDeleteOrUpdateBehavior : (string)DeleteOrUpdateBehavior;} + {_action = If( json?.PropertyT("action"), out var __jsonAction) ? (string)__jsonAction : (string)Action;} + {_customizedKey = If( json?.PropertyT("customizedKeys"), out var __jsonCustomizedKeys) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationInfoCustomizedKeys.FromJson(__jsonCustomizedKeys) : CustomizedKey;} + {_additionalConfiguration = If( json?.PropertyT("additionalConfigurations"), out var __jsonAdditionalConfigurations) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationInfoAdditionalConfigurations.FromJson(__jsonAdditionalConfigurations) : AdditionalConfiguration;} + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfo. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfo. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfo FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new ConfigurationInfo(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + AddIf( null != (((object)this._deleteOrUpdateBehavior)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._deleteOrUpdateBehavior.ToString()) : null, "deleteOrUpdateBehavior" ,container.Add ); + AddIf( null != (((object)this._action)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._action.ToString()) : null, "action" ,container.Add ); + AddIf( null != this._customizedKey ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) this._customizedKey.ToJson(null,serializationMode) : null, "customizedKeys" ,container.Add ); + AddIf( null != this._additionalConfiguration ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) this._additionalConfiguration.ToJson(null,serializationMode) : null, "additionalConfigurations" ,container.Add ); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationInfoAdditionalConfigurations.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationInfoAdditionalConfigurations.PowerShell.cs new file mode 100644 index 000000000000..1f4349af5a72 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationInfoAdditionalConfigurations.PowerShell.cs @@ -0,0 +1,149 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// + /// A dictionary of additional configurations to be added. Service will auto generate a set of basic configurations and this + /// property is to full fill more customized configurations + /// + [System.ComponentModel.TypeConverter(typeof(ConfigurationInfoAdditionalConfigurationsTypeConverter))] + public partial class ConfigurationInfoAdditionalConfigurations + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal ConfigurationInfoAdditionalConfigurations(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + // this type is a dictionary; copy elements from source to here. + CopyFrom(content); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal ConfigurationInfoAdditionalConfigurations(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + // this type is a dictionary; copy elements from source to here. + CopyFrom(content); + AfterDeserializePSObject(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new ConfigurationInfoAdditionalConfigurations(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new ConfigurationInfoAdditionalConfigurations(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json + /// string. + /// + /// a string containing a JSON serialized instance of this model. + /// + /// an instance of the model class. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// A dictionary of additional configurations to be added. Service will auto generate a set of basic configurations and this + /// property is to full fill more customized configurations + [System.ComponentModel.TypeConverter(typeof(ConfigurationInfoAdditionalConfigurationsTypeConverter))] + public partial interface IConfigurationInfoAdditionalConfigurations + + { + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationInfoAdditionalConfigurations.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationInfoAdditionalConfigurations.TypeConverter.cs new file mode 100644 index 000000000000..209dae4247d5 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationInfoAdditionalConfigurations.TypeConverter.cs @@ -0,0 +1,151 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class ConfigurationInfoAdditionalConfigurationsTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// type. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise + /// false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the + /// parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter into an instance of + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return ConfigurationInfoAdditionalConfigurations.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return ConfigurationInfoAdditionalConfigurations.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return ConfigurationInfoAdditionalConfigurations.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationInfoAdditionalConfigurations.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationInfoAdditionalConfigurations.cs new file mode 100644 index 000000000000..ac75aa109327 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationInfoAdditionalConfigurations.cs @@ -0,0 +1,42 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// + /// A dictionary of additional configurations to be added. Service will auto generate a set of basic configurations and this + /// property is to full fill more customized configurations + /// + public partial class ConfigurationInfoAdditionalConfigurations : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurationsInternal + { + + /// + /// Creates an new instance. + /// + public ConfigurationInfoAdditionalConfigurations() + { + + } + } + /// A dictionary of additional configurations to be added. Service will auto generate a set of basic configurations and this + /// property is to full fill more customized configurations + public partial interface IConfigurationInfoAdditionalConfigurations : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IAssociativeArray + { + + } + /// A dictionary of additional configurations to be added. Service will auto generate a set of basic configurations and this + /// property is to full fill more customized configurations + internal partial interface IConfigurationInfoAdditionalConfigurationsInternal + + { + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationInfoAdditionalConfigurations.dictionary.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationInfoAdditionalConfigurations.dictionary.cs new file mode 100644 index 000000000000..0f53096fcf54 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationInfoAdditionalConfigurations.dictionary.cs @@ -0,0 +1,75 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + public partial class ConfigurationInfoAdditionalConfigurations : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IAssociativeArray + { + protected global::System.Collections.Generic.Dictionary __additionalProperties = new global::System.Collections.Generic.Dictionary(); + + global::System.Collections.Generic.IDictionary Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IAssociativeArray.AdditionalProperties { get => __additionalProperties; } + + int Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IAssociativeArray.Count { get => __additionalProperties.Count; } + + global::System.Collections.Generic.IEnumerable Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IAssociativeArray.Keys { get => __additionalProperties.Keys; } + + global::System.Collections.Generic.IEnumerable Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IAssociativeArray.Values { get => __additionalProperties.Values; } + + public string this[global::System.String index] { get => __additionalProperties[index]; set => __additionalProperties[index] = value; } + + /// + /// + public void Add(global::System.String key, string value) => __additionalProperties.Add( key, value); + + public void Clear() => __additionalProperties.Clear(); + + /// + public bool ContainsKey(global::System.String key) => __additionalProperties.ContainsKey( key); + + /// + public void CopyFrom(global::System.Collections.IDictionary source) + { + if (null != source) + { + foreach( var property in Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.TypeConverterExtensions.GetFilteredProperties(source, new global::System.Collections.Generic.HashSet() { } ) ) + { + if ((null != property.Key && null != property.Value)) + { + this.__additionalProperties.Add(property.Key.ToString(), global::System.Management.Automation.LanguagePrimitives.ConvertTo( property.Value)); + } + } + } + } + + /// + public void CopyFrom(global::System.Management.Automation.PSObject source) + { + if (null != source) + { + foreach( var property in Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.TypeConverterExtensions.GetFilteredProperties(source, new global::System.Collections.Generic.HashSet() { } ) ) + { + if ((null != property.Key && null != property.Value)) + { + this.__additionalProperties.Add(property.Key.ToString(), global::System.Management.Automation.LanguagePrimitives.ConvertTo( property.Value)); + } + } + } + } + + /// + public bool Remove(global::System.String key) => __additionalProperties.Remove( key); + + /// + /// + public bool TryGetValue(global::System.String key, out string value) => __additionalProperties.TryGetValue( key, out value); + + /// + + public static implicit operator global::System.Collections.Generic.Dictionary(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationInfoAdditionalConfigurations source) => source.__additionalProperties; + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationInfoAdditionalConfigurations.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationInfoAdditionalConfigurations.json.cs new file mode 100644 index 000000000000..7d14125c3e96 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationInfoAdditionalConfigurations.json.cs @@ -0,0 +1,114 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// + /// A dictionary of additional configurations to be added. Service will auto generate a set of basic configurations and this + /// property is to full fill more customized configurations + /// + public partial class ConfigurationInfoAdditionalConfigurations + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the + /// output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject instance to deserialize from. + /// + internal ConfigurationInfoAdditionalConfigurations(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json, global::System.Collections.Generic.HashSet exclusions = null) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.JsonSerializable.FromJson( json, ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IAssociativeArray)this).AdditionalProperties, null ,exclusions ); + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new ConfigurationInfoAdditionalConfigurations(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.JsonSerializable.ToJson( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IAssociativeArray)this).AdditionalProperties, container); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationInfoCustomizedKeys.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationInfoCustomizedKeys.PowerShell.cs new file mode 100644 index 000000000000..e6093882266b --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationInfoCustomizedKeys.PowerShell.cs @@ -0,0 +1,146 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// + /// Optional. A dictionary of default key name and customized key name mapping. If not specified, default key name will be + /// used for generate configurations + /// + [System.ComponentModel.TypeConverter(typeof(ConfigurationInfoCustomizedKeysTypeConverter))] + public partial class ConfigurationInfoCustomizedKeys + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal ConfigurationInfoCustomizedKeys(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + // this type is a dictionary; copy elements from source to here. + CopyFrom(content); + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal ConfigurationInfoCustomizedKeys(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + // this type is a dictionary; copy elements from source to here. + CopyFrom(content); + AfterDeserializePSObject(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new ConfigurationInfoCustomizedKeys(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new ConfigurationInfoCustomizedKeys(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// Optional. A dictionary of default key name and customized key name mapping. If not specified, default key name will be + /// used for generate configurations + [System.ComponentModel.TypeConverter(typeof(ConfigurationInfoCustomizedKeysTypeConverter))] + public partial interface IConfigurationInfoCustomizedKeys + + { + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationInfoCustomizedKeys.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationInfoCustomizedKeys.TypeConverter.cs new file mode 100644 index 000000000000..08f2b9828dc0 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationInfoCustomizedKeys.TypeConverter.cs @@ -0,0 +1,148 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class ConfigurationInfoCustomizedKeysTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// type. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the + /// parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter into an instance of + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return ConfigurationInfoCustomizedKeys.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return ConfigurationInfoCustomizedKeys.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return ConfigurationInfoCustomizedKeys.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationInfoCustomizedKeys.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationInfoCustomizedKeys.cs new file mode 100644 index 000000000000..4683f62ede9c --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationInfoCustomizedKeys.cs @@ -0,0 +1,40 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// + /// Optional. A dictionary of default key name and customized key name mapping. If not specified, default key name will be + /// used for generate configurations + /// + public partial class ConfigurationInfoCustomizedKeys : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeysInternal + { + + /// Creates an new instance. + public ConfigurationInfoCustomizedKeys() + { + + } + } + /// Optional. A dictionary of default key name and customized key name mapping. If not specified, default key name will be + /// used for generate configurations + public partial interface IConfigurationInfoCustomizedKeys : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IAssociativeArray + { + + } + /// Optional. A dictionary of default key name and customized key name mapping. If not specified, default key name will be + /// used for generate configurations + internal partial interface IConfigurationInfoCustomizedKeysInternal + + { + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationInfoCustomizedKeys.dictionary.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationInfoCustomizedKeys.dictionary.cs new file mode 100644 index 000000000000..822a58da7cb5 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationInfoCustomizedKeys.dictionary.cs @@ -0,0 +1,75 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + public partial class ConfigurationInfoCustomizedKeys : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IAssociativeArray + { + protected global::System.Collections.Generic.Dictionary __additionalProperties = new global::System.Collections.Generic.Dictionary(); + + global::System.Collections.Generic.IDictionary Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IAssociativeArray.AdditionalProperties { get => __additionalProperties; } + + int Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IAssociativeArray.Count { get => __additionalProperties.Count; } + + global::System.Collections.Generic.IEnumerable Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IAssociativeArray.Keys { get => __additionalProperties.Keys; } + + global::System.Collections.Generic.IEnumerable Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IAssociativeArray.Values { get => __additionalProperties.Values; } + + public string this[global::System.String index] { get => __additionalProperties[index]; set => __additionalProperties[index] = value; } + + /// + /// + public void Add(global::System.String key, string value) => __additionalProperties.Add( key, value); + + public void Clear() => __additionalProperties.Clear(); + + /// + public bool ContainsKey(global::System.String key) => __additionalProperties.ContainsKey( key); + + /// + public void CopyFrom(global::System.Collections.IDictionary source) + { + if (null != source) + { + foreach( var property in Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.TypeConverterExtensions.GetFilteredProperties(source, new global::System.Collections.Generic.HashSet() { } ) ) + { + if ((null != property.Key && null != property.Value)) + { + this.__additionalProperties.Add(property.Key.ToString(), global::System.Management.Automation.LanguagePrimitives.ConvertTo( property.Value)); + } + } + } + } + + /// + public void CopyFrom(global::System.Management.Automation.PSObject source) + { + if (null != source) + { + foreach( var property in Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.TypeConverterExtensions.GetFilteredProperties(source, new global::System.Collections.Generic.HashSet() { } ) ) + { + if ((null != property.Key && null != property.Value)) + { + this.__additionalProperties.Add(property.Key.ToString(), global::System.Management.Automation.LanguagePrimitives.ConvertTo( property.Value)); + } + } + } + } + + /// + public bool Remove(global::System.String key) => __additionalProperties.Remove( key); + + /// + /// + public bool TryGetValue(global::System.String key, out string value) => __additionalProperties.TryGetValue( key, out value); + + /// + + public static implicit operator global::System.Collections.Generic.Dictionary(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationInfoCustomizedKeys source) => source.__additionalProperties; + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationInfoCustomizedKeys.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationInfoCustomizedKeys.json.cs new file mode 100644 index 000000000000..c02c2378d73f --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationInfoCustomizedKeys.json.cs @@ -0,0 +1,112 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// + /// Optional. A dictionary of default key name and customized key name mapping. If not specified, default key name will be + /// used for generate configurations + /// + public partial class ConfigurationInfoCustomizedKeys + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the + /// output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject instance to deserialize from. + /// + internal ConfigurationInfoCustomizedKeys(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json, global::System.Collections.Generic.HashSet exclusions = null) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.JsonSerializable.FromJson( json, ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IAssociativeArray)this).AdditionalProperties, null ,exclusions ); + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new ConfigurationInfoCustomizedKeys(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.JsonSerializable.ToJson( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IAssociativeArray)this).AdditionalProperties, container); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationName.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationName.PowerShell.cs new file mode 100644 index 000000000000..dbb784742dca --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationName.PowerShell.cs @@ -0,0 +1,154 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// The configuration names. + [System.ComponentModel.TypeConverter(typeof(ConfigurationNameTypeConverter))] + public partial class ConfigurationName + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal ConfigurationName(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Value")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameInternal)this).Value = (string) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameInternal)this).Value, global::System.Convert.ToString); + } + if (content.Contains("Description")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameInternal)this).Description, global::System.Convert.ToString); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal ConfigurationName(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Value")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameInternal)this).Value = (string) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameInternal)this).Value, global::System.Convert.ToString); + } + if (content.Contains("Description")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameInternal)this).Description, global::System.Convert.ToString); + } + AfterDeserializePSObject(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationName DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new ConfigurationName(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationName DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new ConfigurationName(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationName FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// The configuration names. + [System.ComponentModel.TypeConverter(typeof(ConfigurationNameTypeConverter))] + public partial interface IConfigurationName + + { + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationName.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationName.TypeConverter.cs new file mode 100644 index 000000000000..087347d92ab0 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationName.TypeConverter.cs @@ -0,0 +1,147 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class ConfigurationNameTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// type. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the + /// parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter into an instance of + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationName ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationName).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return ConfigurationName.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return ConfigurationName.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return ConfigurationName.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationName.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationName.cs new file mode 100644 index 000000000000..3f126ca976e6 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationName.cs @@ -0,0 +1,67 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// The configuration names. + public partial class ConfigurationName : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationName, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameInternal + { + + /// Backing field for property. + private string _description; + + /// Description for the configuration name. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public string Description { get => this._description; set => this._description = value; } + + /// Backing field for property. + private string _value; + + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public string Value { get => this._value; set => this._value = value; } + + /// Creates an new instance. + public ConfigurationName() + { + + } + } + /// The configuration names. + public partial interface IConfigurationName : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable + { + /// Description for the configuration name. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Description for the configuration name.", + SerializedName = @"description", + PossibleTypes = new [] { typeof(string) })] + string Description { get; set; } + + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"", + SerializedName = @"value", + PossibleTypes = new [] { typeof(string) })] + string Value { get; set; } + + } + /// The configuration names. + internal partial interface IConfigurationNameInternal + + { + /// Description for the configuration name. + string Description { get; set; } + + string Value { get; set; } + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationName.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationName.json.cs new file mode 100644 index 000000000000..84e80284e383 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationName.json.cs @@ -0,0 +1,110 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// The configuration names. + public partial class ConfigurationName + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the + /// output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject instance to deserialize from. + internal ConfigurationName(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? (string)__jsonValue : (string)Value;} + {_description = If( json?.PropertyT("description"), out var __jsonDescription) ? (string)__jsonDescription : (string)Description;} + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationName. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationName. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationName FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new ConfigurationName(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + AddIf( null != (((object)this._value)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._value.ToString()) : null, "value" ,container.Add ); + AddIf( null != (((object)this._description)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._description.ToString()) : null, "description" ,container.Add ); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationNameItem.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationNameItem.PowerShell.cs new file mode 100644 index 000000000000..bcbe1fe9d68b --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationNameItem.PowerShell.cs @@ -0,0 +1,176 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + [System.ComponentModel.TypeConverter(typeof(ConfigurationNameItemTypeConverter))] + public partial class ConfigurationNameItem + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal ConfigurationNameItem(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Property")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItemInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNames) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItemInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationNamesTypeConverter.ConvertFrom); + } + if (content.Contains("ClientType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItemInternal)this).ClientType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType?) content.GetValueForProperty("ClientType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItemInternal)this).ClientType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType.CreateFrom); + } + if (content.Contains("AuthType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItemInternal)this).AuthType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType?) content.GetValueForProperty("AuthType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItemInternal)this).AuthType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType.CreateFrom); + } + if (content.Contains("TargetService")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItemInternal)this).TargetService = (string) content.GetValueForProperty("TargetService",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItemInternal)this).TargetService, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItemInternal)this).Name = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationName[]) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItemInternal)this).Name, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationNameTypeConverter.ConvertFrom)); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal ConfigurationNameItem(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Property")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItemInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNames) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItemInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationNamesTypeConverter.ConvertFrom); + } + if (content.Contains("ClientType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItemInternal)this).ClientType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType?) content.GetValueForProperty("ClientType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItemInternal)this).ClientType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType.CreateFrom); + } + if (content.Contains("AuthType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItemInternal)this).AuthType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType?) content.GetValueForProperty("AuthType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItemInternal)this).AuthType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType.CreateFrom); + } + if (content.Contains("TargetService")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItemInternal)this).TargetService = (string) content.GetValueForProperty("TargetService",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItemInternal)this).TargetService, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItemInternal)this).Name = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationName[]) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItemInternal)this).Name, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationNameTypeConverter.ConvertFrom)); + } + AfterDeserializePSObject(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItem DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new ConfigurationNameItem(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItem DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new ConfigurationNameItem(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItem FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + [System.ComponentModel.TypeConverter(typeof(ConfigurationNameItemTypeConverter))] + public partial interface IConfigurationNameItem + + { + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationNameItem.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationNameItem.TypeConverter.cs new file mode 100644 index 000000000000..5db64b9dbce8 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationNameItem.TypeConverter.cs @@ -0,0 +1,147 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class ConfigurationNameItemTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// type. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the + /// parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter into an instance of + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItem ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItem).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return ConfigurationNameItem.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return ConfigurationNameItem.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return ConfigurationNameItem.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationNameItem.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationNameItem.cs new file mode 100644 index 000000000000..ed9f67bd898e --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationNameItem.cs @@ -0,0 +1,99 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + public partial class ConfigurationNameItem : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItem, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItemInternal + { + + /// The auth type. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType? AuthType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNamesInternal)Property).AuthType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNamesInternal)Property).AuthType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType)""); } + + /// The client type for configuration names. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType? ClientType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNamesInternal)Property).ClientType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNamesInternal)Property).ClientType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType)""); } + + /// Internal Acessors for Property + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNames Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItemInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationNames()); set { {_property = value;} } } + + /// The configuration names to be set in compute service environment. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationName[] Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNamesInternal)Property).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNamesInternal)Property).Name = value ?? null /* arrayOf */; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNames _property; + + /// The result detail. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + internal Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNames Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationNames()); set => this._property = value; } + + /// The target service provider name and resource name. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public string TargetService { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNamesInternal)Property).TargetService; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNamesInternal)Property).TargetService = value ?? null; } + + /// Creates an new instance. + public ConfigurationNameItem() + { + + } + } + public partial interface IConfigurationNameItem : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable + { + /// The auth type. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The auth type.", + SerializedName = @"authType", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType? AuthType { get; set; } + /// The client type for configuration names. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The client type for configuration names.", + SerializedName = @"clientType", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType? ClientType { get; set; } + /// The configuration names to be set in compute service environment. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The configuration names to be set in compute service environment.", + SerializedName = @"names", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationName) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationName[] Name { get; set; } + /// The target service provider name and resource name. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The target service provider name and resource name.", + SerializedName = @"targetService", + PossibleTypes = new [] { typeof(string) })] + string TargetService { get; set; } + + } + internal partial interface IConfigurationNameItemInternal + + { + /// The auth type. + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType? AuthType { get; set; } + /// The client type for configuration names. + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType? ClientType { get; set; } + /// The configuration names to be set in compute service environment. + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationName[] Name { get; set; } + /// The result detail. + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNames Property { get; set; } + /// The target service provider name and resource name. + string TargetService { get; set; } + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationNameItem.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationNameItem.json.cs new file mode 100644 index 000000000000..9999c2dd1420 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationNameItem.json.cs @@ -0,0 +1,107 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + public partial class ConfigurationNameItem + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the + /// output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject instance to deserialize from. + internal ConfigurationNameItem(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationNames.FromJson(__jsonProperties) : Property;} + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItem. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItem. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItem FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new ConfigurationNameItem(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + AddIf( null != this._property ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) this._property.ToJson(null,serializationMode) : null, "properties" ,container.Add ); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationNameResult.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationNameResult.PowerShell.cs new file mode 100644 index 000000000000..1ef4862ca126 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationNameResult.PowerShell.cs @@ -0,0 +1,156 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// + /// Configuration Name list which will be set based on different target resource, client type, auth type. + /// + [System.ComponentModel.TypeConverter(typeof(ConfigurationNameResultTypeConverter))] + public partial class ConfigurationNameResult + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal ConfigurationNameResult(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Value")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItem[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationNameItemTypeConverter.ConvertFrom)); + } + if (content.Contains("NextLink")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameResultInternal)this).NextLink, global::System.Convert.ToString); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal ConfigurationNameResult(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Value")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItem[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationNameItemTypeConverter.ConvertFrom)); + } + if (content.Contains("NextLink")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameResultInternal)this).NextLink, global::System.Convert.ToString); + } + AfterDeserializePSObject(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameResult DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new ConfigurationNameResult(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new ConfigurationNameResult(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// Configuration Name list which will be set based on different target resource, client type, auth type. + [System.ComponentModel.TypeConverter(typeof(ConfigurationNameResultTypeConverter))] + public partial interface IConfigurationNameResult + + { + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationNameResult.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationNameResult.TypeConverter.cs new file mode 100644 index 000000000000..62162b5a585a --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationNameResult.TypeConverter.cs @@ -0,0 +1,147 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class ConfigurationNameResultTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// type. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the + /// parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter into an instance of + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameResult ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameResult).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return ConfigurationNameResult.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return ConfigurationNameResult.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return ConfigurationNameResult.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationNameResult.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationNameResult.cs new file mode 100644 index 000000000000..56a3d8b7865a --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationNameResult.cs @@ -0,0 +1,73 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// + /// Configuration Name list which will be set based on different target resource, client type, auth type. + /// + public partial class ConfigurationNameResult : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameResult, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameResultInternal + { + + /// Internal Acessors for NextLink + string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameResultInternal.NextLink { get => this._nextLink; set { {_nextLink = value;} } } + + /// Backing field for property. + private string _nextLink; + + /// Link to next page of resources. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public string NextLink { get => this._nextLink; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItem[] _value; + + /// Expected configuration names for each target service. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItem[] Value { get => this._value; set => this._value = value; } + + /// Creates an new instance. + public ConfigurationNameResult() + { + + } + } + /// Configuration Name list which will be set based on different target resource, client type, auth type. + public partial interface IConfigurationNameResult : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable + { + /// Link to next page of resources. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Link to next page of resources.", + SerializedName = @"nextLink", + PossibleTypes = new [] { typeof(string) })] + string NextLink { get; } + /// Expected configuration names for each target service. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Expected configuration names for each target service.", + SerializedName = @"value", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItem) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItem[] Value { get; set; } + + } + /// Configuration Name list which will be set based on different target resource, client type, auth type. + internal partial interface IConfigurationNameResultInternal + + { + /// Link to next page of resources. + string NextLink { get; set; } + /// Expected configuration names for each target service. + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItem[] Value { get; set; } + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationNameResult.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationNameResult.json.cs new file mode 100644 index 000000000000..51e3589d0ff6 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationNameResult.json.cs @@ -0,0 +1,123 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// + /// Configuration Name list which will be set based on different target resource, client type, auth type. + /// + public partial class ConfigurationNameResult + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the + /// output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject instance to deserialize from. + internal ConfigurationNameResult(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItem) (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationNameItem.FromJson(__u) )) ))() : null : Value;} + {_nextLink = If( json?.PropertyT("nextLink"), out var __jsonNextLink) ? (string)__jsonNextLink : (string)NextLink;} + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameResult. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameResult. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new ConfigurationNameResult(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + if (null != this._value) + { + var __w = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.XNodeArray(); + foreach( var __x in this._value ) + { + AddIf(__x?.ToJson(null, serializationMode) ,__w.Add); + } + container.Add("value",__w); + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._nextLink)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._nextLink.ToString()) : null, "nextLink" ,container.Add ); + } + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationNames.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationNames.PowerShell.cs new file mode 100644 index 000000000000..fe3af8c5026e --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationNames.PowerShell.cs @@ -0,0 +1,172 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// + /// The configuration names which will be set based on specific target resource, client type, auth type. + /// + [System.ComponentModel.TypeConverter(typeof(ConfigurationNamesTypeConverter))] + public partial class ConfigurationNames + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal ConfigurationNames(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("TargetService")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNamesInternal)this).TargetService = (string) content.GetValueForProperty("TargetService",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNamesInternal)this).TargetService, global::System.Convert.ToString); + } + if (content.Contains("ClientType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNamesInternal)this).ClientType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType?) content.GetValueForProperty("ClientType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNamesInternal)this).ClientType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType.CreateFrom); + } + if (content.Contains("AuthType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNamesInternal)this).AuthType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType?) content.GetValueForProperty("AuthType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNamesInternal)this).AuthType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType.CreateFrom); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNamesInternal)this).Name = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationName[]) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNamesInternal)this).Name, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationNameTypeConverter.ConvertFrom)); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal ConfigurationNames(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("TargetService")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNamesInternal)this).TargetService = (string) content.GetValueForProperty("TargetService",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNamesInternal)this).TargetService, global::System.Convert.ToString); + } + if (content.Contains("ClientType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNamesInternal)this).ClientType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType?) content.GetValueForProperty("ClientType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNamesInternal)this).ClientType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType.CreateFrom); + } + if (content.Contains("AuthType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNamesInternal)this).AuthType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType?) content.GetValueForProperty("AuthType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNamesInternal)this).AuthType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType.CreateFrom); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNamesInternal)this).Name = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationName[]) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNamesInternal)this).Name, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationNameTypeConverter.ConvertFrom)); + } + AfterDeserializePSObject(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNames DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new ConfigurationNames(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNames DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new ConfigurationNames(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNames FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// The configuration names which will be set based on specific target resource, client type, auth type. + [System.ComponentModel.TypeConverter(typeof(ConfigurationNamesTypeConverter))] + public partial interface IConfigurationNames + + { + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationNames.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationNames.TypeConverter.cs new file mode 100644 index 000000000000..3f02c873dc19 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationNames.TypeConverter.cs @@ -0,0 +1,147 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class ConfigurationNamesTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// type. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the + /// parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter into an instance of + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNames ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNames).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return ConfigurationNames.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return ConfigurationNames.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return ConfigurationNames.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationNames.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationNames.cs new file mode 100644 index 000000000000..e191bff4d6e7 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationNames.cs @@ -0,0 +1,104 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// + /// The configuration names which will be set based on specific target resource, client type, auth type. + /// + public partial class ConfigurationNames : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNames, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNamesInternal + { + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType? _authType; + + /// The auth type. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType? AuthType { get => this._authType; set => this._authType = value; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType? _clientType; + + /// The client type for configuration names. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType? ClientType { get => this._clientType; set => this._clientType = value; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationName[] _name; + + /// The configuration names to be set in compute service environment. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationName[] Name { get => this._name; set => this._name = value; } + + /// Backing field for property. + private string _targetService; + + /// The target service provider name and resource name. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public string TargetService { get => this._targetService; set => this._targetService = value; } + + /// Creates an new instance. + public ConfigurationNames() + { + + } + } + /// The configuration names which will be set based on specific target resource, client type, auth type. + public partial interface IConfigurationNames : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable + { + /// The auth type. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The auth type.", + SerializedName = @"authType", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType? AuthType { get; set; } + /// The client type for configuration names. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The client type for configuration names.", + SerializedName = @"clientType", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType? ClientType { get; set; } + /// The configuration names to be set in compute service environment. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The configuration names to be set in compute service environment.", + SerializedName = @"names", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationName) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationName[] Name { get; set; } + /// The target service provider name and resource name. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The target service provider name and resource name.", + SerializedName = @"targetService", + PossibleTypes = new [] { typeof(string) })] + string TargetService { get; set; } + + } + /// The configuration names which will be set based on specific target resource, client type, auth type. + internal partial interface IConfigurationNamesInternal + + { + /// The auth type. + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType? AuthType { get; set; } + /// The client type for configuration names. + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType? ClientType { get; set; } + /// The configuration names to be set in compute service environment. + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationName[] Name { get; set; } + /// The target service provider name and resource name. + string TargetService { get; set; } + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationNames.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationNames.json.cs new file mode 100644 index 000000000000..a8490a989764 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationNames.json.cs @@ -0,0 +1,124 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// + /// The configuration names which will be set based on specific target resource, client type, auth type. + /// + public partial class ConfigurationNames + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the + /// output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject instance to deserialize from. + internal ConfigurationNames(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_targetService = If( json?.PropertyT("targetService"), out var __jsonTargetService) ? (string)__jsonTargetService : (string)TargetService;} + {_clientType = If( json?.PropertyT("clientType"), out var __jsonClientType) ? (string)__jsonClientType : (string)ClientType;} + {_authType = If( json?.PropertyT("authType"), out var __jsonAuthType) ? (string)__jsonAuthType : (string)AuthType;} + {_name = If( json?.PropertyT("names"), out var __jsonNames) ? If( __jsonNames as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationName) (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationName.FromJson(__u) )) ))() : null : Name;} + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNames. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNames. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNames FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new ConfigurationNames(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + AddIf( null != (((object)this._targetService)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._targetService.ToString()) : null, "targetService" ,container.Add ); + AddIf( null != (((object)this._clientType)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._clientType.ToString()) : null, "clientType" ,container.Add ); + AddIf( null != (((object)this._authType)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._authType.ToString()) : null, "authType" ,container.Add ); + if (null != this._name) + { + var __w = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.XNodeArray(); + foreach( var __x in this._name ) + { + AddIf(__x?.ToJson(null, serializationMode) ,__w.Add); + } + container.Add("names",__w); + } + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/SourceConfigurationResult.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationResult.PowerShell.cs similarity index 66% rename from src/ServiceLinker/generated/api/Models/Api20220501/SourceConfigurationResult.PowerShell.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationResult.PowerShell.cs index 7dd19efda805..5e536ef0aab4 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/SourceConfigurationResult.PowerShell.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationResult.PowerShell.cs @@ -3,15 +3,15 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; /// /// Configurations for source resource, include appSettings, connectionString and serviceBindings /// - [System.ComponentModel.TypeConverter(typeof(SourceConfigurationResultTypeConverter))] - public partial class SourceConfigurationResult + [System.ComponentModel.TypeConverter(typeof(ConfigurationResultTypeConverter))] + public partial class ConfigurationResult { /// @@ -33,7 +33,8 @@ public partial class SourceConfigurationResult /// /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Collections.IDictionary content that should be used. @@ -45,7 +46,8 @@ public partial class SourceConfigurationResult /// /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -55,46 +57,11 @@ public partial class SourceConfigurationResult partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfigurationResult DeserializeFromDictionary(global::System.Collections.IDictionary content) - { - return new SourceConfigurationResult(content); - } - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfigurationResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) - { - return new SourceConfigurationResult(content); - } - - /// - /// Creates a new instance of , deserializing the content from a json string. - /// - /// a string containing a JSON serialized instance of this model. - /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfigurationResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - internal SourceConfigurationResult(global::System.Collections.IDictionary content) + internal ConfigurationResult(global::System.Collections.IDictionary content) { bool returnNow = false; BeforeDeserializeDictionary(content, ref returnNow); @@ -105,17 +72,17 @@ internal SourceConfigurationResult(global::System.Collections.IDictionary conten // actually deserialize if (content.Contains("Configuration")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfigurationResultInternal)this).Configuration = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfiguration[]) content.GetValueForProperty("Configuration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfigurationResultInternal)this).Configuration, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SourceConfigurationTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationResultInternal)this).Configuration = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration[]) content.GetValueForProperty("Configuration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationResultInternal)this).Configuration, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SourceConfigurationTypeConverter.ConvertFrom)); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. - internal SourceConfigurationResult(global::System.Management.Automation.PSObject content) + internal ConfigurationResult(global::System.Management.Automation.PSObject content) { bool returnNow = false; BeforeDeserializePSObject(content, ref returnNow); @@ -126,19 +93,54 @@ internal SourceConfigurationResult(global::System.Management.Automation.PSObject // actually deserialize if (content.Contains("Configuration")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfigurationResultInternal)this).Configuration = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfiguration[]) content.GetValueForProperty("Configuration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfigurationResultInternal)this).Configuration, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SourceConfigurationTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationResultInternal)this).Configuration = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration[]) content.GetValueForProperty("Configuration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationResultInternal)this).Configuration, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SourceConfigurationTypeConverter.ConvertFrom)); } AfterDeserializePSObject(content); } + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationResult DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new ConfigurationResult(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new ConfigurationResult(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + /// Serializes this instance to a json string. /// a containing this model serialized to JSON text. public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeAll)?.ToString(); } /// Configurations for source resource, include appSettings, connectionString and serviceBindings - [System.ComponentModel.TypeConverter(typeof(SourceConfigurationResultTypeConverter))] - public partial interface ISourceConfigurationResult + [System.ComponentModel.TypeConverter(typeof(ConfigurationResultTypeConverter))] + public partial interface IConfigurationResult { diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationResult.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationResult.TypeConverter.cs new file mode 100644 index 000000000000..128684e7e3af --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationResult.TypeConverter.cs @@ -0,0 +1,147 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class ConfigurationResultTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// type. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the + /// parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter into an instance of + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationResult ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationResult).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return ConfigurationResult.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return ConfigurationResult.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return ConfigurationResult.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/SourceConfigurationResult.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationResult.cs similarity index 72% rename from src/ServiceLinker/generated/api/Models/Api20220501/SourceConfigurationResult.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationResult.cs index 5d3c175a8ead..4ab13f26c939 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/SourceConfigurationResult.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationResult.cs @@ -3,33 +3,33 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; /// /// Configurations for source resource, include appSettings, connectionString and serviceBindings /// - public partial class SourceConfigurationResult : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfigurationResult, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfigurationResultInternal + public partial class ConfigurationResult : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationResult, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationResultInternal { /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfiguration[] _configuration; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration[] _configuration; /// The configuration properties for source resource. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfiguration[] Configuration { get => this._configuration; set => this._configuration = value; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration[] Configuration { get => this._configuration; set => this._configuration = value; } - /// Creates an new instance. - public SourceConfigurationResult() + /// Creates an new instance. + public ConfigurationResult() { } } /// Configurations for source resource, include appSettings, connectionString and serviceBindings - public partial interface ISourceConfigurationResult : + public partial interface IConfigurationResult : Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable { /// The configuration properties for source resource. @@ -38,16 +38,16 @@ public partial interface ISourceConfigurationResult : ReadOnly = false, Description = @"The configuration properties for source resource.", SerializedName = @"configurations", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfiguration) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfiguration[] Configuration { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration[] Configuration { get; set; } } /// Configurations for source resource, include appSettings, connectionString and serviceBindings - internal partial interface ISourceConfigurationResultInternal + internal partial interface IConfigurationResultInternal { /// The configuration properties for source resource. - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfiguration[] Configuration { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration[] Configuration { get; set; } } } \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/SourceConfigurationResult.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationResult.json.cs similarity index 83% rename from src/ServiceLinker/generated/api/Models/Api20220501/SourceConfigurationResult.json.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationResult.json.cs index 005df270ce44..e17bc2bb6308 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/SourceConfigurationResult.json.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfigurationResult.json.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; /// /// Configurations for source resource, include appSettings, connectionString and serviceBindings /// - public partial class SourceConfigurationResult + public partial class ConfigurationResult { /// @@ -56,22 +56,10 @@ public partial class SourceConfigurationResult partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfigurationResult. - /// - /// a to deserialize from. - /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfigurationResult. - /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfigurationResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) - { - return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new SourceConfigurationResult(json) : null; - } - - /// - /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject into a new instance of . + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject into a new instance of . /// /// A Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject instance to deserialize from. - internal SourceConfigurationResult(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json) + internal ConfigurationResult(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json) { bool returnNow = false; BeforeFromJson(json, ref returnNow); @@ -79,18 +67,30 @@ internal SourceConfigurationResult(Microsoft.Azure.PowerShell.Cmdlets.ServiceLin { return; } - {_configuration = If( json?.PropertyT("configurations"), out var __jsonConfigurations) ? If( __jsonConfigurations as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfiguration) (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SourceConfiguration.FromJson(__u) )) ))() : null : Configuration;} + {_configuration = If( json?.PropertyT("configurations"), out var __jsonConfigurations) ? If( __jsonConfigurations as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration) (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SourceConfiguration.FromJson(__u) )) ))() : null : Configuration;} AfterFromJson(json); } /// - /// Serializes this instance of into a . + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationResult. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationResult. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new ConfigurationResult(json) : null; + } + + /// + /// Serializes this instance of into a . /// /// The container to serialize this object into. If the caller /// passes in null, a new instance will be created and returned to the caller. /// Allows the caller to choose the depth of the serialization. See . /// - /// a serialized instance of as a . + /// a serialized instance of as a . /// public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode serializationMode) { diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/ConfluentBootstrapServer.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfluentBootstrapServer.PowerShell.cs similarity index 74% rename from src/ServiceLinker/generated/api/Models/Api20220501/ConfluentBootstrapServer.PowerShell.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfluentBootstrapServer.PowerShell.cs index f97ac91c8c48..0a91e1fd832f 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/ConfluentBootstrapServer.PowerShell.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfluentBootstrapServer.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -31,7 +31,8 @@ public partial class ConfluentBootstrapServer /// /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Collections.IDictionary content that should be used. @@ -43,7 +44,8 @@ public partial class ConfluentBootstrapServer /// /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -53,7 +55,7 @@ public partial class ConfluentBootstrapServer partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -68,17 +70,17 @@ internal ConfluentBootstrapServer(global::System.Collections.IDictionary content // actually deserialize if (content.Contains("Endpoint")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IConfluentBootstrapServerInternal)this).Endpoint = (string) content.GetValueForProperty("Endpoint",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IConfluentBootstrapServerInternal)this).Endpoint, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfluentBootstrapServerInternal)this).Endpoint = (string) content.GetValueForProperty("Endpoint",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfluentBootstrapServerInternal)this).Endpoint, global::System.Convert.ToString); } if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBaseInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBaseInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBaseInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBaseInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType.CreateFrom); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -93,39 +95,39 @@ internal ConfluentBootstrapServer(global::System.Management.Automation.PSObject // actually deserialize if (content.Contains("Endpoint")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IConfluentBootstrapServerInternal)this).Endpoint = (string) content.GetValueForProperty("Endpoint",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IConfluentBootstrapServerInternal)this).Endpoint, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfluentBootstrapServerInternal)this).Endpoint = (string) content.GetValueForProperty("Endpoint",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfluentBootstrapServerInternal)this).Endpoint, global::System.Convert.ToString); } if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBaseInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBaseInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBaseInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBaseInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType.CreateFrom); } AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IConfluentBootstrapServer DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfluentBootstrapServer DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new ConfluentBootstrapServer(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IConfluentBootstrapServer DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfluentBootstrapServer DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new ConfluentBootstrapServer(content); } @@ -135,7 +137,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api2022050 /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IConfluentBootstrapServer FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfluentBootstrapServer FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/ConfluentBootstrapServer.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfluentBootstrapServer.TypeConverter.cs similarity index 81% rename from src/ServiceLinker/generated/api/Models/Api20220501/ConfluentBootstrapServer.TypeConverter.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfluentBootstrapServer.TypeConverter.cs index ccbca0da023e..5b4e6927410f 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/ConfluentBootstrapServer.TypeConverter.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfluentBootstrapServer.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -14,20 +14,20 @@ public partial class ConfluentBootstrapServerTypeConverter : global::System.Mana { /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); /// - /// Determines if the converter can convert the parameter to the . + /// Determines if the converter can convert the parameter to the + /// type. /// /// the instance to check if it can be converted to the type. @@ -75,19 +75,20 @@ public static bool CanConvertFrom(dynamic sourceValue) } /// - /// Determines if the parameter can be converted to the parameter + /// Determines if the parameter can be converted to the + /// parameter /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false + /// true if the converter can convert the parameter to the parameter, otherwise false /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to @@ -99,21 +100,20 @@ public static bool CanConvertFrom(dynamic sourceValue) public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); /// - /// Converts the parameter to the parameter using and + /// Converts the parameter into an instance of /// /// the value to convert into an instance of . /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IConfluentBootstrapServer ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfluentBootstrapServer ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IConfluentBootstrapServer).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfluentBootstrapServer).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/ConfluentBootstrapServer.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfluentBootstrapServer.cs similarity index 83% rename from src/ServiceLinker/generated/api/Models/Api20220501/ConfluentBootstrapServer.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfluentBootstrapServer.cs index 20bfe2072302..842275be30cd 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/ConfluentBootstrapServer.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfluentBootstrapServer.cs @@ -3,21 +3,21 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; /// The service properties when target service type is ConfluentBootstrapServer public partial class ConfluentBootstrapServer : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IConfluentBootstrapServer, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IConfluentBootstrapServerInternal, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfluentBootstrapServer, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfluentBootstrapServerInternal, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IValidates { /// - /// Backing field for Inherited model /// - private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase __targetServiceBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.TargetServiceBase(); + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase __targetServiceBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.TargetServiceBase(); /// Backing field for property. private string _endpoint; @@ -28,7 +28,7 @@ public partial class ConfluentBootstrapServer : /// The target service type. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBaseInternal)__targetServiceBase).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBaseInternal)__targetServiceBase).Type = value ; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBaseInternal)__targetServiceBase).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBaseInternal)__targetServiceBase).Type = value ; } /// Creates an new instance. public ConfluentBootstrapServer() @@ -51,7 +51,7 @@ public ConfluentBootstrapServer() /// The service properties when target service type is ConfluentBootstrapServer public partial interface IConfluentBootstrapServer : Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase { /// The endpoint of service. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( @@ -65,7 +65,7 @@ public partial interface IConfluentBootstrapServer : } /// The service properties when target service type is ConfluentBootstrapServer internal partial interface IConfluentBootstrapServerInternal : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBaseInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBaseInternal { /// The endpoint of service. string Endpoint { get; set; } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/ConfluentBootstrapServer.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfluentBootstrapServer.json.cs similarity index 95% rename from src/ServiceLinker/generated/api/Models/Api20220501/ConfluentBootstrapServer.json.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfluentBootstrapServer.json.cs index 83d0f4d23070..fa1be03adc4d 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/ConfluentBootstrapServer.json.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfluentBootstrapServer.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; @@ -65,19 +65,19 @@ internal ConfluentBootstrapServer(Microsoft.Azure.PowerShell.Cmdlets.ServiceLink { return; } - __targetServiceBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.TargetServiceBase(json); + __targetServiceBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.TargetServiceBase(json); {_endpoint = If( json?.PropertyT("endpoint"), out var __jsonEndpoint) ? (string)__jsonEndpoint : (string)Endpoint;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IConfluentBootstrapServer. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfluentBootstrapServer. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IConfluentBootstrapServer. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfluentBootstrapServer. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IConfluentBootstrapServer FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfluentBootstrapServer FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new ConfluentBootstrapServer(json) : null; } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/ConfluentSchemaRegistry.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfluentSchemaRegistry.PowerShell.cs similarity index 74% rename from src/ServiceLinker/generated/api/Models/Api20220501/ConfluentSchemaRegistry.PowerShell.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfluentSchemaRegistry.PowerShell.cs index bfc09bbe03e9..c21aa76c05ad 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/ConfluentSchemaRegistry.PowerShell.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfluentSchemaRegistry.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -31,7 +31,8 @@ public partial class ConfluentSchemaRegistry /// /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Collections.IDictionary content that should be used. @@ -43,7 +44,8 @@ public partial class ConfluentSchemaRegistry /// /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -53,7 +55,7 @@ public partial class ConfluentSchemaRegistry partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -68,17 +70,17 @@ internal ConfluentSchemaRegistry(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Endpoint")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IConfluentSchemaRegistryInternal)this).Endpoint = (string) content.GetValueForProperty("Endpoint",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IConfluentSchemaRegistryInternal)this).Endpoint, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfluentSchemaRegistryInternal)this).Endpoint = (string) content.GetValueForProperty("Endpoint",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfluentSchemaRegistryInternal)this).Endpoint, global::System.Convert.ToString); } if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBaseInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBaseInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBaseInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBaseInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType.CreateFrom); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -93,39 +95,39 @@ internal ConfluentSchemaRegistry(global::System.Management.Automation.PSObject c // actually deserialize if (content.Contains("Endpoint")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IConfluentSchemaRegistryInternal)this).Endpoint = (string) content.GetValueForProperty("Endpoint",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IConfluentSchemaRegistryInternal)this).Endpoint, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfluentSchemaRegistryInternal)this).Endpoint = (string) content.GetValueForProperty("Endpoint",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfluentSchemaRegistryInternal)this).Endpoint, global::System.Convert.ToString); } if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBaseInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBaseInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBaseInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBaseInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType.CreateFrom); } AfterDeserializePSObject(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IConfluentSchemaRegistry DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfluentSchemaRegistry DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new ConfluentSchemaRegistry(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IConfluentSchemaRegistry DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfluentSchemaRegistry DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new ConfluentSchemaRegistry(content); } @@ -135,7 +137,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api2022050 /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IConfluentSchemaRegistry FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfluentSchemaRegistry FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/ConfluentSchemaRegistry.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfluentSchemaRegistry.TypeConverter.cs similarity index 81% rename from src/ServiceLinker/generated/api/Models/Api20220501/ConfluentSchemaRegistry.TypeConverter.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfluentSchemaRegistry.TypeConverter.cs index e2830ca3d2c3..52b409fd5aa1 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/ConfluentSchemaRegistry.TypeConverter.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfluentSchemaRegistry.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -14,20 +14,20 @@ public partial class ConfluentSchemaRegistryTypeConverter : global::System.Manag { /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); /// - /// Determines if the converter can convert the parameter to the . + /// Determines if the converter can convert the parameter to the + /// type. /// /// the instance to check if it can be converted to the type. @@ -75,19 +75,20 @@ public static bool CanConvertFrom(dynamic sourceValue) } /// - /// Determines if the parameter can be converted to the parameter + /// Determines if the parameter can be converted to the + /// parameter /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false + /// true if the converter can convert the parameter to the parameter, otherwise false /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to @@ -99,21 +100,20 @@ public static bool CanConvertFrom(dynamic sourceValue) public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); /// - /// Converts the parameter to the parameter using and + /// Converts the parameter into an instance of /// /// the value to convert into an instance of . /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IConfluentSchemaRegistry ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfluentSchemaRegistry ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IConfluentSchemaRegistry).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfluentSchemaRegistry).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/ConfluentSchemaRegistry.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfluentSchemaRegistry.cs similarity index 83% rename from src/ServiceLinker/generated/api/Models/Api20220501/ConfluentSchemaRegistry.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfluentSchemaRegistry.cs index c23aa5a0ce1a..096d7d78d226 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/ConfluentSchemaRegistry.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfluentSchemaRegistry.cs @@ -3,21 +3,21 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; /// The service properties when target service type is ConfluentSchemaRegistry public partial class ConfluentSchemaRegistry : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IConfluentSchemaRegistry, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IConfluentSchemaRegistryInternal, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfluentSchemaRegistry, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfluentSchemaRegistryInternal, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IValidates { /// - /// Backing field for Inherited model /// - private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase __targetServiceBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.TargetServiceBase(); + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase __targetServiceBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.TargetServiceBase(); /// Backing field for property. private string _endpoint; @@ -28,7 +28,7 @@ public partial class ConfluentSchemaRegistry : /// The target service type. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBaseInternal)__targetServiceBase).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBaseInternal)__targetServiceBase).Type = value ; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBaseInternal)__targetServiceBase).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBaseInternal)__targetServiceBase).Type = value ; } /// Creates an new instance. public ConfluentSchemaRegistry() @@ -51,7 +51,7 @@ public ConfluentSchemaRegistry() /// The service properties when target service type is ConfluentSchemaRegistry public partial interface IConfluentSchemaRegistry : Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase { /// The endpoint of service. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( @@ -65,7 +65,7 @@ public partial interface IConfluentSchemaRegistry : } /// The service properties when target service type is ConfluentSchemaRegistry internal partial interface IConfluentSchemaRegistryInternal : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBaseInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBaseInternal { /// The endpoint of service. string Endpoint { get; set; } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/ConfluentSchemaRegistry.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfluentSchemaRegistry.json.cs similarity index 95% rename from src/ServiceLinker/generated/api/Models/Api20220501/ConfluentSchemaRegistry.json.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfluentSchemaRegistry.json.cs index c6ed40a47ce2..6d52b4930e8c 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/ConfluentSchemaRegistry.json.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ConfluentSchemaRegistry.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; @@ -65,19 +65,19 @@ internal ConfluentSchemaRegistry(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinke { return; } - __targetServiceBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.TargetServiceBase(json); + __targetServiceBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.TargetServiceBase(json); {_endpoint = If( json?.PropertyT("endpoint"), out var __jsonEndpoint) ? (string)__jsonEndpoint : (string)Endpoint;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IConfluentSchemaRegistry. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfluentSchemaRegistry. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IConfluentSchemaRegistry. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfluentSchemaRegistry. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IConfluentSchemaRegistry FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfluentSchemaRegistry FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new ConfluentSchemaRegistry(json) : null; } diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/CreateOrUpdateDryrunParameters.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/CreateOrUpdateDryrunParameters.PowerShell.cs new file mode 100644 index 000000000000..4b749edacbb4 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/CreateOrUpdateDryrunParameters.PowerShell.cs @@ -0,0 +1,330 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// The dryrun parameters for creation or update a linker + [System.ComponentModel.TypeConverter(typeof(CreateOrUpdateDryrunParametersTypeConverter))] + public partial class CreateOrUpdateDryrunParameters + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal CreateOrUpdateDryrunParameters(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("ActionName")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunParametersInternal)this).ActionName = (string) content.GetValueForProperty("ActionName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunParametersInternal)this).ActionName, global::System.Convert.ToString); + } + if (content.Contains("VNetSolutionType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).VNetSolutionType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType?) content.GetValueForProperty("VNetSolutionType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).VNetSolutionType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType.CreateFrom); + } + if (content.Contains("PublicNetworkSolutionFirewallRule")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).PublicNetworkSolutionFirewallRule = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRules) content.GetValueForProperty("PublicNetworkSolutionFirewallRule",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).PublicNetworkSolutionFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.FirewallRulesTypeConverter.ConvertFrom); + } + if (content.Contains("ConfigurationInfoCustomizedKey")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ConfigurationInfoCustomizedKey = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys) content.GetValueForProperty("ConfigurationInfoCustomizedKey",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ConfigurationInfoCustomizedKey, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationInfoCustomizedKeysTypeConverter.ConvertFrom); + } + if (content.Contains("ConfigurationInfoAdditionalConfiguration")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ConfigurationInfoAdditionalConfiguration = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations) content.GetValueForProperty("ConfigurationInfoAdditionalConfiguration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ConfigurationInfoAdditionalConfiguration, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationInfoAdditionalConfigurationsTypeConverter.ConvertFrom); + } + if (content.Contains("VNetSolutionDeleteOrUpdateBehavior")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).VNetSolutionDeleteOrUpdateBehavior = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior?) content.GetValueForProperty("VNetSolutionDeleteOrUpdateBehavior",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).VNetSolutionDeleteOrUpdateBehavior, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior.CreateFrom); + } + if (content.Contains("SecretStoreKeyVaultId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).SecretStoreKeyVaultId = (string) content.GetValueForProperty("SecretStoreKeyVaultId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).SecretStoreKeyVaultId, global::System.Convert.ToString); + } + if (content.Contains("SecretStoreKeyVaultSecretName")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).SecretStoreKeyVaultSecretName = (string) content.GetValueForProperty("SecretStoreKeyVaultSecretName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).SecretStoreKeyVaultSecretName, global::System.Convert.ToString); + } + if (content.Contains("PublicNetworkSolutionDeleteOrUpdateBehavior")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).PublicNetworkSolutionDeleteOrUpdateBehavior = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior?) content.GetValueForProperty("PublicNetworkSolutionDeleteOrUpdateBehavior",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).PublicNetworkSolutionDeleteOrUpdateBehavior, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior.CreateFrom); + } + if (content.Contains("PublicNetworkSolutionAction")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).PublicNetworkSolutionAction = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType?) content.GetValueForProperty("PublicNetworkSolutionAction",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).PublicNetworkSolutionAction, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType.CreateFrom); + } + if (content.Contains("FirewallRuleIPRange")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).FirewallRuleIPRange = (string[]) content.GetValueForProperty("FirewallRuleIPRange",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).FirewallRuleIPRange, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + } + if (content.Contains("ConfigurationInfoDeleteOrUpdateBehavior")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ConfigurationInfoDeleteOrUpdateBehavior = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior?) content.GetValueForProperty("ConfigurationInfoDeleteOrUpdateBehavior",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ConfigurationInfoDeleteOrUpdateBehavior, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior.CreateFrom); + } + if (content.Contains("ConfigurationInfoAction")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ConfigurationInfoAction = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType?) content.GetValueForProperty("ConfigurationInfoAction",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ConfigurationInfoAction, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType.CreateFrom); + } + if (content.Contains("FirewallRuleAzureService")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).FirewallRuleAzureService = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType?) content.GetValueForProperty("FirewallRuleAzureService",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).FirewallRuleAzureService, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType.CreateFrom); + } + if (content.Contains("FirewallRuleCallerClientIP")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).FirewallRuleCallerClientIP = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType?) content.GetValueForProperty("FirewallRuleCallerClientIP",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).FirewallRuleCallerClientIP, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType.CreateFrom); + } + if (content.Contains("VNetSolution")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).VNetSolution = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IVNetSolution) content.GetValueForProperty("VNetSolution",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).VNetSolution, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.VNetSolutionTypeConverter.ConvertFrom); + } + if (content.Contains("SecretStore")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).SecretStore = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretStore) content.GetValueForProperty("SecretStore",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).SecretStore, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SecretStoreTypeConverter.ConvertFrom); + } + if (content.Contains("PublicNetworkSolution")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).PublicNetworkSolution = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolution) content.GetValueForProperty("PublicNetworkSolution",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).PublicNetworkSolution, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.PublicNetworkSolutionTypeConverter.ConvertFrom); + } + if (content.Contains("ConfigurationInfo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ConfigurationInfo = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfo) content.GetValueForProperty("ConfigurationInfo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ConfigurationInfo, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationInfoTypeConverter.ConvertFrom); + } + if (content.Contains("TargetService")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).TargetService = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase) content.GetValueForProperty("TargetService",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).TargetService, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.TargetServiceBaseTypeConverter.ConvertFrom); + } + if (content.Contains("AuthInfo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).AuthInfo = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase) content.GetValueForProperty("AuthInfo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).AuthInfo, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AuthInfoBaseTypeConverter.ConvertFrom); + } + if (content.Contains("ClientType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ClientType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType?) content.GetValueForProperty("ClientType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ClientType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType.CreateFrom); + } + if (content.Contains("ProvisioningState")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ProvisioningState, global::System.Convert.ToString); + } + if (content.Contains("Scope")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).Scope = (string) content.GetValueForProperty("Scope",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).Scope, global::System.Convert.ToString); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal CreateOrUpdateDryrunParameters(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("ActionName")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunParametersInternal)this).ActionName = (string) content.GetValueForProperty("ActionName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunParametersInternal)this).ActionName, global::System.Convert.ToString); + } + if (content.Contains("VNetSolutionType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).VNetSolutionType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType?) content.GetValueForProperty("VNetSolutionType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).VNetSolutionType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType.CreateFrom); + } + if (content.Contains("PublicNetworkSolutionFirewallRule")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).PublicNetworkSolutionFirewallRule = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRules) content.GetValueForProperty("PublicNetworkSolutionFirewallRule",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).PublicNetworkSolutionFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.FirewallRulesTypeConverter.ConvertFrom); + } + if (content.Contains("ConfigurationInfoCustomizedKey")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ConfigurationInfoCustomizedKey = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys) content.GetValueForProperty("ConfigurationInfoCustomizedKey",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ConfigurationInfoCustomizedKey, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationInfoCustomizedKeysTypeConverter.ConvertFrom); + } + if (content.Contains("ConfigurationInfoAdditionalConfiguration")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ConfigurationInfoAdditionalConfiguration = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations) content.GetValueForProperty("ConfigurationInfoAdditionalConfiguration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ConfigurationInfoAdditionalConfiguration, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationInfoAdditionalConfigurationsTypeConverter.ConvertFrom); + } + if (content.Contains("VNetSolutionDeleteOrUpdateBehavior")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).VNetSolutionDeleteOrUpdateBehavior = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior?) content.GetValueForProperty("VNetSolutionDeleteOrUpdateBehavior",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).VNetSolutionDeleteOrUpdateBehavior, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior.CreateFrom); + } + if (content.Contains("SecretStoreKeyVaultId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).SecretStoreKeyVaultId = (string) content.GetValueForProperty("SecretStoreKeyVaultId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).SecretStoreKeyVaultId, global::System.Convert.ToString); + } + if (content.Contains("SecretStoreKeyVaultSecretName")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).SecretStoreKeyVaultSecretName = (string) content.GetValueForProperty("SecretStoreKeyVaultSecretName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).SecretStoreKeyVaultSecretName, global::System.Convert.ToString); + } + if (content.Contains("PublicNetworkSolutionDeleteOrUpdateBehavior")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).PublicNetworkSolutionDeleteOrUpdateBehavior = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior?) content.GetValueForProperty("PublicNetworkSolutionDeleteOrUpdateBehavior",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).PublicNetworkSolutionDeleteOrUpdateBehavior, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior.CreateFrom); + } + if (content.Contains("PublicNetworkSolutionAction")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).PublicNetworkSolutionAction = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType?) content.GetValueForProperty("PublicNetworkSolutionAction",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).PublicNetworkSolutionAction, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType.CreateFrom); + } + if (content.Contains("FirewallRuleIPRange")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).FirewallRuleIPRange = (string[]) content.GetValueForProperty("FirewallRuleIPRange",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).FirewallRuleIPRange, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + } + if (content.Contains("ConfigurationInfoDeleteOrUpdateBehavior")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ConfigurationInfoDeleteOrUpdateBehavior = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior?) content.GetValueForProperty("ConfigurationInfoDeleteOrUpdateBehavior",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ConfigurationInfoDeleteOrUpdateBehavior, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior.CreateFrom); + } + if (content.Contains("ConfigurationInfoAction")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ConfigurationInfoAction = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType?) content.GetValueForProperty("ConfigurationInfoAction",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ConfigurationInfoAction, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType.CreateFrom); + } + if (content.Contains("FirewallRuleAzureService")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).FirewallRuleAzureService = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType?) content.GetValueForProperty("FirewallRuleAzureService",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).FirewallRuleAzureService, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType.CreateFrom); + } + if (content.Contains("FirewallRuleCallerClientIP")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).FirewallRuleCallerClientIP = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType?) content.GetValueForProperty("FirewallRuleCallerClientIP",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).FirewallRuleCallerClientIP, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType.CreateFrom); + } + if (content.Contains("VNetSolution")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).VNetSolution = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IVNetSolution) content.GetValueForProperty("VNetSolution",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).VNetSolution, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.VNetSolutionTypeConverter.ConvertFrom); + } + if (content.Contains("SecretStore")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).SecretStore = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretStore) content.GetValueForProperty("SecretStore",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).SecretStore, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SecretStoreTypeConverter.ConvertFrom); + } + if (content.Contains("PublicNetworkSolution")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).PublicNetworkSolution = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolution) content.GetValueForProperty("PublicNetworkSolution",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).PublicNetworkSolution, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.PublicNetworkSolutionTypeConverter.ConvertFrom); + } + if (content.Contains("ConfigurationInfo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ConfigurationInfo = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfo) content.GetValueForProperty("ConfigurationInfo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ConfigurationInfo, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationInfoTypeConverter.ConvertFrom); + } + if (content.Contains("TargetService")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).TargetService = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase) content.GetValueForProperty("TargetService",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).TargetService, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.TargetServiceBaseTypeConverter.ConvertFrom); + } + if (content.Contains("AuthInfo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).AuthInfo = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase) content.GetValueForProperty("AuthInfo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).AuthInfo, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AuthInfoBaseTypeConverter.ConvertFrom); + } + if (content.Contains("ClientType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ClientType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType?) content.GetValueForProperty("ClientType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ClientType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType.CreateFrom); + } + if (content.Contains("ProvisioningState")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ProvisioningState, global::System.Convert.ToString); + } + if (content.Contains("Scope")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).Scope = (string) content.GetValueForProperty("Scope",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).Scope, global::System.Convert.ToString); + } + AfterDeserializePSObject(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ICreateOrUpdateDryrunParameters DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new CreateOrUpdateDryrunParameters(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ICreateOrUpdateDryrunParameters DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new CreateOrUpdateDryrunParameters(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ICreateOrUpdateDryrunParameters FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// The dryrun parameters for creation or update a linker + [System.ComponentModel.TypeConverter(typeof(CreateOrUpdateDryrunParametersTypeConverter))] + public partial interface ICreateOrUpdateDryrunParameters + + { + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/CreateOrUpdateDryrunParameters.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/CreateOrUpdateDryrunParameters.TypeConverter.cs new file mode 100644 index 000000000000..c180cb676c42 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/CreateOrUpdateDryrunParameters.TypeConverter.cs @@ -0,0 +1,148 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class CreateOrUpdateDryrunParametersTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// type. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the + /// parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter into an instance of + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ICreateOrUpdateDryrunParameters ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ICreateOrUpdateDryrunParameters).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return CreateOrUpdateDryrunParameters.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return CreateOrUpdateDryrunParameters.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return CreateOrUpdateDryrunParameters.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/CreateOrUpdateDryrunParameters.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/CreateOrUpdateDryrunParameters.cs new file mode 100644 index 000000000000..470b1024fa9e --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/CreateOrUpdateDryrunParameters.cs @@ -0,0 +1,193 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// The dryrun parameters for creation or update a linker + public partial class CreateOrUpdateDryrunParameters : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ICreateOrUpdateDryrunParameters, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ICreateOrUpdateDryrunParametersInternal, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IValidates + { + /// + /// Backing field for Inherited model + /// + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunParameters __dryrunParameters = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunParameters(); + + /// + /// Backing field for Inherited model + /// + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerProperties __linkerProperties = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.LinkerProperties(); + + /// The name of action for you dryrun job. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public string ActionName { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunParametersInternal)__dryrunParameters).ActionName; } + + /// The authentication type. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase AuthInfo { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).AuthInfo; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).AuthInfo = value ?? null /* model class */; } + + /// The application client type + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType? ClientType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).ClientType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).ClientType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType)""); } + + /// + /// The connection information consumed by applications, including secrets, connection strings. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfo ConfigurationInfo { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).ConfigurationInfo; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).ConfigurationInfo = value ?? null /* model class */; } + + /// + /// Optional, indicate whether to apply configurations on source application. If enable, generate configurations and applied + /// to the source application. Default is enable. If optOut, no configuration change will be made on source. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType? ConfigurationInfoAction { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).ConfigurationInfoAction; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).ConfigurationInfoAction = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType)""); } + + /// + /// A dictionary of additional configurations to be added. Service will auto generate a set of basic configurations and this + /// property is to full fill more customized configurations + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations ConfigurationInfoAdditionalConfiguration { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).ConfigurationInfoAdditionalConfiguration; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).ConfigurationInfoAdditionalConfiguration = value ?? null /* model class */; } + + /// + /// Optional. A dictionary of default key name and customized key name mapping. If not specified, default key name will be + /// used for generate configurations + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys ConfigurationInfoCustomizedKey { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).ConfigurationInfoCustomizedKey; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).ConfigurationInfoCustomizedKey = value ?? null /* model class */; } + + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? ConfigurationInfoDeleteOrUpdateBehavior { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).ConfigurationInfoDeleteOrUpdateBehavior; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).ConfigurationInfoDeleteOrUpdateBehavior = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior)""); } + + /// Allow Azure services to access the target service if true. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType? FirewallRuleAzureService { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).FirewallRuleAzureService; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).FirewallRuleAzureService = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType)""); } + + /// + /// Allow caller client IP to access the target service if true. the property is used when connecting local application to + /// target service. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType? FirewallRuleCallerClientIP { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).FirewallRuleCallerClientIP; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).FirewallRuleCallerClientIP = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType)""); } + + /// + /// This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client + /// IPs for a given database account. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public string[] FirewallRuleIPRange { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).FirewallRuleIPRange; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).FirewallRuleIPRange = value ?? null /* arrayOf */; } + + /// Internal Acessors for ActionName + string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunParametersInternal.ActionName { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunParametersInternal)__dryrunParameters).ActionName; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunParametersInternal)__dryrunParameters).ActionName = value; } + + /// Internal Acessors for ProvisioningState + string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal.ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).ProvisioningState; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).ProvisioningState = value; } + + /// The provisioning state. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public string ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).ProvisioningState; } + + /// The network solution. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolution PublicNetworkSolution { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).PublicNetworkSolution; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).PublicNetworkSolution = value ?? null /* model class */; } + + /// + /// Optional. Indicates public network solution. If enable, enable public network access of target service with best try. + /// Default is enable. If optOut, opt out public network access configuration. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType? PublicNetworkSolutionAction { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).PublicNetworkSolutionAction; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).PublicNetworkSolutionAction = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType)""); } + + /// + /// Indicates whether to clean up previous operation(such as firewall rules) when Linker is updating or deleting + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? PublicNetworkSolutionDeleteOrUpdateBehavior { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).PublicNetworkSolutionDeleteOrUpdateBehavior; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).PublicNetworkSolutionDeleteOrUpdateBehavior = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior)""); } + + /// + /// Describe firewall rules of target service to make sure source application could connect to the target. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRules PublicNetworkSolutionFirewallRule { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).PublicNetworkSolutionFirewallRule; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).PublicNetworkSolutionFirewallRule = value ?? null /* model class */; } + + /// connection scope in source service. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public string Scope { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).Scope; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).Scope = value ?? null; } + + /// An option to store secret value in secure place + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretStore SecretStore { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).SecretStore; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).SecretStore = value ?? null /* model class */; } + + /// The key vault id to store secret + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public string SecretStoreKeyVaultId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).SecretStoreKeyVaultId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).SecretStoreKeyVaultId = value ?? null; } + + /// The key vault secret name to store secret, only valid when storing one secret + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public string SecretStoreKeyVaultSecretName { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).SecretStoreKeyVaultSecretName; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).SecretStoreKeyVaultSecretName = value ?? null; } + + /// The target service properties + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase TargetService { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).TargetService; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).TargetService = value ?? null /* model class */; } + + /// The VNet solution. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IVNetSolution VNetSolution { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).VNetSolution; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).VNetSolution = value ?? null /* model class */; } + + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? VNetSolutionDeleteOrUpdateBehavior { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).VNetSolutionDeleteOrUpdateBehavior; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).VNetSolutionDeleteOrUpdateBehavior = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior)""); } + + /// Type of VNet solution. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType? VNetSolutionType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).VNetSolutionType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)__linkerProperties).VNetSolutionType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType)""); } + + /// Creates an new instance. + public CreateOrUpdateDryrunParameters() + { + + } + + /// Validates that this object meets the validation criteria. + /// an instance that will receive validation + /// events. + /// + /// A that will be complete when validation is completed. + /// + public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) + { + await eventListener.AssertNotNull(nameof(__dryrunParameters), __dryrunParameters); + await eventListener.AssertObjectIsValid(nameof(__dryrunParameters), __dryrunParameters); + await eventListener.AssertNotNull(nameof(__linkerProperties), __linkerProperties); + await eventListener.AssertObjectIsValid(nameof(__linkerProperties), __linkerProperties); + } + } + /// The dryrun parameters for creation or update a linker + public partial interface ICreateOrUpdateDryrunParameters : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunParameters, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerProperties + { + + } + /// The dryrun parameters for creation or update a linker + internal partial interface ICreateOrUpdateDryrunParametersInternal : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunParametersInternal, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal + { + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/SystemAssignedIdentityAuthInfo.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/CreateOrUpdateDryrunParameters.json.cs similarity index 81% rename from src/ServiceLinker/generated/api/Models/Api20220501/SystemAssignedIdentityAuthInfo.json.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/CreateOrUpdateDryrunParameters.json.cs index 264f0db38417..9c09e10608e3 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/SystemAssignedIdentityAuthInfo.json.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/CreateOrUpdateDryrunParameters.json.cs @@ -3,12 +3,12 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; - /// The authentication info when authType is systemAssignedIdentity - public partial class SystemAssignedIdentityAuthInfo + /// The dryrun parameters for creation or update a linker + public partial class CreateOrUpdateDryrunParameters { /// @@ -54,22 +54,10 @@ public partial class SystemAssignedIdentityAuthInfo partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISystemAssignedIdentityAuthInfo. - /// - /// a to deserialize from. - /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISystemAssignedIdentityAuthInfo. - /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISystemAssignedIdentityAuthInfo FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) - { - return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new SystemAssignedIdentityAuthInfo(json) : null; - } - - /// - /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject into a new instance of . + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject into a new instance of . /// /// A Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject instance to deserialize from. - internal SystemAssignedIdentityAuthInfo(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json) + internal CreateOrUpdateDryrunParameters(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json) { bool returnNow = false; BeforeFromJson(json, ref returnNow); @@ -77,18 +65,31 @@ internal SystemAssignedIdentityAuthInfo(Microsoft.Azure.PowerShell.Cmdlets.Servi { return; } - __authInfoBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.AuthInfoBase(json); + __dryrunParameters = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunParameters(json); + __linkerProperties = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.LinkerProperties(json); AfterFromJson(json); } /// - /// Serializes this instance of into a . + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ICreateOrUpdateDryrunParameters. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ICreateOrUpdateDryrunParameters. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ICreateOrUpdateDryrunParameters FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new CreateOrUpdateDryrunParameters(json) : null; + } + + /// + /// Serializes this instance of into a . /// /// The container to serialize this object into. If the caller /// passes in null, a new instance will be created and returned to the caller. /// Allows the caller to choose the depth of the serialization. See . /// - /// a serialized instance of as a . + /// a serialized instance of as a . /// public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode serializationMode) { @@ -100,7 +101,8 @@ public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode To { return container; } - __authInfoBase?.ToJson(container, serializationMode); + __dryrunParameters?.ToJson(container, serializationMode); + __linkerProperties?.ToJson(container, serializationMode); AfterToJson(ref container); return container; } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/SystemAssignedIdentityAuthInfo.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DatabaseAadAuthInfo.PowerShell.cs similarity index 66% rename from src/ServiceLinker/generated/api/Models/Api20220501/SystemAssignedIdentityAuthInfo.PowerShell.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/DatabaseAadAuthInfo.PowerShell.cs index 048d88b1631a..9e0b66cc2fc7 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/SystemAssignedIdentityAuthInfo.PowerShell.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DatabaseAadAuthInfo.PowerShell.cs @@ -3,13 +3,13 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; - /// The authentication info when authType is systemAssignedIdentity - [System.ComponentModel.TypeConverter(typeof(SystemAssignedIdentityAuthInfoTypeConverter))] - public partial class SystemAssignedIdentityAuthInfo + /// The extra auth info required by Database AAD authentication. + [System.ComponentModel.TypeConverter(typeof(DatabaseAadAuthInfoTypeConverter))] + public partial class DatabaseAadAuthInfo { /// @@ -31,7 +31,8 @@ public partial class SystemAssignedIdentityAuthInfo /// /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Collections.IDictionary content that should be used. @@ -43,7 +44,8 @@ public partial class SystemAssignedIdentityAuthInfo /// /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -53,46 +55,11 @@ public partial class SystemAssignedIdentityAuthInfo partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISystemAssignedIdentityAuthInfo DeserializeFromDictionary(global::System.Collections.IDictionary content) - { - return new SystemAssignedIdentityAuthInfo(content); - } - - /// - /// Deserializes a into an instance of . - /// - /// The global::System.Management.Automation.PSObject content that should be used. - /// - /// an instance of . - /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISystemAssignedIdentityAuthInfo DeserializeFromPSObject(global::System.Management.Automation.PSObject content) - { - return new SystemAssignedIdentityAuthInfo(content); - } - - /// - /// Creates a new instance of , deserializing the content from a json string. - /// - /// a string containing a JSON serialized instance of this model. - /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISystemAssignedIdentityAuthInfo FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); - - /// - /// Deserializes a into a new instance of . - /// - /// The global::System.Collections.IDictionary content that should be used. - internal SystemAssignedIdentityAuthInfo(global::System.Collections.IDictionary content) + internal DatabaseAadAuthInfo(global::System.Collections.IDictionary content) { bool returnNow = false; BeforeDeserializeDictionary(content, ref returnNow); @@ -101,19 +68,19 @@ internal SystemAssignedIdentityAuthInfo(global::System.Collections.IDictionary c return; } // actually deserialize - if (content.Contains("AuthType")) + if (content.Contains("UserName")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBaseInternal)this).AuthType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType) content.GetValueForProperty("AuthType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBaseInternal)this).AuthType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfoInternal)this).UserName = (string) content.GetValueForProperty("UserName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfoInternal)this).UserName, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. - internal SystemAssignedIdentityAuthInfo(global::System.Management.Automation.PSObject content) + internal DatabaseAadAuthInfo(global::System.Management.Automation.PSObject content) { bool returnNow = false; BeforeDeserializePSObject(content, ref returnNow); @@ -122,21 +89,56 @@ internal SystemAssignedIdentityAuthInfo(global::System.Management.Automation.PSO return; } // actually deserialize - if (content.Contains("AuthType")) + if (content.Contains("UserName")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBaseInternal)this).AuthType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType) content.GetValueForProperty("AuthType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBaseInternal)this).AuthType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfoInternal)this).UserName = (string) content.GetValueForProperty("UserName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfoInternal)this).UserName, global::System.Convert.ToString); } AfterDeserializePSObject(content); } + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfo DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new DatabaseAadAuthInfo(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfo DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new DatabaseAadAuthInfo(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfo FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + /// Serializes this instance to a json string. /// a containing this model serialized to JSON text. public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeAll)?.ToString(); } - /// The authentication info when authType is systemAssignedIdentity - [System.ComponentModel.TypeConverter(typeof(SystemAssignedIdentityAuthInfoTypeConverter))] - public partial interface ISystemAssignedIdentityAuthInfo + /// The extra auth info required by Database AAD authentication. + [System.ComponentModel.TypeConverter(typeof(DatabaseAadAuthInfoTypeConverter))] + public partial interface IDatabaseAadAuthInfo { diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/DatabaseAadAuthInfo.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DatabaseAadAuthInfo.TypeConverter.cs new file mode 100644 index 000000000000..52a4947ba472 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DatabaseAadAuthInfo.TypeConverter.cs @@ -0,0 +1,147 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class DatabaseAadAuthInfoTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// type. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the + /// parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter into an instance of + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfo ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfo).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return DatabaseAadAuthInfo.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return DatabaseAadAuthInfo.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return DatabaseAadAuthInfo.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/DatabaseAadAuthInfo.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DatabaseAadAuthInfo.cs new file mode 100644 index 000000000000..82b8d1810c96 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DatabaseAadAuthInfo.cs @@ -0,0 +1,51 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// The extra auth info required by Database AAD authentication. + public partial class DatabaseAadAuthInfo : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfo, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfoInternal + { + + /// Backing field for property. + private string _userName; + + /// Username created in the database which is mapped to a user in AAD. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public string UserName { get => this._userName; set => this._userName = value; } + + /// Creates an new instance. + public DatabaseAadAuthInfo() + { + + } + } + /// The extra auth info required by Database AAD authentication. + public partial interface IDatabaseAadAuthInfo : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable + { + /// Username created in the database which is mapped to a user in AAD. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Username created in the database which is mapped to a user in AAD.", + SerializedName = @"userName", + PossibleTypes = new [] { typeof(string) })] + string UserName { get; set; } + + } + /// The extra auth info required by Database AAD authentication. + internal partial interface IDatabaseAadAuthInfoInternal + + { + /// Username created in the database which is mapped to a user in AAD. + string UserName { get; set; } + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/DatabaseAadAuthInfo.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DatabaseAadAuthInfo.json.cs new file mode 100644 index 000000000000..bad7c7ad9ff5 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DatabaseAadAuthInfo.json.cs @@ -0,0 +1,108 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// The extra auth info required by Database AAD authentication. + public partial class DatabaseAadAuthInfo + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the + /// output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject instance to deserialize from. + internal DatabaseAadAuthInfo(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_userName = If( json?.PropertyT("userName"), out var __jsonUserName) ? (string)__jsonUserName : (string)UserName;} + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfo. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfo. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfo FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new DatabaseAadAuthInfo(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + AddIf( null != (((object)this._userName)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._userName.ToString()) : null, "userName" ,container.Add ); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/LinkerList.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunList.PowerShell.cs similarity index 65% rename from src/ServiceLinker/generated/api/Models/Api20220501/LinkerList.PowerShell.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunList.PowerShell.cs index bc1a96dd9a62..e193e2b39f0d 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/LinkerList.PowerShell.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunList.PowerShell.cs @@ -3,13 +3,13 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; - /// The list of Linker. - [System.ComponentModel.TypeConverter(typeof(LinkerListTypeConverter))] - public partial class LinkerList + /// The list of dryrun. + [System.ComponentModel.TypeConverter(typeof(DryrunListTypeConverter))] + public partial class DryrunList { /// @@ -31,7 +31,8 @@ public partial class LinkerList /// /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Collections.IDictionary content that should be used. @@ -43,7 +44,8 @@ public partial class LinkerList /// /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -53,44 +55,37 @@ public partial class LinkerList partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerList DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunList DeserializeFromDictionary(global::System.Collections.IDictionary content) { - return new LinkerList(content); + return new DryrunList(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerList DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunList DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { - return new LinkerList(content); + return new DryrunList(content); } /// - /// Creates a new instance of , deserializing the content from a json string. - /// - /// a string containing a JSON serialized instance of this model. - /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerList FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); - - /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. - internal LinkerList(global::System.Collections.IDictionary content) + internal DryrunList(global::System.Collections.IDictionary content) { bool returnNow = false; BeforeDeserializeDictionary(content, ref returnNow); @@ -101,21 +96,21 @@ internal LinkerList(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("NextLink")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerListInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerListInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunListInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunListInternal)this).NextLink, global::System.Convert.ToString); } if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerListInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerListInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.LinkerResourceTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunListInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunListInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunResourceTypeConverter.ConvertFrom)); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. - internal LinkerList(global::System.Management.Automation.PSObject content) + internal DryrunList(global::System.Management.Automation.PSObject content) { bool returnNow = false; BeforeDeserializePSObject(content, ref returnNow); @@ -126,23 +121,30 @@ internal LinkerList(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("NextLink")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerListInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerListInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunListInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunListInternal)this).NextLink, global::System.Convert.ToString); } if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerListInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerListInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.LinkerResourceTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunListInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunListInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunResourceTypeConverter.ConvertFrom)); } AfterDeserializePSObject(content); } + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunList FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + /// Serializes this instance to a json string. /// a containing this model serialized to JSON text. public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeAll)?.ToString(); } - /// The list of Linker. - [System.ComponentModel.TypeConverter(typeof(LinkerListTypeConverter))] - public partial interface ILinkerList + /// The list of dryrun. + [System.ComponentModel.TypeConverter(typeof(DryrunListTypeConverter))] + public partial interface IDryrunList { diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunList.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunList.TypeConverter.cs new file mode 100644 index 000000000000..c155edaa21c8 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunList.TypeConverter.cs @@ -0,0 +1,146 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class DryrunListTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the type. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the + /// parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter into an instance of + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunList ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunList).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return DryrunList.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return DryrunList.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return DryrunList.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunList.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunList.cs new file mode 100644 index 000000000000..0f1e40174f07 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunList.cs @@ -0,0 +1,68 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// The list of dryrun. + public partial class DryrunList : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunList, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunListInternal + { + + /// Backing field for property. + private string _nextLink; + + /// The link used to get the next page of dryrun list. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public string NextLink { get => this._nextLink; set => this._nextLink = value; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource[] _value; + + /// The list of dryrun. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource[] Value { get => this._value; set => this._value = value; } + + /// Creates an new instance. + public DryrunList() + { + + } + } + /// The list of dryrun. + public partial interface IDryrunList : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable + { + /// The link used to get the next page of dryrun list. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The link used to get the next page of dryrun list.", + SerializedName = @"nextLink", + PossibleTypes = new [] { typeof(string) })] + string NextLink { get; set; } + /// The list of dryrun. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The list of dryrun.", + SerializedName = @"value", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource[] Value { get; set; } + + } + /// The list of dryrun. + internal partial interface IDryrunListInternal + + { + /// The link used to get the next page of dryrun list. + string NextLink { get; set; } + /// The list of dryrun. + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource[] Value { get; set; } + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/LinkerList.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunList.json.cs similarity index 88% rename from src/ServiceLinker/generated/api/Models/Api20220501/LinkerList.json.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunList.json.cs index 31d08e5e0aa6..e236403ad173 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/LinkerList.json.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunList.json.cs @@ -3,12 +3,12 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; - /// The list of Linker. - public partial class LinkerList + /// The list of dryrun. + public partial class DryrunList { /// @@ -54,22 +54,10 @@ public partial class LinkerList partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerList. - /// - /// a to deserialize from. - /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerList. - /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerList FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) - { - return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new LinkerList(json) : null; - } - - /// - /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject into a new instance of . + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject into a new instance of . /// /// A Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject instance to deserialize from. - internal LinkerList(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json) + internal DryrunList(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json) { bool returnNow = false; BeforeFromJson(json, ref returnNow); @@ -78,18 +66,30 @@ internal LinkerList(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Jso return; } {_nextLink = If( json?.PropertyT("nextLink"), out var __jsonNextLink) ? (string)__jsonNextLink : (string)NextLink;} - {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource) (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.LinkerResource.FromJson(__u) )) ))() : null : Value;} + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource) (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunResource.FromJson(__u) )) ))() : null : Value;} AfterFromJson(json); } /// - /// Serializes this instance of into a . + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunList. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunList. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunList FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new DryrunList(json) : null; + } + + /// + /// Serializes this instance of into a . /// /// The container to serialize this object into. If the caller /// passes in null, a new instance will be created and returned to the caller. /// Allows the caller to choose the depth of the serialization. See . /// - /// a serialized instance of as a . + /// a serialized instance of as a . /// public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode serializationMode) { diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunOperationPreview.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunOperationPreview.PowerShell.cs new file mode 100644 index 000000000000..3811ed759d15 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunOperationPreview.PowerShell.cs @@ -0,0 +1,178 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// The preview of the operations for creation + [System.ComponentModel.TypeConverter(typeof(DryrunOperationPreviewTypeConverter))] + public partial class DryrunOperationPreview + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreview DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new DryrunOperationPreview(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreview DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new DryrunOperationPreview(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal DryrunOperationPreview(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreviewInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreviewInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("OperationType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreviewInternal)this).OperationType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPreviewOperationType?) content.GetValueForProperty("OperationType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreviewInternal)this).OperationType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPreviewOperationType.CreateFrom); + } + if (content.Contains("Description")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreviewInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreviewInternal)this).Description, global::System.Convert.ToString); + } + if (content.Contains("Action")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreviewInternal)this).Action = (string) content.GetValueForProperty("Action",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreviewInternal)this).Action, global::System.Convert.ToString); + } + if (content.Contains("Scope")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreviewInternal)this).Scope = (string) content.GetValueForProperty("Scope",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreviewInternal)this).Scope, global::System.Convert.ToString); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal DryrunOperationPreview(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreviewInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreviewInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("OperationType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreviewInternal)this).OperationType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPreviewOperationType?) content.GetValueForProperty("OperationType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreviewInternal)this).OperationType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPreviewOperationType.CreateFrom); + } + if (content.Contains("Description")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreviewInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreviewInternal)this).Description, global::System.Convert.ToString); + } + if (content.Contains("Action")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreviewInternal)this).Action = (string) content.GetValueForProperty("Action",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreviewInternal)this).Action, global::System.Convert.ToString); + } + if (content.Contains("Scope")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreviewInternal)this).Scope = (string) content.GetValueForProperty("Scope",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreviewInternal)this).Scope, global::System.Convert.ToString); + } + AfterDeserializePSObject(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreview FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// The preview of the operations for creation + [System.ComponentModel.TypeConverter(typeof(DryrunOperationPreviewTypeConverter))] + public partial interface IDryrunOperationPreview + + { + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunOperationPreview.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunOperationPreview.TypeConverter.cs new file mode 100644 index 000000000000..dfaa27b5db75 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunOperationPreview.TypeConverter.cs @@ -0,0 +1,147 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class DryrunOperationPreviewTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// type. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the + /// parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter into an instance of + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreview ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreview).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return DryrunOperationPreview.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return DryrunOperationPreview.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return DryrunOperationPreview.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunOperationPreview.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunOperationPreview.cs new file mode 100644 index 000000000000..07f5fbce91ba --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunOperationPreview.cs @@ -0,0 +1,131 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// The preview of the operations for creation + public partial class DryrunOperationPreview : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreview, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreviewInternal + { + + /// Backing field for property. + private string _action; + + /// + /// The action defined by RBAC, refer https://docs.microsoft.com/azure/role-based-access-control/role-definitions#actions-format + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public string Action { get => this._action; set => this._action = value; } + + /// Backing field for property. + private string _description; + + /// The description of the operation + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public string Description { get => this._description; set => this._description = value; } + + /// Backing field for property. + private string _name; + + /// The operation name + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public string Name { get => this._name; set => this._name = value; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPreviewOperationType? _operationType; + + /// The operation type + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPreviewOperationType? OperationType { get => this._operationType; set => this._operationType = value; } + + /// Backing field for property. + private string _scope; + + /// + /// The scope of the operation, refer https://docs.microsoft.com/azure/role-based-access-control/scope-overview + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public string Scope { get => this._scope; set => this._scope = value; } + + /// Creates an new instance. + public DryrunOperationPreview() + { + + } + } + /// The preview of the operations for creation + public partial interface IDryrunOperationPreview : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable + { + /// + /// The action defined by RBAC, refer https://docs.microsoft.com/azure/role-based-access-control/role-definitions#actions-format + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The action defined by RBAC, refer https://docs.microsoft.com/azure/role-based-access-control/role-definitions#actions-format", + SerializedName = @"action", + PossibleTypes = new [] { typeof(string) })] + string Action { get; set; } + /// The description of the operation + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The description of the operation", + SerializedName = @"description", + PossibleTypes = new [] { typeof(string) })] + string Description { get; set; } + /// The operation name + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The operation name", + SerializedName = @"name", + PossibleTypes = new [] { typeof(string) })] + string Name { get; set; } + /// The operation type + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The operation type", + SerializedName = @"operationType", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPreviewOperationType) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPreviewOperationType? OperationType { get; set; } + /// + /// The scope of the operation, refer https://docs.microsoft.com/azure/role-based-access-control/scope-overview + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The scope of the operation, refer https://docs.microsoft.com/azure/role-based-access-control/scope-overview", + SerializedName = @"scope", + PossibleTypes = new [] { typeof(string) })] + string Scope { get; set; } + + } + /// The preview of the operations for creation + internal partial interface IDryrunOperationPreviewInternal + + { + /// + /// The action defined by RBAC, refer https://docs.microsoft.com/azure/role-based-access-control/role-definitions#actions-format + /// + string Action { get; set; } + /// The description of the operation + string Description { get; set; } + /// The operation name + string Name { get; set; } + /// The operation type + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPreviewOperationType? OperationType { get; set; } + /// + /// The scope of the operation, refer https://docs.microsoft.com/azure/role-based-access-control/scope-overview + /// + string Scope { get; set; } + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunOperationPreview.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunOperationPreview.json.cs new file mode 100644 index 000000000000..02c92d5e2011 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunOperationPreview.json.cs @@ -0,0 +1,116 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// The preview of the operations for creation + public partial class DryrunOperationPreview + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the + /// output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject instance to deserialize from. + internal DryrunOperationPreview(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_name = If( json?.PropertyT("name"), out var __jsonName) ? (string)__jsonName : (string)Name;} + {_operationType = If( json?.PropertyT("operationType"), out var __jsonOperationType) ? (string)__jsonOperationType : (string)OperationType;} + {_description = If( json?.PropertyT("description"), out var __jsonDescription) ? (string)__jsonDescription : (string)Description;} + {_action = If( json?.PropertyT("action"), out var __jsonAction) ? (string)__jsonAction : (string)Action;} + {_scope = If( json?.PropertyT("scope"), out var __jsonScope) ? (string)__jsonScope : (string)Scope;} + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreview. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreview. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreview FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new DryrunOperationPreview(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + AddIf( null != (((object)this._name)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._name.ToString()) : null, "name" ,container.Add ); + AddIf( null != (((object)this._operationType)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._operationType.ToString()) : null, "operationType" ,container.Add ); + AddIf( null != (((object)this._description)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._description.ToString()) : null, "description" ,container.Add ); + AddIf( null != (((object)this._action)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._action.ToString()) : null, "action" ,container.Add ); + AddIf( null != (((object)this._scope)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._scope.ToString()) : null, "scope" ,container.Add ); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunParameters.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunParameters.PowerShell.cs new file mode 100644 index 000000000000..42a5ff1dd8fa --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunParameters.PowerShell.cs @@ -0,0 +1,146 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// The parameters of the dryrun + [System.ComponentModel.TypeConverter(typeof(DryrunParametersTypeConverter))] + public partial class DryrunParameters + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunParameters DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new DryrunParameters(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunParameters DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new DryrunParameters(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal DryrunParameters(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("ActionName")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunParametersInternal)this).ActionName = (string) content.GetValueForProperty("ActionName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunParametersInternal)this).ActionName, global::System.Convert.ToString); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal DryrunParameters(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("ActionName")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunParametersInternal)this).ActionName = (string) content.GetValueForProperty("ActionName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunParametersInternal)this).ActionName, global::System.Convert.ToString); + } + AfterDeserializePSObject(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunParameters FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// The parameters of the dryrun + [System.ComponentModel.TypeConverter(typeof(DryrunParametersTypeConverter))] + public partial interface IDryrunParameters + + { + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunParameters.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunParameters.TypeConverter.cs new file mode 100644 index 000000000000..cf4c9407d8c5 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunParameters.TypeConverter.cs @@ -0,0 +1,147 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class DryrunParametersTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// type. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the + /// parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter into an instance of + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunParameters ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunParameters).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return DryrunParameters.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return DryrunParameters.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return DryrunParameters.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunParameters.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunParameters.cs new file mode 100644 index 000000000000..1a1b2e8f8e92 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunParameters.cs @@ -0,0 +1,54 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// The parameters of the dryrun + public partial class DryrunParameters : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunParameters, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunParametersInternal + { + + /// Backing field for property. + private string _actionName= @"createOrUpdate"; + + /// The name of action for you dryrun job. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public string ActionName { get => this._actionName; } + + /// Internal Acessors for ActionName + string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunParametersInternal.ActionName { get => this._actionName; set { {_actionName = value;} } } + + /// Creates an new instance. + public DryrunParameters() + { + + } + } + /// The parameters of the dryrun + public partial interface IDryrunParameters : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable + { + /// The name of action for you dryrun job. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = true, + ReadOnly = true, + Description = @"The name of action for you dryrun job.", + SerializedName = @"actionName", + PossibleTypes = new [] { typeof(string) })] + string ActionName { get; } + + } + /// The parameters of the dryrun + internal partial interface IDryrunParametersInternal + + { + /// The name of action for you dryrun job. + string ActionName { get; set; } + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunParameters.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunParameters.json.cs new file mode 100644 index 000000000000..75d6470bce84 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunParameters.json.cs @@ -0,0 +1,123 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// The parameters of the dryrun + public partial class DryrunParameters + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the + /// output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject instance to deserialize from. + internal DryrunParameters(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_actionName = If( json?.PropertyT("actionName"), out var __jsonActionName) ? (string)__jsonActionName : (string)ActionName;} + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunParameters. + /// Note: the Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunParameters interface is polymorphic, + /// and the precise model class that will get deserialized is determined at runtime based on the payload. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunParameters. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunParameters FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + { + if (!(node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json)) + { + return null; + } + // Polymorphic type -- select the appropriate constructor using the discriminator + + switch ( json.StringProperty("actionName") ) + { + case "createOrUpdate": + { + return new CreateOrUpdateDryrunParameters(json); + } + } + return new DryrunParameters(json); + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + AddIf( null != (((object)this._actionName)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._actionName.ToString()) : null, "actionName" ,container.Add ); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunPatch.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunPatch.PowerShell.cs new file mode 100644 index 000000000000..edd95cbb3cb3 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunPatch.PowerShell.cs @@ -0,0 +1,184 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// a dryrun job to be updated. + [System.ComponentModel.TypeConverter(typeof(DryrunPatchTypeConverter))] + public partial class DryrunPatch + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatch DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new DryrunPatch(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatch DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new DryrunPatch(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal DryrunPatch(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Property")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatchInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatchInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunPropertiesTypeConverter.ConvertFrom); + } + if (content.Contains("Parameter")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatchInternal)this).Parameter = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunParameters) content.GetValueForProperty("Parameter",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatchInternal)this).Parameter, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunParametersTypeConverter.ConvertFrom); + } + if (content.Contains("PrerequisiteResult")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatchInternal)this).PrerequisiteResult = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResult[]) content.GetValueForProperty("PrerequisiteResult",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatchInternal)this).PrerequisiteResult, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunPrerequisiteResultTypeConverter.ConvertFrom)); + } + if (content.Contains("OperationPreview")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatchInternal)this).OperationPreview = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreview[]) content.GetValueForProperty("OperationPreview",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatchInternal)this).OperationPreview, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunOperationPreviewTypeConverter.ConvertFrom)); + } + if (content.Contains("ProvisioningState")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatchInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatchInternal)this).ProvisioningState, global::System.Convert.ToString); + } + if (content.Contains("ParameterActionName")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatchInternal)this).ParameterActionName = (string) content.GetValueForProperty("ParameterActionName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatchInternal)this).ParameterActionName, global::System.Convert.ToString); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal DryrunPatch(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Property")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatchInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatchInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunPropertiesTypeConverter.ConvertFrom); + } + if (content.Contains("Parameter")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatchInternal)this).Parameter = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunParameters) content.GetValueForProperty("Parameter",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatchInternal)this).Parameter, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunParametersTypeConverter.ConvertFrom); + } + if (content.Contains("PrerequisiteResult")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatchInternal)this).PrerequisiteResult = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResult[]) content.GetValueForProperty("PrerequisiteResult",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatchInternal)this).PrerequisiteResult, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunPrerequisiteResultTypeConverter.ConvertFrom)); + } + if (content.Contains("OperationPreview")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatchInternal)this).OperationPreview = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreview[]) content.GetValueForProperty("OperationPreview",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatchInternal)this).OperationPreview, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunOperationPreviewTypeConverter.ConvertFrom)); + } + if (content.Contains("ProvisioningState")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatchInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatchInternal)this).ProvisioningState, global::System.Convert.ToString); + } + if (content.Contains("ParameterActionName")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatchInternal)this).ParameterActionName = (string) content.GetValueForProperty("ParameterActionName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatchInternal)this).ParameterActionName, global::System.Convert.ToString); + } + AfterDeserializePSObject(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatch FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// a dryrun job to be updated. + [System.ComponentModel.TypeConverter(typeof(DryrunPatchTypeConverter))] + public partial interface IDryrunPatch + + { + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunPatch.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunPatch.TypeConverter.cs new file mode 100644 index 000000000000..9a3cad824a5f --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunPatch.TypeConverter.cs @@ -0,0 +1,147 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class DryrunPatchTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// type. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the + /// parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter into an instance of + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatch ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatch).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return DryrunPatch.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return DryrunPatch.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return DryrunPatch.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunPatch.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunPatch.cs new file mode 100644 index 000000000000..333268984d2f --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunPatch.cs @@ -0,0 +1,119 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// a dryrun job to be updated. + public partial class DryrunPatch : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatch, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatchInternal + { + + /// Internal Acessors for OperationPreview + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreview[] Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatchInternal.OperationPreview { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)Property).OperationPreview; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)Property).OperationPreview = value; } + + /// Internal Acessors for Parameter + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunParameters Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatchInternal.Parameter { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)Property).Parameter; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)Property).Parameter = value; } + + /// Internal Acessors for ParameterActionName + string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatchInternal.ParameterActionName { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)Property).ParameterActionName; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)Property).ParameterActionName = value; } + + /// Internal Acessors for PrerequisiteResult + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResult[] Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatchInternal.PrerequisiteResult { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)Property).PrerequisiteResult; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)Property).PrerequisiteResult = value; } + + /// Internal Acessors for Property + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunProperties Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatchInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunProperties()); set { {_property = value;} } } + + /// Internal Acessors for ProvisioningState + string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatchInternal.ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)Property).ProvisioningState; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)Property).ProvisioningState = value; } + + /// the preview of the operations for creation + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreview[] OperationPreview { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)Property).OperationPreview; } + + /// The name of action for you dryrun job. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public string ParameterActionName { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)Property).ParameterActionName; } + + /// the result of the dryrun + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResult[] PrerequisiteResult { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)Property).PrerequisiteResult; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunProperties _property; + + /// The properties of the dryrun job. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + internal Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunProperties()); set => this._property = value; } + + /// The provisioning state. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public string ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)Property).ProvisioningState; } + + /// Creates an new instance. + public DryrunPatch() + { + + } + } + /// a dryrun job to be updated. + public partial interface IDryrunPatch : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable + { + /// the preview of the operations for creation + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"the preview of the operations for creation", + SerializedName = @"operationPreviews", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreview) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreview[] OperationPreview { get; } + /// The name of action for you dryrun job. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The name of action for you dryrun job.", + SerializedName = @"actionName", + PossibleTypes = new [] { typeof(string) })] + string ParameterActionName { get; } + /// the result of the dryrun + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"the result of the dryrun", + SerializedName = @"prerequisiteResults", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResult) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResult[] PrerequisiteResult { get; } + /// The provisioning state. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The provisioning state. ", + SerializedName = @"provisioningState", + PossibleTypes = new [] { typeof(string) })] + string ProvisioningState { get; } + + } + /// a dryrun job to be updated. + internal partial interface IDryrunPatchInternal + + { + /// the preview of the operations for creation + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreview[] OperationPreview { get; set; } + /// The parameters of the dryrun + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunParameters Parameter { get; set; } + /// The name of action for you dryrun job. + string ParameterActionName { get; set; } + /// the result of the dryrun + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResult[] PrerequisiteResult { get; set; } + /// The properties of the dryrun job. + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunProperties Property { get; set; } + /// The provisioning state. + string ProvisioningState { get; set; } + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunPatch.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunPatch.json.cs new file mode 100644 index 000000000000..4202bc00a4a8 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunPatch.json.cs @@ -0,0 +1,108 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// a dryrun job to be updated. + public partial class DryrunPatch + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the + /// output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject instance to deserialize from. + internal DryrunPatch(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunProperties.FromJson(__jsonProperties) : Property;} + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatch. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatch. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatch FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new DryrunPatch(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + AddIf( null != this._property ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) this._property.ToJson(null,serializationMode) : null, "properties" ,container.Add ); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunPrerequisiteResult.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunPrerequisiteResult.PowerShell.cs new file mode 100644 index 000000000000..9bf1362c45d9 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunPrerequisiteResult.PowerShell.cs @@ -0,0 +1,146 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// A result of dryrun + [System.ComponentModel.TypeConverter(typeof(DryrunPrerequisiteResultTypeConverter))] + public partial class DryrunPrerequisiteResult + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResult DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new DryrunPrerequisiteResult(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new DryrunPrerequisiteResult(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal DryrunPrerequisiteResult(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResultInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPrerequisiteResultType) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResultInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPrerequisiteResultType.CreateFrom); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal DryrunPrerequisiteResult(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResultInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPrerequisiteResultType) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResultInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPrerequisiteResultType.CreateFrom); + } + AfterDeserializePSObject(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// A result of dryrun + [System.ComponentModel.TypeConverter(typeof(DryrunPrerequisiteResultTypeConverter))] + public partial interface IDryrunPrerequisiteResult + + { + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunPrerequisiteResult.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunPrerequisiteResult.TypeConverter.cs new file mode 100644 index 000000000000..b7ebf9bad15b --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunPrerequisiteResult.TypeConverter.cs @@ -0,0 +1,147 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class DryrunPrerequisiteResultTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// type. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the + /// parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter into an instance of + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResult ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResult).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return DryrunPrerequisiteResult.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return DryrunPrerequisiteResult.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return DryrunPrerequisiteResult.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunPrerequisiteResult.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunPrerequisiteResult.cs new file mode 100644 index 000000000000..a78c7c860ec6 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunPrerequisiteResult.cs @@ -0,0 +1,51 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// A result of dryrun + public partial class DryrunPrerequisiteResult : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResult, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResultInternal + { + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPrerequisiteResultType _type; + + /// The type of dryrun result. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPrerequisiteResultType Type { get => this._type; set => this._type = value; } + + /// Creates an new instance. + public DryrunPrerequisiteResult() + { + + } + } + /// A result of dryrun + public partial interface IDryrunPrerequisiteResult : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable + { + /// The type of dryrun result. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The type of dryrun result.", + SerializedName = @"type", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPrerequisiteResultType) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPrerequisiteResultType Type { get; set; } + + } + /// A result of dryrun + internal partial interface IDryrunPrerequisiteResultInternal + + { + /// The type of dryrun result. + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPrerequisiteResultType Type { get; set; } + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunPrerequisiteResult.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunPrerequisiteResult.json.cs new file mode 100644 index 000000000000..e4c1e00dffa4 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunPrerequisiteResult.json.cs @@ -0,0 +1,127 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// A result of dryrun + public partial class DryrunPrerequisiteResult + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the + /// output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject instance to deserialize from. + internal DryrunPrerequisiteResult(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_type = If( json?.PropertyT("type"), out var __jsonType) ? (string)__jsonType : (string)Type;} + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResult. + /// Note: the Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResult interface + /// is polymorphic, and the precise model class that will get deserialized is determined at runtime based on the payload. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResult. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + { + if (!(node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json)) + { + return null; + } + // Polymorphic type -- select the appropriate constructor using the discriminator + + switch ( json.StringProperty("type") ) + { + case "basicError": + { + return new BasicErrorDryrunPrerequisiteResult(json); + } + case "permissionsMissing": + { + return new PermissionsMissingDryrunPrerequisiteResult(json); + } + } + return new DryrunPrerequisiteResult(json); + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + AddIf( null != (((object)this._type)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._type.ToString()) : null, "type" ,container.Add ); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunProperties.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunProperties.PowerShell.cs new file mode 100644 index 000000000000..bc086053421a --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunProperties.PowerShell.cs @@ -0,0 +1,178 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// The properties of the dryrun job + [System.ComponentModel.TypeConverter(typeof(DryrunPropertiesTypeConverter))] + public partial class DryrunProperties + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new DryrunProperties(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new DryrunProperties(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal DryrunProperties(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Parameter")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)this).Parameter = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunParameters) content.GetValueForProperty("Parameter",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)this).Parameter, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunParametersTypeConverter.ConvertFrom); + } + if (content.Contains("PrerequisiteResult")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)this).PrerequisiteResult = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResult[]) content.GetValueForProperty("PrerequisiteResult",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)this).PrerequisiteResult, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunPrerequisiteResultTypeConverter.ConvertFrom)); + } + if (content.Contains("OperationPreview")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)this).OperationPreview = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreview[]) content.GetValueForProperty("OperationPreview",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)this).OperationPreview, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunOperationPreviewTypeConverter.ConvertFrom)); + } + if (content.Contains("ProvisioningState")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)this).ProvisioningState, global::System.Convert.ToString); + } + if (content.Contains("ParameterActionName")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)this).ParameterActionName = (string) content.GetValueForProperty("ParameterActionName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)this).ParameterActionName, global::System.Convert.ToString); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal DryrunProperties(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Parameter")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)this).Parameter = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunParameters) content.GetValueForProperty("Parameter",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)this).Parameter, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunParametersTypeConverter.ConvertFrom); + } + if (content.Contains("PrerequisiteResult")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)this).PrerequisiteResult = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResult[]) content.GetValueForProperty("PrerequisiteResult",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)this).PrerequisiteResult, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunPrerequisiteResultTypeConverter.ConvertFrom)); + } + if (content.Contains("OperationPreview")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)this).OperationPreview = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreview[]) content.GetValueForProperty("OperationPreview",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)this).OperationPreview, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunOperationPreviewTypeConverter.ConvertFrom)); + } + if (content.Contains("ProvisioningState")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)this).ProvisioningState, global::System.Convert.ToString); + } + if (content.Contains("ParameterActionName")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)this).ParameterActionName = (string) content.GetValueForProperty("ParameterActionName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)this).ParameterActionName, global::System.Convert.ToString); + } + AfterDeserializePSObject(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// The properties of the dryrun job + [System.ComponentModel.TypeConverter(typeof(DryrunPropertiesTypeConverter))] + public partial interface IDryrunProperties + + { + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunProperties.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunProperties.TypeConverter.cs new file mode 100644 index 000000000000..db46669dff06 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunProperties.TypeConverter.cs @@ -0,0 +1,147 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class DryrunPropertiesTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// type. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the + /// parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter into an instance of + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunProperties ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunProperties).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return DryrunProperties.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return DryrunProperties.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return DryrunProperties.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunProperties.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunProperties.cs new file mode 100644 index 000000000000..a346f5bf2a44 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunProperties.cs @@ -0,0 +1,123 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// The properties of the dryrun job + public partial class DryrunProperties : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunProperties, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal + { + + /// Internal Acessors for OperationPreview + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreview[] Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal.OperationPreview { get => this._operationPreview; set { {_operationPreview = value;} } } + + /// Internal Acessors for Parameter + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunParameters Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal.Parameter { get => (this._parameter = this._parameter ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunParameters()); set { {_parameter = value;} } } + + /// Internal Acessors for ParameterActionName + string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal.ParameterActionName { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunParametersInternal)Parameter).ActionName; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunParametersInternal)Parameter).ActionName = value; } + + /// Internal Acessors for PrerequisiteResult + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResult[] Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal.PrerequisiteResult { get => this._prerequisiteResult; set { {_prerequisiteResult = value;} } } + + /// Internal Acessors for ProvisioningState + string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal.ProvisioningState { get => this._provisioningState; set { {_provisioningState = value;} } } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreview[] _operationPreview; + + /// the preview of the operations for creation + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreview[] OperationPreview { get => this._operationPreview; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunParameters _parameter; + + /// The parameters of the dryrun + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + internal Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunParameters Parameter { get => (this._parameter = this._parameter ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunParameters()); set => this._parameter = value; } + + /// The name of action for you dryrun job. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public string ParameterActionName { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunParametersInternal)Parameter).ActionName; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResult[] _prerequisiteResult; + + /// the result of the dryrun + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResult[] PrerequisiteResult { get => this._prerequisiteResult; } + + /// Backing field for property. + private string _provisioningState; + + /// The provisioning state. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public string ProvisioningState { get => this._provisioningState; } + + /// Creates an new instance. + public DryrunProperties() + { + + } + } + /// The properties of the dryrun job + public partial interface IDryrunProperties : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable + { + /// the preview of the operations for creation + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"the preview of the operations for creation", + SerializedName = @"operationPreviews", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreview) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreview[] OperationPreview { get; } + /// The name of action for you dryrun job. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The name of action for you dryrun job.", + SerializedName = @"actionName", + PossibleTypes = new [] { typeof(string) })] + string ParameterActionName { get; } + /// the result of the dryrun + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"the result of the dryrun", + SerializedName = @"prerequisiteResults", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResult) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResult[] PrerequisiteResult { get; } + /// The provisioning state. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The provisioning state. ", + SerializedName = @"provisioningState", + PossibleTypes = new [] { typeof(string) })] + string ProvisioningState { get; } + + } + /// The properties of the dryrun job + internal partial interface IDryrunPropertiesInternal + + { + /// the preview of the operations for creation + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreview[] OperationPreview { get; set; } + /// The parameters of the dryrun + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunParameters Parameter { get; set; } + /// The name of action for you dryrun job. + string ParameterActionName { get; set; } + /// the result of the dryrun + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResult[] PrerequisiteResult { get; set; } + /// The provisioning state. + string ProvisioningState { get; set; } + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunProperties.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunProperties.json.cs new file mode 100644 index 000000000000..a88407e584df --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunProperties.json.cs @@ -0,0 +1,139 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// The properties of the dryrun job + public partial class DryrunProperties + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the + /// output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject instance to deserialize from. + internal DryrunProperties(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_parameter = If( json?.PropertyT("parameters"), out var __jsonParameters) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunParameters.FromJson(__jsonParameters) : Parameter;} + {_prerequisiteResult = If( json?.PropertyT("prerequisiteResults"), out var __jsonPrerequisiteResults) ? If( __jsonPrerequisiteResults as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResult) (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunPrerequisiteResult.FromJson(__u) )) ))() : null : PrerequisiteResult;} + {_operationPreview = If( json?.PropertyT("operationPreviews"), out var __jsonOperationPreviews) ? If( __jsonOperationPreviews as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonArray, out var __q) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__q, (__p)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreview) (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunOperationPreview.FromJson(__p) )) ))() : null : OperationPreview;} + {_provisioningState = If( json?.PropertyT("provisioningState"), out var __jsonProvisioningState) ? (string)__jsonProvisioningState : (string)ProvisioningState;} + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunProperties. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunProperties. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new DryrunProperties(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + AddIf( null != this._parameter ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) this._parameter.ToJson(null,serializationMode) : null, "parameters" ,container.Add ); + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeReadOnly)) + { + if (null != this._prerequisiteResult) + { + var __w = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.XNodeArray(); + foreach( var __x in this._prerequisiteResult ) + { + AddIf(__x?.ToJson(null, serializationMode) ,__w.Add); + } + container.Add("prerequisiteResults",__w); + } + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeReadOnly)) + { + if (null != this._operationPreview) + { + var __r = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.XNodeArray(); + foreach( var __s in this._operationPreview ) + { + AddIf(__s?.ToJson(null, serializationMode) ,__r.Add); + } + container.Add("operationPreviews",__r); + } + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != (((object)this._provisioningState)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._provisioningState.ToString()) : null, "provisioningState" ,container.Add ); + } + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunResource.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunResource.PowerShell.cs new file mode 100644 index 000000000000..d61b794659d9 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunResource.PowerShell.cs @@ -0,0 +1,266 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// a dryrun job resource + [System.ComponentModel.TypeConverter(typeof(DryrunResourceTypeConverter))] + public partial class DryrunResource + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new DryrunResource(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new DryrunResource(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal DryrunResource(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Property")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResourceInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResourceInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunPropertiesTypeConverter.ConvertFrom); + } + if (content.Contains("SystemDataCreatedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemDataCreatedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemData")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.SystemDataTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Type, global::System.Convert.ToString); + } + if (content.Contains("Parameter")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResourceInternal)this).Parameter = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunParameters) content.GetValueForProperty("Parameter",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResourceInternal)this).Parameter, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunParametersTypeConverter.ConvertFrom); + } + if (content.Contains("PrerequisiteResult")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResourceInternal)this).PrerequisiteResult = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResult[]) content.GetValueForProperty("PrerequisiteResult",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResourceInternal)this).PrerequisiteResult, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunPrerequisiteResultTypeConverter.ConvertFrom)); + } + if (content.Contains("OperationPreview")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResourceInternal)this).OperationPreview = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreview[]) content.GetValueForProperty("OperationPreview",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResourceInternal)this).OperationPreview, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunOperationPreviewTypeConverter.ConvertFrom)); + } + if (content.Contains("ProvisioningState")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResourceInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResourceInternal)this).ProvisioningState, global::System.Convert.ToString); + } + if (content.Contains("ParameterActionName")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResourceInternal)this).ParameterActionName = (string) content.GetValueForProperty("ParameterActionName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResourceInternal)this).ParameterActionName, global::System.Convert.ToString); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal DryrunResource(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Property")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResourceInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResourceInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunPropertiesTypeConverter.ConvertFrom); + } + if (content.Contains("SystemDataCreatedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemDataCreatedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemData")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.SystemDataTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Type, global::System.Convert.ToString); + } + if (content.Contains("Parameter")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResourceInternal)this).Parameter = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunParameters) content.GetValueForProperty("Parameter",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResourceInternal)this).Parameter, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunParametersTypeConverter.ConvertFrom); + } + if (content.Contains("PrerequisiteResult")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResourceInternal)this).PrerequisiteResult = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResult[]) content.GetValueForProperty("PrerequisiteResult",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResourceInternal)this).PrerequisiteResult, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunPrerequisiteResultTypeConverter.ConvertFrom)); + } + if (content.Contains("OperationPreview")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResourceInternal)this).OperationPreview = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreview[]) content.GetValueForProperty("OperationPreview",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResourceInternal)this).OperationPreview, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunOperationPreviewTypeConverter.ConvertFrom)); + } + if (content.Contains("ProvisioningState")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResourceInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResourceInternal)this).ProvisioningState, global::System.Convert.ToString); + } + if (content.Contains("ParameterActionName")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResourceInternal)this).ParameterActionName = (string) content.GetValueForProperty("ParameterActionName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResourceInternal)this).ParameterActionName, global::System.Convert.ToString); + } + AfterDeserializePSObject(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// a dryrun job resource + [System.ComponentModel.TypeConverter(typeof(DryrunResourceTypeConverter))] + public partial interface IDryrunResource + + { + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunResource.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunResource.TypeConverter.cs new file mode 100644 index 000000000000..a226e78f2ee5 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunResource.TypeConverter.cs @@ -0,0 +1,147 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class DryrunResourceTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// type. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the + /// parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter into an instance of + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return DryrunResource.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return DryrunResource.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return DryrunResource.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunResource.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunResource.cs new file mode 100644 index 000000000000..fffa5132995d --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunResource.cs @@ -0,0 +1,196 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// a dryrun job resource + public partial class DryrunResource : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResourceInternal, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IValidates + { + /// + /// Backing field for Inherited model + /// + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResource __resource = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.Resource(); + + /// + /// Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).Id; } + + /// Internal Acessors for OperationPreview + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreview[] Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResourceInternal.OperationPreview { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)Property).OperationPreview; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)Property).OperationPreview = value; } + + /// Internal Acessors for Parameter + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunParameters Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResourceInternal.Parameter { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)Property).Parameter; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)Property).Parameter = value; } + + /// Internal Acessors for ParameterActionName + string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResourceInternal.ParameterActionName { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)Property).ParameterActionName; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)Property).ParameterActionName = value; } + + /// Internal Acessors for PrerequisiteResult + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResult[] Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResourceInternal.PrerequisiteResult { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)Property).PrerequisiteResult; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)Property).PrerequisiteResult = value; } + + /// Internal Acessors for Property + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunProperties Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResourceInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunProperties()); set { {_property = value;} } } + + /// Internal Acessors for ProvisioningState + string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResourceInternal.ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)Property).ProvisioningState; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)Property).ProvisioningState = value; } + + /// Internal Acessors for Id + string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).Id = value; } + + /// Internal Acessors for Name + string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).Name = value; } + + /// Internal Acessors for SystemData + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemData Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal.SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).SystemData; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).SystemData = value; } + + /// Internal Acessors for Type + string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).Type = value; } + + /// The name of the resource + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).Name; } + + /// the preview of the operations for creation + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreview[] OperationPreview { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)Property).OperationPreview; } + + /// The name of action for you dryrun job. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public string ParameterActionName { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)Property).ParameterActionName; } + + /// the result of the dryrun + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResult[] PrerequisiteResult { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)Property).PrerequisiteResult; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunProperties _property; + + /// The properties of the dryrun job. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + internal Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunProperties()); set => this._property = value; } + + /// The provisioning state. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public string ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPropertiesInternal)Property).ProvisioningState; } + + /// + /// Azure Resource Manager metadata containing createdBy and modifiedBy information. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemData SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).SystemData; } + + /// The timestamp of resource creation (UTC). + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public global::System.DateTime? SystemDataCreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).SystemDataCreatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).SystemDataCreatedAt = value ?? default(global::System.DateTime); } + + /// The identity that created the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public string SystemDataCreatedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).SystemDataCreatedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).SystemDataCreatedBy = value ?? null; } + + /// The type of identity that created the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType? SystemDataCreatedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).SystemDataCreatedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).SystemDataCreatedByType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType)""); } + + /// The timestamp of resource last modification (UTC) + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public global::System.DateTime? SystemDataLastModifiedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).SystemDataLastModifiedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).SystemDataLastModifiedAt = value ?? default(global::System.DateTime); } + + /// The identity that last modified the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public string SystemDataLastModifiedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).SystemDataLastModifiedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).SystemDataLastModifiedBy = value ?? null; } + + /// The type of identity that last modified the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType? SystemDataLastModifiedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).SystemDataLastModifiedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).SystemDataLastModifiedByType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType)""); } + + /// + /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).Type; } + + /// Creates an new instance. + public DryrunResource() + { + + } + + /// Validates that this object meets the validation criteria. + /// an instance that will receive validation + /// events. + /// + /// A that will be complete when validation is completed. + /// + public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) + { + await eventListener.AssertNotNull(nameof(__resource), __resource); + await eventListener.AssertObjectIsValid(nameof(__resource), __resource); + } + } + /// a dryrun job resource + public partial interface IDryrunResource : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResource + { + /// the preview of the operations for creation + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"the preview of the operations for creation", + SerializedName = @"operationPreviews", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreview) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreview[] OperationPreview { get; } + /// The name of action for you dryrun job. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The name of action for you dryrun job.", + SerializedName = @"actionName", + PossibleTypes = new [] { typeof(string) })] + string ParameterActionName { get; } + /// the result of the dryrun + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"the result of the dryrun", + SerializedName = @"prerequisiteResults", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResult) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResult[] PrerequisiteResult { get; } + /// The provisioning state. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The provisioning state. ", + SerializedName = @"provisioningState", + PossibleTypes = new [] { typeof(string) })] + string ProvisioningState { get; } + + } + /// a dryrun job resource + internal partial interface IDryrunResourceInternal : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal + { + /// the preview of the operations for creation + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunOperationPreview[] OperationPreview { get; set; } + /// The parameters of the dryrun + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunParameters Parameter { get; set; } + /// The name of action for you dryrun job. + string ParameterActionName { get; set; } + /// the result of the dryrun + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResult[] PrerequisiteResult { get; set; } + /// The properties of the dryrun job. + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunProperties Property { get; set; } + /// The provisioning state. + string ProvisioningState { get; set; } + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunResource.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunResource.json.cs new file mode 100644 index 000000000000..6b3dff56a8f8 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/DryrunResource.json.cs @@ -0,0 +1,110 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// a dryrun job resource + public partial class DryrunResource + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the + /// output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject instance to deserialize from. + internal DryrunResource(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + __resource = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.Resource(json); + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunProperties.FromJson(__jsonProperties) : Property;} + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new DryrunResource(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + __resource?.ToJson(container, serializationMode); + AddIf( null != this._property ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) this._property.ToJson(null,serializationMode) : null, "properties" ,container.Add ); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/FirewallRules.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/FirewallRules.PowerShell.cs new file mode 100644 index 000000000000..7d38d3daa5f8 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/FirewallRules.PowerShell.cs @@ -0,0 +1,160 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// Target service's firewall rules. to allow connections from source service. + [System.ComponentModel.TypeConverter(typeof(FirewallRulesTypeConverter))] + public partial class FirewallRules + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRules DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new FirewallRules(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRules DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new FirewallRules(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal FirewallRules(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("IPRange")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRulesInternal)this).IPRange = (string[]) content.GetValueForProperty("IPRange",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRulesInternal)this).IPRange, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + } + if (content.Contains("AzureService")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRulesInternal)this).AzureService = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType?) content.GetValueForProperty("AzureService",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRulesInternal)this).AzureService, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType.CreateFrom); + } + if (content.Contains("CallerClientIP")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRulesInternal)this).CallerClientIP = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType?) content.GetValueForProperty("CallerClientIP",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRulesInternal)this).CallerClientIP, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType.CreateFrom); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal FirewallRules(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("IPRange")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRulesInternal)this).IPRange = (string[]) content.GetValueForProperty("IPRange",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRulesInternal)this).IPRange, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + } + if (content.Contains("AzureService")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRulesInternal)this).AzureService = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType?) content.GetValueForProperty("AzureService",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRulesInternal)this).AzureService, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType.CreateFrom); + } + if (content.Contains("CallerClientIP")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRulesInternal)this).CallerClientIP = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType?) content.GetValueForProperty("CallerClientIP",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRulesInternal)this).CallerClientIP, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType.CreateFrom); + } + AfterDeserializePSObject(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRules FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// Target service's firewall rules. to allow connections from source service. + [System.ComponentModel.TypeConverter(typeof(FirewallRulesTypeConverter))] + public partial interface IFirewallRules + + { + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/FirewallRules.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/FirewallRules.TypeConverter.cs new file mode 100644 index 000000000000..9b25a2ea4231 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/FirewallRules.TypeConverter.cs @@ -0,0 +1,147 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class FirewallRulesTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// type. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the + /// parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter into an instance of + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRules ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRules).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return FirewallRules.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return FirewallRules.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return FirewallRules.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/FirewallRules.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/FirewallRules.cs new file mode 100644 index 000000000000..8b5bb2f7f36b --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/FirewallRules.cs @@ -0,0 +1,103 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// Target service's firewall rules. to allow connections from source service. + public partial class FirewallRules : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRules, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRulesInternal + { + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType? _azureService; + + /// Allow Azure services to access the target service if true. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType? AzureService { get => this._azureService; set => this._azureService = value; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType? _callerClientIP; + + /// + /// Allow caller client IP to access the target service if true. the property is used when connecting local application to + /// target service. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType? CallerClientIP { get => this._callerClientIP; set => this._callerClientIP = value; } + + /// Backing field for property. + private string[] _iPRange; + + /// + /// This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client + /// IPs for a given database account. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public string[] IPRange { get => this._iPRange; set => this._iPRange = value; } + + /// Creates an new instance. + public FirewallRules() + { + + } + } + /// Target service's firewall rules. to allow connections from source service. + public partial interface IFirewallRules : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable + { + /// Allow Azure services to access the target service if true. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Allow Azure services to access the target service if true.", + SerializedName = @"azureServices", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType? AzureService { get; set; } + /// + /// Allow caller client IP to access the target service if true. the property is used when connecting local application to + /// target service. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Allow caller client IP to access the target service if true. the property is used when connecting local application to target service.", + SerializedName = @"callerClientIP", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType? CallerClientIP { get; set; } + /// + /// This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client + /// IPs for a given database account. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client IPs for a given database account.", + SerializedName = @"ipRanges", + PossibleTypes = new [] { typeof(string) })] + string[] IPRange { get; set; } + + } + /// Target service's firewall rules. to allow connections from source service. + internal partial interface IFirewallRulesInternal + + { + /// Allow Azure services to access the target service if true. + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType? AzureService { get; set; } + /// + /// Allow caller client IP to access the target service if true. the property is used when connecting local application to + /// target service. + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType? CallerClientIP { get; set; } + /// + /// This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client + /// IPs for a given database account. + /// + string[] IPRange { get; set; } + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/FirewallRules.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/FirewallRules.json.cs new file mode 100644 index 000000000000..10069c89cd5e --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/FirewallRules.json.cs @@ -0,0 +1,120 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// Target service's firewall rules. to allow connections from source service. + public partial class FirewallRules + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the + /// output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject instance to deserialize from. + internal FirewallRules(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_iPRange = If( json?.PropertyT("ipRanges"), out var __jsonIPRanges) ? If( __jsonIPRanges as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(string) (__u is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString __t ? (string)(__t.ToString()) : null)) ))() : null : IPRange;} + {_azureService = If( json?.PropertyT("azureServices"), out var __jsonAzureServices) ? (string)__jsonAzureServices : (string)AzureService;} + {_callerClientIP = If( json?.PropertyT("callerClientIP"), out var __jsonCallerClientIP) ? (string)__jsonCallerClientIP : (string)CallerClientIP;} + AfterFromJson(json); + } + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRules. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRules. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRules FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new FirewallRules(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + if (null != this._iPRange) + { + var __w = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.XNodeArray(); + foreach( var __x in this._iPRange ) + { + AddIf(null != (((object)__x)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(__x.ToString()) : null ,__w.Add); + } + container.Add("ipRanges",__w); + } + AddIf( null != (((object)this._azureService)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._azureService.ToString()) : null, "azureServices" ,container.Add ); + AddIf( null != (((object)this._callerClientIP)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._callerClientIP.ToString()) : null, "callerClientIP" ,container.Add ); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/KeyVaultSecretReferenceSecretInfo.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/KeyVaultSecretReferenceSecretInfo.PowerShell.cs similarity index 71% rename from src/ServiceLinker/generated/api/Models/Api20220501/KeyVaultSecretReferenceSecretInfo.PowerShell.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/KeyVaultSecretReferenceSecretInfo.PowerShell.cs index 2d0b6441c3ba..7bf2b0a8b4e9 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/KeyVaultSecretReferenceSecretInfo.PowerShell.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/KeyVaultSecretReferenceSecretInfo.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -34,7 +34,8 @@ public partial class KeyVaultSecretReferenceSecretInfo /// /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Collections.IDictionary content that should be used. @@ -46,7 +47,8 @@ public partial class KeyVaultSecretReferenceSecretInfo /// /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -56,29 +58,29 @@ public partial class KeyVaultSecretReferenceSecretInfo partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IKeyVaultSecretReferenceSecretInfo DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IKeyVaultSecretReferenceSecretInfo DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new KeyVaultSecretReferenceSecretInfo(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IKeyVaultSecretReferenceSecretInfo DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IKeyVaultSecretReferenceSecretInfo DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new KeyVaultSecretReferenceSecretInfo(content); } @@ -90,10 +92,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api2022050 /// /// an instance of the model class. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IKeyVaultSecretReferenceSecretInfo FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IKeyVaultSecretReferenceSecretInfo FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -108,21 +110,21 @@ internal KeyVaultSecretReferenceSecretInfo(global::System.Collections.IDictionar // actually deserialize if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IKeyVaultSecretReferenceSecretInfoInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IKeyVaultSecretReferenceSecretInfoInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IKeyVaultSecretReferenceSecretInfoInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IKeyVaultSecretReferenceSecretInfoInternal)this).Name, global::System.Convert.ToString); } if (content.Contains("Version")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IKeyVaultSecretReferenceSecretInfoInternal)this).Version = (string) content.GetValueForProperty("Version",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IKeyVaultSecretReferenceSecretInfoInternal)this).Version, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IKeyVaultSecretReferenceSecretInfoInternal)this).Version = (string) content.GetValueForProperty("Version",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IKeyVaultSecretReferenceSecretInfoInternal)this).Version, global::System.Convert.ToString); } if (content.Contains("SecretType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBaseInternal)this).SecretType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.SecretType) content.GetValueForProperty("SecretType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBaseInternal)this).SecretType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.SecretType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBaseInternal)this).SecretType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.SecretType) content.GetValueForProperty("SecretType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBaseInternal)this).SecretType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.SecretType.CreateFrom); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -137,15 +139,15 @@ internal KeyVaultSecretReferenceSecretInfo(global::System.Management.Automation. // actually deserialize if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IKeyVaultSecretReferenceSecretInfoInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IKeyVaultSecretReferenceSecretInfoInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IKeyVaultSecretReferenceSecretInfoInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IKeyVaultSecretReferenceSecretInfoInternal)this).Name, global::System.Convert.ToString); } if (content.Contains("Version")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IKeyVaultSecretReferenceSecretInfoInternal)this).Version = (string) content.GetValueForProperty("Version",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IKeyVaultSecretReferenceSecretInfoInternal)this).Version, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IKeyVaultSecretReferenceSecretInfoInternal)this).Version = (string) content.GetValueForProperty("Version",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IKeyVaultSecretReferenceSecretInfoInternal)this).Version, global::System.Convert.ToString); } if (content.Contains("SecretType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBaseInternal)this).SecretType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.SecretType) content.GetValueForProperty("SecretType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBaseInternal)this).SecretType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.SecretType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBaseInternal)this).SecretType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.SecretType) content.GetValueForProperty("SecretType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBaseInternal)this).SecretType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.SecretType.CreateFrom); } AfterDeserializePSObject(content); } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/KeyVaultSecretReferenceSecretInfo.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/KeyVaultSecretReferenceSecretInfo.TypeConverter.cs similarity index 81% rename from src/ServiceLinker/generated/api/Models/Api20220501/KeyVaultSecretReferenceSecretInfo.TypeConverter.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/KeyVaultSecretReferenceSecretInfo.TypeConverter.cs index 0ec86c352d23..7c0fcf7a42ec 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/KeyVaultSecretReferenceSecretInfo.TypeConverter.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/KeyVaultSecretReferenceSecretInfo.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -14,20 +14,20 @@ public partial class KeyVaultSecretReferenceSecretInfoTypeConverter : global::Sy { /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); /// - /// Determines if the converter can convert the parameter to the . + /// Determines if the converter can convert the parameter to the + /// type. /// /// the instance to check if it can be converted to the type. @@ -75,19 +75,20 @@ public static bool CanConvertFrom(dynamic sourceValue) } /// - /// Determines if the parameter can be converted to the parameter + /// Determines if the parameter can be converted to the + /// parameter /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false + /// true if the converter can convert the parameter to the parameter, otherwise false /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to @@ -99,21 +100,21 @@ public static bool CanConvertFrom(dynamic sourceValue) public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); /// - /// Converts the parameter to the parameter using and + /// Converts the parameter into an instance of /// /// the value to convert into an instance of . /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IKeyVaultSecretReferenceSecretInfo ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IKeyVaultSecretReferenceSecretInfo ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IKeyVaultSecretReferenceSecretInfo).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IKeyVaultSecretReferenceSecretInfo).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/KeyVaultSecretReferenceSecretInfo.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/KeyVaultSecretReferenceSecretInfo.cs similarity index 87% rename from src/ServiceLinker/generated/api/Models/Api20220501/KeyVaultSecretReferenceSecretInfo.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/KeyVaultSecretReferenceSecretInfo.cs index d2eb213822d6..e128037d0fbe 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/KeyVaultSecretReferenceSecretInfo.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/KeyVaultSecretReferenceSecretInfo.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; @@ -12,15 +12,15 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 /// and source is Azure Kubernetes. The key Vault's resource id is linked to secretStore.keyVaultId. /// public partial class KeyVaultSecretReferenceSecretInfo : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IKeyVaultSecretReferenceSecretInfo, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IKeyVaultSecretReferenceSecretInfoInternal, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IKeyVaultSecretReferenceSecretInfo, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IKeyVaultSecretReferenceSecretInfoInternal, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IValidates { /// - /// Backing field for Inherited model /// - private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBase __secretInfoBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SecretInfoBase(); + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBase __secretInfoBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SecretInfoBase(); /// Backing field for property. private string _name; @@ -31,7 +31,7 @@ public partial class KeyVaultSecretReferenceSecretInfo : /// The secret type. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.SecretType SecretType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBaseInternal)__secretInfoBase).SecretType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBaseInternal)__secretInfoBase).SecretType = value ; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.SecretType SecretType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBaseInternal)__secretInfoBase).SecretType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBaseInternal)__secretInfoBase).SecretType = value ; } /// Backing field for property. private string _version; @@ -62,7 +62,7 @@ public KeyVaultSecretReferenceSecretInfo() /// and source is Azure Kubernetes. The key Vault's resource id is linked to secretStore.keyVaultId. public partial interface IKeyVaultSecretReferenceSecretInfo : Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBase + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBase { /// Name of the Key Vault secret. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( @@ -85,7 +85,7 @@ public partial interface IKeyVaultSecretReferenceSecretInfo : /// The secret info when type is keyVaultSecretReference. It's for scenario that user provides a secret stored in user's keyvault /// and source is Azure Kubernetes. The key Vault's resource id is linked to secretStore.keyVaultId. internal partial interface IKeyVaultSecretReferenceSecretInfoInternal : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBaseInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBaseInternal { /// Name of the Key Vault secret. string Name { get; set; } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/KeyVaultSecretReferenceSecretInfo.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/KeyVaultSecretReferenceSecretInfo.json.cs similarity index 95% rename from src/ServiceLinker/generated/api/Models/Api20220501/KeyVaultSecretReferenceSecretInfo.json.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/KeyVaultSecretReferenceSecretInfo.json.cs index 612d0eef9ad1..f7a8db5ab46d 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/KeyVaultSecretReferenceSecretInfo.json.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/KeyVaultSecretReferenceSecretInfo.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; @@ -57,13 +57,13 @@ public partial class KeyVaultSecretReferenceSecretInfo partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IKeyVaultSecretReferenceSecretInfo. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IKeyVaultSecretReferenceSecretInfo. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IKeyVaultSecretReferenceSecretInfo. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IKeyVaultSecretReferenceSecretInfo. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IKeyVaultSecretReferenceSecretInfo FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IKeyVaultSecretReferenceSecretInfo FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new KeyVaultSecretReferenceSecretInfo(json) : null; } @@ -80,7 +80,7 @@ internal KeyVaultSecretReferenceSecretInfo(Microsoft.Azure.PowerShell.Cmdlets.Se { return; } - __secretInfoBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SecretInfoBase(json); + __secretInfoBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SecretInfoBase(json); {_name = If( json?.PropertyT("name"), out var __jsonName) ? (string)__jsonName : (string)Name;} {_version = If( json?.PropertyT("version"), out var __jsonVersion) ? (string)__jsonVersion : (string)Version;} AfterFromJson(json); diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/KeyVaultSecretUriSecretInfo.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/KeyVaultSecretUriSecretInfo.PowerShell.cs similarity index 75% rename from src/ServiceLinker/generated/api/Models/Api20220501/KeyVaultSecretUriSecretInfo.PowerShell.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/KeyVaultSecretUriSecretInfo.PowerShell.cs index 5561a69bcb44..b0eaed62ecd7 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/KeyVaultSecretUriSecretInfo.PowerShell.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/KeyVaultSecretUriSecretInfo.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -34,7 +34,8 @@ public partial class KeyVaultSecretUriSecretInfo /// /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Collections.IDictionary content that should be used. @@ -46,7 +47,8 @@ public partial class KeyVaultSecretUriSecretInfo /// /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -56,29 +58,29 @@ public partial class KeyVaultSecretUriSecretInfo partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IKeyVaultSecretUriSecretInfo DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IKeyVaultSecretUriSecretInfo DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new KeyVaultSecretUriSecretInfo(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IKeyVaultSecretUriSecretInfo DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IKeyVaultSecretUriSecretInfo DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new KeyVaultSecretUriSecretInfo(content); } @@ -88,10 +90,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api2022050 /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IKeyVaultSecretUriSecretInfo FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IKeyVaultSecretUriSecretInfo FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -106,17 +108,17 @@ internal KeyVaultSecretUriSecretInfo(global::System.Collections.IDictionary cont // actually deserialize if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IKeyVaultSecretUriSecretInfoInternal)this).Value = (string) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IKeyVaultSecretUriSecretInfoInternal)this).Value, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IKeyVaultSecretUriSecretInfoInternal)this).Value = (string) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IKeyVaultSecretUriSecretInfoInternal)this).Value, global::System.Convert.ToString); } if (content.Contains("SecretType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBaseInternal)this).SecretType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.SecretType) content.GetValueForProperty("SecretType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBaseInternal)this).SecretType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.SecretType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBaseInternal)this).SecretType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.SecretType) content.GetValueForProperty("SecretType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBaseInternal)this).SecretType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.SecretType.CreateFrom); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -131,11 +133,11 @@ internal KeyVaultSecretUriSecretInfo(global::System.Management.Automation.PSObje // actually deserialize if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IKeyVaultSecretUriSecretInfoInternal)this).Value = (string) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IKeyVaultSecretUriSecretInfoInternal)this).Value, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IKeyVaultSecretUriSecretInfoInternal)this).Value = (string) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IKeyVaultSecretUriSecretInfoInternal)this).Value, global::System.Convert.ToString); } if (content.Contains("SecretType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBaseInternal)this).SecretType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.SecretType) content.GetValueForProperty("SecretType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBaseInternal)this).SecretType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.SecretType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBaseInternal)this).SecretType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.SecretType) content.GetValueForProperty("SecretType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBaseInternal)this).SecretType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.SecretType.CreateFrom); } AfterDeserializePSObject(content); } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/KeyVaultSecretUriSecretInfo.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/KeyVaultSecretUriSecretInfo.TypeConverter.cs similarity index 81% rename from src/ServiceLinker/generated/api/Models/Api20220501/KeyVaultSecretUriSecretInfo.TypeConverter.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/KeyVaultSecretUriSecretInfo.TypeConverter.cs index 3323fb693002..bd91ad29b618 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/KeyVaultSecretUriSecretInfo.TypeConverter.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/KeyVaultSecretUriSecretInfo.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -14,20 +14,20 @@ public partial class KeyVaultSecretUriSecretInfoTypeConverter : global::System.M { /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); /// - /// Determines if the converter can convert the parameter to the . + /// Determines if the converter can convert the parameter to the + /// type. /// /// the instance to check if it can be converted to the type. @@ -75,19 +75,20 @@ public static bool CanConvertFrom(dynamic sourceValue) } /// - /// Determines if the parameter can be converted to the parameter + /// Determines if the parameter can be converted to the + /// parameter /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false + /// true if the converter can convert the parameter to the parameter, otherwise false /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to @@ -99,21 +100,20 @@ public static bool CanConvertFrom(dynamic sourceValue) public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); /// - /// Converts the parameter to the parameter using and + /// Converts the parameter into an instance of /// /// the value to convert into an instance of . /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IKeyVaultSecretUriSecretInfo ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IKeyVaultSecretUriSecretInfo ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IKeyVaultSecretUriSecretInfo).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IKeyVaultSecretUriSecretInfo).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/KeyVaultSecretUriSecretInfo.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/KeyVaultSecretUriSecretInfo.cs similarity index 85% rename from src/ServiceLinker/generated/api/Models/Api20220501/KeyVaultSecretUriSecretInfo.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/KeyVaultSecretUriSecretInfo.cs index bc506c9761e9..03beffae7290 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/KeyVaultSecretUriSecretInfo.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/KeyVaultSecretUriSecretInfo.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; @@ -12,19 +12,19 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 /// and source is Web App, Spring Cloud or Container App. /// public partial class KeyVaultSecretUriSecretInfo : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IKeyVaultSecretUriSecretInfo, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IKeyVaultSecretUriSecretInfoInternal, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IKeyVaultSecretUriSecretInfo, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IKeyVaultSecretUriSecretInfoInternal, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IValidates { /// - /// Backing field for Inherited model /// - private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBase __secretInfoBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SecretInfoBase(); + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBase __secretInfoBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SecretInfoBase(); /// The secret type. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.SecretType SecretType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBaseInternal)__secretInfoBase).SecretType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBaseInternal)__secretInfoBase).SecretType = value ; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.SecretType SecretType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBaseInternal)__secretInfoBase).SecretType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBaseInternal)__secretInfoBase).SecretType = value ; } /// Backing field for property. private string _value; @@ -55,7 +55,7 @@ public KeyVaultSecretUriSecretInfo() /// and source is Web App, Spring Cloud or Container App. public partial interface IKeyVaultSecretUriSecretInfo : Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBase + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBase { /// URI to the keyvault secret [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( @@ -70,7 +70,7 @@ public partial interface IKeyVaultSecretUriSecretInfo : /// The secret info when type is keyVaultSecretUri. It's for scenario that user provides a secret stored in user's keyvault /// and source is Web App, Spring Cloud or Container App. internal partial interface IKeyVaultSecretUriSecretInfoInternal : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBaseInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBaseInternal { /// URI to the keyvault secret string Value { get; set; } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/KeyVaultSecretUriSecretInfo.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/KeyVaultSecretUriSecretInfo.json.cs similarity index 95% rename from src/ServiceLinker/generated/api/Models/Api20220501/KeyVaultSecretUriSecretInfo.json.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/KeyVaultSecretUriSecretInfo.json.cs index 6011c340c9da..b0c91057fc92 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/KeyVaultSecretUriSecretInfo.json.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/KeyVaultSecretUriSecretInfo.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; @@ -57,13 +57,13 @@ public partial class KeyVaultSecretUriSecretInfo partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IKeyVaultSecretUriSecretInfo. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IKeyVaultSecretUriSecretInfo. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IKeyVaultSecretUriSecretInfo. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IKeyVaultSecretUriSecretInfo. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IKeyVaultSecretUriSecretInfo FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IKeyVaultSecretUriSecretInfo FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new KeyVaultSecretUriSecretInfo(json) : null; } @@ -80,7 +80,7 @@ internal KeyVaultSecretUriSecretInfo(Microsoft.Azure.PowerShell.Cmdlets.ServiceL { return; } - __secretInfoBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SecretInfoBase(json); + __secretInfoBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SecretInfoBase(json); {_value = If( json?.PropertyT("value"), out var __jsonValue) ? (string)__jsonValue : (string)Value;} AfterFromJson(json); } diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/LinkerPatch.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/LinkerPatch.PowerShell.cs new file mode 100644 index 000000000000..769787ba4fee --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/LinkerPatch.PowerShell.cs @@ -0,0 +1,328 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// A Linker to be updated. + [System.ComponentModel.TypeConverter(typeof(LinkerPatchTypeConverter))] + public partial class LinkerPatch + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatch DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new LinkerPatch(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatch DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new LinkerPatch(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatch FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal LinkerPatch(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Property")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.LinkerPropertiesTypeConverter.ConvertFrom); + } + if (content.Contains("SecretStore")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).SecretStore = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretStore) content.GetValueForProperty("SecretStore",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).SecretStore, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SecretStoreTypeConverter.ConvertFrom); + } + if (content.Contains("ConfigurationInfo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).ConfigurationInfo = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfo) content.GetValueForProperty("ConfigurationInfo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).ConfigurationInfo, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationInfoTypeConverter.ConvertFrom); + } + if (content.Contains("ClientType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).ClientType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType?) content.GetValueForProperty("ClientType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).ClientType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType.CreateFrom); + } + if (content.Contains("VNetSolution")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).VNetSolution = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IVNetSolution) content.GetValueForProperty("VNetSolution",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).VNetSolution, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.VNetSolutionTypeConverter.ConvertFrom); + } + if (content.Contains("PublicNetworkSolution")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).PublicNetworkSolution = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolution) content.GetValueForProperty("PublicNetworkSolution",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).PublicNetworkSolution, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.PublicNetworkSolutionTypeConverter.ConvertFrom); + } + if (content.Contains("TargetService")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).TargetService = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase) content.GetValueForProperty("TargetService",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).TargetService, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.TargetServiceBaseTypeConverter.ConvertFrom); + } + if (content.Contains("AuthInfo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).AuthInfo = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase) content.GetValueForProperty("AuthInfo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).AuthInfo, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AuthInfoBaseTypeConverter.ConvertFrom); + } + if (content.Contains("ProvisioningState")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).ProvisioningState, global::System.Convert.ToString); + } + if (content.Contains("Scope")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).Scope = (string) content.GetValueForProperty("Scope",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).Scope, global::System.Convert.ToString); + } + if (content.Contains("VNetSolutionType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).VNetSolutionType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType?) content.GetValueForProperty("VNetSolutionType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).VNetSolutionType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType.CreateFrom); + } + if (content.Contains("PublicNetworkSolutionFirewallRule")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).PublicNetworkSolutionFirewallRule = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRules) content.GetValueForProperty("PublicNetworkSolutionFirewallRule",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).PublicNetworkSolutionFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.FirewallRulesTypeConverter.ConvertFrom); + } + if (content.Contains("ConfigurationInfoCustomizedKey")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).ConfigurationInfoCustomizedKey = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys) content.GetValueForProperty("ConfigurationInfoCustomizedKey",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).ConfigurationInfoCustomizedKey, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationInfoCustomizedKeysTypeConverter.ConvertFrom); + } + if (content.Contains("ConfigurationInfoAdditionalConfiguration")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).ConfigurationInfoAdditionalConfiguration = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations) content.GetValueForProperty("ConfigurationInfoAdditionalConfiguration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).ConfigurationInfoAdditionalConfiguration, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationInfoAdditionalConfigurationsTypeConverter.ConvertFrom); + } + if (content.Contains("VNetSolutionDeleteOrUpdateBehavior")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).VNetSolutionDeleteOrUpdateBehavior = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior?) content.GetValueForProperty("VNetSolutionDeleteOrUpdateBehavior",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).VNetSolutionDeleteOrUpdateBehavior, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior.CreateFrom); + } + if (content.Contains("SecretStoreKeyVaultId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).SecretStoreKeyVaultId = (string) content.GetValueForProperty("SecretStoreKeyVaultId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).SecretStoreKeyVaultId, global::System.Convert.ToString); + } + if (content.Contains("SecretStoreKeyVaultSecretName")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).SecretStoreKeyVaultSecretName = (string) content.GetValueForProperty("SecretStoreKeyVaultSecretName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).SecretStoreKeyVaultSecretName, global::System.Convert.ToString); + } + if (content.Contains("PublicNetworkSolutionDeleteOrUpdateBehavior")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).PublicNetworkSolutionDeleteOrUpdateBehavior = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior?) content.GetValueForProperty("PublicNetworkSolutionDeleteOrUpdateBehavior",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).PublicNetworkSolutionDeleteOrUpdateBehavior, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior.CreateFrom); + } + if (content.Contains("PublicNetworkSolutionAction")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).PublicNetworkSolutionAction = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType?) content.GetValueForProperty("PublicNetworkSolutionAction",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).PublicNetworkSolutionAction, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType.CreateFrom); + } + if (content.Contains("FirewallRuleIPRange")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).FirewallRuleIPRange = (string[]) content.GetValueForProperty("FirewallRuleIPRange",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).FirewallRuleIPRange, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + } + if (content.Contains("ConfigurationInfoDeleteOrUpdateBehavior")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).ConfigurationInfoDeleteOrUpdateBehavior = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior?) content.GetValueForProperty("ConfigurationInfoDeleteOrUpdateBehavior",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).ConfigurationInfoDeleteOrUpdateBehavior, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior.CreateFrom); + } + if (content.Contains("ConfigurationInfoAction")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).ConfigurationInfoAction = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType?) content.GetValueForProperty("ConfigurationInfoAction",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).ConfigurationInfoAction, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType.CreateFrom); + } + if (content.Contains("FirewallRuleAzureService")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).FirewallRuleAzureService = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType?) content.GetValueForProperty("FirewallRuleAzureService",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).FirewallRuleAzureService, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType.CreateFrom); + } + if (content.Contains("FirewallRuleCallerClientIP")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).FirewallRuleCallerClientIP = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType?) content.GetValueForProperty("FirewallRuleCallerClientIP",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).FirewallRuleCallerClientIP, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType.CreateFrom); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal LinkerPatch(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Property")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.LinkerPropertiesTypeConverter.ConvertFrom); + } + if (content.Contains("SecretStore")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).SecretStore = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretStore) content.GetValueForProperty("SecretStore",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).SecretStore, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SecretStoreTypeConverter.ConvertFrom); + } + if (content.Contains("ConfigurationInfo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).ConfigurationInfo = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfo) content.GetValueForProperty("ConfigurationInfo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).ConfigurationInfo, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationInfoTypeConverter.ConvertFrom); + } + if (content.Contains("ClientType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).ClientType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType?) content.GetValueForProperty("ClientType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).ClientType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType.CreateFrom); + } + if (content.Contains("VNetSolution")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).VNetSolution = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IVNetSolution) content.GetValueForProperty("VNetSolution",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).VNetSolution, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.VNetSolutionTypeConverter.ConvertFrom); + } + if (content.Contains("PublicNetworkSolution")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).PublicNetworkSolution = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolution) content.GetValueForProperty("PublicNetworkSolution",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).PublicNetworkSolution, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.PublicNetworkSolutionTypeConverter.ConvertFrom); + } + if (content.Contains("TargetService")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).TargetService = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase) content.GetValueForProperty("TargetService",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).TargetService, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.TargetServiceBaseTypeConverter.ConvertFrom); + } + if (content.Contains("AuthInfo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).AuthInfo = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase) content.GetValueForProperty("AuthInfo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).AuthInfo, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AuthInfoBaseTypeConverter.ConvertFrom); + } + if (content.Contains("ProvisioningState")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).ProvisioningState, global::System.Convert.ToString); + } + if (content.Contains("Scope")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).Scope = (string) content.GetValueForProperty("Scope",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).Scope, global::System.Convert.ToString); + } + if (content.Contains("VNetSolutionType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).VNetSolutionType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType?) content.GetValueForProperty("VNetSolutionType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).VNetSolutionType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType.CreateFrom); + } + if (content.Contains("PublicNetworkSolutionFirewallRule")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).PublicNetworkSolutionFirewallRule = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRules) content.GetValueForProperty("PublicNetworkSolutionFirewallRule",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).PublicNetworkSolutionFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.FirewallRulesTypeConverter.ConvertFrom); + } + if (content.Contains("ConfigurationInfoCustomizedKey")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).ConfigurationInfoCustomizedKey = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys) content.GetValueForProperty("ConfigurationInfoCustomizedKey",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).ConfigurationInfoCustomizedKey, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationInfoCustomizedKeysTypeConverter.ConvertFrom); + } + if (content.Contains("ConfigurationInfoAdditionalConfiguration")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).ConfigurationInfoAdditionalConfiguration = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations) content.GetValueForProperty("ConfigurationInfoAdditionalConfiguration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).ConfigurationInfoAdditionalConfiguration, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationInfoAdditionalConfigurationsTypeConverter.ConvertFrom); + } + if (content.Contains("VNetSolutionDeleteOrUpdateBehavior")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).VNetSolutionDeleteOrUpdateBehavior = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior?) content.GetValueForProperty("VNetSolutionDeleteOrUpdateBehavior",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).VNetSolutionDeleteOrUpdateBehavior, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior.CreateFrom); + } + if (content.Contains("SecretStoreKeyVaultId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).SecretStoreKeyVaultId = (string) content.GetValueForProperty("SecretStoreKeyVaultId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).SecretStoreKeyVaultId, global::System.Convert.ToString); + } + if (content.Contains("SecretStoreKeyVaultSecretName")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).SecretStoreKeyVaultSecretName = (string) content.GetValueForProperty("SecretStoreKeyVaultSecretName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).SecretStoreKeyVaultSecretName, global::System.Convert.ToString); + } + if (content.Contains("PublicNetworkSolutionDeleteOrUpdateBehavior")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).PublicNetworkSolutionDeleteOrUpdateBehavior = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior?) content.GetValueForProperty("PublicNetworkSolutionDeleteOrUpdateBehavior",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).PublicNetworkSolutionDeleteOrUpdateBehavior, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior.CreateFrom); + } + if (content.Contains("PublicNetworkSolutionAction")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).PublicNetworkSolutionAction = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType?) content.GetValueForProperty("PublicNetworkSolutionAction",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).PublicNetworkSolutionAction, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType.CreateFrom); + } + if (content.Contains("FirewallRuleIPRange")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).FirewallRuleIPRange = (string[]) content.GetValueForProperty("FirewallRuleIPRange",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).FirewallRuleIPRange, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + } + if (content.Contains("ConfigurationInfoDeleteOrUpdateBehavior")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).ConfigurationInfoDeleteOrUpdateBehavior = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior?) content.GetValueForProperty("ConfigurationInfoDeleteOrUpdateBehavior",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).ConfigurationInfoDeleteOrUpdateBehavior, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior.CreateFrom); + } + if (content.Contains("ConfigurationInfoAction")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).ConfigurationInfoAction = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType?) content.GetValueForProperty("ConfigurationInfoAction",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).ConfigurationInfoAction, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType.CreateFrom); + } + if (content.Contains("FirewallRuleAzureService")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).FirewallRuleAzureService = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType?) content.GetValueForProperty("FirewallRuleAzureService",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).FirewallRuleAzureService, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType.CreateFrom); + } + if (content.Contains("FirewallRuleCallerClientIP")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).FirewallRuleCallerClientIP = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType?) content.GetValueForProperty("FirewallRuleCallerClientIP",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal)this).FirewallRuleCallerClientIP, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType.CreateFrom); + } + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// A Linker to be updated. + [System.ComponentModel.TypeConverter(typeof(LinkerPatchTypeConverter))] + public partial interface ILinkerPatch + + { + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/LinkerPatch.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/LinkerPatch.TypeConverter.cs similarity index 82% rename from src/ServiceLinker/generated/api/Models/Api20220501/LinkerPatch.TypeConverter.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/LinkerPatch.TypeConverter.cs index 2d2d284f42b9..69409d92e783 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/LinkerPatch.TypeConverter.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/LinkerPatch.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -14,19 +14,20 @@ public partial class LinkerPatchTypeConverter : global::System.Management.Automa { /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); /// - /// Determines if the converter can convert the parameter to the . + /// Determines if the converter can convert the parameter to the + /// type. /// /// the instance to check if it can be converted to the type. @@ -74,19 +75,20 @@ public static bool CanConvertFrom(dynamic sourceValue) } /// - /// Determines if the parameter can be converted to the parameter + /// Determines if the parameter can be converted to the + /// parameter /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false + /// true if the converter can convert the parameter to the parameter, otherwise false /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to @@ -98,21 +100,20 @@ public static bool CanConvertFrom(dynamic sourceValue) public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); /// - /// Converts the parameter to the parameter using and + /// Converts the parameter into an instance of /// /// the value to convert into an instance of . /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatch ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatch ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatch).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatch).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/LinkerPatch.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/LinkerPatch.cs new file mode 100644 index 000000000000..17ea11ab5aec --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/LinkerPatch.cs @@ -0,0 +1,402 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// A Linker to be updated. + public partial class LinkerPatch : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatch, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal + { + + /// The authentication type. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase AuthInfo { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).AuthInfo; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).AuthInfo = value ?? null /* model class */; } + + /// The application client type + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType? ClientType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).ClientType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).ClientType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType)""); } + + /// + /// Optional, indicate whether to apply configurations on source application. If enable, generate configurations and applied + /// to the source application. Default is enable. If optOut, no configuration change will be made on source. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType? ConfigurationInfoAction { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).ConfigurationInfoAction; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).ConfigurationInfoAction = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType)""); } + + /// + /// A dictionary of additional configurations to be added. Service will auto generate a set of basic configurations and this + /// property is to full fill more customized configurations + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations ConfigurationInfoAdditionalConfiguration { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).ConfigurationInfoAdditionalConfiguration; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).ConfigurationInfoAdditionalConfiguration = value ?? null /* model class */; } + + /// + /// Optional. A dictionary of default key name and customized key name mapping. If not specified, default key name will be + /// used for generate configurations + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys ConfigurationInfoCustomizedKey { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).ConfigurationInfoCustomizedKey; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).ConfigurationInfoCustomizedKey = value ?? null /* model class */; } + + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? ConfigurationInfoDeleteOrUpdateBehavior { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).ConfigurationInfoDeleteOrUpdateBehavior; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).ConfigurationInfoDeleteOrUpdateBehavior = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior)""); } + + /// Allow Azure services to access the target service if true. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType? FirewallRuleAzureService { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).FirewallRuleAzureService; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).FirewallRuleAzureService = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType)""); } + + /// + /// Allow caller client IP to access the target service if true. the property is used when connecting local application to + /// target service. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType? FirewallRuleCallerClientIP { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).FirewallRuleCallerClientIP; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).FirewallRuleCallerClientIP = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType)""); } + + /// + /// This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client + /// IPs for a given database account. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public string[] FirewallRuleIPRange { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).FirewallRuleIPRange; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).FirewallRuleIPRange = value ?? null /* arrayOf */; } + + /// Internal Acessors for ConfigurationInfo + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfo Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal.ConfigurationInfo { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).ConfigurationInfo; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).ConfigurationInfo = value; } + + /// Internal Acessors for Property + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerProperties Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.LinkerProperties()); set { {_property = value;} } } + + /// Internal Acessors for ProvisioningState + string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal.ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).ProvisioningState; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).ProvisioningState = value; } + + /// Internal Acessors for PublicNetworkSolution + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolution Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal.PublicNetworkSolution { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).PublicNetworkSolution; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).PublicNetworkSolution = value; } + + /// Internal Acessors for PublicNetworkSolutionFirewallRule + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRules Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal.PublicNetworkSolutionFirewallRule { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).PublicNetworkSolutionFirewallRule; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).PublicNetworkSolutionFirewallRule = value; } + + /// Internal Acessors for SecretStore + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretStore Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal.SecretStore { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).SecretStore; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).SecretStore = value; } + + /// Internal Acessors for VNetSolution + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IVNetSolution Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatchInternal.VNetSolution { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).VNetSolution; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).VNetSolution = value; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerProperties _property; + + /// Linker properties + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + internal Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.LinkerProperties()); set => this._property = value; } + + /// The provisioning state. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public string ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).ProvisioningState; } + + /// + /// Optional. Indicates public network solution. If enable, enable public network access of target service with best try. + /// Default is enable. If optOut, opt out public network access configuration. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType? PublicNetworkSolutionAction { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).PublicNetworkSolutionAction; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).PublicNetworkSolutionAction = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType)""); } + + /// + /// Indicates whether to clean up previous operation(such as firewall rules) when Linker is updating or deleting + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? PublicNetworkSolutionDeleteOrUpdateBehavior { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).PublicNetworkSolutionDeleteOrUpdateBehavior; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).PublicNetworkSolutionDeleteOrUpdateBehavior = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior)""); } + + /// connection scope in source service. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public string Scope { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).Scope; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).Scope = value ?? null; } + + /// The key vault id to store secret + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public string SecretStoreKeyVaultId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).SecretStoreKeyVaultId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).SecretStoreKeyVaultId = value ?? null; } + + /// The key vault secret name to store secret, only valid when storing one secret + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public string SecretStoreKeyVaultSecretName { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).SecretStoreKeyVaultSecretName; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).SecretStoreKeyVaultSecretName = value ?? null; } + + /// The target service properties + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase TargetService { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).TargetService; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).TargetService = value ?? null /* model class */; } + + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? VNetSolutionDeleteOrUpdateBehavior { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).VNetSolutionDeleteOrUpdateBehavior; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).VNetSolutionDeleteOrUpdateBehavior = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior)""); } + + /// Type of VNet solution. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType? VNetSolutionType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).VNetSolutionType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).VNetSolutionType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType)""); } + + /// Creates an new instance. + public LinkerPatch() + { + + } + } + /// A Linker to be updated. + public partial interface ILinkerPatch : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable + { + /// The authentication type. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The authentication type.", + SerializedName = @"authInfo", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase AuthInfo { get; set; } + /// The application client type + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The application client type", + SerializedName = @"clientType", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType? ClientType { get; set; } + /// + /// Optional, indicate whether to apply configurations on source application. If enable, generate configurations and applied + /// to the source application. Default is enable. If optOut, no configuration change will be made on source. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Optional, indicate whether to apply configurations on source application. If enable, generate configurations and applied to the source application. Default is enable. If optOut, no configuration change will be made on source.", + SerializedName = @"action", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType? ConfigurationInfoAction { get; set; } + /// + /// A dictionary of additional configurations to be added. Service will auto generate a set of basic configurations and this + /// property is to full fill more customized configurations + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"A dictionary of additional configurations to be added. Service will auto generate a set of basic configurations and this property is to full fill more customized configurations", + SerializedName = @"additionalConfigurations", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations ConfigurationInfoAdditionalConfiguration { get; set; } + /// + /// Optional. A dictionary of default key name and customized key name mapping. If not specified, default key name will be + /// used for generate configurations + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Optional. A dictionary of default key name and customized key name mapping. If not specified, default key name will be used for generate configurations", + SerializedName = @"customizedKeys", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys ConfigurationInfoCustomizedKey { get; set; } + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Indicates whether to clean up previous operation when Linker is updating or deleting", + SerializedName = @"deleteOrUpdateBehavior", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? ConfigurationInfoDeleteOrUpdateBehavior { get; set; } + /// Allow Azure services to access the target service if true. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Allow Azure services to access the target service if true.", + SerializedName = @"azureServices", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType? FirewallRuleAzureService { get; set; } + /// + /// Allow caller client IP to access the target service if true. the property is used when connecting local application to + /// target service. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Allow caller client IP to access the target service if true. the property is used when connecting local application to target service.", + SerializedName = @"callerClientIP", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType? FirewallRuleCallerClientIP { get; set; } + /// + /// This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client + /// IPs for a given database account. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client IPs for a given database account.", + SerializedName = @"ipRanges", + PossibleTypes = new [] { typeof(string) })] + string[] FirewallRuleIPRange { get; set; } + /// The provisioning state. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The provisioning state. ", + SerializedName = @"provisioningState", + PossibleTypes = new [] { typeof(string) })] + string ProvisioningState { get; } + /// + /// Optional. Indicates public network solution. If enable, enable public network access of target service with best try. + /// Default is enable. If optOut, opt out public network access configuration. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Optional. Indicates public network solution. If enable, enable public network access of target service with best try. Default is enable. If optOut, opt out public network access configuration.", + SerializedName = @"action", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType? PublicNetworkSolutionAction { get; set; } + /// + /// Indicates whether to clean up previous operation(such as firewall rules) when Linker is updating or deleting + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Indicates whether to clean up previous operation(such as firewall rules) when Linker is updating or deleting", + SerializedName = @"deleteOrUpdateBehavior", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? PublicNetworkSolutionDeleteOrUpdateBehavior { get; set; } + /// connection scope in source service. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"connection scope in source service.", + SerializedName = @"scope", + PossibleTypes = new [] { typeof(string) })] + string Scope { get; set; } + /// The key vault id to store secret + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The key vault id to store secret", + SerializedName = @"keyVaultId", + PossibleTypes = new [] { typeof(string) })] + string SecretStoreKeyVaultId { get; set; } + /// The key vault secret name to store secret, only valid when storing one secret + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The key vault secret name to store secret, only valid when storing one secret", + SerializedName = @"keyVaultSecretName", + PossibleTypes = new [] { typeof(string) })] + string SecretStoreKeyVaultSecretName { get; set; } + /// The target service properties + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The target service properties", + SerializedName = @"targetService", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase TargetService { get; set; } + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Indicates whether to clean up previous operation when Linker is updating or deleting", + SerializedName = @"deleteOrUpdateBehavior", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? VNetSolutionDeleteOrUpdateBehavior { get; set; } + /// Type of VNet solution. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Type of VNet solution.", + SerializedName = @"type", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType? VNetSolutionType { get; set; } + + } + /// A Linker to be updated. + internal partial interface ILinkerPatchInternal + + { + /// The authentication type. + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase AuthInfo { get; set; } + /// The application client type + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType? ClientType { get; set; } + /// + /// The connection information consumed by applications, including secrets, connection strings. + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfo ConfigurationInfo { get; set; } + /// + /// Optional, indicate whether to apply configurations on source application. If enable, generate configurations and applied + /// to the source application. Default is enable. If optOut, no configuration change will be made on source. + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType? ConfigurationInfoAction { get; set; } + /// + /// A dictionary of additional configurations to be added. Service will auto generate a set of basic configurations and this + /// property is to full fill more customized configurations + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations ConfigurationInfoAdditionalConfiguration { get; set; } + /// + /// Optional. A dictionary of default key name and customized key name mapping. If not specified, default key name will be + /// used for generate configurations + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys ConfigurationInfoCustomizedKey { get; set; } + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? ConfigurationInfoDeleteOrUpdateBehavior { get; set; } + /// Allow Azure services to access the target service if true. + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType? FirewallRuleAzureService { get; set; } + /// + /// Allow caller client IP to access the target service if true. the property is used when connecting local application to + /// target service. + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType? FirewallRuleCallerClientIP { get; set; } + /// + /// This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client + /// IPs for a given database account. + /// + string[] FirewallRuleIPRange { get; set; } + /// Linker properties + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerProperties Property { get; set; } + /// The provisioning state. + string ProvisioningState { get; set; } + /// The network solution. + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolution PublicNetworkSolution { get; set; } + /// + /// Optional. Indicates public network solution. If enable, enable public network access of target service with best try. + /// Default is enable. If optOut, opt out public network access configuration. + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType? PublicNetworkSolutionAction { get; set; } + /// + /// Indicates whether to clean up previous operation(such as firewall rules) when Linker is updating or deleting + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? PublicNetworkSolutionDeleteOrUpdateBehavior { get; set; } + /// + /// Describe firewall rules of target service to make sure source application could connect to the target. + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRules PublicNetworkSolutionFirewallRule { get; set; } + /// connection scope in source service. + string Scope { get; set; } + /// An option to store secret value in secure place + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretStore SecretStore { get; set; } + /// The key vault id to store secret + string SecretStoreKeyVaultId { get; set; } + /// The key vault secret name to store secret, only valid when storing one secret + string SecretStoreKeyVaultSecretName { get; set; } + /// The target service properties + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase TargetService { get; set; } + /// The VNet solution. + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IVNetSolution VNetSolution { get; set; } + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? VNetSolutionDeleteOrUpdateBehavior { get; set; } + /// Type of VNet solution. + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType? VNetSolutionType { get; set; } + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/LinkerPatch.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/LinkerPatch.json.cs similarity index 94% rename from src/ServiceLinker/generated/api/Models/Api20220501/LinkerPatch.json.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/LinkerPatch.json.cs index 0dcf6e5bc972..0f6450a940d5 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/LinkerPatch.json.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/LinkerPatch.json.cs @@ -3,11 +3,11 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; - /// A linker to be updated. + /// A Linker to be updated. public partial class LinkerPatch { @@ -54,13 +54,13 @@ public partial class LinkerPatch partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatch. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatch. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatch. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatch. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatch FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatch FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new LinkerPatch(json) : null; } @@ -77,7 +77,7 @@ internal LinkerPatch(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Js { return; } - {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.LinkerProperties.FromJson(__jsonProperties) : Property;} + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.LinkerProperties.FromJson(__jsonProperties) : Property;} AfterFromJson(json); } diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/LinkerProperties.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/LinkerProperties.PowerShell.cs new file mode 100644 index 000000000000..78516384b1e7 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/LinkerProperties.PowerShell.cs @@ -0,0 +1,322 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// The properties of the Linker. + [System.ComponentModel.TypeConverter(typeof(LinkerPropertiesTypeConverter))] + public partial class LinkerProperties + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerProperties DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new LinkerProperties(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerProperties DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new LinkerProperties(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerProperties FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal LinkerProperties(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("VNetSolution")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).VNetSolution = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IVNetSolution) content.GetValueForProperty("VNetSolution",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).VNetSolution, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.VNetSolutionTypeConverter.ConvertFrom); + } + if (content.Contains("SecretStore")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).SecretStore = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretStore) content.GetValueForProperty("SecretStore",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).SecretStore, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SecretStoreTypeConverter.ConvertFrom); + } + if (content.Contains("PublicNetworkSolution")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).PublicNetworkSolution = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolution) content.GetValueForProperty("PublicNetworkSolution",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).PublicNetworkSolution, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.PublicNetworkSolutionTypeConverter.ConvertFrom); + } + if (content.Contains("ConfigurationInfo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ConfigurationInfo = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfo) content.GetValueForProperty("ConfigurationInfo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ConfigurationInfo, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationInfoTypeConverter.ConvertFrom); + } + if (content.Contains("TargetService")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).TargetService = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase) content.GetValueForProperty("TargetService",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).TargetService, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.TargetServiceBaseTypeConverter.ConvertFrom); + } + if (content.Contains("AuthInfo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).AuthInfo = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase) content.GetValueForProperty("AuthInfo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).AuthInfo, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AuthInfoBaseTypeConverter.ConvertFrom); + } + if (content.Contains("ClientType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ClientType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType?) content.GetValueForProperty("ClientType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ClientType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType.CreateFrom); + } + if (content.Contains("ProvisioningState")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ProvisioningState, global::System.Convert.ToString); + } + if (content.Contains("Scope")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).Scope = (string) content.GetValueForProperty("Scope",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).Scope, global::System.Convert.ToString); + } + if (content.Contains("VNetSolutionType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).VNetSolutionType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType?) content.GetValueForProperty("VNetSolutionType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).VNetSolutionType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType.CreateFrom); + } + if (content.Contains("PublicNetworkSolutionFirewallRule")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).PublicNetworkSolutionFirewallRule = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRules) content.GetValueForProperty("PublicNetworkSolutionFirewallRule",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).PublicNetworkSolutionFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.FirewallRulesTypeConverter.ConvertFrom); + } + if (content.Contains("ConfigurationInfoCustomizedKey")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ConfigurationInfoCustomizedKey = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys) content.GetValueForProperty("ConfigurationInfoCustomizedKey",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ConfigurationInfoCustomizedKey, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationInfoCustomizedKeysTypeConverter.ConvertFrom); + } + if (content.Contains("ConfigurationInfoAdditionalConfiguration")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ConfigurationInfoAdditionalConfiguration = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations) content.GetValueForProperty("ConfigurationInfoAdditionalConfiguration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ConfigurationInfoAdditionalConfiguration, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationInfoAdditionalConfigurationsTypeConverter.ConvertFrom); + } + if (content.Contains("VNetSolutionDeleteOrUpdateBehavior")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).VNetSolutionDeleteOrUpdateBehavior = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior?) content.GetValueForProperty("VNetSolutionDeleteOrUpdateBehavior",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).VNetSolutionDeleteOrUpdateBehavior, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior.CreateFrom); + } + if (content.Contains("SecretStoreKeyVaultId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).SecretStoreKeyVaultId = (string) content.GetValueForProperty("SecretStoreKeyVaultId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).SecretStoreKeyVaultId, global::System.Convert.ToString); + } + if (content.Contains("SecretStoreKeyVaultSecretName")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).SecretStoreKeyVaultSecretName = (string) content.GetValueForProperty("SecretStoreKeyVaultSecretName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).SecretStoreKeyVaultSecretName, global::System.Convert.ToString); + } + if (content.Contains("PublicNetworkSolutionDeleteOrUpdateBehavior")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).PublicNetworkSolutionDeleteOrUpdateBehavior = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior?) content.GetValueForProperty("PublicNetworkSolutionDeleteOrUpdateBehavior",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).PublicNetworkSolutionDeleteOrUpdateBehavior, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior.CreateFrom); + } + if (content.Contains("PublicNetworkSolutionAction")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).PublicNetworkSolutionAction = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType?) content.GetValueForProperty("PublicNetworkSolutionAction",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).PublicNetworkSolutionAction, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType.CreateFrom); + } + if (content.Contains("FirewallRuleIPRange")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).FirewallRuleIPRange = (string[]) content.GetValueForProperty("FirewallRuleIPRange",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).FirewallRuleIPRange, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + } + if (content.Contains("ConfigurationInfoDeleteOrUpdateBehavior")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ConfigurationInfoDeleteOrUpdateBehavior = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior?) content.GetValueForProperty("ConfigurationInfoDeleteOrUpdateBehavior",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ConfigurationInfoDeleteOrUpdateBehavior, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior.CreateFrom); + } + if (content.Contains("ConfigurationInfoAction")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ConfigurationInfoAction = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType?) content.GetValueForProperty("ConfigurationInfoAction",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ConfigurationInfoAction, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType.CreateFrom); + } + if (content.Contains("FirewallRuleAzureService")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).FirewallRuleAzureService = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType?) content.GetValueForProperty("FirewallRuleAzureService",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).FirewallRuleAzureService, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType.CreateFrom); + } + if (content.Contains("FirewallRuleCallerClientIP")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).FirewallRuleCallerClientIP = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType?) content.GetValueForProperty("FirewallRuleCallerClientIP",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).FirewallRuleCallerClientIP, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType.CreateFrom); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal LinkerProperties(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("VNetSolution")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).VNetSolution = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IVNetSolution) content.GetValueForProperty("VNetSolution",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).VNetSolution, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.VNetSolutionTypeConverter.ConvertFrom); + } + if (content.Contains("SecretStore")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).SecretStore = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretStore) content.GetValueForProperty("SecretStore",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).SecretStore, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SecretStoreTypeConverter.ConvertFrom); + } + if (content.Contains("PublicNetworkSolution")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).PublicNetworkSolution = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolution) content.GetValueForProperty("PublicNetworkSolution",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).PublicNetworkSolution, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.PublicNetworkSolutionTypeConverter.ConvertFrom); + } + if (content.Contains("ConfigurationInfo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ConfigurationInfo = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfo) content.GetValueForProperty("ConfigurationInfo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ConfigurationInfo, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationInfoTypeConverter.ConvertFrom); + } + if (content.Contains("TargetService")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).TargetService = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase) content.GetValueForProperty("TargetService",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).TargetService, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.TargetServiceBaseTypeConverter.ConvertFrom); + } + if (content.Contains("AuthInfo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).AuthInfo = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase) content.GetValueForProperty("AuthInfo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).AuthInfo, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AuthInfoBaseTypeConverter.ConvertFrom); + } + if (content.Contains("ClientType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ClientType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType?) content.GetValueForProperty("ClientType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ClientType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType.CreateFrom); + } + if (content.Contains("ProvisioningState")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ProvisioningState, global::System.Convert.ToString); + } + if (content.Contains("Scope")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).Scope = (string) content.GetValueForProperty("Scope",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).Scope, global::System.Convert.ToString); + } + if (content.Contains("VNetSolutionType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).VNetSolutionType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType?) content.GetValueForProperty("VNetSolutionType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).VNetSolutionType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType.CreateFrom); + } + if (content.Contains("PublicNetworkSolutionFirewallRule")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).PublicNetworkSolutionFirewallRule = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRules) content.GetValueForProperty("PublicNetworkSolutionFirewallRule",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).PublicNetworkSolutionFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.FirewallRulesTypeConverter.ConvertFrom); + } + if (content.Contains("ConfigurationInfoCustomizedKey")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ConfigurationInfoCustomizedKey = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys) content.GetValueForProperty("ConfigurationInfoCustomizedKey",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ConfigurationInfoCustomizedKey, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationInfoCustomizedKeysTypeConverter.ConvertFrom); + } + if (content.Contains("ConfigurationInfoAdditionalConfiguration")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ConfigurationInfoAdditionalConfiguration = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations) content.GetValueForProperty("ConfigurationInfoAdditionalConfiguration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ConfigurationInfoAdditionalConfiguration, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationInfoAdditionalConfigurationsTypeConverter.ConvertFrom); + } + if (content.Contains("VNetSolutionDeleteOrUpdateBehavior")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).VNetSolutionDeleteOrUpdateBehavior = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior?) content.GetValueForProperty("VNetSolutionDeleteOrUpdateBehavior",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).VNetSolutionDeleteOrUpdateBehavior, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior.CreateFrom); + } + if (content.Contains("SecretStoreKeyVaultId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).SecretStoreKeyVaultId = (string) content.GetValueForProperty("SecretStoreKeyVaultId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).SecretStoreKeyVaultId, global::System.Convert.ToString); + } + if (content.Contains("SecretStoreKeyVaultSecretName")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).SecretStoreKeyVaultSecretName = (string) content.GetValueForProperty("SecretStoreKeyVaultSecretName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).SecretStoreKeyVaultSecretName, global::System.Convert.ToString); + } + if (content.Contains("PublicNetworkSolutionDeleteOrUpdateBehavior")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).PublicNetworkSolutionDeleteOrUpdateBehavior = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior?) content.GetValueForProperty("PublicNetworkSolutionDeleteOrUpdateBehavior",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).PublicNetworkSolutionDeleteOrUpdateBehavior, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior.CreateFrom); + } + if (content.Contains("PublicNetworkSolutionAction")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).PublicNetworkSolutionAction = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType?) content.GetValueForProperty("PublicNetworkSolutionAction",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).PublicNetworkSolutionAction, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType.CreateFrom); + } + if (content.Contains("FirewallRuleIPRange")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).FirewallRuleIPRange = (string[]) content.GetValueForProperty("FirewallRuleIPRange",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).FirewallRuleIPRange, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + } + if (content.Contains("ConfigurationInfoDeleteOrUpdateBehavior")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ConfigurationInfoDeleteOrUpdateBehavior = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior?) content.GetValueForProperty("ConfigurationInfoDeleteOrUpdateBehavior",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ConfigurationInfoDeleteOrUpdateBehavior, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior.CreateFrom); + } + if (content.Contains("ConfigurationInfoAction")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ConfigurationInfoAction = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType?) content.GetValueForProperty("ConfigurationInfoAction",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).ConfigurationInfoAction, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType.CreateFrom); + } + if (content.Contains("FirewallRuleAzureService")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).FirewallRuleAzureService = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType?) content.GetValueForProperty("FirewallRuleAzureService",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).FirewallRuleAzureService, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType.CreateFrom); + } + if (content.Contains("FirewallRuleCallerClientIP")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).FirewallRuleCallerClientIP = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType?) content.GetValueForProperty("FirewallRuleCallerClientIP",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)this).FirewallRuleCallerClientIP, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType.CreateFrom); + } + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// The properties of the Linker. + [System.ComponentModel.TypeConverter(typeof(LinkerPropertiesTypeConverter))] + public partial interface ILinkerProperties + + { + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/LinkerProperties.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/LinkerProperties.TypeConverter.cs similarity index 82% rename from src/ServiceLinker/generated/api/Models/Api20220501/LinkerProperties.TypeConverter.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/LinkerProperties.TypeConverter.cs index 95741ad49e6e..d1d193ff8846 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/LinkerProperties.TypeConverter.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/LinkerProperties.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -14,19 +14,20 @@ public partial class LinkerPropertiesTypeConverter : global::System.Management.A { /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); /// - /// Determines if the converter can convert the parameter to the . + /// Determines if the converter can convert the parameter to the + /// type. /// /// the instance to check if it can be converted to the type. @@ -74,19 +75,20 @@ public static bool CanConvertFrom(dynamic sourceValue) } /// - /// Determines if the parameter can be converted to the parameter + /// Determines if the parameter can be converted to the + /// parameter /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false + /// true if the converter can convert the parameter to the parameter, otherwise false /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to @@ -98,21 +100,20 @@ public static bool CanConvertFrom(dynamic sourceValue) public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); /// - /// Converts the parameter to the parameter using and + /// Converts the parameter into an instance of /// /// the value to convert into an instance of . /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerProperties ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerProperties ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerProperties).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerProperties).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/LinkerProperties.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/LinkerProperties.cs new file mode 100644 index 000000000000..5841bf26b7b1 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/LinkerProperties.cs @@ -0,0 +1,435 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// The properties of the Linker. + public partial class LinkerProperties : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerProperties, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal + { + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase _authInfo; + + /// The authentication type. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase AuthInfo { get => (this._authInfo = this._authInfo ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AuthInfoBase()); set => this._authInfo = value; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType? _clientType; + + /// The application client type + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType? ClientType { get => this._clientType; set => this._clientType = value; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfo _configurationInfo; + + /// + /// The connection information consumed by applications, including secrets, connection strings. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + internal Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfo ConfigurationInfo { get => (this._configurationInfo = this._configurationInfo ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationInfo()); set => this._configurationInfo = value; } + + /// + /// Optional, indicate whether to apply configurations on source application. If enable, generate configurations and applied + /// to the source application. Default is enable. If optOut, no configuration change will be made on source. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType? ConfigurationInfoAction { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoInternal)ConfigurationInfo).Action; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoInternal)ConfigurationInfo).Action = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType)""); } + + /// + /// A dictionary of additional configurations to be added. Service will auto generate a set of basic configurations and this + /// property is to full fill more customized configurations + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations ConfigurationInfoAdditionalConfiguration { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoInternal)ConfigurationInfo).AdditionalConfiguration; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoInternal)ConfigurationInfo).AdditionalConfiguration = value ?? null /* model class */; } + + /// + /// Optional. A dictionary of default key name and customized key name mapping. If not specified, default key name will be + /// used for generate configurations + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys ConfigurationInfoCustomizedKey { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoInternal)ConfigurationInfo).CustomizedKey; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoInternal)ConfigurationInfo).CustomizedKey = value ?? null /* model class */; } + + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? ConfigurationInfoDeleteOrUpdateBehavior { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoInternal)ConfigurationInfo).DeleteOrUpdateBehavior; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoInternal)ConfigurationInfo).DeleteOrUpdateBehavior = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior)""); } + + /// Allow Azure services to access the target service if true. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType? FirewallRuleAzureService { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolutionInternal)PublicNetworkSolution).FirewallRuleAzureService; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolutionInternal)PublicNetworkSolution).FirewallRuleAzureService = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType)""); } + + /// + /// Allow caller client IP to access the target service if true. the property is used when connecting local application to + /// target service. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType? FirewallRuleCallerClientIP { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolutionInternal)PublicNetworkSolution).FirewallRuleCallerClientIP; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolutionInternal)PublicNetworkSolution).FirewallRuleCallerClientIP = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType)""); } + + /// + /// This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client + /// IPs for a given database account. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public string[] FirewallRuleIPRange { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolutionInternal)PublicNetworkSolution).FirewallRuleIPRange; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolutionInternal)PublicNetworkSolution).FirewallRuleIPRange = value ?? null /* arrayOf */; } + + /// Internal Acessors for ConfigurationInfo + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfo Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal.ConfigurationInfo { get => (this._configurationInfo = this._configurationInfo ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationInfo()); set { {_configurationInfo = value;} } } + + /// Internal Acessors for ProvisioningState + string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal.ProvisioningState { get => this._provisioningState; set { {_provisioningState = value;} } } + + /// Internal Acessors for PublicNetworkSolution + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolution Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal.PublicNetworkSolution { get => (this._publicNetworkSolution = this._publicNetworkSolution ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.PublicNetworkSolution()); set { {_publicNetworkSolution = value;} } } + + /// Internal Acessors for PublicNetworkSolutionFirewallRule + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRules Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal.PublicNetworkSolutionFirewallRule { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolutionInternal)PublicNetworkSolution).FirewallRule; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolutionInternal)PublicNetworkSolution).FirewallRule = value; } + + /// Internal Acessors for SecretStore + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretStore Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal.SecretStore { get => (this._secretStore = this._secretStore ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SecretStore()); set { {_secretStore = value;} } } + + /// Internal Acessors for VNetSolution + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IVNetSolution Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal.VNetSolution { get => (this._vNetSolution = this._vNetSolution ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.VNetSolution()); set { {_vNetSolution = value;} } } + + /// Backing field for property. + private string _provisioningState; + + /// The provisioning state. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public string ProvisioningState { get => this._provisioningState; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolution _publicNetworkSolution; + + /// The network solution. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + internal Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolution PublicNetworkSolution { get => (this._publicNetworkSolution = this._publicNetworkSolution ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.PublicNetworkSolution()); set => this._publicNetworkSolution = value; } + + /// + /// Optional. Indicates public network solution. If enable, enable public network access of target service with best try. + /// Default is enable. If optOut, opt out public network access configuration. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType? PublicNetworkSolutionAction { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolutionInternal)PublicNetworkSolution).Action; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolutionInternal)PublicNetworkSolution).Action = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType)""); } + + /// + /// Indicates whether to clean up previous operation(such as firewall rules) when Linker is updating or deleting + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? PublicNetworkSolutionDeleteOrUpdateBehavior { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolutionInternal)PublicNetworkSolution).DeleteOrUpdateBehavior; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolutionInternal)PublicNetworkSolution).DeleteOrUpdateBehavior = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior)""); } + + /// Backing field for property. + private string _scope; + + /// connection scope in source service. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public string Scope { get => this._scope; set => this._scope = value; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretStore _secretStore; + + /// An option to store secret value in secure place + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + internal Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretStore SecretStore { get => (this._secretStore = this._secretStore ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SecretStore()); set => this._secretStore = value; } + + /// The key vault id to store secret + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public string SecretStoreKeyVaultId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretStoreInternal)SecretStore).KeyVaultId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretStoreInternal)SecretStore).KeyVaultId = value ?? null; } + + /// The key vault secret name to store secret, only valid when storing one secret + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public string SecretStoreKeyVaultSecretName { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretStoreInternal)SecretStore).KeyVaultSecretName; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretStoreInternal)SecretStore).KeyVaultSecretName = value ?? null; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase _targetService; + + /// The target service properties + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase TargetService { get => (this._targetService = this._targetService ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.TargetServiceBase()); set => this._targetService = value; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IVNetSolution _vNetSolution; + + /// The VNet solution. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + internal Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IVNetSolution VNetSolution { get => (this._vNetSolution = this._vNetSolution ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.VNetSolution()); set => this._vNetSolution = value; } + + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? VNetSolutionDeleteOrUpdateBehavior { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IVNetSolutionInternal)VNetSolution).DeleteOrUpdateBehavior; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IVNetSolutionInternal)VNetSolution).DeleteOrUpdateBehavior = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior)""); } + + /// Type of VNet solution. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType? VNetSolutionType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IVNetSolutionInternal)VNetSolution).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IVNetSolutionInternal)VNetSolution).Type = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType)""); } + + /// Creates an new instance. + public LinkerProperties() + { + + } + } + /// The properties of the Linker. + public partial interface ILinkerProperties : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable + { + /// The authentication type. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The authentication type.", + SerializedName = @"authInfo", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase AuthInfo { get; set; } + /// The application client type + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The application client type", + SerializedName = @"clientType", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType? ClientType { get; set; } + /// + /// Optional, indicate whether to apply configurations on source application. If enable, generate configurations and applied + /// to the source application. Default is enable. If optOut, no configuration change will be made on source. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Optional, indicate whether to apply configurations on source application. If enable, generate configurations and applied to the source application. Default is enable. If optOut, no configuration change will be made on source.", + SerializedName = @"action", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType? ConfigurationInfoAction { get; set; } + /// + /// A dictionary of additional configurations to be added. Service will auto generate a set of basic configurations and this + /// property is to full fill more customized configurations + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"A dictionary of additional configurations to be added. Service will auto generate a set of basic configurations and this property is to full fill more customized configurations", + SerializedName = @"additionalConfigurations", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations ConfigurationInfoAdditionalConfiguration { get; set; } + /// + /// Optional. A dictionary of default key name and customized key name mapping. If not specified, default key name will be + /// used for generate configurations + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Optional. A dictionary of default key name and customized key name mapping. If not specified, default key name will be used for generate configurations", + SerializedName = @"customizedKeys", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys ConfigurationInfoCustomizedKey { get; set; } + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Indicates whether to clean up previous operation when Linker is updating or deleting", + SerializedName = @"deleteOrUpdateBehavior", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? ConfigurationInfoDeleteOrUpdateBehavior { get; set; } + /// Allow Azure services to access the target service if true. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Allow Azure services to access the target service if true.", + SerializedName = @"azureServices", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType? FirewallRuleAzureService { get; set; } + /// + /// Allow caller client IP to access the target service if true. the property is used when connecting local application to + /// target service. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Allow caller client IP to access the target service if true. the property is used when connecting local application to target service.", + SerializedName = @"callerClientIP", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType? FirewallRuleCallerClientIP { get; set; } + /// + /// This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client + /// IPs for a given database account. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client IPs for a given database account.", + SerializedName = @"ipRanges", + PossibleTypes = new [] { typeof(string) })] + string[] FirewallRuleIPRange { get; set; } + /// The provisioning state. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The provisioning state. ", + SerializedName = @"provisioningState", + PossibleTypes = new [] { typeof(string) })] + string ProvisioningState { get; } + /// + /// Optional. Indicates public network solution. If enable, enable public network access of target service with best try. + /// Default is enable. If optOut, opt out public network access configuration. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Optional. Indicates public network solution. If enable, enable public network access of target service with best try. Default is enable. If optOut, opt out public network access configuration.", + SerializedName = @"action", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType? PublicNetworkSolutionAction { get; set; } + /// + /// Indicates whether to clean up previous operation(such as firewall rules) when Linker is updating or deleting + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Indicates whether to clean up previous operation(such as firewall rules) when Linker is updating or deleting", + SerializedName = @"deleteOrUpdateBehavior", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? PublicNetworkSolutionDeleteOrUpdateBehavior { get; set; } + /// connection scope in source service. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"connection scope in source service.", + SerializedName = @"scope", + PossibleTypes = new [] { typeof(string) })] + string Scope { get; set; } + /// The key vault id to store secret + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The key vault id to store secret", + SerializedName = @"keyVaultId", + PossibleTypes = new [] { typeof(string) })] + string SecretStoreKeyVaultId { get; set; } + /// The key vault secret name to store secret, only valid when storing one secret + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The key vault secret name to store secret, only valid when storing one secret", + SerializedName = @"keyVaultSecretName", + PossibleTypes = new [] { typeof(string) })] + string SecretStoreKeyVaultSecretName { get; set; } + /// The target service properties + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The target service properties", + SerializedName = @"targetService", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase TargetService { get; set; } + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Indicates whether to clean up previous operation when Linker is updating or deleting", + SerializedName = @"deleteOrUpdateBehavior", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? VNetSolutionDeleteOrUpdateBehavior { get; set; } + /// Type of VNet solution. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Type of VNet solution.", + SerializedName = @"type", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType? VNetSolutionType { get; set; } + + } + /// The properties of the Linker. + internal partial interface ILinkerPropertiesInternal + + { + /// The authentication type. + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase AuthInfo { get; set; } + /// The application client type + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType? ClientType { get; set; } + /// + /// The connection information consumed by applications, including secrets, connection strings. + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfo ConfigurationInfo { get; set; } + /// + /// Optional, indicate whether to apply configurations on source application. If enable, generate configurations and applied + /// to the source application. Default is enable. If optOut, no configuration change will be made on source. + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType? ConfigurationInfoAction { get; set; } + /// + /// A dictionary of additional configurations to be added. Service will auto generate a set of basic configurations and this + /// property is to full fill more customized configurations + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations ConfigurationInfoAdditionalConfiguration { get; set; } + /// + /// Optional. A dictionary of default key name and customized key name mapping. If not specified, default key name will be + /// used for generate configurations + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys ConfigurationInfoCustomizedKey { get; set; } + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? ConfigurationInfoDeleteOrUpdateBehavior { get; set; } + /// Allow Azure services to access the target service if true. + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType? FirewallRuleAzureService { get; set; } + /// + /// Allow caller client IP to access the target service if true. the property is used when connecting local application to + /// target service. + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType? FirewallRuleCallerClientIP { get; set; } + /// + /// This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client + /// IPs for a given database account. + /// + string[] FirewallRuleIPRange { get; set; } + /// The provisioning state. + string ProvisioningState { get; set; } + /// The network solution. + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolution PublicNetworkSolution { get; set; } + /// + /// Optional. Indicates public network solution. If enable, enable public network access of target service with best try. + /// Default is enable. If optOut, opt out public network access configuration. + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType? PublicNetworkSolutionAction { get; set; } + /// + /// Indicates whether to clean up previous operation(such as firewall rules) when Linker is updating or deleting + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? PublicNetworkSolutionDeleteOrUpdateBehavior { get; set; } + /// + /// Describe firewall rules of target service to make sure source application could connect to the target. + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRules PublicNetworkSolutionFirewallRule { get; set; } + /// connection scope in source service. + string Scope { get; set; } + /// An option to store secret value in secure place + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretStore SecretStore { get; set; } + /// The key vault id to store secret + string SecretStoreKeyVaultId { get; set; } + /// The key vault secret name to store secret, only valid when storing one secret + string SecretStoreKeyVaultSecretName { get; set; } + /// The target service properties + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase TargetService { get; set; } + /// The VNet solution. + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IVNetSolution VNetSolution { get; set; } + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? VNetSolutionDeleteOrUpdateBehavior { get; set; } + /// Type of VNet solution. + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType? VNetSolutionType { get; set; } + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/LinkerProperties.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/LinkerProperties.json.cs similarity index 83% rename from src/ServiceLinker/generated/api/Models/Api20220501/LinkerProperties.json.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/LinkerProperties.json.cs index 9b4f8215d91a..f2f02e6e1216 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/LinkerProperties.json.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/LinkerProperties.json.cs @@ -3,11 +3,11 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; - /// The properties of the linker. + /// The properties of the Linker. public partial class LinkerProperties { @@ -54,13 +54,13 @@ public partial class LinkerProperties partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerProperties. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerProperties. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerProperties. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerProperties. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerProperties FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new LinkerProperties(json) : null; } @@ -77,10 +77,12 @@ internal LinkerProperties(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runti { return; } - {_vNetSolution = If( json?.PropertyT("vNetSolution"), out var __jsonVNetSolution) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.VNetSolution.FromJson(__jsonVNetSolution) : VNetSolution;} - {_secretStore = If( json?.PropertyT("secretStore"), out var __jsonSecretStore) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SecretStore.FromJson(__jsonSecretStore) : SecretStore;} - {_targetService = If( json?.PropertyT("targetService"), out var __jsonTargetService) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.TargetServiceBase.FromJson(__jsonTargetService) : TargetService;} - {_authInfo = If( json?.PropertyT("authInfo"), out var __jsonAuthInfo) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.AuthInfoBase.FromJson(__jsonAuthInfo) : AuthInfo;} + {_vNetSolution = If( json?.PropertyT("vNetSolution"), out var __jsonVNetSolution) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.VNetSolution.FromJson(__jsonVNetSolution) : VNetSolution;} + {_secretStore = If( json?.PropertyT("secretStore"), out var __jsonSecretStore) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SecretStore.FromJson(__jsonSecretStore) : SecretStore;} + {_publicNetworkSolution = If( json?.PropertyT("publicNetworkSolution"), out var __jsonPublicNetworkSolution) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.PublicNetworkSolution.FromJson(__jsonPublicNetworkSolution) : PublicNetworkSolution;} + {_configurationInfo = If( json?.PropertyT("configurationInfo"), out var __jsonConfigurationInfo) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationInfo.FromJson(__jsonConfigurationInfo) : ConfigurationInfo;} + {_targetService = If( json?.PropertyT("targetService"), out var __jsonTargetService) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.TargetServiceBase.FromJson(__jsonTargetService) : TargetService;} + {_authInfo = If( json?.PropertyT("authInfo"), out var __jsonAuthInfo) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AuthInfoBase.FromJson(__jsonAuthInfo) : AuthInfo;} {_clientType = If( json?.PropertyT("clientType"), out var __jsonClientType) ? (string)__jsonClientType : (string)ClientType;} {_provisioningState = If( json?.PropertyT("provisioningState"), out var __jsonProvisioningState) ? (string)__jsonProvisioningState : (string)ProvisioningState;} {_scope = If( json?.PropertyT("scope"), out var __jsonScope) ? (string)__jsonScope : (string)Scope;} @@ -108,6 +110,8 @@ public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode To } AddIf( null != this._vNetSolution ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) this._vNetSolution.ToJson(null,serializationMode) : null, "vNetSolution" ,container.Add ); AddIf( null != this._secretStore ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) this._secretStore.ToJson(null,serializationMode) : null, "secretStore" ,container.Add ); + AddIf( null != this._publicNetworkSolution ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) this._publicNetworkSolution.ToJson(null,serializationMode) : null, "publicNetworkSolution" ,container.Add ); + AddIf( null != this._configurationInfo ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) this._configurationInfo.ToJson(null,serializationMode) : null, "configurationInfo" ,container.Add ); AddIf( null != this._targetService ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) this._targetService.ToJson(null,serializationMode) : null, "targetService" ,container.Add ); AddIf( null != this._authInfo ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) this._authInfo.ToJson(null,serializationMode) : null, "authInfo" ,container.Add ); AddIf( null != (((object)this._clientType)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._clientType.ToString()) : null, "clientType" ,container.Add ); diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/LinkerResource.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/LinkerResource.PowerShell.cs new file mode 100644 index 000000000000..a72a4e02dad1 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/LinkerResource.PowerShell.cs @@ -0,0 +1,410 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// Linker of source and target resource + [System.ComponentModel.TypeConverter(typeof(LinkerResourceTypeConverter))] + public partial class LinkerResource + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new LinkerResource(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new LinkerResource(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal LinkerResource(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Property")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.LinkerPropertiesTypeConverter.ConvertFrom); + } + if (content.Contains("SystemDataCreatedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemDataCreatedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemData")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.SystemDataTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Type, global::System.Convert.ToString); + } + if (content.Contains("SecretStore")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).SecretStore = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretStore) content.GetValueForProperty("SecretStore",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).SecretStore, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SecretStoreTypeConverter.ConvertFrom); + } + if (content.Contains("ConfigurationInfo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).ConfigurationInfo = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfo) content.GetValueForProperty("ConfigurationInfo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).ConfigurationInfo, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationInfoTypeConverter.ConvertFrom); + } + if (content.Contains("ClientType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).ClientType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType?) content.GetValueForProperty("ClientType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).ClientType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType.CreateFrom); + } + if (content.Contains("VNetSolution")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).VNetSolution = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IVNetSolution) content.GetValueForProperty("VNetSolution",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).VNetSolution, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.VNetSolutionTypeConverter.ConvertFrom); + } + if (content.Contains("PublicNetworkSolution")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).PublicNetworkSolution = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolution) content.GetValueForProperty("PublicNetworkSolution",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).PublicNetworkSolution, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.PublicNetworkSolutionTypeConverter.ConvertFrom); + } + if (content.Contains("TargetService")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).TargetService = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase) content.GetValueForProperty("TargetService",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).TargetService, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.TargetServiceBaseTypeConverter.ConvertFrom); + } + if (content.Contains("AuthInfo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).AuthInfo = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase) content.GetValueForProperty("AuthInfo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).AuthInfo, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AuthInfoBaseTypeConverter.ConvertFrom); + } + if (content.Contains("ProvisioningState")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).ProvisioningState, global::System.Convert.ToString); + } + if (content.Contains("Scope")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).Scope = (string) content.GetValueForProperty("Scope",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).Scope, global::System.Convert.ToString); + } + if (content.Contains("VNetSolutionType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).VNetSolutionType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType?) content.GetValueForProperty("VNetSolutionType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).VNetSolutionType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType.CreateFrom); + } + if (content.Contains("PublicNetworkSolutionFirewallRule")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).PublicNetworkSolutionFirewallRule = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRules) content.GetValueForProperty("PublicNetworkSolutionFirewallRule",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).PublicNetworkSolutionFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.FirewallRulesTypeConverter.ConvertFrom); + } + if (content.Contains("ConfigurationInfoCustomizedKey")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).ConfigurationInfoCustomizedKey = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys) content.GetValueForProperty("ConfigurationInfoCustomizedKey",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).ConfigurationInfoCustomizedKey, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationInfoCustomizedKeysTypeConverter.ConvertFrom); + } + if (content.Contains("ConfigurationInfoAdditionalConfiguration")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).ConfigurationInfoAdditionalConfiguration = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations) content.GetValueForProperty("ConfigurationInfoAdditionalConfiguration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).ConfigurationInfoAdditionalConfiguration, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationInfoAdditionalConfigurationsTypeConverter.ConvertFrom); + } + if (content.Contains("VNetSolutionDeleteOrUpdateBehavior")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).VNetSolutionDeleteOrUpdateBehavior = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior?) content.GetValueForProperty("VNetSolutionDeleteOrUpdateBehavior",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).VNetSolutionDeleteOrUpdateBehavior, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior.CreateFrom); + } + if (content.Contains("SecretStoreKeyVaultId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).SecretStoreKeyVaultId = (string) content.GetValueForProperty("SecretStoreKeyVaultId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).SecretStoreKeyVaultId, global::System.Convert.ToString); + } + if (content.Contains("SecretStoreKeyVaultSecretName")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).SecretStoreKeyVaultSecretName = (string) content.GetValueForProperty("SecretStoreKeyVaultSecretName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).SecretStoreKeyVaultSecretName, global::System.Convert.ToString); + } + if (content.Contains("PublicNetworkSolutionDeleteOrUpdateBehavior")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).PublicNetworkSolutionDeleteOrUpdateBehavior = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior?) content.GetValueForProperty("PublicNetworkSolutionDeleteOrUpdateBehavior",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).PublicNetworkSolutionDeleteOrUpdateBehavior, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior.CreateFrom); + } + if (content.Contains("PublicNetworkSolutionAction")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).PublicNetworkSolutionAction = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType?) content.GetValueForProperty("PublicNetworkSolutionAction",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).PublicNetworkSolutionAction, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType.CreateFrom); + } + if (content.Contains("FirewallRuleIPRange")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).FirewallRuleIPRange = (string[]) content.GetValueForProperty("FirewallRuleIPRange",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).FirewallRuleIPRange, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + } + if (content.Contains("ConfigurationInfoDeleteOrUpdateBehavior")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).ConfigurationInfoDeleteOrUpdateBehavior = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior?) content.GetValueForProperty("ConfigurationInfoDeleteOrUpdateBehavior",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).ConfigurationInfoDeleteOrUpdateBehavior, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior.CreateFrom); + } + if (content.Contains("ConfigurationInfoAction")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).ConfigurationInfoAction = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType?) content.GetValueForProperty("ConfigurationInfoAction",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).ConfigurationInfoAction, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType.CreateFrom); + } + if (content.Contains("FirewallRuleAzureService")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).FirewallRuleAzureService = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType?) content.GetValueForProperty("FirewallRuleAzureService",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).FirewallRuleAzureService, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType.CreateFrom); + } + if (content.Contains("FirewallRuleCallerClientIP")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).FirewallRuleCallerClientIP = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType?) content.GetValueForProperty("FirewallRuleCallerClientIP",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).FirewallRuleCallerClientIP, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType.CreateFrom); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal LinkerResource(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Property")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerProperties) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.LinkerPropertiesTypeConverter.ConvertFrom); + } + if (content.Contains("SystemDataCreatedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemDataCreatedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemData")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.SystemDataTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Type, global::System.Convert.ToString); + } + if (content.Contains("SecretStore")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).SecretStore = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretStore) content.GetValueForProperty("SecretStore",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).SecretStore, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SecretStoreTypeConverter.ConvertFrom); + } + if (content.Contains("ConfigurationInfo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).ConfigurationInfo = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfo) content.GetValueForProperty("ConfigurationInfo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).ConfigurationInfo, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationInfoTypeConverter.ConvertFrom); + } + if (content.Contains("ClientType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).ClientType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType?) content.GetValueForProperty("ClientType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).ClientType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType.CreateFrom); + } + if (content.Contains("VNetSolution")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).VNetSolution = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IVNetSolution) content.GetValueForProperty("VNetSolution",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).VNetSolution, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.VNetSolutionTypeConverter.ConvertFrom); + } + if (content.Contains("PublicNetworkSolution")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).PublicNetworkSolution = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolution) content.GetValueForProperty("PublicNetworkSolution",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).PublicNetworkSolution, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.PublicNetworkSolutionTypeConverter.ConvertFrom); + } + if (content.Contains("TargetService")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).TargetService = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase) content.GetValueForProperty("TargetService",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).TargetService, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.TargetServiceBaseTypeConverter.ConvertFrom); + } + if (content.Contains("AuthInfo")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).AuthInfo = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase) content.GetValueForProperty("AuthInfo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).AuthInfo, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AuthInfoBaseTypeConverter.ConvertFrom); + } + if (content.Contains("ProvisioningState")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).ProvisioningState = (string) content.GetValueForProperty("ProvisioningState",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).ProvisioningState, global::System.Convert.ToString); + } + if (content.Contains("Scope")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).Scope = (string) content.GetValueForProperty("Scope",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).Scope, global::System.Convert.ToString); + } + if (content.Contains("VNetSolutionType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).VNetSolutionType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType?) content.GetValueForProperty("VNetSolutionType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).VNetSolutionType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType.CreateFrom); + } + if (content.Contains("PublicNetworkSolutionFirewallRule")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).PublicNetworkSolutionFirewallRule = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRules) content.GetValueForProperty("PublicNetworkSolutionFirewallRule",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).PublicNetworkSolutionFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.FirewallRulesTypeConverter.ConvertFrom); + } + if (content.Contains("ConfigurationInfoCustomizedKey")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).ConfigurationInfoCustomizedKey = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys) content.GetValueForProperty("ConfigurationInfoCustomizedKey",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).ConfigurationInfoCustomizedKey, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationInfoCustomizedKeysTypeConverter.ConvertFrom); + } + if (content.Contains("ConfigurationInfoAdditionalConfiguration")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).ConfigurationInfoAdditionalConfiguration = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations) content.GetValueForProperty("ConfigurationInfoAdditionalConfiguration",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).ConfigurationInfoAdditionalConfiguration, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationInfoAdditionalConfigurationsTypeConverter.ConvertFrom); + } + if (content.Contains("VNetSolutionDeleteOrUpdateBehavior")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).VNetSolutionDeleteOrUpdateBehavior = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior?) content.GetValueForProperty("VNetSolutionDeleteOrUpdateBehavior",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).VNetSolutionDeleteOrUpdateBehavior, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior.CreateFrom); + } + if (content.Contains("SecretStoreKeyVaultId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).SecretStoreKeyVaultId = (string) content.GetValueForProperty("SecretStoreKeyVaultId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).SecretStoreKeyVaultId, global::System.Convert.ToString); + } + if (content.Contains("SecretStoreKeyVaultSecretName")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).SecretStoreKeyVaultSecretName = (string) content.GetValueForProperty("SecretStoreKeyVaultSecretName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).SecretStoreKeyVaultSecretName, global::System.Convert.ToString); + } + if (content.Contains("PublicNetworkSolutionDeleteOrUpdateBehavior")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).PublicNetworkSolutionDeleteOrUpdateBehavior = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior?) content.GetValueForProperty("PublicNetworkSolutionDeleteOrUpdateBehavior",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).PublicNetworkSolutionDeleteOrUpdateBehavior, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior.CreateFrom); + } + if (content.Contains("PublicNetworkSolutionAction")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).PublicNetworkSolutionAction = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType?) content.GetValueForProperty("PublicNetworkSolutionAction",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).PublicNetworkSolutionAction, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType.CreateFrom); + } + if (content.Contains("FirewallRuleIPRange")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).FirewallRuleIPRange = (string[]) content.GetValueForProperty("FirewallRuleIPRange",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).FirewallRuleIPRange, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + } + if (content.Contains("ConfigurationInfoDeleteOrUpdateBehavior")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).ConfigurationInfoDeleteOrUpdateBehavior = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior?) content.GetValueForProperty("ConfigurationInfoDeleteOrUpdateBehavior",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).ConfigurationInfoDeleteOrUpdateBehavior, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior.CreateFrom); + } + if (content.Contains("ConfigurationInfoAction")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).ConfigurationInfoAction = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType?) content.GetValueForProperty("ConfigurationInfoAction",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).ConfigurationInfoAction, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType.CreateFrom); + } + if (content.Contains("FirewallRuleAzureService")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).FirewallRuleAzureService = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType?) content.GetValueForProperty("FirewallRuleAzureService",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).FirewallRuleAzureService, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType.CreateFrom); + } + if (content.Contains("FirewallRuleCallerClientIP")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).FirewallRuleCallerClientIP = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType?) content.GetValueForProperty("FirewallRuleCallerClientIP",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal)this).FirewallRuleCallerClientIP, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType.CreateFrom); + } + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// Linker of source and target resource + [System.ComponentModel.TypeConverter(typeof(LinkerResourceTypeConverter))] + public partial interface ILinkerResource + + { + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/LinkerResource.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/LinkerResource.TypeConverter.cs similarity index 82% rename from src/ServiceLinker/generated/api/Models/Api20220501/LinkerResource.TypeConverter.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/LinkerResource.TypeConverter.cs index 65f0ab14c4d8..202c44e63e01 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/LinkerResource.TypeConverter.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/LinkerResource.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -14,19 +14,20 @@ public partial class LinkerResourceTypeConverter : global::System.Management.Aut { /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); /// - /// Determines if the converter can convert the parameter to the . + /// Determines if the converter can convert the parameter to the + /// type. /// /// the instance to check if it can be converted to the type. @@ -74,19 +75,20 @@ public static bool CanConvertFrom(dynamic sourceValue) } /// - /// Determines if the parameter can be converted to the parameter + /// Determines if the parameter can be converted to the + /// parameter /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false + /// true if the converter can convert the parameter to the parameter, otherwise false /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to @@ -98,21 +100,20 @@ public static bool CanConvertFrom(dynamic sourceValue) public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); /// - /// Converts the parameter to the parameter using and + /// Converts the parameter into an instance of /// /// the value to convert into an instance of . /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/LinkerResource.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/LinkerResource.cs new file mode 100644 index 000000000000..00d860ad63e3 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/LinkerResource.cs @@ -0,0 +1,479 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// Linker of source and target resource + public partial class LinkerResource : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IValidates + { + /// + /// Backing field for Inherited model + /// + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResource __resource = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.Resource(); + + /// The authentication type. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase AuthInfo { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).AuthInfo; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).AuthInfo = value ?? null /* model class */; } + + /// The application client type + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType? ClientType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).ClientType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).ClientType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType)""); } + + /// + /// Optional, indicate whether to apply configurations on source application. If enable, generate configurations and applied + /// to the source application. Default is enable. If optOut, no configuration change will be made on source. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType? ConfigurationInfoAction { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).ConfigurationInfoAction; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).ConfigurationInfoAction = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType)""); } + + /// + /// A dictionary of additional configurations to be added. Service will auto generate a set of basic configurations and this + /// property is to full fill more customized configurations + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations ConfigurationInfoAdditionalConfiguration { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).ConfigurationInfoAdditionalConfiguration; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).ConfigurationInfoAdditionalConfiguration = value ?? null /* model class */; } + + /// + /// Optional. A dictionary of default key name and customized key name mapping. If not specified, default key name will be + /// used for generate configurations + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys ConfigurationInfoCustomizedKey { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).ConfigurationInfoCustomizedKey; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).ConfigurationInfoCustomizedKey = value ?? null /* model class */; } + + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? ConfigurationInfoDeleteOrUpdateBehavior { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).ConfigurationInfoDeleteOrUpdateBehavior; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).ConfigurationInfoDeleteOrUpdateBehavior = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior)""); } + + /// Allow Azure services to access the target service if true. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType? FirewallRuleAzureService { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).FirewallRuleAzureService; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).FirewallRuleAzureService = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType)""); } + + /// + /// Allow caller client IP to access the target service if true. the property is used when connecting local application to + /// target service. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType? FirewallRuleCallerClientIP { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).FirewallRuleCallerClientIP; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).FirewallRuleCallerClientIP = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType)""); } + + /// + /// This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client + /// IPs for a given database account. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public string[] FirewallRuleIPRange { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).FirewallRuleIPRange; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).FirewallRuleIPRange = value ?? null /* arrayOf */; } + + /// + /// Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).Id; } + + /// Internal Acessors for ConfigurationInfo + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfo Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal.ConfigurationInfo { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).ConfigurationInfo; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).ConfigurationInfo = value; } + + /// Internal Acessors for Property + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerProperties Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.LinkerProperties()); set { {_property = value;} } } + + /// Internal Acessors for ProvisioningState + string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal.ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).ProvisioningState; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).ProvisioningState = value; } + + /// Internal Acessors for PublicNetworkSolution + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolution Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal.PublicNetworkSolution { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).PublicNetworkSolution; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).PublicNetworkSolution = value; } + + /// Internal Acessors for PublicNetworkSolutionFirewallRule + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRules Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal.PublicNetworkSolutionFirewallRule { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).PublicNetworkSolutionFirewallRule; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).PublicNetworkSolutionFirewallRule = value; } + + /// Internal Acessors for SecretStore + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretStore Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal.SecretStore { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).SecretStore; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).SecretStore = value; } + + /// Internal Acessors for VNetSolution + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IVNetSolution Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResourceInternal.VNetSolution { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).VNetSolution; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).VNetSolution = value; } + + /// Internal Acessors for Id + string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).Id = value; } + + /// Internal Acessors for Name + string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).Name = value; } + + /// Internal Acessors for SystemData + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemData Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal.SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).SystemData; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).SystemData = value; } + + /// Internal Acessors for Type + string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).Type = value; } + + /// The name of the resource + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).Name; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerProperties _property; + + /// The properties of the Linker. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + internal Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerProperties Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.LinkerProperties()); set => this._property = value; } + + /// The provisioning state. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public string ProvisioningState { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).ProvisioningState; } + + /// + /// Optional. Indicates public network solution. If enable, enable public network access of target service with best try. + /// Default is enable. If optOut, opt out public network access configuration. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType? PublicNetworkSolutionAction { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).PublicNetworkSolutionAction; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).PublicNetworkSolutionAction = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType)""); } + + /// + /// Indicates whether to clean up previous operation(such as firewall rules) when Linker is updating or deleting + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? PublicNetworkSolutionDeleteOrUpdateBehavior { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).PublicNetworkSolutionDeleteOrUpdateBehavior; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).PublicNetworkSolutionDeleteOrUpdateBehavior = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior)""); } + + /// connection scope in source service. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public string Scope { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).Scope; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).Scope = value ?? null; } + + /// The key vault id to store secret + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public string SecretStoreKeyVaultId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).SecretStoreKeyVaultId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).SecretStoreKeyVaultId = value ?? null; } + + /// The key vault secret name to store secret, only valid when storing one secret + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public string SecretStoreKeyVaultSecretName { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).SecretStoreKeyVaultSecretName; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).SecretStoreKeyVaultSecretName = value ?? null; } + + /// + /// Azure Resource Manager metadata containing createdBy and modifiedBy information. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemData SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).SystemData; } + + /// The timestamp of resource creation (UTC). + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public global::System.DateTime? SystemDataCreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).SystemDataCreatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).SystemDataCreatedAt = value ?? default(global::System.DateTime); } + + /// The identity that created the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public string SystemDataCreatedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).SystemDataCreatedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).SystemDataCreatedBy = value ?? null; } + + /// The type of identity that created the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType? SystemDataCreatedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).SystemDataCreatedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).SystemDataCreatedByType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType)""); } + + /// The timestamp of resource last modification (UTC) + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public global::System.DateTime? SystemDataLastModifiedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).SystemDataLastModifiedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).SystemDataLastModifiedAt = value ?? default(global::System.DateTime); } + + /// The identity that last modified the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public string SystemDataLastModifiedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).SystemDataLastModifiedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).SystemDataLastModifiedBy = value ?? null; } + + /// The type of identity that last modified the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType? SystemDataLastModifiedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).SystemDataLastModifiedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).SystemDataLastModifiedByType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType)""); } + + /// The target service properties + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase TargetService { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).TargetService; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).TargetService = value ?? null /* model class */; } + + /// + /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).Type; } + + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? VNetSolutionDeleteOrUpdateBehavior { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).VNetSolutionDeleteOrUpdateBehavior; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).VNetSolutionDeleteOrUpdateBehavior = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior)""); } + + /// Type of VNet solution. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType? VNetSolutionType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).VNetSolutionType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPropertiesInternal)Property).VNetSolutionType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType)""); } + + /// Creates an new instance. + public LinkerResource() + { + + } + + /// Validates that this object meets the validation criteria. + /// an instance that will receive validation + /// events. + /// + /// A that will be complete when validation is completed. + /// + public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) + { + await eventListener.AssertNotNull(nameof(__resource), __resource); + await eventListener.AssertObjectIsValid(nameof(__resource), __resource); + } + } + /// Linker of source and target resource + public partial interface ILinkerResource : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResource + { + /// The authentication type. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The authentication type.", + SerializedName = @"authInfo", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase AuthInfo { get; set; } + /// The application client type + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The application client type", + SerializedName = @"clientType", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType? ClientType { get; set; } + /// + /// Optional, indicate whether to apply configurations on source application. If enable, generate configurations and applied + /// to the source application. Default is enable. If optOut, no configuration change will be made on source. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Optional, indicate whether to apply configurations on source application. If enable, generate configurations and applied to the source application. Default is enable. If optOut, no configuration change will be made on source.", + SerializedName = @"action", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType? ConfigurationInfoAction { get; set; } + /// + /// A dictionary of additional configurations to be added. Service will auto generate a set of basic configurations and this + /// property is to full fill more customized configurations + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"A dictionary of additional configurations to be added. Service will auto generate a set of basic configurations and this property is to full fill more customized configurations", + SerializedName = @"additionalConfigurations", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations ConfigurationInfoAdditionalConfiguration { get; set; } + /// + /// Optional. A dictionary of default key name and customized key name mapping. If not specified, default key name will be + /// used for generate configurations + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Optional. A dictionary of default key name and customized key name mapping. If not specified, default key name will be used for generate configurations", + SerializedName = @"customizedKeys", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys ConfigurationInfoCustomizedKey { get; set; } + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Indicates whether to clean up previous operation when Linker is updating or deleting", + SerializedName = @"deleteOrUpdateBehavior", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? ConfigurationInfoDeleteOrUpdateBehavior { get; set; } + /// Allow Azure services to access the target service if true. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Allow Azure services to access the target service if true.", + SerializedName = @"azureServices", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType? FirewallRuleAzureService { get; set; } + /// + /// Allow caller client IP to access the target service if true. the property is used when connecting local application to + /// target service. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Allow caller client IP to access the target service if true. the property is used when connecting local application to target service.", + SerializedName = @"callerClientIP", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType? FirewallRuleCallerClientIP { get; set; } + /// + /// This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client + /// IPs for a given database account. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client IPs for a given database account.", + SerializedName = @"ipRanges", + PossibleTypes = new [] { typeof(string) })] + string[] FirewallRuleIPRange { get; set; } + /// The provisioning state. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The provisioning state. ", + SerializedName = @"provisioningState", + PossibleTypes = new [] { typeof(string) })] + string ProvisioningState { get; } + /// + /// Optional. Indicates public network solution. If enable, enable public network access of target service with best try. + /// Default is enable. If optOut, opt out public network access configuration. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Optional. Indicates public network solution. If enable, enable public network access of target service with best try. Default is enable. If optOut, opt out public network access configuration.", + SerializedName = @"action", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType? PublicNetworkSolutionAction { get; set; } + /// + /// Indicates whether to clean up previous operation(such as firewall rules) when Linker is updating or deleting + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Indicates whether to clean up previous operation(such as firewall rules) when Linker is updating or deleting", + SerializedName = @"deleteOrUpdateBehavior", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? PublicNetworkSolutionDeleteOrUpdateBehavior { get; set; } + /// connection scope in source service. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"connection scope in source service.", + SerializedName = @"scope", + PossibleTypes = new [] { typeof(string) })] + string Scope { get; set; } + /// The key vault id to store secret + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The key vault id to store secret", + SerializedName = @"keyVaultId", + PossibleTypes = new [] { typeof(string) })] + string SecretStoreKeyVaultId { get; set; } + /// The key vault secret name to store secret, only valid when storing one secret + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The key vault secret name to store secret, only valid when storing one secret", + SerializedName = @"keyVaultSecretName", + PossibleTypes = new [] { typeof(string) })] + string SecretStoreKeyVaultSecretName { get; set; } + /// The target service properties + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The target service properties", + SerializedName = @"targetService", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase TargetService { get; set; } + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Indicates whether to clean up previous operation when Linker is updating or deleting", + SerializedName = @"deleteOrUpdateBehavior", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? VNetSolutionDeleteOrUpdateBehavior { get; set; } + /// Type of VNet solution. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Type of VNet solution.", + SerializedName = @"type", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType? VNetSolutionType { get; set; } + + } + /// Linker of source and target resource + internal partial interface ILinkerResourceInternal : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal + { + /// The authentication type. + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase AuthInfo { get; set; } + /// The application client type + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType? ClientType { get; set; } + /// + /// The connection information consumed by applications, including secrets, connection strings. + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfo ConfigurationInfo { get; set; } + /// + /// Optional, indicate whether to apply configurations on source application. If enable, generate configurations and applied + /// to the source application. Default is enable. If optOut, no configuration change will be made on source. + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType? ConfigurationInfoAction { get; set; } + /// + /// A dictionary of additional configurations to be added. Service will auto generate a set of basic configurations and this + /// property is to full fill more customized configurations + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations ConfigurationInfoAdditionalConfiguration { get; set; } + /// + /// Optional. A dictionary of default key name and customized key name mapping. If not specified, default key name will be + /// used for generate configurations + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys ConfigurationInfoCustomizedKey { get; set; } + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? ConfigurationInfoDeleteOrUpdateBehavior { get; set; } + /// Allow Azure services to access the target service if true. + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType? FirewallRuleAzureService { get; set; } + /// + /// Allow caller client IP to access the target service if true. the property is used when connecting local application to + /// target service. + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType? FirewallRuleCallerClientIP { get; set; } + /// + /// This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client + /// IPs for a given database account. + /// + string[] FirewallRuleIPRange { get; set; } + /// The properties of the Linker. + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerProperties Property { get; set; } + /// The provisioning state. + string ProvisioningState { get; set; } + /// The network solution. + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolution PublicNetworkSolution { get; set; } + /// + /// Optional. Indicates public network solution. If enable, enable public network access of target service with best try. + /// Default is enable. If optOut, opt out public network access configuration. + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType? PublicNetworkSolutionAction { get; set; } + /// + /// Indicates whether to clean up previous operation(such as firewall rules) when Linker is updating or deleting + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? PublicNetworkSolutionDeleteOrUpdateBehavior { get; set; } + /// + /// Describe firewall rules of target service to make sure source application could connect to the target. + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRules PublicNetworkSolutionFirewallRule { get; set; } + /// connection scope in source service. + string Scope { get; set; } + /// An option to store secret value in secure place + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretStore SecretStore { get; set; } + /// The key vault id to store secret + string SecretStoreKeyVaultId { get; set; } + /// The key vault secret name to store secret, only valid when storing one secret + string SecretStoreKeyVaultSecretName { get; set; } + /// The target service properties + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase TargetService { get; set; } + /// The VNet solution. + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IVNetSolution VNetSolution { get; set; } + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? VNetSolutionDeleteOrUpdateBehavior { get; set; } + /// Type of VNet solution. + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType? VNetSolutionType { get; set; } + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/LinkerResource.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/LinkerResource.json.cs similarity index 87% rename from src/ServiceLinker/generated/api/Models/Api20220501/LinkerResource.json.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/LinkerResource.json.cs index fccee29e025d..fd2460f08251 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/LinkerResource.json.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/LinkerResource.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class LinkerResource partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new LinkerResource(json) : null; } @@ -77,9 +77,8 @@ internal LinkerResource(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime { return; } - __resource = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.Resource(json); - {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.LinkerProperties.FromJson(__jsonProperties) : Property;} - {_systemData = If( json?.PropertyT("systemData"), out var __jsonSystemData) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.SystemData.FromJson(__jsonSystemData) : SystemData;} + __resource = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.Resource(json); + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.LinkerProperties.FromJson(__jsonProperties) : Property;} AfterFromJson(json); } @@ -104,10 +103,6 @@ public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode To } __resource?.ToJson(container, serializationMode); AddIf( null != this._property ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) this._property.ToJson(null,serializationMode) : null, "properties" ,container.Add ); - if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeReadOnly)) - { - AddIf( null != this._systemData ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) this._systemData.ToJson(null,serializationMode) : null, "systemData" ,container.Add ); - } AfterToJson(ref container); return container; } diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/PermissionsMissingDryrunPrerequisiteResult.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/PermissionsMissingDryrunPrerequisiteResult.PowerShell.cs new file mode 100644 index 000000000000..e39319887d48 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/PermissionsMissingDryrunPrerequisiteResult.PowerShell.cs @@ -0,0 +1,173 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// The represent of missing permissions + [System.ComponentModel.TypeConverter(typeof(PermissionsMissingDryrunPrerequisiteResultTypeConverter))] + public partial class PermissionsMissingDryrunPrerequisiteResult + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPermissionsMissingDryrunPrerequisiteResult DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new PermissionsMissingDryrunPrerequisiteResult(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPermissionsMissingDryrunPrerequisiteResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new PermissionsMissingDryrunPrerequisiteResult(content); + } + + /// + /// Creates a new instance of , deserializing the content from a + /// json string. + /// + /// a string containing a JSON serialized instance of this model. + /// + /// an instance of the model class. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPermissionsMissingDryrunPrerequisiteResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal PermissionsMissingDryrunPrerequisiteResult(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Scope")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPermissionsMissingDryrunPrerequisiteResultInternal)this).Scope = (string) content.GetValueForProperty("Scope",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPermissionsMissingDryrunPrerequisiteResultInternal)this).Scope, global::System.Convert.ToString); + } + if (content.Contains("Permission")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPermissionsMissingDryrunPrerequisiteResultInternal)this).Permission = (string[]) content.GetValueForProperty("Permission",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPermissionsMissingDryrunPrerequisiteResultInternal)this).Permission, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + } + if (content.Contains("RecommendedRole")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPermissionsMissingDryrunPrerequisiteResultInternal)this).RecommendedRole = (string) content.GetValueForProperty("RecommendedRole",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPermissionsMissingDryrunPrerequisiteResultInternal)this).RecommendedRole, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResultInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPrerequisiteResultType) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResultInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPrerequisiteResultType.CreateFrom); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal PermissionsMissingDryrunPrerequisiteResult(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("Scope")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPermissionsMissingDryrunPrerequisiteResultInternal)this).Scope = (string) content.GetValueForProperty("Scope",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPermissionsMissingDryrunPrerequisiteResultInternal)this).Scope, global::System.Convert.ToString); + } + if (content.Contains("Permission")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPermissionsMissingDryrunPrerequisiteResultInternal)this).Permission = (string[]) content.GetValueForProperty("Permission",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPermissionsMissingDryrunPrerequisiteResultInternal)this).Permission, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + } + if (content.Contains("RecommendedRole")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPermissionsMissingDryrunPrerequisiteResultInternal)this).RecommendedRole = (string) content.GetValueForProperty("RecommendedRole",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPermissionsMissingDryrunPrerequisiteResultInternal)this).RecommendedRole, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResultInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPrerequisiteResultType) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResultInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPrerequisiteResultType.CreateFrom); + } + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// The represent of missing permissions + [System.ComponentModel.TypeConverter(typeof(PermissionsMissingDryrunPrerequisiteResultTypeConverter))] + public partial interface IPermissionsMissingDryrunPrerequisiteResult + + { + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/PermissionsMissingDryrunPrerequisiteResult.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/PermissionsMissingDryrunPrerequisiteResult.TypeConverter.cs new file mode 100644 index 000000000000..98d8d8e3b4f4 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/PermissionsMissingDryrunPrerequisiteResult.TypeConverter.cs @@ -0,0 +1,151 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class PermissionsMissingDryrunPrerequisiteResultTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// type. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise + /// false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the + /// parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter into an instance of + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPermissionsMissingDryrunPrerequisiteResult ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPermissionsMissingDryrunPrerequisiteResult).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return PermissionsMissingDryrunPrerequisiteResult.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return PermissionsMissingDryrunPrerequisiteResult.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return PermissionsMissingDryrunPrerequisiteResult.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/PermissionsMissingDryrunPrerequisiteResult.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/PermissionsMissingDryrunPrerequisiteResult.cs new file mode 100644 index 000000000000..e881273f0f54 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/PermissionsMissingDryrunPrerequisiteResult.cs @@ -0,0 +1,110 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// The represent of missing permissions + public partial class PermissionsMissingDryrunPrerequisiteResult : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPermissionsMissingDryrunPrerequisiteResult, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPermissionsMissingDryrunPrerequisiteResultInternal, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IValidates + { + /// + /// Backing field for Inherited model + /// + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResult __dryrunPrerequisiteResult = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunPrerequisiteResult(); + + /// Backing field for property. + private string[] _permission; + + /// The permission list + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public string[] Permission { get => this._permission; set => this._permission = value; } + + /// Backing field for property. + private string _recommendedRole; + + /// The recommended role to resolve permissions missing + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public string RecommendedRole { get => this._recommendedRole; set => this._recommendedRole = value; } + + /// Backing field for property. + private string _scope; + + /// The permission scope + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public string Scope { get => this._scope; set => this._scope = value; } + + /// The type of dryrun result. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPrerequisiteResultType Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResultInternal)__dryrunPrerequisiteResult).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResultInternal)__dryrunPrerequisiteResult).Type = value ; } + + /// + /// Creates an new instance. + /// + public PermissionsMissingDryrunPrerequisiteResult() + { + + } + + /// Validates that this object meets the validation criteria. + /// an instance that will receive validation + /// events. + /// + /// A that will be complete when validation is completed. + /// + public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) + { + await eventListener.AssertNotNull(nameof(__dryrunPrerequisiteResult), __dryrunPrerequisiteResult); + await eventListener.AssertObjectIsValid(nameof(__dryrunPrerequisiteResult), __dryrunPrerequisiteResult); + } + } + /// The represent of missing permissions + public partial interface IPermissionsMissingDryrunPrerequisiteResult : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResult + { + /// The permission list + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The permission list", + SerializedName = @"permissions", + PossibleTypes = new [] { typeof(string) })] + string[] Permission { get; set; } + /// The recommended role to resolve permissions missing + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The recommended role to resolve permissions missing", + SerializedName = @"recommendedRole", + PossibleTypes = new [] { typeof(string) })] + string RecommendedRole { get; set; } + /// The permission scope + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The permission scope", + SerializedName = @"scope", + PossibleTypes = new [] { typeof(string) })] + string Scope { get; set; } + + } + /// The represent of missing permissions + internal partial interface IPermissionsMissingDryrunPrerequisiteResultInternal : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPrerequisiteResultInternal + { + /// The permission list + string[] Permission { get; set; } + /// The recommended role to resolve permissions missing + string RecommendedRole { get; set; } + /// The permission scope + string Scope { get; set; } + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/PermissionsMissingDryrunPrerequisiteResult.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/PermissionsMissingDryrunPrerequisiteResult.json.cs new file mode 100644 index 000000000000..6e8724b65529 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/PermissionsMissingDryrunPrerequisiteResult.json.cs @@ -0,0 +1,124 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// The represent of missing permissions + public partial class PermissionsMissingDryrunPrerequisiteResult + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the + /// output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPermissionsMissingDryrunPrerequisiteResult. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPermissionsMissingDryrunPrerequisiteResult. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPermissionsMissingDryrunPrerequisiteResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new PermissionsMissingDryrunPrerequisiteResult(json) : null; + } + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject instance to deserialize from. + internal PermissionsMissingDryrunPrerequisiteResult(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + __dryrunPrerequisiteResult = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunPrerequisiteResult(json); + {_scope = If( json?.PropertyT("scope"), out var __jsonScope) ? (string)__jsonScope : (string)Scope;} + {_permission = If( json?.PropertyT("permissions"), out var __jsonPermissions) ? If( __jsonPermissions as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(string) (__u is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString __t ? (string)(__t.ToString()) : null)) ))() : null : Permission;} + {_recommendedRole = If( json?.PropertyT("recommendedRole"), out var __jsonRecommendedRole) ? (string)__jsonRecommendedRole : (string)RecommendedRole;} + AfterFromJson(json); + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + __dryrunPrerequisiteResult?.ToJson(container, serializationMode); + AddIf( null != (((object)this._scope)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._scope.ToString()) : null, "scope" ,container.Add ); + if (null != this._permission) + { + var __w = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.XNodeArray(); + foreach( var __x in this._permission ) + { + AddIf(null != (((object)__x)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(__x.ToString()) : null ,__w.Add); + } + container.Add("permissions",__w); + } + AddIf( null != (((object)this._recommendedRole)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._recommendedRole.ToString()) : null, "recommendedRole" ,container.Add ); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/PublicNetworkSolution.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/PublicNetworkSolution.PowerShell.cs new file mode 100644 index 000000000000..31e2ed8a0030 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/PublicNetworkSolution.PowerShell.cs @@ -0,0 +1,186 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// Indicates public network solution, include firewall rules + [System.ComponentModel.TypeConverter(typeof(PublicNetworkSolutionTypeConverter))] + public partial class PublicNetworkSolution + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolution DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new PublicNetworkSolution(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolution DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new PublicNetworkSolution(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolution FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal PublicNetworkSolution(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("FirewallRule")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolutionInternal)this).FirewallRule = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRules) content.GetValueForProperty("FirewallRule",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolutionInternal)this).FirewallRule, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.FirewallRulesTypeConverter.ConvertFrom); + } + if (content.Contains("DeleteOrUpdateBehavior")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolutionInternal)this).DeleteOrUpdateBehavior = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior?) content.GetValueForProperty("DeleteOrUpdateBehavior",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolutionInternal)this).DeleteOrUpdateBehavior, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior.CreateFrom); + } + if (content.Contains("Action")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolutionInternal)this).Action = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType?) content.GetValueForProperty("Action",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolutionInternal)this).Action, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType.CreateFrom); + } + if (content.Contains("FirewallRuleIPRange")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolutionInternal)this).FirewallRuleIPRange = (string[]) content.GetValueForProperty("FirewallRuleIPRange",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolutionInternal)this).FirewallRuleIPRange, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + } + if (content.Contains("FirewallRuleAzureService")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolutionInternal)this).FirewallRuleAzureService = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType?) content.GetValueForProperty("FirewallRuleAzureService",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolutionInternal)this).FirewallRuleAzureService, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType.CreateFrom); + } + if (content.Contains("FirewallRuleCallerClientIP")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolutionInternal)this).FirewallRuleCallerClientIP = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType?) content.GetValueForProperty("FirewallRuleCallerClientIP",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolutionInternal)this).FirewallRuleCallerClientIP, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType.CreateFrom); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal PublicNetworkSolution(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("FirewallRule")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolutionInternal)this).FirewallRule = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRules) content.GetValueForProperty("FirewallRule",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolutionInternal)this).FirewallRule, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.FirewallRulesTypeConverter.ConvertFrom); + } + if (content.Contains("DeleteOrUpdateBehavior")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolutionInternal)this).DeleteOrUpdateBehavior = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior?) content.GetValueForProperty("DeleteOrUpdateBehavior",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolutionInternal)this).DeleteOrUpdateBehavior, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior.CreateFrom); + } + if (content.Contains("Action")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolutionInternal)this).Action = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType?) content.GetValueForProperty("Action",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolutionInternal)this).Action, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType.CreateFrom); + } + if (content.Contains("FirewallRuleIPRange")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolutionInternal)this).FirewallRuleIPRange = (string[]) content.GetValueForProperty("FirewallRuleIPRange",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolutionInternal)this).FirewallRuleIPRange, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + } + if (content.Contains("FirewallRuleAzureService")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolutionInternal)this).FirewallRuleAzureService = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType?) content.GetValueForProperty("FirewallRuleAzureService",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolutionInternal)this).FirewallRuleAzureService, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType.CreateFrom); + } + if (content.Contains("FirewallRuleCallerClientIP")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolutionInternal)this).FirewallRuleCallerClientIP = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType?) content.GetValueForProperty("FirewallRuleCallerClientIP",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolutionInternal)this).FirewallRuleCallerClientIP, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType.CreateFrom); + } + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// Indicates public network solution, include firewall rules + [System.ComponentModel.TypeConverter(typeof(PublicNetworkSolutionTypeConverter))] + public partial interface IPublicNetworkSolution + + { + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/PublicNetworkSolution.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/PublicNetworkSolution.TypeConverter.cs new file mode 100644 index 000000000000..a283bbf8db96 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/PublicNetworkSolution.TypeConverter.cs @@ -0,0 +1,147 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class PublicNetworkSolutionTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// type. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the + /// parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter into an instance of + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolution ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolution).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return PublicNetworkSolution.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return PublicNetworkSolution.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return PublicNetworkSolution.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/PublicNetworkSolution.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/PublicNetworkSolution.cs new file mode 100644 index 000000000000..2cc0127e55c6 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/PublicNetworkSolution.cs @@ -0,0 +1,159 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// Indicates public network solution, include firewall rules + public partial class PublicNetworkSolution : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolution, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolutionInternal + { + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType? _action; + + /// + /// Optional. Indicates public network solution. If enable, enable public network access of target service with best try. + /// Default is enable. If optOut, opt out public network access configuration. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType? Action { get => this._action; set => this._action = value; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? _deleteOrUpdateBehavior; + + /// + /// Indicates whether to clean up previous operation(such as firewall rules) when Linker is updating or deleting + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? DeleteOrUpdateBehavior { get => this._deleteOrUpdateBehavior; set => this._deleteOrUpdateBehavior = value; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRules _firewallRule; + + /// + /// Describe firewall rules of target service to make sure source application could connect to the target. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + internal Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRules FirewallRule { get => (this._firewallRule = this._firewallRule ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.FirewallRules()); set => this._firewallRule = value; } + + /// Allow Azure services to access the target service if true. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType? FirewallRuleAzureService { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRulesInternal)FirewallRule).AzureService; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRulesInternal)FirewallRule).AzureService = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType)""); } + + /// + /// Allow caller client IP to access the target service if true. the property is used when connecting local application to + /// target service. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType? FirewallRuleCallerClientIP { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRulesInternal)FirewallRule).CallerClientIP; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRulesInternal)FirewallRule).CallerClientIP = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType)""); } + + /// + /// This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client + /// IPs for a given database account. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public string[] FirewallRuleIPRange { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRulesInternal)FirewallRule).IPRange; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRulesInternal)FirewallRule).IPRange = value ?? null /* arrayOf */; } + + /// Internal Acessors for FirewallRule + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRules Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolutionInternal.FirewallRule { get => (this._firewallRule = this._firewallRule ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.FirewallRules()); set { {_firewallRule = value;} } } + + /// Creates an new instance. + public PublicNetworkSolution() + { + + } + } + /// Indicates public network solution, include firewall rules + public partial interface IPublicNetworkSolution : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable + { + /// + /// Optional. Indicates public network solution. If enable, enable public network access of target service with best try. + /// Default is enable. If optOut, opt out public network access configuration. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Optional. Indicates public network solution. If enable, enable public network access of target service with best try. Default is enable. If optOut, opt out public network access configuration.", + SerializedName = @"action", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType? Action { get; set; } + /// + /// Indicates whether to clean up previous operation(such as firewall rules) when Linker is updating or deleting + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Indicates whether to clean up previous operation(such as firewall rules) when Linker is updating or deleting", + SerializedName = @"deleteOrUpdateBehavior", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? DeleteOrUpdateBehavior { get; set; } + /// Allow Azure services to access the target service if true. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Allow Azure services to access the target service if true.", + SerializedName = @"azureServices", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType? FirewallRuleAzureService { get; set; } + /// + /// Allow caller client IP to access the target service if true. the property is used when connecting local application to + /// target service. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Allow caller client IP to access the target service if true. the property is used when connecting local application to target service.", + SerializedName = @"callerClientIP", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType? FirewallRuleCallerClientIP { get; set; } + /// + /// This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client + /// IPs for a given database account. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client IPs for a given database account.", + SerializedName = @"ipRanges", + PossibleTypes = new [] { typeof(string) })] + string[] FirewallRuleIPRange { get; set; } + + } + /// Indicates public network solution, include firewall rules + internal partial interface IPublicNetworkSolutionInternal + + { + /// + /// Optional. Indicates public network solution. If enable, enable public network access of target service with best try. + /// Default is enable. If optOut, opt out public network access configuration. + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType? Action { get; set; } + /// + /// Indicates whether to clean up previous operation(such as firewall rules) when Linker is updating or deleting + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? DeleteOrUpdateBehavior { get; set; } + /// + /// Describe firewall rules of target service to make sure source application could connect to the target. + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IFirewallRules FirewallRule { get; set; } + /// Allow Azure services to access the target service if true. + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType? FirewallRuleAzureService { get; set; } + /// + /// Allow caller client IP to access the target service if true. the property is used when connecting local application to + /// target service. + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType? FirewallRuleCallerClientIP { get; set; } + /// + /// This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client + /// IPs for a given database account. + /// + string[] FirewallRuleIPRange { get; set; } + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/PublicNetworkSolution.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/PublicNetworkSolution.json.cs new file mode 100644 index 000000000000..d94a07d245dc --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/PublicNetworkSolution.json.cs @@ -0,0 +1,112 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// Indicates public network solution, include firewall rules + public partial class PublicNetworkSolution + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the + /// output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolution. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolution. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IPublicNetworkSolution FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new PublicNetworkSolution(json) : null; + } + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject instance to deserialize from. + internal PublicNetworkSolution(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_firewallRule = If( json?.PropertyT("firewallRules"), out var __jsonFirewallRules) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.FirewallRules.FromJson(__jsonFirewallRules) : FirewallRule;} + {_deleteOrUpdateBehavior = If( json?.PropertyT("deleteOrUpdateBehavior"), out var __jsonDeleteOrUpdateBehavior) ? (string)__jsonDeleteOrUpdateBehavior : (string)DeleteOrUpdateBehavior;} + {_action = If( json?.PropertyT("action"), out var __jsonAction) ? (string)__jsonAction : (string)Action;} + AfterFromJson(json); + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + AddIf( null != this._firewallRule ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) this._firewallRule.ToJson(null,serializationMode) : null, "firewallRules" ,container.Add ); + AddIf( null != (((object)this._deleteOrUpdateBehavior)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._deleteOrUpdateBehavior.ToString()) : null, "deleteOrUpdateBehavior" ,container.Add ); + AddIf( null != (((object)this._action)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._action.ToString()) : null, "action" ,container.Add ); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20/ProxyResource.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ResourceList.PowerShell.cs similarity index 63% rename from src/ServiceLinker/generated/api/Models/Api20/ProxyResource.PowerShell.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/ResourceList.PowerShell.cs index 58ee728d7222..25c933f0f265 100644 --- a/src/ServiceLinker/generated/api/Models/Api20/ProxyResource.PowerShell.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ResourceList.PowerShell.cs @@ -3,15 +3,13 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; - /// - /// The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location - /// - [System.ComponentModel.TypeConverter(typeof(ProxyResourceTypeConverter))] - public partial class ProxyResource + /// The list of Linker. + [System.ComponentModel.TypeConverter(typeof(ResourceListTypeConverter))] + public partial class ResourceList { /// @@ -33,7 +31,8 @@ public partial class ProxyResource /// /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Collections.IDictionary content that should be used. @@ -45,7 +44,8 @@ public partial class ProxyResource /// /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -55,44 +55,44 @@ public partial class ProxyResource partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IProxyResource DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IResourceList DeserializeFromDictionary(global::System.Collections.IDictionary content) { - return new ProxyResource(content); + return new ResourceList(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IProxyResource DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IResourceList DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { - return new ProxyResource(content); + return new ResourceList(content); } /// - /// Creates a new instance of , deserializing the content from a json string. + /// Creates a new instance of , deserializing the content from a json string. /// /// a string containing a JSON serialized instance of this model. - /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IProxyResource FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IResourceList FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. - internal ProxyResource(global::System.Collections.IDictionary content) + internal ResourceList(global::System.Collections.IDictionary content) { bool returnNow = false; BeforeDeserializeDictionary(content, ref returnNow); @@ -101,27 +101,23 @@ internal ProxyResource(global::System.Collections.IDictionary content) return; } // actually deserialize - if (content.Contains("Id")) + if (content.Contains("NextLink")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)this).Id, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IResourceListInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IResourceListInternal)this).NextLink, global::System.Convert.ToString); } - if (content.Contains("Name")) + if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)this).Name, global::System.Convert.ToString); - } - if (content.Contains("Type")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IResourceListInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IResourceListInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.LinkerResourceTypeConverter.ConvertFrom)); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. - internal ProxyResource(global::System.Management.Automation.PSObject content) + internal ResourceList(global::System.Management.Automation.PSObject content) { bool returnNow = false; BeforeDeserializePSObject(content, ref returnNow); @@ -130,17 +126,13 @@ internal ProxyResource(global::System.Management.Automation.PSObject content) return; } // actually deserialize - if (content.Contains("Id")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)this).Id, global::System.Convert.ToString); - } - if (content.Contains("Name")) + if (content.Contains("NextLink")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IResourceListInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IResourceListInternal)this).NextLink, global::System.Convert.ToString); } - if (content.Contains("Type")) + if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IResourceListInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IResourceListInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.LinkerResourceTypeConverter.ConvertFrom)); } AfterDeserializePSObject(content); } @@ -150,9 +142,9 @@ internal ProxyResource(global::System.Management.Automation.PSObject content) /// a containing this model serialized to JSON text. public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeAll)?.ToString(); } - /// The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location - [System.ComponentModel.TypeConverter(typeof(ProxyResourceTypeConverter))] - public partial interface IProxyResource + /// The list of Linker. + [System.ComponentModel.TypeConverter(typeof(ResourceListTypeConverter))] + public partial interface IResourceList { diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/ResourceList.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ResourceList.TypeConverter.cs new file mode 100644 index 000000000000..a803efaa6677 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ResourceList.TypeConverter.cs @@ -0,0 +1,147 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class ResourceListTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// type. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the + /// parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter into an instance of + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IResourceList ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IResourceList).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return ResourceList.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return ResourceList.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return ResourceList.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/LinkerList.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ResourceList.cs similarity index 69% rename from src/ServiceLinker/generated/api/Models/Api20220501/LinkerList.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/ResourceList.cs index 2a21fe7afa83..eff0870fc3b1 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/LinkerList.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ResourceList.cs @@ -3,45 +3,45 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; /// The list of Linker. - public partial class LinkerList : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerList, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerListInternal + public partial class ResourceList : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IResourceList, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IResourceListInternal { /// Backing field for property. private string _nextLink; - /// The link used to get the next page of Linker list. + /// The Linker used to get the next page of Linker list. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] public string NextLink { get => this._nextLink; set => this._nextLink = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource[] _value; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource[] _value; /// The list of Linkers. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource[] Value { get => this._value; set => this._value = value; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource[] Value { get => this._value; set => this._value = value; } - /// Creates an new instance. - public LinkerList() + /// Creates an new instance. + public ResourceList() { } } /// The list of Linker. - public partial interface ILinkerList : + public partial interface IResourceList : Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable { - /// The link used to get the next page of Linker list. + /// The Linker used to get the next page of Linker list. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( Required = false, ReadOnly = false, - Description = @"The link used to get the next page of Linker list.", + Description = @"The Linker used to get the next page of Linker list.", SerializedName = @"nextLink", PossibleTypes = new [] { typeof(string) })] string NextLink { get; set; } @@ -51,18 +51,18 @@ public partial interface ILinkerList : ReadOnly = false, Description = @"The list of Linkers.", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource[] Value { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource[] Value { get; set; } } /// The list of Linker. - internal partial interface ILinkerListInternal + internal partial interface IResourceListInternal { - /// The link used to get the next page of Linker list. + /// The Linker used to get the next page of Linker list. string NextLink { get; set; } /// The list of Linkers. - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource[] Value { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource[] Value { get; set; } } } \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/ResourceList.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ResourceList.json.cs new file mode 100644 index 000000000000..9e2e2a5495d6 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ResourceList.json.cs @@ -0,0 +1,118 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// The list of Linker. + public partial class ResourceList + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the + /// output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IResourceList. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IResourceList. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IResourceList FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new ResourceList(json) : null; + } + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject instance to deserialize from. + internal ResourceList(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + {_nextLink = If( json?.PropertyT("nextLink"), out var __jsonNextLink) ? (string)__jsonNextLink : (string)NextLink;} + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource) (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.LinkerResource.FromJson(__u) )) ))() : null : Value;} + AfterFromJson(json); + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + AddIf( null != (((object)this._nextLink)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._nextLink.ToString()) : null, "nextLink" ,container.Add ); + if (null != this._value) + { + var __w = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.XNodeArray(); + foreach( var __x in this._value ) + { + AddIf(__x?.ToJson(null, serializationMode) ,__w.Add); + } + container.Add("value",__w); + } + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/SecretAuthInfo.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SecretAuthInfo.PowerShell.cs similarity index 69% rename from src/ServiceLinker/generated/api/Models/Api20220501/SecretAuthInfo.PowerShell.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/SecretAuthInfo.PowerShell.cs index 067f56f4dbe0..6246db7b553e 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/SecretAuthInfo.PowerShell.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SecretAuthInfo.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -31,7 +31,8 @@ public partial class SecretAuthInfo /// /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Collections.IDictionary content that should be used. @@ -43,7 +44,8 @@ public partial class SecretAuthInfo /// /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -53,27 +55,29 @@ public partial class SecretAuthInfo partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretAuthInfo DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretAuthInfo DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new SecretAuthInfo(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretAuthInfo DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretAuthInfo DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new SecretAuthInfo(content); } @@ -83,10 +87,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api2022050 /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretAuthInfo FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretAuthInfo FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -101,21 +105,21 @@ internal SecretAuthInfo(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretAuthInfoInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretAuthInfoInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretAuthInfoInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretAuthInfoInternal)this).Name, global::System.Convert.ToString); } if (content.Contains("SecretInfo")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretAuthInfoInternal)this).SecretInfo = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBase) content.GetValueForProperty("SecretInfo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretAuthInfoInternal)this).SecretInfo, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SecretInfoBaseTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretAuthInfoInternal)this).SecretInfo = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBase) content.GetValueForProperty("SecretInfo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretAuthInfoInternal)this).SecretInfo, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SecretInfoBaseTypeConverter.ConvertFrom); } if (content.Contains("AuthType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBaseInternal)this).AuthType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType) content.GetValueForProperty("AuthType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBaseInternal)this).AuthType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)this).AuthType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType) content.GetValueForProperty("AuthType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)this).AuthType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType.CreateFrom); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -130,15 +134,15 @@ internal SecretAuthInfo(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretAuthInfoInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretAuthInfoInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretAuthInfoInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretAuthInfoInternal)this).Name, global::System.Convert.ToString); } if (content.Contains("SecretInfo")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretAuthInfoInternal)this).SecretInfo = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBase) content.GetValueForProperty("SecretInfo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretAuthInfoInternal)this).SecretInfo, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SecretInfoBaseTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretAuthInfoInternal)this).SecretInfo = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBase) content.GetValueForProperty("SecretInfo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretAuthInfoInternal)this).SecretInfo, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SecretInfoBaseTypeConverter.ConvertFrom); } if (content.Contains("AuthType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBaseInternal)this).AuthType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType) content.GetValueForProperty("AuthType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBaseInternal)this).AuthType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)this).AuthType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType) content.GetValueForProperty("AuthType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)this).AuthType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType.CreateFrom); } AfterDeserializePSObject(content); } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/SecretAuthInfo.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SecretAuthInfo.TypeConverter.cs similarity index 82% rename from src/ServiceLinker/generated/api/Models/Api20220501/SecretAuthInfo.TypeConverter.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/SecretAuthInfo.TypeConverter.cs index a74fc6e51134..a92bb366ce2d 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/SecretAuthInfo.TypeConverter.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SecretAuthInfo.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -14,19 +14,20 @@ public partial class SecretAuthInfoTypeConverter : global::System.Management.Aut { /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); /// - /// Determines if the converter can convert the parameter to the . + /// Determines if the converter can convert the parameter to the + /// type. /// /// the instance to check if it can be converted to the type. @@ -74,19 +75,20 @@ public static bool CanConvertFrom(dynamic sourceValue) } /// - /// Determines if the parameter can be converted to the parameter + /// Determines if the parameter can be converted to the + /// parameter /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false + /// true if the converter can convert the parameter to the parameter, otherwise false /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to @@ -98,21 +100,20 @@ public static bool CanConvertFrom(dynamic sourceValue) public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); /// - /// Converts the parameter to the parameter using and + /// Converts the parameter into an instance of /// /// the value to convert into an instance of . /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretAuthInfo ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretAuthInfo ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretAuthInfo).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretAuthInfo).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/SecretAuthInfo.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SecretAuthInfo.cs similarity index 75% rename from src/ServiceLinker/generated/api/Models/Api20220501/SecretAuthInfo.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/SecretAuthInfo.cs index 821554aa306b..0b1145adf478 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/SecretAuthInfo.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SecretAuthInfo.cs @@ -3,25 +3,25 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; /// The authentication info when authType is secret public partial class SecretAuthInfo : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretAuthInfo, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretAuthInfoInternal, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretAuthInfo, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretAuthInfoInternal, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IValidates { /// - /// Backing field for Inherited model /// - private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase __authInfoBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.AuthInfoBase(); + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase __authInfoBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AuthInfoBase(); /// The authentication type. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType AuthType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBaseInternal)__authInfoBase).AuthType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBaseInternal)__authInfoBase).AuthType = value ; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType AuthType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)__authInfoBase).AuthType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)__authInfoBase).AuthType = value ; } /// Backing field for property. private string _name; @@ -31,11 +31,11 @@ public partial class SecretAuthInfo : public string Name { get => this._name; set => this._name = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBase _secretInfo; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBase _secretInfo; /// Password or key vault secret for secret auth. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBase SecretInfo { get => (this._secretInfo = this._secretInfo ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SecretInfoBase()); set => this._secretInfo = value; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBase SecretInfo { get => (this._secretInfo = this._secretInfo ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SecretInfoBase()); set => this._secretInfo = value; } /// Creates an new instance. public SecretAuthInfo() @@ -58,7 +58,7 @@ public SecretAuthInfo() /// The authentication info when authType is secret public partial interface ISecretAuthInfo : Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase { /// Username or account name for secret auth. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( @@ -74,18 +74,18 @@ public partial interface ISecretAuthInfo : ReadOnly = false, Description = @"Password or key vault secret for secret auth.", SerializedName = @"secretInfo", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBase),typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValueSecretInfo),typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IKeyVaultSecretReferenceSecretInfo),typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IKeyVaultSecretUriSecretInfo) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBase SecretInfo { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBase),typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValueSecretInfo),typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IKeyVaultSecretReferenceSecretInfo),typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IKeyVaultSecretUriSecretInfo) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBase SecretInfo { get; set; } } /// The authentication info when authType is secret internal partial interface ISecretAuthInfoInternal : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBaseInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal { /// Username or account name for secret auth. string Name { get; set; } /// Password or key vault secret for secret auth. - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBase SecretInfo { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBase SecretInfo { get; set; } } } \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/SecretAuthInfo.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SecretAuthInfo.json.cs similarity index 94% rename from src/ServiceLinker/generated/api/Models/Api20220501/SecretAuthInfo.json.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/SecretAuthInfo.json.cs index 1c1b8958eaf3..16b32f4cd8e6 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/SecretAuthInfo.json.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SecretAuthInfo.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class SecretAuthInfo partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretAuthInfo. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretAuthInfo. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretAuthInfo. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretAuthInfo. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretAuthInfo FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretAuthInfo FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new SecretAuthInfo(json) : null; } @@ -77,9 +77,9 @@ internal SecretAuthInfo(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime { return; } - __authInfoBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.AuthInfoBase(json); + __authInfoBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AuthInfoBase(json); {_name = If( json?.PropertyT("name"), out var __jsonName) ? (string)__jsonName : (string)Name;} - {_secretInfo = If( json?.PropertyT("secretInfo"), out var __jsonSecretInfo) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SecretInfoBase.FromJson(__jsonSecretInfo) : SecretInfo;} + {_secretInfo = If( json?.PropertyT("secretInfo"), out var __jsonSecretInfo) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SecretInfoBase.FromJson(__jsonSecretInfo) : SecretInfo;} AfterFromJson(json); } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/SecretInfoBase.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SecretInfoBase.PowerShell.cs similarity index 78% rename from src/ServiceLinker/generated/api/Models/Api20220501/SecretInfoBase.PowerShell.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/SecretInfoBase.PowerShell.cs index cc957a6bfb34..319e4c9f469c 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/SecretInfoBase.PowerShell.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SecretInfoBase.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -31,7 +31,8 @@ public partial class SecretInfoBase /// /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Collections.IDictionary content that should be used. @@ -43,7 +44,8 @@ public partial class SecretInfoBase /// /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -53,27 +55,29 @@ public partial class SecretInfoBase partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBase DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBase DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new SecretInfoBase(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBase DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBase DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new SecretInfoBase(content); } @@ -83,10 +87,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api2022050 /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBase FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBase FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -101,13 +105,13 @@ internal SecretInfoBase(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("SecretType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBaseInternal)this).SecretType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.SecretType) content.GetValueForProperty("SecretType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBaseInternal)this).SecretType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.SecretType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBaseInternal)this).SecretType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.SecretType) content.GetValueForProperty("SecretType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBaseInternal)this).SecretType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.SecretType.CreateFrom); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -122,7 +126,7 @@ internal SecretInfoBase(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("SecretType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBaseInternal)this).SecretType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.SecretType) content.GetValueForProperty("SecretType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBaseInternal)this).SecretType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.SecretType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBaseInternal)this).SecretType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.SecretType) content.GetValueForProperty("SecretType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBaseInternal)this).SecretType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.SecretType.CreateFrom); } AfterDeserializePSObject(content); } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/SecretInfoBase.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SecretInfoBase.TypeConverter.cs similarity index 82% rename from src/ServiceLinker/generated/api/Models/Api20220501/SecretInfoBase.TypeConverter.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/SecretInfoBase.TypeConverter.cs index 862095dad4a4..a46fcb90009a 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/SecretInfoBase.TypeConverter.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SecretInfoBase.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -14,19 +14,20 @@ public partial class SecretInfoBaseTypeConverter : global::System.Management.Aut { /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); /// - /// Determines if the converter can convert the parameter to the . + /// Determines if the converter can convert the parameter to the + /// type. /// /// the instance to check if it can be converted to the type. @@ -74,19 +75,20 @@ public static bool CanConvertFrom(dynamic sourceValue) } /// - /// Determines if the parameter can be converted to the parameter + /// Determines if the parameter can be converted to the + /// parameter /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false + /// true if the converter can convert the parameter to the parameter, otherwise false /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to @@ -98,21 +100,20 @@ public static bool CanConvertFrom(dynamic sourceValue) public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); /// - /// Converts the parameter to the parameter using and + /// Converts the parameter into an instance of /// /// the value to convert into an instance of . /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBase ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBase ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBase).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBase).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/SecretInfoBase.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SecretInfoBase.cs similarity index 95% rename from src/ServiceLinker/generated/api/Models/Api20220501/SecretInfoBase.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/SecretInfoBase.cs index 2c27576d6d5e..418da5340298 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/SecretInfoBase.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SecretInfoBase.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; /// The secret info public partial class SecretInfoBase : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBase, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBaseInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBase, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBaseInternal { /// Backing field for property. diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/SecretInfoBase.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SecretInfoBase.json.cs similarity index 96% rename from src/ServiceLinker/generated/api/Models/Api20220501/SecretInfoBase.json.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/SecretInfoBase.json.cs index ce7b82a2af26..ffc8ddb9d301 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/SecretInfoBase.json.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SecretInfoBase.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; @@ -54,15 +54,15 @@ public partial class SecretInfoBase partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBase. - /// Note: the Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBase interface is polymorphic, + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBase. + /// Note: the Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBase interface is polymorphic, /// and the precise model class that will get deserialized is determined at runtime based on the payload. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBase. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBase. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBase FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBase FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) { if (!(node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json)) { diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/SecretStore.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SecretStore.PowerShell.cs similarity index 73% rename from src/ServiceLinker/generated/api/Models/Api20220501/SecretStore.PowerShell.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/SecretStore.PowerShell.cs index 289d5ccd03f2..4cd0b645e466 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/SecretStore.PowerShell.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SecretStore.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -31,7 +31,8 @@ public partial class SecretStore /// /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Collections.IDictionary content that should be used. @@ -43,7 +44,8 @@ public partial class SecretStore /// /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -53,27 +55,27 @@ public partial class SecretStore partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretStore DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretStore DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new SecretStore(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretStore DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretStore DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new SecretStore(content); } @@ -83,10 +85,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api2022050 /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretStore FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretStore FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -101,13 +103,17 @@ internal SecretStore(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("KeyVaultId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretStoreInternal)this).KeyVaultId = (string) content.GetValueForProperty("KeyVaultId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretStoreInternal)this).KeyVaultId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretStoreInternal)this).KeyVaultId = (string) content.GetValueForProperty("KeyVaultId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretStoreInternal)this).KeyVaultId, global::System.Convert.ToString); + } + if (content.Contains("KeyVaultSecretName")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretStoreInternal)this).KeyVaultSecretName = (string) content.GetValueForProperty("KeyVaultSecretName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretStoreInternal)this).KeyVaultSecretName, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -122,7 +128,11 @@ internal SecretStore(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("KeyVaultId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretStoreInternal)this).KeyVaultId = (string) content.GetValueForProperty("KeyVaultId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretStoreInternal)this).KeyVaultId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretStoreInternal)this).KeyVaultId = (string) content.GetValueForProperty("KeyVaultId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretStoreInternal)this).KeyVaultId, global::System.Convert.ToString); + } + if (content.Contains("KeyVaultSecretName")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretStoreInternal)this).KeyVaultSecretName = (string) content.GetValueForProperty("KeyVaultSecretName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretStoreInternal)this).KeyVaultSecretName, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/SecretStore.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SecretStore.TypeConverter.cs similarity index 82% rename from src/ServiceLinker/generated/api/Models/Api20220501/SecretStore.TypeConverter.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/SecretStore.TypeConverter.cs index e879bf42c7f0..bf6e128b000f 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/SecretStore.TypeConverter.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SecretStore.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -14,19 +14,20 @@ public partial class SecretStoreTypeConverter : global::System.Management.Automa { /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); /// - /// Determines if the converter can convert the parameter to the . + /// Determines if the converter can convert the parameter to the + /// type. /// /// the instance to check if it can be converted to the type. @@ -74,19 +75,20 @@ public static bool CanConvertFrom(dynamic sourceValue) } /// - /// Determines if the parameter can be converted to the parameter + /// Determines if the parameter can be converted to the + /// parameter /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false + /// true if the converter can convert the parameter to the parameter, otherwise false /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to @@ -98,21 +100,20 @@ public static bool CanConvertFrom(dynamic sourceValue) public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); /// - /// Converts the parameter to the parameter using and + /// Converts the parameter into an instance of /// /// the value to convert into an instance of . /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretStore ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretStore ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretStore).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretStore).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/SecretStore.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SecretStore.cs similarity index 62% rename from src/ServiceLinker/generated/api/Models/Api20220501/SecretStore.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/SecretStore.cs index 3ced8cb4d384..9e4908efb48b 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/SecretStore.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SecretStore.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; /// An option to store secret value in secure place public partial class SecretStore : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretStore, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretStoreInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretStore, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretStoreInternal { /// Backing field for property. @@ -20,6 +20,13 @@ public partial class SecretStore : [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] public string KeyVaultId { get => this._keyVaultId; set => this._keyVaultId = value; } + /// Backing field for property. + private string _keyVaultSecretName; + + /// The key vault secret name to store secret, only valid when storing one secret + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public string KeyVaultSecretName { get => this._keyVaultSecretName; set => this._keyVaultSecretName = value; } + /// Creates an new instance. public SecretStore() { @@ -38,6 +45,14 @@ public partial interface ISecretStore : SerializedName = @"keyVaultId", PossibleTypes = new [] { typeof(string) })] string KeyVaultId { get; set; } + /// The key vault secret name to store secret, only valid when storing one secret + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The key vault secret name to store secret, only valid when storing one secret", + SerializedName = @"keyVaultSecretName", + PossibleTypes = new [] { typeof(string) })] + string KeyVaultSecretName { get; set; } } /// An option to store secret value in secure place @@ -46,6 +61,8 @@ internal partial interface ISecretStoreInternal { /// The key vault id to store secret string KeyVaultId { get; set; } + /// The key vault secret name to store secret, only valid when storing one secret + string KeyVaultSecretName { get; set; } } } \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/SecretStore.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SecretStore.json.cs similarity index 89% rename from src/ServiceLinker/generated/api/Models/Api20220501/SecretStore.json.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/SecretStore.json.cs index 9c1fab32c862..6bec08d41755 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/SecretStore.json.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SecretStore.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class SecretStore partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretStore. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretStore. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretStore. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretStore. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretStore FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretStore FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new SecretStore(json) : null; } @@ -78,6 +78,7 @@ internal SecretStore(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Js return; } {_keyVaultId = If( json?.PropertyT("keyVaultId"), out var __jsonKeyVaultId) ? (string)__jsonKeyVaultId : (string)KeyVaultId;} + {_keyVaultSecretName = If( json?.PropertyT("keyVaultSecretName"), out var __jsonKeyVaultSecretName) ? (string)__jsonKeyVaultSecretName : (string)KeyVaultSecretName;} AfterFromJson(json); } @@ -101,6 +102,7 @@ public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode To return container; } AddIf( null != (((object)this._keyVaultId)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._keyVaultId.ToString()) : null, "keyVaultId" ,container.Add ); + AddIf( null != (((object)this._keyVaultSecretName)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._keyVaultSecretName.ToString()) : null, "keyVaultSecretName" ,container.Add ); AfterToJson(ref container); return container; } diff --git a/src/ServiceLinker/generated/api/Models/Api20/Resource.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SelfHostedServer.PowerShell.cs similarity index 64% rename from src/ServiceLinker/generated/api/Models/Api20/Resource.PowerShell.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/SelfHostedServer.PowerShell.cs index 733c72197940..1ec63404a249 100644 --- a/src/ServiceLinker/generated/api/Models/Api20/Resource.PowerShell.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SelfHostedServer.PowerShell.cs @@ -3,15 +3,13 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; - /// - /// Common fields that are returned in the response for all Azure Resource Manager resources - /// - [System.ComponentModel.TypeConverter(typeof(ResourceTypeConverter))] - public partial class Resource + /// The service properties when target service type is SelfHostedServer + [System.ComponentModel.TypeConverter(typeof(SelfHostedServerTypeConverter))] + public partial class SelfHostedServer { /// @@ -33,7 +31,8 @@ public partial class Resource /// /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Collections.IDictionary content that should be used. @@ -45,7 +44,8 @@ public partial class Resource /// /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -55,44 +55,46 @@ public partial class Resource partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResource DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISelfHostedServer DeserializeFromDictionary(global::System.Collections.IDictionary content) { - return new Resource(content); + return new SelfHostedServer(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResource DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISelfHostedServer DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { - return new Resource(content); + return new SelfHostedServer(content); } /// - /// Creates a new instance of , deserializing the content from a json string. + /// Creates a new instance of , deserializing the content from a json string. /// /// a string containing a JSON serialized instance of this model. - /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResource FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISelfHostedServer FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. - internal Resource(global::System.Collections.IDictionary content) + internal SelfHostedServer(global::System.Collections.IDictionary content) { bool returnNow = false; BeforeDeserializeDictionary(content, ref returnNow); @@ -101,27 +103,23 @@ internal Resource(global::System.Collections.IDictionary content) return; } // actually deserialize - if (content.Contains("Id")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)this).Id, global::System.Convert.ToString); - } - if (content.Contains("Name")) + if (content.Contains("Endpoint")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISelfHostedServerInternal)this).Endpoint = (string) content.GetValueForProperty("Endpoint",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISelfHostedServerInternal)this).Endpoint, global::System.Convert.ToString); } if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBaseInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBaseInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType.CreateFrom); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. - internal Resource(global::System.Management.Automation.PSObject content) + internal SelfHostedServer(global::System.Management.Automation.PSObject content) { bool returnNow = false; BeforeDeserializePSObject(content, ref returnNow); @@ -130,17 +128,13 @@ internal Resource(global::System.Management.Automation.PSObject content) return; } // actually deserialize - if (content.Contains("Id")) - { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)this).Id, global::System.Convert.ToString); - } - if (content.Contains("Name")) + if (content.Contains("Endpoint")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISelfHostedServerInternal)this).Endpoint = (string) content.GetValueForProperty("Endpoint",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISelfHostedServerInternal)this).Endpoint, global::System.Convert.ToString); } if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResourceInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBaseInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBaseInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType.CreateFrom); } AfterDeserializePSObject(content); } @@ -150,9 +144,9 @@ internal Resource(global::System.Management.Automation.PSObject content) /// a containing this model serialized to JSON text. public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeAll)?.ToString(); } - /// Common fields that are returned in the response for all Azure Resource Manager resources - [System.ComponentModel.TypeConverter(typeof(ResourceTypeConverter))] - public partial interface IResource + /// The service properties when target service type is SelfHostedServer + [System.ComponentModel.TypeConverter(typeof(SelfHostedServerTypeConverter))] + public partial interface ISelfHostedServer { diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/SelfHostedServer.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SelfHostedServer.TypeConverter.cs new file mode 100644 index 000000000000..084a5b7c8c1f --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SelfHostedServer.TypeConverter.cs @@ -0,0 +1,147 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class SelfHostedServerTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// type. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the + /// parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter into an instance of + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISelfHostedServer ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISelfHostedServer).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return SelfHostedServer.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return SelfHostedServer.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return SelfHostedServer.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/SelfHostedServer.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SelfHostedServer.cs new file mode 100644 index 000000000000..0256bcbc3246 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SelfHostedServer.cs @@ -0,0 +1,74 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// The service properties when target service type is SelfHostedServer + public partial class SelfHostedServer : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISelfHostedServer, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISelfHostedServerInternal, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IValidates + { + /// + /// Backing field for Inherited model + /// + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase __targetServiceBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.TargetServiceBase(); + + /// Backing field for property. + private string _endpoint; + + /// The endpoint of service. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public string Endpoint { get => this._endpoint; set => this._endpoint = value; } + + /// The target service type. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBaseInternal)__targetServiceBase).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBaseInternal)__targetServiceBase).Type = value ; } + + /// Creates an new instance. + public SelfHostedServer() + { + + } + + /// Validates that this object meets the validation criteria. + /// an instance that will receive validation + /// events. + /// + /// A that will be complete when validation is completed. + /// + public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) + { + await eventListener.AssertNotNull(nameof(__targetServiceBase), __targetServiceBase); + await eventListener.AssertObjectIsValid(nameof(__targetServiceBase), __targetServiceBase); + } + } + /// The service properties when target service type is SelfHostedServer + public partial interface ISelfHostedServer : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase + { + /// The endpoint of service. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The endpoint of service.", + SerializedName = @"endpoint", + PossibleTypes = new [] { typeof(string) })] + string Endpoint { get; set; } + + } + /// The service properties when target service type is SelfHostedServer + internal partial interface ISelfHostedServerInternal : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBaseInternal + { + /// The endpoint of service. + string Endpoint { get; set; } + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/SelfHostedServer.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SelfHostedServer.json.cs new file mode 100644 index 000000000000..e50845ae655d --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SelfHostedServer.json.cs @@ -0,0 +1,110 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// The service properties when target service type is SelfHostedServer + public partial class SelfHostedServer + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the + /// output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISelfHostedServer. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISelfHostedServer. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISelfHostedServer FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new SelfHostedServer(json) : null; + } + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject instance to deserialize from. + internal SelfHostedServer(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + __targetServiceBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.TargetServiceBase(json); + {_endpoint = If( json?.PropertyT("endpoint"), out var __jsonEndpoint) ? (string)__jsonEndpoint : (string)Endpoint;} + AfterFromJson(json); + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + __targetServiceBase?.ToJson(container, serializationMode); + AddIf( null != (((object)this._endpoint)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._endpoint.ToString()) : null, "endpoint" ,container.Add ); + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/ServicePrincipalCertificateAuthInfo.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ServicePrincipalCertificateAuthInfo.PowerShell.cs similarity index 56% rename from src/ServiceLinker/generated/api/Models/Api20220501/ServicePrincipalCertificateAuthInfo.PowerShell.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/ServicePrincipalCertificateAuthInfo.PowerShell.cs index 846c06d3702c..662e55e09bb0 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/ServicePrincipalCertificateAuthInfo.PowerShell.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ServicePrincipalCertificateAuthInfo.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -31,7 +31,8 @@ public partial class ServicePrincipalCertificateAuthInfo /// /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Collections.IDictionary content that should be used. @@ -43,7 +44,8 @@ public partial class ServicePrincipalCertificateAuthInfo /// /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -53,29 +55,29 @@ public partial class ServicePrincipalCertificateAuthInfo partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IServicePrincipalCertificateAuthInfo DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalCertificateAuthInfo DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new ServicePrincipalCertificateAuthInfo(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IServicePrincipalCertificateAuthInfo DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalCertificateAuthInfo DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new ServicePrincipalCertificateAuthInfo(content); } @@ -87,10 +89,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api2022050 /// /// an instance of the model class. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IServicePrincipalCertificateAuthInfo FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalCertificateAuthInfo FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -105,25 +107,33 @@ internal ServicePrincipalCertificateAuthInfo(global::System.Collections.IDiction // actually deserialize if (content.Contains("ClientId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IServicePrincipalCertificateAuthInfoInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IServicePrincipalCertificateAuthInfoInternal)this).ClientId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalCertificateAuthInfoInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalCertificateAuthInfoInternal)this).ClientId, global::System.Convert.ToString); } if (content.Contains("PrincipalId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IServicePrincipalCertificateAuthInfoInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IServicePrincipalCertificateAuthInfoInternal)this).PrincipalId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalCertificateAuthInfoInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalCertificateAuthInfoInternal)this).PrincipalId, global::System.Convert.ToString); } if (content.Contains("Certificate")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IServicePrincipalCertificateAuthInfoInternal)this).Certificate = (string) content.GetValueForProperty("Certificate",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IServicePrincipalCertificateAuthInfoInternal)this).Certificate, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalCertificateAuthInfoInternal)this).Certificate = (string) content.GetValueForProperty("Certificate",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalCertificateAuthInfoInternal)this).Certificate, global::System.Convert.ToString); + } + if (content.Contains("DeleteOrUpdateBehavior")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalCertificateAuthInfoInternal)this).DeleteOrUpdateBehavior = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior?) content.GetValueForProperty("DeleteOrUpdateBehavior",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalCertificateAuthInfoInternal)this).DeleteOrUpdateBehavior, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior.CreateFrom); + } + if (content.Contains("Role")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalCertificateAuthInfoInternal)this).Role = (string[]) content.GetValueForProperty("Role",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalCertificateAuthInfoInternal)this).Role, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); } if (content.Contains("AuthType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBaseInternal)this).AuthType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType) content.GetValueForProperty("AuthType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBaseInternal)this).AuthType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)this).AuthType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType) content.GetValueForProperty("AuthType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)this).AuthType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType.CreateFrom); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -138,19 +148,27 @@ internal ServicePrincipalCertificateAuthInfo(global::System.Management.Automatio // actually deserialize if (content.Contains("ClientId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IServicePrincipalCertificateAuthInfoInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IServicePrincipalCertificateAuthInfoInternal)this).ClientId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalCertificateAuthInfoInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalCertificateAuthInfoInternal)this).ClientId, global::System.Convert.ToString); } if (content.Contains("PrincipalId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IServicePrincipalCertificateAuthInfoInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IServicePrincipalCertificateAuthInfoInternal)this).PrincipalId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalCertificateAuthInfoInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalCertificateAuthInfoInternal)this).PrincipalId, global::System.Convert.ToString); } if (content.Contains("Certificate")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IServicePrincipalCertificateAuthInfoInternal)this).Certificate = (string) content.GetValueForProperty("Certificate",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IServicePrincipalCertificateAuthInfoInternal)this).Certificate, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalCertificateAuthInfoInternal)this).Certificate = (string) content.GetValueForProperty("Certificate",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalCertificateAuthInfoInternal)this).Certificate, global::System.Convert.ToString); + } + if (content.Contains("DeleteOrUpdateBehavior")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalCertificateAuthInfoInternal)this).DeleteOrUpdateBehavior = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior?) content.GetValueForProperty("DeleteOrUpdateBehavior",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalCertificateAuthInfoInternal)this).DeleteOrUpdateBehavior, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior.CreateFrom); + } + if (content.Contains("Role")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalCertificateAuthInfoInternal)this).Role = (string[]) content.GetValueForProperty("Role",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalCertificateAuthInfoInternal)this).Role, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); } if (content.Contains("AuthType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBaseInternal)this).AuthType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType) content.GetValueForProperty("AuthType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBaseInternal)this).AuthType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)this).AuthType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType) content.GetValueForProperty("AuthType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)this).AuthType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType.CreateFrom); } AfterDeserializePSObject(content); } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/ServicePrincipalCertificateAuthInfo.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ServicePrincipalCertificateAuthInfo.TypeConverter.cs similarity index 81% rename from src/ServiceLinker/generated/api/Models/Api20220501/ServicePrincipalCertificateAuthInfo.TypeConverter.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/ServicePrincipalCertificateAuthInfo.TypeConverter.cs index 6afdffe93dd0..302ca2e5b084 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/ServicePrincipalCertificateAuthInfo.TypeConverter.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ServicePrincipalCertificateAuthInfo.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -14,20 +14,20 @@ public partial class ServicePrincipalCertificateAuthInfoTypeConverter : global:: { /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); /// - /// Determines if the converter can convert the parameter to the . + /// Determines if the converter can convert the parameter to the + /// type. /// /// the instance to check if it can be converted to the type. @@ -76,19 +76,20 @@ public static bool CanConvertFrom(dynamic sourceValue) } /// - /// Determines if the parameter can be converted to the parameter + /// Determines if the parameter can be converted to the + /// parameter /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false + /// true if the converter can convert the parameter to the parameter, otherwise false /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to @@ -100,21 +101,21 @@ public static bool CanConvertFrom(dynamic sourceValue) public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); /// - /// Converts the parameter to the parameter using and + /// Converts the parameter into an instance of /// /// the value to convert into an instance of . /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IServicePrincipalCertificateAuthInfo ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalCertificateAuthInfo ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IServicePrincipalCertificateAuthInfo).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalCertificateAuthInfo).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/ServicePrincipalCertificateAuthInfo.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ServicePrincipalCertificateAuthInfo.cs similarity index 62% rename from src/ServiceLinker/generated/api/Models/Api20220501/ServicePrincipalCertificateAuthInfo.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/ServicePrincipalCertificateAuthInfo.cs index 65cbc0e2f416..471f3767d7a7 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/ServicePrincipalCertificateAuthInfo.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ServicePrincipalCertificateAuthInfo.cs @@ -3,25 +3,25 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; /// The authentication info when authType is servicePrincipal certificate public partial class ServicePrincipalCertificateAuthInfo : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IServicePrincipalCertificateAuthInfo, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IServicePrincipalCertificateAuthInfoInternal, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalCertificateAuthInfo, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalCertificateAuthInfoInternal, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IValidates { /// - /// Backing field for Inherited model /// - private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase __authInfoBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.AuthInfoBase(); + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase __authInfoBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AuthInfoBase(); /// The authentication type. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType AuthType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBaseInternal)__authInfoBase).AuthType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBaseInternal)__authInfoBase).AuthType = value ; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType AuthType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)__authInfoBase).AuthType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)__authInfoBase).AuthType = value ; } /// Backing field for property. private string _certificate; @@ -37,6 +37,15 @@ public partial class ServicePrincipalCertificateAuthInfo : [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] public string ClientId { get => this._clientId; set => this._clientId = value; } + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? _deleteOrUpdateBehavior; + + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? DeleteOrUpdateBehavior { get => this._deleteOrUpdateBehavior; set => this._deleteOrUpdateBehavior = value; } + /// Backing field for property. private string _principalId; @@ -44,6 +53,13 @@ public partial class ServicePrincipalCertificateAuthInfo : [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] public string PrincipalId { get => this._principalId; set => this._principalId = value; } + /// Backing field for property. + private string[] _role; + + /// Optional, this value specifies the Azure roles to be assigned. Automatically + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public string[] Role { get => this._role; set => this._role = value; } + /// Creates an new instance. public ServicePrincipalCertificateAuthInfo() { @@ -65,7 +81,7 @@ public ServicePrincipalCertificateAuthInfo() /// The authentication info when authType is servicePrincipal certificate public partial interface IServicePrincipalCertificateAuthInfo : Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase { /// ServicePrincipal certificate for servicePrincipal auth. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( @@ -83,6 +99,16 @@ public partial interface IServicePrincipalCertificateAuthInfo : SerializedName = @"clientId", PossibleTypes = new [] { typeof(string) })] string ClientId { get; set; } + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Indicates whether to clean up previous operation when Linker is updating or deleting", + SerializedName = @"deleteOrUpdateBehavior", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? DeleteOrUpdateBehavior { get; set; } /// Principal Id for servicePrincipal auth. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( Required = true, @@ -91,18 +117,32 @@ public partial interface IServicePrincipalCertificateAuthInfo : SerializedName = @"principalId", PossibleTypes = new [] { typeof(string) })] string PrincipalId { get; set; } + /// Optional, this value specifies the Azure roles to be assigned. Automatically + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Optional, this value specifies the Azure roles to be assigned. Automatically ", + SerializedName = @"roles", + PossibleTypes = new [] { typeof(string) })] + string[] Role { get; set; } } /// The authentication info when authType is servicePrincipal certificate internal partial interface IServicePrincipalCertificateAuthInfoInternal : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBaseInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal { /// ServicePrincipal certificate for servicePrincipal auth. string Certificate { get; set; } /// Application clientId for servicePrincipal auth. string ClientId { get; set; } + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? DeleteOrUpdateBehavior { get; set; } /// Principal Id for servicePrincipal auth. string PrincipalId { get; set; } + /// Optional, this value specifies the Azure roles to be assigned. Automatically + string[] Role { get; set; } } } \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/ServicePrincipalCertificateAuthInfo.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ServicePrincipalCertificateAuthInfo.json.cs similarity index 79% rename from src/ServiceLinker/generated/api/Models/Api20220501/ServicePrincipalCertificateAuthInfo.json.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/ServicePrincipalCertificateAuthInfo.json.cs index 93ca0a829269..95442d2d71db 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/ServicePrincipalCertificateAuthInfo.json.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ServicePrincipalCertificateAuthInfo.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class ServicePrincipalCertificateAuthInfo partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IServicePrincipalCertificateAuthInfo. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalCertificateAuthInfo. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IServicePrincipalCertificateAuthInfo. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalCertificateAuthInfo. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IServicePrincipalCertificateAuthInfo FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalCertificateAuthInfo FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new ServicePrincipalCertificateAuthInfo(json) : null; } @@ -77,10 +77,12 @@ internal ServicePrincipalCertificateAuthInfo(Microsoft.Azure.PowerShell.Cmdlets. { return; } - __authInfoBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.AuthInfoBase(json); + __authInfoBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AuthInfoBase(json); {_clientId = If( json?.PropertyT("clientId"), out var __jsonClientId) ? (string)__jsonClientId : (string)ClientId;} {_principalId = If( json?.PropertyT("principalId"), out var __jsonPrincipalId) ? (string)__jsonPrincipalId : (string)PrincipalId;} {_certificate = If( json?.PropertyT("certificate"), out var __jsonCertificate) ? (string)__jsonCertificate : (string)Certificate;} + {_deleteOrUpdateBehavior = If( json?.PropertyT("deleteOrUpdateBehavior"), out var __jsonDeleteOrUpdateBehavior) ? (string)__jsonDeleteOrUpdateBehavior : (string)DeleteOrUpdateBehavior;} + {_role = If( json?.PropertyT("roles"), out var __jsonRoles) ? If( __jsonRoles as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(string) (__u is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString __t ? (string)(__t.ToString()) : null)) ))() : null : Role;} AfterFromJson(json); } @@ -108,6 +110,16 @@ public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode To AddIf( null != (((object)this._clientId)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._clientId.ToString()) : null, "clientId" ,container.Add ); AddIf( null != (((object)this._principalId)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._principalId.ToString()) : null, "principalId" ,container.Add ); AddIf( null != (((object)this._certificate)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._certificate.ToString()) : null, "certificate" ,container.Add ); + AddIf( null != (((object)this._deleteOrUpdateBehavior)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._deleteOrUpdateBehavior.ToString()) : null, "deleteOrUpdateBehavior" ,container.Add ); + if (null != this._role) + { + var __w = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.XNodeArray(); + foreach( var __x in this._role ) + { + AddIf(null != (((object)__x)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(__x.ToString()) : null ,__w.Add); + } + container.Add("roles",__w); + } AfterToJson(ref container); return container; } diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/ServicePrincipalSecretAuthInfo.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ServicePrincipalSecretAuthInfo.PowerShell.cs new file mode 100644 index 000000000000..7c303593cb67 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ServicePrincipalSecretAuthInfo.PowerShell.cs @@ -0,0 +1,194 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// The authentication info when authType is servicePrincipal secret + [System.ComponentModel.TypeConverter(typeof(ServicePrincipalSecretAuthInfoTypeConverter))] + public partial class ServicePrincipalSecretAuthInfo + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalSecretAuthInfo DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new ServicePrincipalSecretAuthInfo(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalSecretAuthInfo DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new ServicePrincipalSecretAuthInfo(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalSecretAuthInfo FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal ServicePrincipalSecretAuthInfo(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("ClientId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalSecretAuthInfoInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalSecretAuthInfoInternal)this).ClientId, global::System.Convert.ToString); + } + if (content.Contains("PrincipalId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalSecretAuthInfoInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalSecretAuthInfoInternal)this).PrincipalId, global::System.Convert.ToString); + } + if (content.Contains("Secret")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalSecretAuthInfoInternal)this).Secret = (string) content.GetValueForProperty("Secret",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalSecretAuthInfoInternal)this).Secret, global::System.Convert.ToString); + } + if (content.Contains("DeleteOrUpdateBehavior")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalSecretAuthInfoInternal)this).DeleteOrUpdateBehavior = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior?) content.GetValueForProperty("DeleteOrUpdateBehavior",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalSecretAuthInfoInternal)this).DeleteOrUpdateBehavior, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior.CreateFrom); + } + if (content.Contains("Role")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalSecretAuthInfoInternal)this).Role = (string[]) content.GetValueForProperty("Role",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalSecretAuthInfoInternal)this).Role, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + } + if (content.Contains("AuthType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)this).AuthType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType) content.GetValueForProperty("AuthType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)this).AuthType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType.CreateFrom); + } + if (content.Contains("UserName")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfoInternal)this).UserName = (string) content.GetValueForProperty("UserName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfoInternal)this).UserName, global::System.Convert.ToString); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal ServicePrincipalSecretAuthInfo(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("ClientId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalSecretAuthInfoInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalSecretAuthInfoInternal)this).ClientId, global::System.Convert.ToString); + } + if (content.Contains("PrincipalId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalSecretAuthInfoInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalSecretAuthInfoInternal)this).PrincipalId, global::System.Convert.ToString); + } + if (content.Contains("Secret")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalSecretAuthInfoInternal)this).Secret = (string) content.GetValueForProperty("Secret",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalSecretAuthInfoInternal)this).Secret, global::System.Convert.ToString); + } + if (content.Contains("DeleteOrUpdateBehavior")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalSecretAuthInfoInternal)this).DeleteOrUpdateBehavior = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior?) content.GetValueForProperty("DeleteOrUpdateBehavior",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalSecretAuthInfoInternal)this).DeleteOrUpdateBehavior, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior.CreateFrom); + } + if (content.Contains("Role")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalSecretAuthInfoInternal)this).Role = (string[]) content.GetValueForProperty("Role",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalSecretAuthInfoInternal)this).Role, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + } + if (content.Contains("AuthType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)this).AuthType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType) content.GetValueForProperty("AuthType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)this).AuthType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType.CreateFrom); + } + if (content.Contains("UserName")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfoInternal)this).UserName = (string) content.GetValueForProperty("UserName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfoInternal)this).UserName, global::System.Convert.ToString); + } + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// The authentication info when authType is servicePrincipal secret + [System.ComponentModel.TypeConverter(typeof(ServicePrincipalSecretAuthInfoTypeConverter))] + public partial interface IServicePrincipalSecretAuthInfo + + { + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/ServicePrincipalSecretAuthInfo.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ServicePrincipalSecretAuthInfo.TypeConverter.cs similarity index 81% rename from src/ServiceLinker/generated/api/Models/Api20220501/ServicePrincipalSecretAuthInfo.TypeConverter.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/ServicePrincipalSecretAuthInfo.TypeConverter.cs index f17e93c60510..f5637326022e 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/ServicePrincipalSecretAuthInfo.TypeConverter.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ServicePrincipalSecretAuthInfo.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -14,20 +14,20 @@ public partial class ServicePrincipalSecretAuthInfoTypeConverter : global::Syste { /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); /// - /// Determines if the converter can convert the parameter to the . + /// Determines if the converter can convert the parameter to the + /// type. /// /// the instance to check if it can be converted to the type. @@ -75,19 +75,20 @@ public static bool CanConvertFrom(dynamic sourceValue) } /// - /// Determines if the parameter can be converted to the parameter + /// Determines if the parameter can be converted to the + /// parameter /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false + /// true if the converter can convert the parameter to the parameter, otherwise false /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to @@ -99,21 +100,21 @@ public static bool CanConvertFrom(dynamic sourceValue) public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); /// - /// Converts the parameter to the parameter using and + /// Converts the parameter into an instance of /// /// the value to convert into an instance of . /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IServicePrincipalSecretAuthInfo ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalSecretAuthInfo ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IServicePrincipalSecretAuthInfo).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalSecretAuthInfo).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/ServicePrincipalSecretAuthInfo.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ServicePrincipalSecretAuthInfo.cs similarity index 53% rename from src/ServiceLinker/generated/api/Models/Api20220501/ServicePrincipalSecretAuthInfo.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/ServicePrincipalSecretAuthInfo.cs index 6668eb78fc97..e47a95595ca3 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/ServicePrincipalSecretAuthInfo.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ServicePrincipalSecretAuthInfo.cs @@ -3,25 +3,31 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; /// The authentication info when authType is servicePrincipal secret public partial class ServicePrincipalSecretAuthInfo : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IServicePrincipalSecretAuthInfo, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IServicePrincipalSecretAuthInfoInternal, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalSecretAuthInfo, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalSecretAuthInfoInternal, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IValidates { /// - /// Backing field for Inherited model /// - private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase __authInfoBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.AuthInfoBase(); + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase __authInfoBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AuthInfoBase(); + + /// + /// Backing field for Inherited model + /// + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfo __databaseAadAuthInfo = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DatabaseAadAuthInfo(); /// The authentication type. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType AuthType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBaseInternal)__authInfoBase).AuthType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBaseInternal)__authInfoBase).AuthType = value ; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType AuthType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)__authInfoBase).AuthType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)__authInfoBase).AuthType = value ; } /// Backing field for property. private string _clientId; @@ -30,6 +36,15 @@ public partial class ServicePrincipalSecretAuthInfo : [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] public string ClientId { get => this._clientId; set => this._clientId = value; } + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? _deleteOrUpdateBehavior; + + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? DeleteOrUpdateBehavior { get => this._deleteOrUpdateBehavior; set => this._deleteOrUpdateBehavior = value; } + /// Backing field for property. private string _principalId; @@ -37,6 +52,13 @@ public partial class ServicePrincipalSecretAuthInfo : [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] public string PrincipalId { get => this._principalId; set => this._principalId = value; } + /// Backing field for property. + private string[] _role; + + /// Optional, this value specifies the Azure roles to be assigned. Automatically + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public string[] Role { get => this._role; set => this._role = value; } + /// Backing field for property. private string _secret; @@ -44,6 +66,10 @@ public partial class ServicePrincipalSecretAuthInfo : [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] public string Secret { get => this._secret; set => this._secret = value; } + /// Username created in the database which is mapped to a user in AAD. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public string UserName { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfoInternal)__databaseAadAuthInfo).UserName; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfoInternal)__databaseAadAuthInfo).UserName = value ?? null; } + /// Creates an new instance. public ServicePrincipalSecretAuthInfo() { @@ -60,12 +86,15 @@ public ServicePrincipalSecretAuthInfo() { await eventListener.AssertNotNull(nameof(__authInfoBase), __authInfoBase); await eventListener.AssertObjectIsValid(nameof(__authInfoBase), __authInfoBase); + await eventListener.AssertNotNull(nameof(__databaseAadAuthInfo), __databaseAadAuthInfo); + await eventListener.AssertObjectIsValid(nameof(__databaseAadAuthInfo), __databaseAadAuthInfo); } } /// The authentication info when authType is servicePrincipal secret public partial interface IServicePrincipalSecretAuthInfo : Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfo { /// ServicePrincipal application clientId for servicePrincipal auth. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( @@ -75,6 +104,16 @@ public partial interface IServicePrincipalSecretAuthInfo : SerializedName = @"clientId", PossibleTypes = new [] { typeof(string) })] string ClientId { get; set; } + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Indicates whether to clean up previous operation when Linker is updating or deleting", + SerializedName = @"deleteOrUpdateBehavior", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? DeleteOrUpdateBehavior { get; set; } /// Principal Id for servicePrincipal auth. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( Required = true, @@ -83,6 +122,14 @@ public partial interface IServicePrincipalSecretAuthInfo : SerializedName = @"principalId", PossibleTypes = new [] { typeof(string) })] string PrincipalId { get; set; } + /// Optional, this value specifies the Azure roles to be assigned. Automatically + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Optional, this value specifies the Azure roles to be assigned. Automatically ", + SerializedName = @"roles", + PossibleTypes = new [] { typeof(string) })] + string[] Role { get; set; } /// Secret for servicePrincipal auth. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( Required = true, @@ -95,12 +142,19 @@ public partial interface IServicePrincipalSecretAuthInfo : } /// The authentication info when authType is servicePrincipal secret internal partial interface IServicePrincipalSecretAuthInfoInternal : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBaseInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfoInternal { /// ServicePrincipal application clientId for servicePrincipal auth. string ClientId { get; set; } + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? DeleteOrUpdateBehavior { get; set; } /// Principal Id for servicePrincipal auth. string PrincipalId { get; set; } + /// Optional, this value specifies the Azure roles to be assigned. Automatically + string[] Role { get; set; } /// Secret for servicePrincipal auth. string Secret { get; set; } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/ServicePrincipalSecretAuthInfo.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ServicePrincipalSecretAuthInfo.json.cs similarity index 78% rename from src/ServiceLinker/generated/api/Models/Api20220501/ServicePrincipalSecretAuthInfo.json.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/ServicePrincipalSecretAuthInfo.json.cs index f6ed4da49089..c0f8d2d92f16 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/ServicePrincipalSecretAuthInfo.json.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ServicePrincipalSecretAuthInfo.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class ServicePrincipalSecretAuthInfo partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IServicePrincipalSecretAuthInfo. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalSecretAuthInfo. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IServicePrincipalSecretAuthInfo. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalSecretAuthInfo. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IServicePrincipalSecretAuthInfo FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IServicePrincipalSecretAuthInfo FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new ServicePrincipalSecretAuthInfo(json) : null; } @@ -77,10 +77,13 @@ internal ServicePrincipalSecretAuthInfo(Microsoft.Azure.PowerShell.Cmdlets.Servi { return; } - __authInfoBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.AuthInfoBase(json); + __authInfoBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AuthInfoBase(json); + __databaseAadAuthInfo = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DatabaseAadAuthInfo(json); {_clientId = If( json?.PropertyT("clientId"), out var __jsonClientId) ? (string)__jsonClientId : (string)ClientId;} {_principalId = If( json?.PropertyT("principalId"), out var __jsonPrincipalId) ? (string)__jsonPrincipalId : (string)PrincipalId;} {_secret = If( json?.PropertyT("secret"), out var __jsonSecret) ? (string)__jsonSecret : (string)Secret;} + {_deleteOrUpdateBehavior = If( json?.PropertyT("deleteOrUpdateBehavior"), out var __jsonDeleteOrUpdateBehavior) ? (string)__jsonDeleteOrUpdateBehavior : (string)DeleteOrUpdateBehavior;} + {_role = If( json?.PropertyT("roles"), out var __jsonRoles) ? If( __jsonRoles as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(string) (__u is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString __t ? (string)(__t.ToString()) : null)) ))() : null : Role;} AfterFromJson(json); } @@ -104,9 +107,20 @@ public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode To return container; } __authInfoBase?.ToJson(container, serializationMode); + __databaseAadAuthInfo?.ToJson(container, serializationMode); AddIf( null != (((object)this._clientId)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._clientId.ToString()) : null, "clientId" ,container.Add ); AddIf( null != (((object)this._principalId)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._principalId.ToString()) : null, "principalId" ,container.Add ); AddIf( null != (((object)this._secret)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._secret.ToString()) : null, "secret" ,container.Add ); + AddIf( null != (((object)this._deleteOrUpdateBehavior)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._deleteOrUpdateBehavior.ToString()) : null, "deleteOrUpdateBehavior" ,container.Add ); + if (null != this._role) + { + var __w = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.XNodeArray(); + foreach( var __x in this._role ) + { + AddIf(null != (((object)__x)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(__x.ToString()) : null ,__w.Add); + } + container.Add("roles",__w); + } AfterToJson(ref container); return container; } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/SourceConfiguration.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SourceConfiguration.PowerShell.cs similarity index 76% rename from src/ServiceLinker/generated/api/Models/Api20220501/SourceConfiguration.PowerShell.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/SourceConfiguration.PowerShell.cs index e2efb4b14569..c73a95d8fb31 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/SourceConfiguration.PowerShell.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SourceConfiguration.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -31,7 +31,8 @@ public partial class SourceConfiguration /// /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Collections.IDictionary content that should be used. @@ -43,7 +44,8 @@ public partial class SourceConfiguration /// /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -53,27 +55,29 @@ public partial class SourceConfiguration partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfiguration DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new SourceConfiguration(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfiguration DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new SourceConfiguration(content); } @@ -83,10 +87,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api2022050 /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfiguration FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -101,17 +105,17 @@ internal SourceConfiguration(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfigurationInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfigurationInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfigurationInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfigurationInternal)this).Name, global::System.Convert.ToString); } if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfigurationInternal)this).Value = (string) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfigurationInternal)this).Value, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfigurationInternal)this).Value = (string) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfigurationInternal)this).Value, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -126,11 +130,11 @@ internal SourceConfiguration(global::System.Management.Automation.PSObject conte // actually deserialize if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfigurationInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfigurationInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfigurationInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfigurationInternal)this).Name, global::System.Convert.ToString); } if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfigurationInternal)this).Value = (string) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfigurationInternal)this).Value, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfigurationInternal)this).Value = (string) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfigurationInternal)this).Value, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/SourceConfiguration.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SourceConfiguration.TypeConverter.cs similarity index 81% rename from src/ServiceLinker/generated/api/Models/Api20220501/SourceConfiguration.TypeConverter.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/SourceConfiguration.TypeConverter.cs index b3104d04c670..e7c62e5bf48a 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/SourceConfiguration.TypeConverter.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SourceConfiguration.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -14,20 +14,20 @@ public partial class SourceConfigurationTypeConverter : global::System.Managemen { /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); /// - /// Determines if the converter can convert the parameter to the . + /// Determines if the converter can convert the parameter to the + /// type. /// /// the instance to check if it can be converted to the type. @@ -75,19 +75,20 @@ public static bool CanConvertFrom(dynamic sourceValue) } /// - /// Determines if the parameter can be converted to the parameter + /// Determines if the parameter can be converted to the + /// parameter /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false + /// true if the converter can convert the parameter to the parameter, otherwise false /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to @@ -99,21 +100,20 @@ public static bool CanConvertFrom(dynamic sourceValue) public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); /// - /// Converts the parameter to the parameter using and + /// Converts the parameter into an instance of /// /// the value to convert into an instance of . /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfiguration ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfiguration).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/SourceConfiguration.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SourceConfiguration.cs similarity index 96% rename from src/ServiceLinker/generated/api/Models/Api20220501/SourceConfiguration.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/SourceConfiguration.cs index 463d3b5d4188..3a9f5c30549e 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/SourceConfiguration.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SourceConfiguration.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; /// A configuration item for source resource public partial class SourceConfiguration : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfiguration, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfigurationInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfigurationInternal { /// Backing field for property. diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/SourceConfiguration.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SourceConfiguration.json.cs similarity index 96% rename from src/ServiceLinker/generated/api/Models/Api20220501/SourceConfiguration.json.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/SourceConfiguration.json.cs index 17f616478065..45fc761cf5bd 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/SourceConfiguration.json.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SourceConfiguration.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class SourceConfiguration partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfiguration. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfiguration. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfiguration FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new SourceConfiguration(json) : null; } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/ServicePrincipalSecretAuthInfo.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SystemAssignedIdentityAuthInfo.PowerShell.cs similarity index 55% rename from src/ServiceLinker/generated/api/Models/Api20220501/ServicePrincipalSecretAuthInfo.PowerShell.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/SystemAssignedIdentityAuthInfo.PowerShell.cs index d18efc78ecb5..b37c3ba580e2 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/ServicePrincipalSecretAuthInfo.PowerShell.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SystemAssignedIdentityAuthInfo.PowerShell.cs @@ -3,13 +3,13 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; - /// The authentication info when authType is servicePrincipal secret - [System.ComponentModel.TypeConverter(typeof(ServicePrincipalSecretAuthInfoTypeConverter))] - public partial class ServicePrincipalSecretAuthInfo + /// The authentication info when authType is systemAssignedIdentity + [System.ComponentModel.TypeConverter(typeof(SystemAssignedIdentityAuthInfoTypeConverter))] + public partial class SystemAssignedIdentityAuthInfo { /// @@ -31,7 +31,8 @@ public partial class ServicePrincipalSecretAuthInfo /// /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Collections.IDictionary content that should be used. @@ -43,7 +44,8 @@ public partial class ServicePrincipalSecretAuthInfo /// /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -53,46 +55,46 @@ public partial class ServicePrincipalSecretAuthInfo partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IServicePrincipalSecretAuthInfo DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISystemAssignedIdentityAuthInfo DeserializeFromDictionary(global::System.Collections.IDictionary content) { - return new ServicePrincipalSecretAuthInfo(content); + return new SystemAssignedIdentityAuthInfo(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IServicePrincipalSecretAuthInfo DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISystemAssignedIdentityAuthInfo DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { - return new ServicePrincipalSecretAuthInfo(content); + return new SystemAssignedIdentityAuthInfo(content); } /// - /// Creates a new instance of , deserializing the content from a json string. + /// Creates a new instance of , deserializing the content from a json string. /// /// a string containing a JSON serialized instance of this model. - /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IServicePrincipalSecretAuthInfo FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISystemAssignedIdentityAuthInfo FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. - internal ServicePrincipalSecretAuthInfo(global::System.Collections.IDictionary content) + internal SystemAssignedIdentityAuthInfo(global::System.Collections.IDictionary content) { bool returnNow = false; BeforeDeserializeDictionary(content, ref returnNow); @@ -101,31 +103,31 @@ internal ServicePrincipalSecretAuthInfo(global::System.Collections.IDictionary c return; } // actually deserialize - if (content.Contains("ClientId")) + if (content.Contains("DeleteOrUpdateBehavior")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IServicePrincipalSecretAuthInfoInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IServicePrincipalSecretAuthInfoInternal)this).ClientId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISystemAssignedIdentityAuthInfoInternal)this).DeleteOrUpdateBehavior = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior?) content.GetValueForProperty("DeleteOrUpdateBehavior",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISystemAssignedIdentityAuthInfoInternal)this).DeleteOrUpdateBehavior, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior.CreateFrom); } - if (content.Contains("PrincipalId")) + if (content.Contains("Role")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IServicePrincipalSecretAuthInfoInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IServicePrincipalSecretAuthInfoInternal)this).PrincipalId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISystemAssignedIdentityAuthInfoInternal)this).Role = (string[]) content.GetValueForProperty("Role",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISystemAssignedIdentityAuthInfoInternal)this).Role, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); } - if (content.Contains("Secret")) + if (content.Contains("AuthType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IServicePrincipalSecretAuthInfoInternal)this).Secret = (string) content.GetValueForProperty("Secret",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IServicePrincipalSecretAuthInfoInternal)this).Secret, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)this).AuthType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType) content.GetValueForProperty("AuthType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)this).AuthType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType.CreateFrom); } - if (content.Contains("AuthType")) + if (content.Contains("UserName")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBaseInternal)this).AuthType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType) content.GetValueForProperty("AuthType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBaseInternal)this).AuthType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfoInternal)this).UserName = (string) content.GetValueForProperty("UserName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfoInternal)this).UserName, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. - internal ServicePrincipalSecretAuthInfo(global::System.Management.Automation.PSObject content) + internal SystemAssignedIdentityAuthInfo(global::System.Management.Automation.PSObject content) { bool returnNow = false; BeforeDeserializePSObject(content, ref returnNow); @@ -134,21 +136,21 @@ internal ServicePrincipalSecretAuthInfo(global::System.Management.Automation.PSO return; } // actually deserialize - if (content.Contains("ClientId")) + if (content.Contains("DeleteOrUpdateBehavior")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IServicePrincipalSecretAuthInfoInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IServicePrincipalSecretAuthInfoInternal)this).ClientId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISystemAssignedIdentityAuthInfoInternal)this).DeleteOrUpdateBehavior = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior?) content.GetValueForProperty("DeleteOrUpdateBehavior",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISystemAssignedIdentityAuthInfoInternal)this).DeleteOrUpdateBehavior, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior.CreateFrom); } - if (content.Contains("PrincipalId")) + if (content.Contains("Role")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IServicePrincipalSecretAuthInfoInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IServicePrincipalSecretAuthInfoInternal)this).PrincipalId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISystemAssignedIdentityAuthInfoInternal)this).Role = (string[]) content.GetValueForProperty("Role",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISystemAssignedIdentityAuthInfoInternal)this).Role, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); } - if (content.Contains("Secret")) + if (content.Contains("AuthType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IServicePrincipalSecretAuthInfoInternal)this).Secret = (string) content.GetValueForProperty("Secret",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IServicePrincipalSecretAuthInfoInternal)this).Secret, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)this).AuthType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType) content.GetValueForProperty("AuthType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)this).AuthType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType.CreateFrom); } - if (content.Contains("AuthType")) + if (content.Contains("UserName")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBaseInternal)this).AuthType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType) content.GetValueForProperty("AuthType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBaseInternal)this).AuthType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfoInternal)this).UserName = (string) content.GetValueForProperty("UserName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfoInternal)this).UserName, global::System.Convert.ToString); } AfterDeserializePSObject(content); } @@ -158,9 +160,9 @@ internal ServicePrincipalSecretAuthInfo(global::System.Management.Automation.PSO /// a containing this model serialized to JSON text. public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeAll)?.ToString(); } - /// The authentication info when authType is servicePrincipal secret - [System.ComponentModel.TypeConverter(typeof(ServicePrincipalSecretAuthInfoTypeConverter))] - public partial interface IServicePrincipalSecretAuthInfo + /// The authentication info when authType is systemAssignedIdentity + [System.ComponentModel.TypeConverter(typeof(SystemAssignedIdentityAuthInfoTypeConverter))] + public partial interface ISystemAssignedIdentityAuthInfo { diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/SystemAssignedIdentityAuthInfo.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SystemAssignedIdentityAuthInfo.TypeConverter.cs similarity index 81% rename from src/ServiceLinker/generated/api/Models/Api20220501/SystemAssignedIdentityAuthInfo.TypeConverter.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/SystemAssignedIdentityAuthInfo.TypeConverter.cs index 8b8618ccf7fb..7d5ce33f5b4f 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/SystemAssignedIdentityAuthInfo.TypeConverter.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SystemAssignedIdentityAuthInfo.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -14,20 +14,20 @@ public partial class SystemAssignedIdentityAuthInfoTypeConverter : global::Syste { /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); /// - /// Determines if the converter can convert the parameter to the . + /// Determines if the converter can convert the parameter to the + /// type. /// /// the instance to check if it can be converted to the type. @@ -75,19 +75,20 @@ public static bool CanConvertFrom(dynamic sourceValue) } /// - /// Determines if the parameter can be converted to the parameter + /// Determines if the parameter can be converted to the + /// parameter /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false + /// true if the converter can convert the parameter to the parameter, otherwise false /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to @@ -99,21 +100,21 @@ public static bool CanConvertFrom(dynamic sourceValue) public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); /// - /// Converts the parameter to the parameter using and + /// Converts the parameter into an instance of /// /// the value to convert into an instance of . /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISystemAssignedIdentityAuthInfo ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISystemAssignedIdentityAuthInfo ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISystemAssignedIdentityAuthInfo).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISystemAssignedIdentityAuthInfo).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/SystemAssignedIdentityAuthInfo.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SystemAssignedIdentityAuthInfo.cs new file mode 100644 index 000000000000..4fec753e4cfa --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SystemAssignedIdentityAuthInfo.cs @@ -0,0 +1,111 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// The authentication info when authType is systemAssignedIdentity + public partial class SystemAssignedIdentityAuthInfo : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISystemAssignedIdentityAuthInfo, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISystemAssignedIdentityAuthInfoInternal, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IValidates + { + /// + /// Backing field for Inherited model + /// + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase __authInfoBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AuthInfoBase(); + + /// + /// Backing field for Inherited model + /// + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfo __databaseAadAuthInfo = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DatabaseAadAuthInfo(); + + /// The authentication type. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType AuthType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)__authInfoBase).AuthType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)__authInfoBase).AuthType = value ; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? _deleteOrUpdateBehavior; + + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? DeleteOrUpdateBehavior { get => this._deleteOrUpdateBehavior; set => this._deleteOrUpdateBehavior = value; } + + /// Backing field for property. + private string[] _role; + + /// Optional, this value specifies the Azure role to be assigned + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public string[] Role { get => this._role; set => this._role = value; } + + /// Username created in the database which is mapped to a user in AAD. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public string UserName { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfoInternal)__databaseAadAuthInfo).UserName; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfoInternal)__databaseAadAuthInfo).UserName = value ?? null; } + + /// Creates an new instance. + public SystemAssignedIdentityAuthInfo() + { + + } + + /// Validates that this object meets the validation criteria. + /// an instance that will receive validation + /// events. + /// + /// A that will be complete when validation is completed. + /// + public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) + { + await eventListener.AssertNotNull(nameof(__authInfoBase), __authInfoBase); + await eventListener.AssertObjectIsValid(nameof(__authInfoBase), __authInfoBase); + await eventListener.AssertNotNull(nameof(__databaseAadAuthInfo), __databaseAadAuthInfo); + await eventListener.AssertObjectIsValid(nameof(__databaseAadAuthInfo), __databaseAadAuthInfo); + } + } + /// The authentication info when authType is systemAssignedIdentity + public partial interface ISystemAssignedIdentityAuthInfo : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfo + { + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Indicates whether to clean up previous operation when Linker is updating or deleting", + SerializedName = @"deleteOrUpdateBehavior", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? DeleteOrUpdateBehavior { get; set; } + /// Optional, this value specifies the Azure role to be assigned + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Optional, this value specifies the Azure role to be assigned", + SerializedName = @"roles", + PossibleTypes = new [] { typeof(string) })] + string[] Role { get; set; } + + } + /// The authentication info when authType is systemAssignedIdentity + internal partial interface ISystemAssignedIdentityAuthInfoInternal : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfoInternal + { + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? DeleteOrUpdateBehavior { get; set; } + /// Optional, this value specifies the Azure role to be assigned + string[] Role { get; set; } + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/SystemAssignedIdentityAuthInfo.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SystemAssignedIdentityAuthInfo.json.cs new file mode 100644 index 000000000000..f77d4c3895bf --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/SystemAssignedIdentityAuthInfo.json.cs @@ -0,0 +1,122 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// The authentication info when authType is systemAssignedIdentity + public partial class SystemAssignedIdentityAuthInfo + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the + /// output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISystemAssignedIdentityAuthInfo. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISystemAssignedIdentityAuthInfo. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISystemAssignedIdentityAuthInfo FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new SystemAssignedIdentityAuthInfo(json) : null; + } + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject instance to deserialize from. + internal SystemAssignedIdentityAuthInfo(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + __authInfoBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AuthInfoBase(json); + __databaseAadAuthInfo = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DatabaseAadAuthInfo(json); + {_deleteOrUpdateBehavior = If( json?.PropertyT("deleteOrUpdateBehavior"), out var __jsonDeleteOrUpdateBehavior) ? (string)__jsonDeleteOrUpdateBehavior : (string)DeleteOrUpdateBehavior;} + {_role = If( json?.PropertyT("roles"), out var __jsonRoles) ? If( __jsonRoles as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(string) (__u is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString __t ? (string)(__t.ToString()) : null)) ))() : null : Role;} + AfterFromJson(json); + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + __authInfoBase?.ToJson(container, serializationMode); + __databaseAadAuthInfo?.ToJson(container, serializationMode); + AddIf( null != (((object)this._deleteOrUpdateBehavior)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._deleteOrUpdateBehavior.ToString()) : null, "deleteOrUpdateBehavior" ,container.Add ); + if (null != this._role) + { + var __w = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.XNodeArray(); + foreach( var __x in this._role ) + { + AddIf(null != (((object)__x)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(__x.ToString()) : null ,__w.Add); + } + container.Add("roles",__w); + } + AfterToJson(ref container); + return container; + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/TargetServiceBase.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/TargetServiceBase.PowerShell.cs similarity index 78% rename from src/ServiceLinker/generated/api/Models/Api20220501/TargetServiceBase.PowerShell.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/TargetServiceBase.PowerShell.cs index a2d0c495a9dc..e226bbba2d55 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/TargetServiceBase.PowerShell.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/TargetServiceBase.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -31,7 +31,8 @@ public partial class TargetServiceBase /// /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Collections.IDictionary content that should be used. @@ -43,7 +44,8 @@ public partial class TargetServiceBase /// /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -53,27 +55,29 @@ public partial class TargetServiceBase partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new TargetServiceBase(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new TargetServiceBase(content); } @@ -83,10 +87,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api2022050 /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -101,13 +105,13 @@ internal TargetServiceBase(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBaseInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBaseInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBaseInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBaseInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType.CreateFrom); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -122,7 +126,7 @@ internal TargetServiceBase(global::System.Management.Automation.PSObject content // actually deserialize if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBaseInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBaseInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBaseInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBaseInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType.CreateFrom); } AfterDeserializePSObject(content); } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/TargetServiceBase.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/TargetServiceBase.TypeConverter.cs similarity index 81% rename from src/ServiceLinker/generated/api/Models/Api20220501/TargetServiceBase.TypeConverter.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/TargetServiceBase.TypeConverter.cs index 9b42467c0556..1df5e5059441 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/TargetServiceBase.TypeConverter.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/TargetServiceBase.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -14,19 +14,20 @@ public partial class TargetServiceBaseTypeConverter : global::System.Management. { /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); /// - /// Determines if the converter can convert the parameter to the . + /// Determines if the converter can convert the parameter to the + /// type. /// /// the instance to check if it can be converted to the type. @@ -74,19 +75,20 @@ public static bool CanConvertFrom(dynamic sourceValue) } /// - /// Determines if the parameter can be converted to the parameter + /// Determines if the parameter can be converted to the + /// parameter /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false + /// true if the converter can convert the parameter to the parameter, otherwise false /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to @@ -98,21 +100,20 @@ public static bool CanConvertFrom(dynamic sourceValue) public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); /// - /// Converts the parameter to the parameter using and + /// Converts the parameter into an instance of /// /// the value to convert into an instance of . /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/TargetServiceBase.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/TargetServiceBase.cs similarity index 95% rename from src/ServiceLinker/generated/api/Models/Api20220501/TargetServiceBase.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/TargetServiceBase.cs index abfdd143fad6..999c7874f410 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/TargetServiceBase.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/TargetServiceBase.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; /// The target service properties public partial class TargetServiceBase : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBaseInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBaseInternal { /// Backing field for property. diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/TargetServiceBase.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/TargetServiceBase.json.cs similarity index 94% rename from src/ServiceLinker/generated/api/Models/Api20220501/TargetServiceBase.json.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/TargetServiceBase.json.cs index addeeb205ec8..f9881faa04fb 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/TargetServiceBase.json.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/TargetServiceBase.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; @@ -54,15 +54,15 @@ public partial class TargetServiceBase partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase. - /// Note: the Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase interface is polymorphic, + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase. + /// Note: the Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase interface is polymorphic, /// and the precise model class that will get deserialized is determined at runtime based on the payload. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) { if (!(node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json)) { @@ -80,6 +80,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api2022050 { return new ConfluentBootstrapServer(json); } + case "SelfHostedServer": + { + return new SelfHostedServer(json); + } case "ConfluentSchemaRegistry": { return new ConfluentSchemaRegistry(json); diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/UserAccountAuthInfo.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/UserAccountAuthInfo.PowerShell.cs new file mode 100644 index 000000000000..47a9a3e2fd51 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/UserAccountAuthInfo.PowerShell.cs @@ -0,0 +1,178 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// The authentication info when authType is user account + [System.ComponentModel.TypeConverter(typeof(UserAccountAuthInfoTypeConverter))] + public partial class UserAccountAuthInfo + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAccountAuthInfo DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new UserAccountAuthInfo(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAccountAuthInfo DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new UserAccountAuthInfo(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAccountAuthInfo FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeAll)?.ToString(); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal UserAccountAuthInfo(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("PrincipalId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAccountAuthInfoInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAccountAuthInfoInternal)this).PrincipalId, global::System.Convert.ToString); + } + if (content.Contains("DeleteOrUpdateBehavior")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAccountAuthInfoInternal)this).DeleteOrUpdateBehavior = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior?) content.GetValueForProperty("DeleteOrUpdateBehavior",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAccountAuthInfoInternal)this).DeleteOrUpdateBehavior, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior.CreateFrom); + } + if (content.Contains("Role")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAccountAuthInfoInternal)this).Role = (string[]) content.GetValueForProperty("Role",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAccountAuthInfoInternal)this).Role, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + } + if (content.Contains("AuthType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)this).AuthType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType) content.GetValueForProperty("AuthType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)this).AuthType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType.CreateFrom); + } + if (content.Contains("UserName")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfoInternal)this).UserName = (string) content.GetValueForProperty("UserName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfoInternal)this).UserName, global::System.Convert.ToString); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal UserAccountAuthInfo(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("PrincipalId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAccountAuthInfoInternal)this).PrincipalId = (string) content.GetValueForProperty("PrincipalId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAccountAuthInfoInternal)this).PrincipalId, global::System.Convert.ToString); + } + if (content.Contains("DeleteOrUpdateBehavior")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAccountAuthInfoInternal)this).DeleteOrUpdateBehavior = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior?) content.GetValueForProperty("DeleteOrUpdateBehavior",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAccountAuthInfoInternal)this).DeleteOrUpdateBehavior, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior.CreateFrom); + } + if (content.Contains("Role")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAccountAuthInfoInternal)this).Role = (string[]) content.GetValueForProperty("Role",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAccountAuthInfoInternal)this).Role, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + } + if (content.Contains("AuthType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)this).AuthType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType) content.GetValueForProperty("AuthType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)this).AuthType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType.CreateFrom); + } + if (content.Contains("UserName")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfoInternal)this).UserName = (string) content.GetValueForProperty("UserName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfoInternal)this).UserName, global::System.Convert.ToString); + } + AfterDeserializePSObject(content); + } + } + /// The authentication info when authType is user account + [System.ComponentModel.TypeConverter(typeof(UserAccountAuthInfoTypeConverter))] + public partial interface IUserAccountAuthInfo + + { + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/UserAccountAuthInfo.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/UserAccountAuthInfo.TypeConverter.cs new file mode 100644 index 000000000000..f07a5536fa9e --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/UserAccountAuthInfo.TypeConverter.cs @@ -0,0 +1,147 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// + /// A PowerShell PSTypeConverter to support converting to an instance of + /// + public partial class UserAccountAuthInfoTypeConverter : global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); + + /// + /// Determines if the converter can convert the parameter to the + /// type. + /// + /// the instance to check if it can be converted to the type. + /// + /// true if the instance could be converted to a type, otherwise false + /// + public static bool CanConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return true; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + // we say yest to PSObjects + return true; + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + // we say yest to Hashtables/dictionaries + return true; + } + try + { + if (null != sourceValue.ToJsonString()) + { + return true; + } + } + catch + { + // Not one of our objects + } + try + { + string text = sourceValue.ToString()?.Trim(); + return true == text?.StartsWith("{") && true == text?.EndsWith("}") && Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(text).Type == Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonType.Object; + } + catch + { + // Doesn't look like it can be treated as JSON + } + return false; + } + + /// + /// Determines if the parameter can be converted to the + /// parameter + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); + + /// + /// Converts the parameter into an instance of + /// + /// the value to convert into an instance of . + /// + /// an instance of , or null if there is no suitable conversion. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAccountAuthInfo ConvertFrom(dynamic sourceValue) + { + if (null == sourceValue) + { + return null; + } + global::System.Type type = sourceValue.GetType(); + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAccountAuthInfo).IsAssignableFrom(type)) + { + return sourceValue; + } + try + { + return UserAccountAuthInfo.FromJsonString(typeof(string) == sourceValue.GetType() ? sourceValue : sourceValue.ToJsonString());; + } + catch + { + // Unable to use JSON pattern + } + if (typeof(global::System.Management.Automation.PSObject).IsAssignableFrom(type)) + { + return UserAccountAuthInfo.DeserializeFromPSObject(sourceValue); + } + if (typeof(global::System.Collections.IDictionary).IsAssignableFrom(type)) + { + return UserAccountAuthInfo.DeserializeFromDictionary(sourceValue); + } + return null; + } + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/UserAccountAuthInfo.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/UserAccountAuthInfo.cs new file mode 100644 index 000000000000..d3b77adc3944 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/UserAccountAuthInfo.cs @@ -0,0 +1,128 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// The authentication info when authType is user account + public partial class UserAccountAuthInfo : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAccountAuthInfo, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAccountAuthInfoInternal, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IValidates + { + /// + /// Backing field for Inherited model + /// + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase __authInfoBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AuthInfoBase(); + + /// + /// Backing field for Inherited model + /// + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfo __databaseAadAuthInfo = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DatabaseAadAuthInfo(); + + /// The authentication type. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType AuthType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)__authInfoBase).AuthType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)__authInfoBase).AuthType = value ; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? _deleteOrUpdateBehavior; + + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? DeleteOrUpdateBehavior { get => this._deleteOrUpdateBehavior; set => this._deleteOrUpdateBehavior = value; } + + /// Backing field for property. + private string _principalId; + + /// Principal Id for user account. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public string PrincipalId { get => this._principalId; set => this._principalId = value; } + + /// Backing field for property. + private string[] _role; + + /// Optional, this value specifies the Azure roles to be assigned. Automatically + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public string[] Role { get => this._role; set => this._role = value; } + + /// Username created in the database which is mapped to a user in AAD. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public string UserName { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfoInternal)__databaseAadAuthInfo).UserName; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfoInternal)__databaseAadAuthInfo).UserName = value ?? null; } + + /// Creates an new instance. + public UserAccountAuthInfo() + { + + } + + /// Validates that this object meets the validation criteria. + /// an instance that will receive validation + /// events. + /// + /// A that will be complete when validation is completed. + /// + public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) + { + await eventListener.AssertNotNull(nameof(__authInfoBase), __authInfoBase); + await eventListener.AssertObjectIsValid(nameof(__authInfoBase), __authInfoBase); + await eventListener.AssertNotNull(nameof(__databaseAadAuthInfo), __databaseAadAuthInfo); + await eventListener.AssertObjectIsValid(nameof(__databaseAadAuthInfo), __databaseAadAuthInfo); + } + } + /// The authentication info when authType is user account + public partial interface IUserAccountAuthInfo : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfo + { + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Indicates whether to clean up previous operation when Linker is updating or deleting", + SerializedName = @"deleteOrUpdateBehavior", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? DeleteOrUpdateBehavior { get; set; } + /// Principal Id for user account. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Principal Id for user account.", + SerializedName = @"principalId", + PossibleTypes = new [] { typeof(string) })] + string PrincipalId { get; set; } + /// Optional, this value specifies the Azure roles to be assigned. Automatically + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Optional, this value specifies the Azure roles to be assigned. Automatically ", + SerializedName = @"roles", + PossibleTypes = new [] { typeof(string) })] + string[] Role { get; set; } + + } + /// The authentication info when authType is user account + internal partial interface IUserAccountAuthInfoInternal : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfoInternal + { + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? DeleteOrUpdateBehavior { get; set; } + /// Principal Id for user account. + string PrincipalId { get; set; } + /// Optional, this value specifies the Azure roles to be assigned. Automatically + string[] Role { get; set; } + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/UserAccountAuthInfo.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/UserAccountAuthInfo.json.cs new file mode 100644 index 000000000000..5f410a0b4e3c --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/UserAccountAuthInfo.json.cs @@ -0,0 +1,124 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// The authentication info when authType is user account + public partial class UserAccountAuthInfo + { + + /// + /// AfterFromJson will be called after the json deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JsonNode that should be deserialized into this object. + + partial void AfterFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json); + + /// + /// AfterToJson will be called after the json serialization has finished, allowing customization of the before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The JSON container that the serialization result will be placed in. + + partial void AfterToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container); + + /// + /// BeforeFromJson will be called before the json deserialization has commenced, allowing complete customization of + /// the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the + /// output parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JsonNode that should be deserialized into this object. + /// Determines if the rest of the deserialization should be processed, or if the method should return + /// instantly. + + partial void BeforeFromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json, ref bool returnNow); + + /// + /// BeforeToJson will be called before the json serialization has commenced, allowing complete customization of the + /// object before it is serialized. + /// If you wish to disable the default serialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The JSON container that the serialization result will be placed in. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); + + /// + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAccountAuthInfo. + /// + /// a to deserialize from. + /// + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAccountAuthInfo. + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAccountAuthInfo FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + { + return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new UserAccountAuthInfo(json) : null; + } + + /// + /// Serializes this instance of into a . + /// + /// The container to serialize this object into. If the caller + /// passes in null, a new instance will be created and returned to the caller. + /// Allows the caller to choose the depth of the serialization. See . + /// + /// a serialized instance of as a . + /// + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode ToJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode serializationMode) + { + container = container ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject(); + + bool returnNow = false; + BeforeToJson(ref container, ref returnNow); + if (returnNow) + { + return container; + } + __authInfoBase?.ToJson(container, serializationMode); + __databaseAadAuthInfo?.ToJson(container, serializationMode); + AddIf( null != (((object)this._principalId)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._principalId.ToString()) : null, "principalId" ,container.Add ); + AddIf( null != (((object)this._deleteOrUpdateBehavior)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._deleteOrUpdateBehavior.ToString()) : null, "deleteOrUpdateBehavior" ,container.Add ); + if (null != this._role) + { + var __w = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.XNodeArray(); + foreach( var __x in this._role ) + { + AddIf(null != (((object)__x)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(__x.ToString()) : null ,__w.Add); + } + container.Add("roles",__w); + } + AfterToJson(ref container); + return container; + } + + /// + /// Deserializes a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject into a new instance of . + /// + /// A Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject instance to deserialize from. + internal UserAccountAuthInfo(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json) + { + bool returnNow = false; + BeforeFromJson(json, ref returnNow); + if (returnNow) + { + return; + } + __authInfoBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AuthInfoBase(json); + __databaseAadAuthInfo = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DatabaseAadAuthInfo(json); + {_principalId = If( json?.PropertyT("principalId"), out var __jsonPrincipalId) ? (string)__jsonPrincipalId : (string)PrincipalId;} + {_deleteOrUpdateBehavior = If( json?.PropertyT("deleteOrUpdateBehavior"), out var __jsonDeleteOrUpdateBehavior) ? (string)__jsonDeleteOrUpdateBehavior : (string)DeleteOrUpdateBehavior;} + {_role = If( json?.PropertyT("roles"), out var __jsonRoles) ? If( __jsonRoles as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(string) (__u is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString __t ? (string)(__t.ToString()) : null)) ))() : null : Role;} + AfterFromJson(json); + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/UserAssignedIdentityAuthInfo.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/UserAssignedIdentityAuthInfo.PowerShell.cs new file mode 100644 index 000000000000..bc9da8a6d531 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/UserAssignedIdentityAuthInfo.PowerShell.cs @@ -0,0 +1,186 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// The authentication info when authType is userAssignedIdentity + [System.ComponentModel.TypeConverter(typeof(UserAssignedIdentityAuthInfoTypeConverter))] + public partial class UserAssignedIdentityAuthInfo + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAssignedIdentityAuthInfo DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new UserAssignedIdentityAuthInfo(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAssignedIdentityAuthInfo DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new UserAssignedIdentityAuthInfo(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAssignedIdentityAuthInfo FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeAll)?.ToString(); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal UserAssignedIdentityAuthInfo(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("ClientId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAssignedIdentityAuthInfoInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAssignedIdentityAuthInfoInternal)this).ClientId, global::System.Convert.ToString); + } + if (content.Contains("SubscriptionId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAssignedIdentityAuthInfoInternal)this).SubscriptionId = (string) content.GetValueForProperty("SubscriptionId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAssignedIdentityAuthInfoInternal)this).SubscriptionId, global::System.Convert.ToString); + } + if (content.Contains("DeleteOrUpdateBehavior")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAssignedIdentityAuthInfoInternal)this).DeleteOrUpdateBehavior = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior?) content.GetValueForProperty("DeleteOrUpdateBehavior",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAssignedIdentityAuthInfoInternal)this).DeleteOrUpdateBehavior, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior.CreateFrom); + } + if (content.Contains("Role")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAssignedIdentityAuthInfoInternal)this).Role = (string[]) content.GetValueForProperty("Role",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAssignedIdentityAuthInfoInternal)this).Role, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + } + if (content.Contains("AuthType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)this).AuthType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType) content.GetValueForProperty("AuthType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)this).AuthType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType.CreateFrom); + } + if (content.Contains("UserName")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfoInternal)this).UserName = (string) content.GetValueForProperty("UserName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfoInternal)this).UserName, global::System.Convert.ToString); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal UserAssignedIdentityAuthInfo(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("ClientId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAssignedIdentityAuthInfoInternal)this).ClientId = (string) content.GetValueForProperty("ClientId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAssignedIdentityAuthInfoInternal)this).ClientId, global::System.Convert.ToString); + } + if (content.Contains("SubscriptionId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAssignedIdentityAuthInfoInternal)this).SubscriptionId = (string) content.GetValueForProperty("SubscriptionId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAssignedIdentityAuthInfoInternal)this).SubscriptionId, global::System.Convert.ToString); + } + if (content.Contains("DeleteOrUpdateBehavior")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAssignedIdentityAuthInfoInternal)this).DeleteOrUpdateBehavior = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior?) content.GetValueForProperty("DeleteOrUpdateBehavior",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAssignedIdentityAuthInfoInternal)this).DeleteOrUpdateBehavior, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior.CreateFrom); + } + if (content.Contains("Role")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAssignedIdentityAuthInfoInternal)this).Role = (string[]) content.GetValueForProperty("Role",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAssignedIdentityAuthInfoInternal)this).Role, __y => TypeConverterExtensions.SelectToArray(__y, global::System.Convert.ToString)); + } + if (content.Contains("AuthType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)this).AuthType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType) content.GetValueForProperty("AuthType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)this).AuthType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType.CreateFrom); + } + if (content.Contains("UserName")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfoInternal)this).UserName = (string) content.GetValueForProperty("UserName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfoInternal)this).UserName, global::System.Convert.ToString); + } + AfterDeserializePSObject(content); + } + } + /// The authentication info when authType is userAssignedIdentity + [System.ComponentModel.TypeConverter(typeof(UserAssignedIdentityAuthInfoTypeConverter))] + public partial interface IUserAssignedIdentityAuthInfo + + { + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/UserAssignedIdentityAuthInfo.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/UserAssignedIdentityAuthInfo.TypeConverter.cs similarity index 81% rename from src/ServiceLinker/generated/api/Models/Api20220501/UserAssignedIdentityAuthInfo.TypeConverter.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/UserAssignedIdentityAuthInfo.TypeConverter.cs index 14348bca7fba..2d4880f1f5ff 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/UserAssignedIdentityAuthInfo.TypeConverter.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/UserAssignedIdentityAuthInfo.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -14,20 +14,20 @@ public partial class UserAssignedIdentityAuthInfoTypeConverter : global::System. { /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); /// - /// Determines if the converter can convert the parameter to the . + /// Determines if the converter can convert the parameter to the + /// type. /// /// the instance to check if it can be converted to the type. @@ -75,19 +75,20 @@ public static bool CanConvertFrom(dynamic sourceValue) } /// - /// Determines if the parameter can be converted to the parameter + /// Determines if the parameter can be converted to the + /// parameter /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false + /// true if the converter can convert the parameter to the parameter, otherwise false /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to @@ -99,21 +100,20 @@ public static bool CanConvertFrom(dynamic sourceValue) public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); /// - /// Converts the parameter to the parameter using and + /// Converts the parameter into an instance of /// /// the value to convert into an instance of . /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IUserAssignedIdentityAuthInfo ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAssignedIdentityAuthInfo ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IUserAssignedIdentityAuthInfo).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAssignedIdentityAuthInfo).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceLinker/generated/api/Models/Api20221101Preview/UserAssignedIdentityAuthInfo.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/UserAssignedIdentityAuthInfo.cs new file mode 100644 index 000000000000..f030fe7f0d25 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/UserAssignedIdentityAuthInfo.cs @@ -0,0 +1,145 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// The authentication info when authType is userAssignedIdentity + public partial class UserAssignedIdentityAuthInfo : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAssignedIdentityAuthInfo, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAssignedIdentityAuthInfoInternal, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IValidates + { + /// + /// Backing field for Inherited model + /// + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase __authInfoBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AuthInfoBase(); + + /// + /// Backing field for Inherited model + /// + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfo __databaseAadAuthInfo = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DatabaseAadAuthInfo(); + + /// The authentication type. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType AuthType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)__authInfoBase).AuthType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal)__authInfoBase).AuthType = value ; } + + /// Backing field for property. + private string _clientId; + + /// Client Id for userAssignedIdentity. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public string ClientId { get => this._clientId; set => this._clientId = value; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? _deleteOrUpdateBehavior; + + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? DeleteOrUpdateBehavior { get => this._deleteOrUpdateBehavior; set => this._deleteOrUpdateBehavior = value; } + + /// Backing field for property. + private string[] _role; + + /// Optional, this value specifies the Azure role to be assigned + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public string[] Role { get => this._role; set => this._role = value; } + + /// Backing field for property. + private string _subscriptionId; + + /// Subscription id for userAssignedIdentity. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public string SubscriptionId { get => this._subscriptionId; set => this._subscriptionId = value; } + + /// Username created in the database which is mapped to a user in AAD. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public string UserName { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfoInternal)__databaseAadAuthInfo).UserName; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfoInternal)__databaseAadAuthInfo).UserName = value ?? null; } + + /// Creates an new instance. + public UserAssignedIdentityAuthInfo() + { + + } + + /// Validates that this object meets the validation criteria. + /// an instance that will receive validation + /// events. + /// + /// A that will be complete when validation is completed. + /// + public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) + { + await eventListener.AssertNotNull(nameof(__authInfoBase), __authInfoBase); + await eventListener.AssertObjectIsValid(nameof(__authInfoBase), __authInfoBase); + await eventListener.AssertNotNull(nameof(__databaseAadAuthInfo), __databaseAadAuthInfo); + await eventListener.AssertObjectIsValid(nameof(__databaseAadAuthInfo), __databaseAadAuthInfo); + } + } + /// The authentication info when authType is userAssignedIdentity + public partial interface IUserAssignedIdentityAuthInfo : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfo + { + /// Client Id for userAssignedIdentity. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Client Id for userAssignedIdentity.", + SerializedName = @"clientId", + PossibleTypes = new [] { typeof(string) })] + string ClientId { get; set; } + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Indicates whether to clean up previous operation when Linker is updating or deleting", + SerializedName = @"deleteOrUpdateBehavior", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? DeleteOrUpdateBehavior { get; set; } + /// Optional, this value specifies the Azure role to be assigned + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Optional, this value specifies the Azure role to be assigned", + SerializedName = @"roles", + PossibleTypes = new [] { typeof(string) })] + string[] Role { get; set; } + /// Subscription id for userAssignedIdentity. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Subscription id for userAssignedIdentity.", + SerializedName = @"subscriptionId", + PossibleTypes = new [] { typeof(string) })] + string SubscriptionId { get; set; } + + } + /// The authentication info when authType is userAssignedIdentity + internal partial interface IUserAssignedIdentityAuthInfoInternal : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBaseInternal, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDatabaseAadAuthInfoInternal + { + /// Client Id for userAssignedIdentity. + string ClientId { get; set; } + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? DeleteOrUpdateBehavior { get; set; } + /// Optional, this value specifies the Azure role to be assigned + string[] Role { get; set; } + /// Subscription id for userAssignedIdentity. + string SubscriptionId { get; set; } + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/UserAssignedIdentityAuthInfo.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/UserAssignedIdentityAuthInfo.json.cs similarity index 77% rename from src/ServiceLinker/generated/api/Models/Api20220501/UserAssignedIdentityAuthInfo.json.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/UserAssignedIdentityAuthInfo.json.cs index ed517292c9de..9ac658c96e9c 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/UserAssignedIdentityAuthInfo.json.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/UserAssignedIdentityAuthInfo.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class UserAssignedIdentityAuthInfo partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IUserAssignedIdentityAuthInfo. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAssignedIdentityAuthInfo. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IUserAssignedIdentityAuthInfo. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAssignedIdentityAuthInfo. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IUserAssignedIdentityAuthInfo FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IUserAssignedIdentityAuthInfo FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new UserAssignedIdentityAuthInfo(json) : null; } @@ -85,8 +85,19 @@ public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode To return container; } __authInfoBase?.ToJson(container, serializationMode); + __databaseAadAuthInfo?.ToJson(container, serializationMode); AddIf( null != (((object)this._clientId)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._clientId.ToString()) : null, "clientId" ,container.Add ); AddIf( null != (((object)this._subscriptionId)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._subscriptionId.ToString()) : null, "subscriptionId" ,container.Add ); + AddIf( null != (((object)this._deleteOrUpdateBehavior)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._deleteOrUpdateBehavior.ToString()) : null, "deleteOrUpdateBehavior" ,container.Add ); + if (null != this._role) + { + var __w = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.XNodeArray(); + foreach( var __x in this._role ) + { + AddIf(null != (((object)__x)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(__x.ToString()) : null ,__w.Add); + } + container.Add("roles",__w); + } AfterToJson(ref container); return container; } @@ -103,9 +114,12 @@ internal UserAssignedIdentityAuthInfo(Microsoft.Azure.PowerShell.Cmdlets.Service { return; } - __authInfoBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.AuthInfoBase(json); + __authInfoBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AuthInfoBase(json); + __databaseAadAuthInfo = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DatabaseAadAuthInfo(json); {_clientId = If( json?.PropertyT("clientId"), out var __jsonClientId) ? (string)__jsonClientId : (string)ClientId;} {_subscriptionId = If( json?.PropertyT("subscriptionId"), out var __jsonSubscriptionId) ? (string)__jsonSubscriptionId : (string)SubscriptionId;} + {_deleteOrUpdateBehavior = If( json?.PropertyT("deleteOrUpdateBehavior"), out var __jsonDeleteOrUpdateBehavior) ? (string)__jsonDeleteOrUpdateBehavior : (string)DeleteOrUpdateBehavior;} + {_role = If( json?.PropertyT("roles"), out var __jsonRoles) ? If( __jsonRoles as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(string) (__u is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString __t ? (string)(__t.ToString()) : null)) ))() : null : Role;} AfterFromJson(json); } } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/VNetSolution.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/VNetSolution.PowerShell.cs similarity index 69% rename from src/ServiceLinker/generated/api/Models/Api20220501/VNetSolution.PowerShell.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/VNetSolution.PowerShell.cs index f2a50b293807..29a8b848d527 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/VNetSolution.PowerShell.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/VNetSolution.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -31,7 +31,8 @@ public partial class VNetSolution /// /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Collections.IDictionary content that should be used. @@ -43,7 +44,8 @@ public partial class VNetSolution /// /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -53,27 +55,27 @@ public partial class VNetSolution partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IVNetSolution DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IVNetSolution DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new VNetSolution(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IVNetSolution DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IVNetSolution DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new VNetSolution(content); } @@ -83,7 +85,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api2022050 /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IVNetSolution FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IVNetSolution FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. @@ -91,7 +93,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api2022050 public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeAll)?.ToString(); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -106,13 +108,17 @@ internal VNetSolution(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IVNetSolutionInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType?) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IVNetSolutionInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IVNetSolutionInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType?) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IVNetSolutionInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType.CreateFrom); + } + if (content.Contains("DeleteOrUpdateBehavior")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IVNetSolutionInternal)this).DeleteOrUpdateBehavior = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior?) content.GetValueForProperty("DeleteOrUpdateBehavior",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IVNetSolutionInternal)this).DeleteOrUpdateBehavior, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior.CreateFrom); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -127,7 +133,11 @@ internal VNetSolution(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IVNetSolutionInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType?) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IVNetSolutionInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IVNetSolutionInternal)this).Type = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType?) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IVNetSolutionInternal)this).Type, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType.CreateFrom); + } + if (content.Contains("DeleteOrUpdateBehavior")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IVNetSolutionInternal)this).DeleteOrUpdateBehavior = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior?) content.GetValueForProperty("DeleteOrUpdateBehavior",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IVNetSolutionInternal)this).DeleteOrUpdateBehavior, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior.CreateFrom); } AfterDeserializePSObject(content); } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/VNetSolution.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/VNetSolution.TypeConverter.cs similarity index 82% rename from src/ServiceLinker/generated/api/Models/Api20220501/VNetSolution.TypeConverter.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/VNetSolution.TypeConverter.cs index e9c387390ab6..b232703e6f5d 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/VNetSolution.TypeConverter.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/VNetSolution.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -14,19 +14,20 @@ public partial class VNetSolutionTypeConverter : global::System.Management.Autom { /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); /// - /// Determines if the converter can convert the parameter to the . + /// Determines if the converter can convert the parameter to the + /// type. /// /// the instance to check if it can be converted to the type. @@ -74,19 +75,20 @@ public static bool CanConvertFrom(dynamic sourceValue) } /// - /// Determines if the parameter can be converted to the parameter + /// Determines if the parameter can be converted to the + /// parameter /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false + /// true if the converter can convert the parameter to the parameter, otherwise false /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to @@ -98,21 +100,20 @@ public static bool CanConvertFrom(dynamic sourceValue) public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); /// - /// Converts the parameter to the parameter using and + /// Converts the parameter into an instance of /// /// the value to convert into an instance of . /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IVNetSolution ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IVNetSolution ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IVNetSolution).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IVNetSolution).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/VNetSolution.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/VNetSolution.cs similarity index 56% rename from src/ServiceLinker/generated/api/Models/Api20220501/VNetSolution.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/VNetSolution.cs index 3d6c6fbeccf2..3717df32d991 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/VNetSolution.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/VNetSolution.cs @@ -3,16 +3,25 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; /// The VNet solution for linker public partial class VNetSolution : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IVNetSolution, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IVNetSolutionInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IVNetSolution, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IVNetSolutionInternal { + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? _deleteOrUpdateBehavior; + + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? DeleteOrUpdateBehavior { get => this._deleteOrUpdateBehavior; set => this._deleteOrUpdateBehavior = value; } + /// Backing field for property. private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType? _type; @@ -30,6 +39,16 @@ public VNetSolution() public partial interface IVNetSolution : Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable { + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Indicates whether to clean up previous operation when Linker is updating or deleting", + SerializedName = @"deleteOrUpdateBehavior", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? DeleteOrUpdateBehavior { get; set; } /// Type of VNet solution. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( Required = false, @@ -44,6 +63,10 @@ public partial interface IVNetSolution : internal partial interface IVNetSolutionInternal { + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior? DeleteOrUpdateBehavior { get; set; } /// Type of VNet solution. Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType? Type { get; set; } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/VNetSolution.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/VNetSolution.json.cs similarity index 89% rename from src/ServiceLinker/generated/api/Models/Api20220501/VNetSolution.json.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/VNetSolution.json.cs index 876437aca85a..d46422d3d949 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/VNetSolution.json.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/VNetSolution.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class VNetSolution partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IVNetSolution. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IVNetSolution. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IVNetSolution. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IVNetSolution. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IVNetSolution FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IVNetSolution FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new VNetSolution(json) : null; } @@ -85,6 +85,7 @@ public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode To return container; } AddIf( null != (((object)this._type)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._type.ToString()) : null, "type" ,container.Add ); + AddIf( null != (((object)this._deleteOrUpdateBehavior)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._deleteOrUpdateBehavior.ToString()) : null, "deleteOrUpdateBehavior" ,container.Add ); AfterToJson(ref container); return container; } @@ -102,6 +103,7 @@ internal VNetSolution(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.J return; } {_type = If( json?.PropertyT("type"), out var __jsonType) ? (string)__jsonType : (string)Type;} + {_deleteOrUpdateBehavior = If( json?.PropertyT("deleteOrUpdateBehavior"), out var __jsonDeleteOrUpdateBehavior) ? (string)__jsonDeleteOrUpdateBehavior : (string)DeleteOrUpdateBehavior;} AfterFromJson(json); } } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/ValidateOperationResult.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ValidateOperationResult.PowerShell.cs similarity index 50% rename from src/ServiceLinker/generated/api/Models/Api20220501/ValidateOperationResult.PowerShell.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/ValidateOperationResult.PowerShell.cs index e147af8e1442..e8d00fcb51ef 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/ValidateOperationResult.PowerShell.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ValidateOperationResult.PowerShell.cs @@ -3,11 +3,11 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; - /// The validation operation result for a linker. + /// The validation operation result for a Linker. [System.ComponentModel.TypeConverter(typeof(ValidateOperationResultTypeConverter))] public partial class ValidateOperationResult { @@ -31,7 +31,8 @@ public partial class ValidateOperationResult /// /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Collections.IDictionary content that should be used. @@ -43,7 +44,8 @@ public partial class ValidateOperationResult /// /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -53,29 +55,29 @@ public partial class ValidateOperationResult partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResult DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResult DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new ValidateOperationResult(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new ValidateOperationResult(content); } @@ -85,7 +87,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api2022050 /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. @@ -93,7 +95,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api2022050 public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeAll)?.ToString(); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -108,53 +110,53 @@ internal ValidateOperationResult(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Property")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResult) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ValidateResultTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResult) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ValidateResultTypeConverter.ConvertFrom); } if (content.Contains("ResourceId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal)this).ResourceId = (string) content.GetValueForProperty("ResourceId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal)this).ResourceId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal)this).ResourceId = (string) content.GetValueForProperty("ResourceId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal)this).ResourceId, global::System.Convert.ToString); } if (content.Contains("Status")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal)this).Status = (string) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal)this).Status, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal)this).Status = (string) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal)this).Status, global::System.Convert.ToString); } if (content.Contains("AuthType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal)this).AuthType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType?) content.GetValueForProperty("AuthType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal)this).AuthType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal)this).AuthType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType?) content.GetValueForProperty("AuthType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal)this).AuthType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType.CreateFrom); } if (content.Contains("LinkerName")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal)this).LinkerName = (string) content.GetValueForProperty("LinkerName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal)this).LinkerName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal)this).LinkerName = (string) content.GetValueForProperty("LinkerName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal)this).LinkerName, global::System.Convert.ToString); } if (content.Contains("IsConnectionAvailable")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal)this).IsConnectionAvailable = (bool?) content.GetValueForProperty("IsConnectionAvailable",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal)this).IsConnectionAvailable, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal)this).IsConnectionAvailable = (bool?) content.GetValueForProperty("IsConnectionAvailable",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal)this).IsConnectionAvailable, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } if (content.Contains("ReportStartTimeUtc")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal)this).ReportStartTimeUtc = (global::System.DateTime?) content.GetValueForProperty("ReportStartTimeUtc",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal)this).ReportStartTimeUtc, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal)this).ReportStartTimeUtc = (global::System.DateTime?) content.GetValueForProperty("ReportStartTimeUtc",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal)this).ReportStartTimeUtc, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } if (content.Contains("ReportEndTimeUtc")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal)this).ReportEndTimeUtc = (global::System.DateTime?) content.GetValueForProperty("ReportEndTimeUtc",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal)this).ReportEndTimeUtc, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal)this).ReportEndTimeUtc = (global::System.DateTime?) content.GetValueForProperty("ReportEndTimeUtc",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal)this).ReportEndTimeUtc, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } if (content.Contains("SourceId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal)this).SourceId = (string) content.GetValueForProperty("SourceId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal)this).SourceId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal)this).SourceId = (string) content.GetValueForProperty("SourceId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal)this).SourceId, global::System.Convert.ToString); } if (content.Contains("TargetId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal)this).TargetId = (string) content.GetValueForProperty("TargetId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal)this).TargetId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal)this).TargetId = (string) content.GetValueForProperty("TargetId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal)this).TargetId, global::System.Convert.ToString); } if (content.Contains("ValidationDetail")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal)this).ValidationDetail = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidationResultItem[]) content.GetValueForProperty("ValidationDetail",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal)this).ValidationDetail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ValidationResultItemTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal)this).ValidationDetail = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItem[]) content.GetValueForProperty("ValidationDetail",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal)this).ValidationDetail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ValidationResultItemTypeConverter.ConvertFrom)); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -169,52 +171,52 @@ internal ValidateOperationResult(global::System.Management.Automation.PSObject c // actually deserialize if (content.Contains("Property")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResult) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ValidateResultTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal)this).Property = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResult) content.GetValueForProperty("Property",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal)this).Property, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ValidateResultTypeConverter.ConvertFrom); } if (content.Contains("ResourceId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal)this).ResourceId = (string) content.GetValueForProperty("ResourceId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal)this).ResourceId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal)this).ResourceId = (string) content.GetValueForProperty("ResourceId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal)this).ResourceId, global::System.Convert.ToString); } if (content.Contains("Status")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal)this).Status = (string) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal)this).Status, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal)this).Status = (string) content.GetValueForProperty("Status",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal)this).Status, global::System.Convert.ToString); } if (content.Contains("AuthType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal)this).AuthType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType?) content.GetValueForProperty("AuthType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal)this).AuthType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal)this).AuthType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType?) content.GetValueForProperty("AuthType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal)this).AuthType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType.CreateFrom); } if (content.Contains("LinkerName")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal)this).LinkerName = (string) content.GetValueForProperty("LinkerName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal)this).LinkerName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal)this).LinkerName = (string) content.GetValueForProperty("LinkerName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal)this).LinkerName, global::System.Convert.ToString); } if (content.Contains("IsConnectionAvailable")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal)this).IsConnectionAvailable = (bool?) content.GetValueForProperty("IsConnectionAvailable",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal)this).IsConnectionAvailable, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal)this).IsConnectionAvailable = (bool?) content.GetValueForProperty("IsConnectionAvailable",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal)this).IsConnectionAvailable, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } if (content.Contains("ReportStartTimeUtc")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal)this).ReportStartTimeUtc = (global::System.DateTime?) content.GetValueForProperty("ReportStartTimeUtc",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal)this).ReportStartTimeUtc, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal)this).ReportStartTimeUtc = (global::System.DateTime?) content.GetValueForProperty("ReportStartTimeUtc",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal)this).ReportStartTimeUtc, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } if (content.Contains("ReportEndTimeUtc")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal)this).ReportEndTimeUtc = (global::System.DateTime?) content.GetValueForProperty("ReportEndTimeUtc",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal)this).ReportEndTimeUtc, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal)this).ReportEndTimeUtc = (global::System.DateTime?) content.GetValueForProperty("ReportEndTimeUtc",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal)this).ReportEndTimeUtc, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } if (content.Contains("SourceId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal)this).SourceId = (string) content.GetValueForProperty("SourceId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal)this).SourceId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal)this).SourceId = (string) content.GetValueForProperty("SourceId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal)this).SourceId, global::System.Convert.ToString); } if (content.Contains("TargetId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal)this).TargetId = (string) content.GetValueForProperty("TargetId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal)this).TargetId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal)this).TargetId = (string) content.GetValueForProperty("TargetId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal)this).TargetId, global::System.Convert.ToString); } if (content.Contains("ValidationDetail")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal)this).ValidationDetail = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidationResultItem[]) content.GetValueForProperty("ValidationDetail",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal)this).ValidationDetail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ValidationResultItemTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal)this).ValidationDetail = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItem[]) content.GetValueForProperty("ValidationDetail",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal)this).ValidationDetail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ValidationResultItemTypeConverter.ConvertFrom)); } AfterDeserializePSObject(content); } } - /// The validation operation result for a linker. + /// The validation operation result for a Linker. [System.ComponentModel.TypeConverter(typeof(ValidateOperationResultTypeConverter))] public partial interface IValidateOperationResult diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/ValidateOperationResult.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ValidateOperationResult.TypeConverter.cs similarity index 81% rename from src/ServiceLinker/generated/api/Models/Api20220501/ValidateOperationResult.TypeConverter.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/ValidateOperationResult.TypeConverter.cs index 4cd1f8021202..08707e2d644b 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/ValidateOperationResult.TypeConverter.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ValidateOperationResult.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -14,20 +14,20 @@ public partial class ValidateOperationResultTypeConverter : global::System.Manag { /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); /// - /// Determines if the converter can convert the parameter to the . + /// Determines if the converter can convert the parameter to the + /// type. /// /// the instance to check if it can be converted to the type. @@ -75,19 +75,20 @@ public static bool CanConvertFrom(dynamic sourceValue) } /// - /// Determines if the parameter can be converted to the parameter + /// Determines if the parameter can be converted to the + /// parameter /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false + /// true if the converter can convert the parameter to the parameter, otherwise false /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to @@ -99,21 +100,20 @@ public static bool CanConvertFrom(dynamic sourceValue) public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); /// - /// Converts the parameter to the parameter using and + /// Converts the parameter into an instance of /// /// the value to convert into an instance of . /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResult ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResult ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResult).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResult).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/ValidateOperationResult.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ValidateOperationResult.cs similarity index 71% rename from src/ServiceLinker/generated/api/Models/Api20220501/ValidateOperationResult.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/ValidateOperationResult.cs index f3cd4a22c8f4..4c3682c97e04 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/ValidateOperationResult.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ValidateOperationResult.cs @@ -3,56 +3,56 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; - /// The validation operation result for a linker. + /// The validation operation result for a Linker. public partial class ValidateOperationResult : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResult, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResult, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal { /// The authentication type. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType? AuthType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)Property).AuthType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)Property).AuthType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType)""); } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType? AuthType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)Property).AuthType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)Property).AuthType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType)""); } /// A boolean value indicating whether the connection is available or not [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] - public bool? IsConnectionAvailable { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)Property).IsConnectionAvailable; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)Property).IsConnectionAvailable = value ?? default(bool); } + public bool? IsConnectionAvailable { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)Property).IsConnectionAvailable; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)Property).IsConnectionAvailable = value ?? default(bool); } /// The linker name. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] - public string LinkerName { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)Property).LinkerName; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)Property).LinkerName = value ?? null; } + public string LinkerName { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)Property).LinkerName; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)Property).LinkerName = value ?? null; } /// Internal Acessors for Property - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResult Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResultInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ValidateResult()); set { {_property = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResult Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResultInternal.Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ValidateResult()); set { {_property = value;} } } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResult _property; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResult _property; /// The validation result detail. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResult Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ValidateResult()); set => this._property = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResult Property { get => (this._property = this._property ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ValidateResult()); set => this._property = value; } /// The end time of the validation report. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] - public global::System.DateTime? ReportEndTimeUtc { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)Property).ReportEndTimeUtc; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)Property).ReportEndTimeUtc = value ?? default(global::System.DateTime); } + public global::System.DateTime? ReportEndTimeUtc { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)Property).ReportEndTimeUtc; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)Property).ReportEndTimeUtc = value ?? default(global::System.DateTime); } /// The start time of the validation report. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] - public global::System.DateTime? ReportStartTimeUtc { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)Property).ReportStartTimeUtc; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)Property).ReportStartTimeUtc = value ?? default(global::System.DateTime); } + public global::System.DateTime? ReportStartTimeUtc { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)Property).ReportStartTimeUtc; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)Property).ReportStartTimeUtc = value ?? default(global::System.DateTime); } /// Backing field for property. private string _resourceId; - /// Validated linker id. + /// Validated Linker id. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] public string ResourceId { get => this._resourceId; set => this._resourceId = value; } - /// The resource id of the linker source application. + /// The resource id of the Linker source application. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] - public string SourceId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)Property).SourceId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)Property).SourceId = value ?? null; } + public string SourceId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)Property).SourceId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)Property).SourceId = value ?? null; } /// Backing field for property. private string _status; @@ -63,11 +63,11 @@ public partial class ValidateOperationResult : /// The resource Id of target service. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] - public string TargetId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)Property).TargetId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)Property).TargetId = value ?? null; } + public string TargetId { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)Property).TargetId; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)Property).TargetId = value ?? null; } /// The detail of validation result [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidationResultItem[] ValidationDetail { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)Property).ValidationDetail; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)Property).ValidationDetail = value ?? null /* arrayOf */; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItem[] ValidationDetail { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)Property).ValidationDetail; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)Property).ValidationDetail = value ?? null /* arrayOf */; } /// Creates an new instance. public ValidateOperationResult() @@ -75,7 +75,7 @@ public ValidateOperationResult() } } - /// The validation operation result for a linker. + /// The validation operation result for a Linker. public partial interface IValidateOperationResult : Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable { @@ -119,19 +119,19 @@ public partial interface IValidateOperationResult : SerializedName = @"reportStartTimeUtc", PossibleTypes = new [] { typeof(global::System.DateTime) })] global::System.DateTime? ReportStartTimeUtc { get; set; } - /// Validated linker id. + /// Validated Linker id. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( Required = false, ReadOnly = false, - Description = @"Validated linker id.", + Description = @"Validated Linker id.", SerializedName = @"resourceId", PossibleTypes = new [] { typeof(string) })] string ResourceId { get; set; } - /// The resource id of the linker source application. + /// The resource id of the Linker source application. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( Required = false, ReadOnly = false, - Description = @"The resource id of the linker source application.", + Description = @"The resource id of the Linker source application.", SerializedName = @"sourceId", PossibleTypes = new [] { typeof(string) })] string SourceId { get; set; } @@ -157,11 +157,11 @@ public partial interface IValidateOperationResult : ReadOnly = false, Description = @"The detail of validation result", SerializedName = @"validationDetail", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidationResultItem) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidationResultItem[] ValidationDetail { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItem) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItem[] ValidationDetail { get; set; } } - /// The validation operation result for a linker. + /// The validation operation result for a Linker. internal partial interface IValidateOperationResultInternal { @@ -172,21 +172,21 @@ internal partial interface IValidateOperationResultInternal /// The linker name. string LinkerName { get; set; } /// The validation result detail. - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResult Property { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResult Property { get; set; } /// The end time of the validation report. global::System.DateTime? ReportEndTimeUtc { get; set; } /// The start time of the validation report. global::System.DateTime? ReportStartTimeUtc { get; set; } - /// Validated linker id. + /// Validated Linker id. string ResourceId { get; set; } - /// The resource id of the linker source application. + /// The resource id of the Linker source application. string SourceId { get; set; } /// Validation operation status. string Status { get; set; } /// The resource Id of target service. string TargetId { get; set; } /// The detail of validation result - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidationResultItem[] ValidationDetail { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItem[] ValidationDetail { get; set; } } } \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/ValidateOperationResult.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ValidateOperationResult.json.cs similarity index 94% rename from src/ServiceLinker/generated/api/Models/Api20220501/ValidateOperationResult.json.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/ValidateOperationResult.json.cs index 6d4c6fcd24d0..93db7758e6aa 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/ValidateOperationResult.json.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ValidateOperationResult.json.cs @@ -3,11 +3,11 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; - /// The validation operation result for a linker. + /// The validation operation result for a Linker. public partial class ValidateOperationResult { @@ -54,13 +54,13 @@ public partial class ValidateOperationResult partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResult. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResult. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResult. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResult. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new ValidateOperationResult(json) : null; } @@ -103,7 +103,7 @@ internal ValidateOperationResult(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinke { return; } - {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ValidateResult.FromJson(__jsonProperties) : Property;} + {_property = If( json?.PropertyT("properties"), out var __jsonProperties) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ValidateResult.FromJson(__jsonProperties) : Property;} {_resourceId = If( json?.PropertyT("resourceId"), out var __jsonResourceId) ? (string)__jsonResourceId : (string)ResourceId;} {_status = If( json?.PropertyT("status"), out var __jsonStatus) ? (string)__jsonStatus : (string)Status;} AfterFromJson(json); diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/ValidateResult.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ValidateResult.PowerShell.cs similarity index 54% rename from src/ServiceLinker/generated/api/Models/Api20220501/ValidateResult.PowerShell.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/ValidateResult.PowerShell.cs index 279e9e6c5a17..7bdfde774dfa 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/ValidateResult.PowerShell.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ValidateResult.PowerShell.cs @@ -3,11 +3,11 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; - /// The validation result for a linker. + /// The validation result for a Linker. [System.ComponentModel.TypeConverter(typeof(ValidateResultTypeConverter))] public partial class ValidateResult { @@ -31,7 +31,8 @@ public partial class ValidateResult /// /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Collections.IDictionary content that should be used. @@ -43,7 +44,8 @@ public partial class ValidateResult /// /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -53,27 +55,29 @@ public partial class ValidateResult partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResult DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResult DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new ValidateResult(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new ValidateResult(content); } @@ -83,7 +87,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api2022050 /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. @@ -91,7 +95,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api2022050 public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeAll)?.ToString(); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -106,41 +110,41 @@ internal ValidateResult(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("LinkerName")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)this).LinkerName = (string) content.GetValueForProperty("LinkerName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)this).LinkerName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)this).LinkerName = (string) content.GetValueForProperty("LinkerName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)this).LinkerName, global::System.Convert.ToString); } if (content.Contains("IsConnectionAvailable")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)this).IsConnectionAvailable = (bool?) content.GetValueForProperty("IsConnectionAvailable",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)this).IsConnectionAvailable, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)this).IsConnectionAvailable = (bool?) content.GetValueForProperty("IsConnectionAvailable",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)this).IsConnectionAvailable, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } if (content.Contains("ReportStartTimeUtc")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)this).ReportStartTimeUtc = (global::System.DateTime?) content.GetValueForProperty("ReportStartTimeUtc",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)this).ReportStartTimeUtc, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)this).ReportStartTimeUtc = (global::System.DateTime?) content.GetValueForProperty("ReportStartTimeUtc",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)this).ReportStartTimeUtc, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } if (content.Contains("ReportEndTimeUtc")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)this).ReportEndTimeUtc = (global::System.DateTime?) content.GetValueForProperty("ReportEndTimeUtc",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)this).ReportEndTimeUtc, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)this).ReportEndTimeUtc = (global::System.DateTime?) content.GetValueForProperty("ReportEndTimeUtc",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)this).ReportEndTimeUtc, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } if (content.Contains("SourceId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)this).SourceId = (string) content.GetValueForProperty("SourceId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)this).SourceId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)this).SourceId = (string) content.GetValueForProperty("SourceId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)this).SourceId, global::System.Convert.ToString); } if (content.Contains("TargetId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)this).TargetId = (string) content.GetValueForProperty("TargetId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)this).TargetId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)this).TargetId = (string) content.GetValueForProperty("TargetId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)this).TargetId, global::System.Convert.ToString); } if (content.Contains("AuthType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)this).AuthType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType?) content.GetValueForProperty("AuthType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)this).AuthType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)this).AuthType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType?) content.GetValueForProperty("AuthType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)this).AuthType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType.CreateFrom); } if (content.Contains("ValidationDetail")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)this).ValidationDetail = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidationResultItem[]) content.GetValueForProperty("ValidationDetail",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)this).ValidationDetail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ValidationResultItemTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)this).ValidationDetail = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItem[]) content.GetValueForProperty("ValidationDetail",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)this).ValidationDetail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ValidationResultItemTypeConverter.ConvertFrom)); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -155,40 +159,40 @@ internal ValidateResult(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("LinkerName")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)this).LinkerName = (string) content.GetValueForProperty("LinkerName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)this).LinkerName, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)this).LinkerName = (string) content.GetValueForProperty("LinkerName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)this).LinkerName, global::System.Convert.ToString); } if (content.Contains("IsConnectionAvailable")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)this).IsConnectionAvailable = (bool?) content.GetValueForProperty("IsConnectionAvailable",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)this).IsConnectionAvailable, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)this).IsConnectionAvailable = (bool?) content.GetValueForProperty("IsConnectionAvailable",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)this).IsConnectionAvailable, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } if (content.Contains("ReportStartTimeUtc")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)this).ReportStartTimeUtc = (global::System.DateTime?) content.GetValueForProperty("ReportStartTimeUtc",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)this).ReportStartTimeUtc, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)this).ReportStartTimeUtc = (global::System.DateTime?) content.GetValueForProperty("ReportStartTimeUtc",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)this).ReportStartTimeUtc, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } if (content.Contains("ReportEndTimeUtc")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)this).ReportEndTimeUtc = (global::System.DateTime?) content.GetValueForProperty("ReportEndTimeUtc",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)this).ReportEndTimeUtc, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)this).ReportEndTimeUtc = (global::System.DateTime?) content.GetValueForProperty("ReportEndTimeUtc",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)this).ReportEndTimeUtc, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } if (content.Contains("SourceId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)this).SourceId = (string) content.GetValueForProperty("SourceId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)this).SourceId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)this).SourceId = (string) content.GetValueForProperty("SourceId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)this).SourceId, global::System.Convert.ToString); } if (content.Contains("TargetId")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)this).TargetId = (string) content.GetValueForProperty("TargetId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)this).TargetId, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)this).TargetId = (string) content.GetValueForProperty("TargetId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)this).TargetId, global::System.Convert.ToString); } if (content.Contains("AuthType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)this).AuthType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType?) content.GetValueForProperty("AuthType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)this).AuthType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)this).AuthType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType?) content.GetValueForProperty("AuthType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)this).AuthType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType.CreateFrom); } if (content.Contains("ValidationDetail")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)this).ValidationDetail = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidationResultItem[]) content.GetValueForProperty("ValidationDetail",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal)this).ValidationDetail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ValidationResultItemTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)this).ValidationDetail = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItem[]) content.GetValueForProperty("ValidationDetail",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal)this).ValidationDetail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ValidationResultItemTypeConverter.ConvertFrom)); } AfterDeserializePSObject(content); } } - /// The validation result for a linker. + /// The validation result for a Linker. [System.ComponentModel.TypeConverter(typeof(ValidateResultTypeConverter))] public partial interface IValidateResult diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/ValidateResult.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ValidateResult.TypeConverter.cs similarity index 82% rename from src/ServiceLinker/generated/api/Models/Api20220501/ValidateResult.TypeConverter.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/ValidateResult.TypeConverter.cs index d655a3c0c25a..3da507a88208 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/ValidateResult.TypeConverter.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ValidateResult.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -14,19 +14,20 @@ public partial class ValidateResultTypeConverter : global::System.Management.Aut { /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); /// - /// Determines if the converter can convert the parameter to the . + /// Determines if the converter can convert the parameter to the + /// type. /// /// the instance to check if it can be converted to the type. @@ -74,19 +75,20 @@ public static bool CanConvertFrom(dynamic sourceValue) } /// - /// Determines if the parameter can be converted to the parameter + /// Determines if the parameter can be converted to the + /// parameter /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false + /// true if the converter can convert the parameter to the parameter, otherwise false /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to @@ -98,21 +100,20 @@ public static bool CanConvertFrom(dynamic sourceValue) public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); /// - /// Converts the parameter to the parameter using and + /// Converts the parameter into an instance of /// /// the value to convert into an instance of . /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResult ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResult ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResult).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResult).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/ValidateResult.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ValidateResult.cs similarity index 90% rename from src/ServiceLinker/generated/api/Models/Api20220501/ValidateResult.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/ValidateResult.cs index 3906bbcb8a5a..3b5498fd9129 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/ValidateResult.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ValidateResult.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; - /// The validation result for a linker. + /// The validation result for a Linker. public partial class ValidateResult : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResult, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResultInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResult, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResultInternal { /// Backing field for property. @@ -51,7 +51,7 @@ public partial class ValidateResult : /// Backing field for property. private string _sourceId; - /// The resource id of the linker source application. + /// The resource id of the Linker source application. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] public string SourceId { get => this._sourceId; set => this._sourceId = value; } @@ -63,11 +63,11 @@ public partial class ValidateResult : public string TargetId { get => this._targetId; set => this._targetId = value; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidationResultItem[] _validationDetail; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItem[] _validationDetail; /// The detail of validation result [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidationResultItem[] ValidationDetail { get => this._validationDetail; set => this._validationDetail = value; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItem[] ValidationDetail { get => this._validationDetail; set => this._validationDetail = value; } /// Creates an new instance. public ValidateResult() @@ -75,7 +75,7 @@ public ValidateResult() } } - /// The validation result for a linker. + /// The validation result for a Linker. public partial interface IValidateResult : Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable { @@ -119,11 +119,11 @@ public partial interface IValidateResult : SerializedName = @"reportStartTimeUtc", PossibleTypes = new [] { typeof(global::System.DateTime) })] global::System.DateTime? ReportStartTimeUtc { get; set; } - /// The resource id of the linker source application. + /// The resource id of the Linker source application. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( Required = false, ReadOnly = false, - Description = @"The resource id of the linker source application.", + Description = @"The resource id of the Linker source application.", SerializedName = @"sourceId", PossibleTypes = new [] { typeof(string) })] string SourceId { get; set; } @@ -141,11 +141,11 @@ public partial interface IValidateResult : ReadOnly = false, Description = @"The detail of validation result", SerializedName = @"validationDetail", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidationResultItem) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidationResultItem[] ValidationDetail { get; set; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItem) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItem[] ValidationDetail { get; set; } } - /// The validation result for a linker. + /// The validation result for a Linker. internal partial interface IValidateResultInternal { @@ -159,12 +159,12 @@ internal partial interface IValidateResultInternal global::System.DateTime? ReportEndTimeUtc { get; set; } /// The start time of the validation report. global::System.DateTime? ReportStartTimeUtc { get; set; } - /// The resource id of the linker source application. + /// The resource id of the Linker source application. string SourceId { get; set; } /// The resource Id of target service. string TargetId { get; set; } /// The detail of validation result - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidationResultItem[] ValidationDetail { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItem[] ValidationDetail { get; set; } } } \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/ValidateResult.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ValidateResult.json.cs similarity index 94% rename from src/ServiceLinker/generated/api/Models/Api20220501/ValidateResult.json.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/ValidateResult.json.cs index 2ab1bc205cef..cb948e60cdcd 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/ValidateResult.json.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ValidateResult.json.cs @@ -3,11 +3,11 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; - /// The validation result for a linker. + /// The validation result for a Linker. public partial class ValidateResult { @@ -54,13 +54,13 @@ public partial class ValidateResult partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResult. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResult. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResult. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResult. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new ValidateResult(json) : null; } @@ -123,7 +123,7 @@ internal ValidateResult(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime {_sourceId = If( json?.PropertyT("sourceId"), out var __jsonSourceId) ? (string)__jsonSourceId : (string)SourceId;} {_targetId = If( json?.PropertyT("targetId"), out var __jsonTargetId) ? (string)__jsonTargetId : (string)TargetId;} {_authType = If( json?.PropertyT("authType"), out var __jsonAuthType) ? (string)__jsonAuthType : (string)AuthType;} - {_validationDetail = If( json?.PropertyT("validationDetail"), out var __jsonValidationDetail) ? If( __jsonValidationDetail as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidationResultItem) (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ValidationResultItem.FromJson(__u) )) ))() : null : ValidationDetail;} + {_validationDetail = If( json?.PropertyT("validationDetail"), out var __jsonValidationDetail) ? If( __jsonValidationDetail as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItem) (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ValidationResultItem.FromJson(__u) )) ))() : null : ValidationDetail;} AfterFromJson(json); } } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/ValidationResultItem.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ValidationResultItem.PowerShell.cs similarity index 64% rename from src/ServiceLinker/generated/api/Models/Api20220501/ValidationResultItem.PowerShell.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/ValidationResultItem.PowerShell.cs index f9e14adc7adb..e57d7146f1dc 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/ValidationResultItem.PowerShell.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ValidationResultItem.PowerShell.cs @@ -3,11 +3,11 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; - /// The validation item for a linker. + /// The validation item for a Linker. [System.ComponentModel.TypeConverter(typeof(ValidationResultItemTypeConverter))] public partial class ValidationResultItem { @@ -31,7 +31,8 @@ public partial class ValidationResultItem /// /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Collections.IDictionary content that should be used. @@ -43,7 +44,8 @@ public partial class ValidationResultItem /// /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -53,27 +55,29 @@ public partial class ValidationResultItem partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidationResultItem DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItem DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new ValidationResultItem(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidationResultItem DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItem DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new ValidationResultItem(content); } @@ -83,7 +87,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api2022050 /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidationResultItem FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItem FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. @@ -91,7 +95,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api2022050 public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeAll)?.ToString(); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -106,29 +110,29 @@ internal ValidationResultItem(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidationResultItemInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidationResultItemInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItemInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItemInternal)this).Name, global::System.Convert.ToString); } if (content.Contains("Description")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidationResultItemInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidationResultItemInternal)this).Description, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItemInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItemInternal)this).Description, global::System.Convert.ToString); } if (content.Contains("Result")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidationResultItemInternal)this).Result = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ValidationResultStatus?) content.GetValueForProperty("Result",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidationResultItemInternal)this).Result, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ValidationResultStatus.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItemInternal)this).Result = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ValidationResultStatus?) content.GetValueForProperty("Result",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItemInternal)this).Result, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ValidationResultStatus.CreateFrom); } if (content.Contains("ErrorMessage")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidationResultItemInternal)this).ErrorMessage = (string) content.GetValueForProperty("ErrorMessage",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidationResultItemInternal)this).ErrorMessage, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItemInternal)this).ErrorMessage = (string) content.GetValueForProperty("ErrorMessage",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItemInternal)this).ErrorMessage, global::System.Convert.ToString); } if (content.Contains("ErrorCode")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidationResultItemInternal)this).ErrorCode = (string) content.GetValueForProperty("ErrorCode",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidationResultItemInternal)this).ErrorCode, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItemInternal)this).ErrorCode = (string) content.GetValueForProperty("ErrorCode",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItemInternal)this).ErrorCode, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -143,28 +147,28 @@ internal ValidationResultItem(global::System.Management.Automation.PSObject cont // actually deserialize if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidationResultItemInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidationResultItemInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItemInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItemInternal)this).Name, global::System.Convert.ToString); } if (content.Contains("Description")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidationResultItemInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidationResultItemInternal)this).Description, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItemInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItemInternal)this).Description, global::System.Convert.ToString); } if (content.Contains("Result")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidationResultItemInternal)this).Result = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ValidationResultStatus?) content.GetValueForProperty("Result",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidationResultItemInternal)this).Result, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ValidationResultStatus.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItemInternal)this).Result = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ValidationResultStatus?) content.GetValueForProperty("Result",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItemInternal)this).Result, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ValidationResultStatus.CreateFrom); } if (content.Contains("ErrorMessage")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidationResultItemInternal)this).ErrorMessage = (string) content.GetValueForProperty("ErrorMessage",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidationResultItemInternal)this).ErrorMessage, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItemInternal)this).ErrorMessage = (string) content.GetValueForProperty("ErrorMessage",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItemInternal)this).ErrorMessage, global::System.Convert.ToString); } if (content.Contains("ErrorCode")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidationResultItemInternal)this).ErrorCode = (string) content.GetValueForProperty("ErrorCode",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidationResultItemInternal)this).ErrorCode, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItemInternal)this).ErrorCode = (string) content.GetValueForProperty("ErrorCode",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItemInternal)this).ErrorCode, global::System.Convert.ToString); } AfterDeserializePSObject(content); } } - /// The validation item for a linker. + /// The validation item for a Linker. [System.ComponentModel.TypeConverter(typeof(ValidationResultItemTypeConverter))] public partial interface IValidationResultItem diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/ValidationResultItem.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ValidationResultItem.TypeConverter.cs similarity index 81% rename from src/ServiceLinker/generated/api/Models/Api20220501/ValidationResultItem.TypeConverter.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/ValidationResultItem.TypeConverter.cs index 1a121fd218a9..2f80ea58a623 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/ValidationResultItem.TypeConverter.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ValidationResultItem.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -14,20 +14,20 @@ public partial class ValidationResultItemTypeConverter : global::System.Manageme { /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); /// - /// Determines if the converter can convert the parameter to the . + /// Determines if the converter can convert the parameter to the + /// type. /// /// the instance to check if it can be converted to the type. @@ -75,19 +75,20 @@ public static bool CanConvertFrom(dynamic sourceValue) } /// - /// Determines if the parameter can be converted to the parameter + /// Determines if the parameter can be converted to the + /// parameter /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false + /// true if the converter can convert the parameter to the parameter, otherwise false /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to @@ -99,21 +100,20 @@ public static bool CanConvertFrom(dynamic sourceValue) public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); /// - /// Converts the parameter to the parameter using and + /// Converts the parameter into an instance of /// /// the value to convert into an instance of . /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidationResultItem ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItem ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidationResultItem).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItem).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/ValidationResultItem.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ValidationResultItem.cs similarity index 95% rename from src/ServiceLinker/generated/api/Models/Api20220501/ValidationResultItem.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/ValidationResultItem.cs index e0352c27e70c..9f4f57a12693 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/ValidationResultItem.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ValidationResultItem.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; - /// The validation item for a linker. + /// The validation item for a Linker. public partial class ValidationResultItem : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidationResultItem, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidationResultItemInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItem, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItemInternal { /// Backing field for property. @@ -54,7 +54,7 @@ public ValidationResultItem() } } - /// The validation item for a linker. + /// The validation item for a Linker. public partial interface IValidationResultItem : Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable { @@ -100,7 +100,7 @@ public partial interface IValidationResultItem : Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ValidationResultStatus? Result { get; set; } } - /// The validation item for a linker. + /// The validation item for a Linker. internal partial interface IValidationResultItemInternal { diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/ValidationResultItem.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ValidationResultItem.json.cs similarity index 96% rename from src/ServiceLinker/generated/api/Models/Api20220501/ValidationResultItem.json.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/ValidationResultItem.json.cs index b2ed592a81e8..7203a80e7214 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/ValidationResultItem.json.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ValidationResultItem.json.cs @@ -3,11 +3,11 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; - /// The validation item for a linker. + /// The validation item for a Linker. public partial class ValidationResultItem { @@ -54,13 +54,13 @@ public partial class ValidationResultItem partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidationResultItem. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItem. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidationResultItem. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItem. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidationResultItem FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidationResultItem FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new ValidationResultItem(json) : null; } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/ValueSecretInfo.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ValueSecretInfo.PowerShell.cs similarity index 75% rename from src/ServiceLinker/generated/api/Models/Api20220501/ValueSecretInfo.PowerShell.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/ValueSecretInfo.PowerShell.cs index 1d66fcd2aa44..5034098ddad7 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/ValueSecretInfo.PowerShell.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ValueSecretInfo.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -33,7 +33,8 @@ public partial class ValueSecretInfo /// /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Collections.IDictionary content that should be used. @@ -45,7 +46,8 @@ public partial class ValueSecretInfo /// /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -55,27 +57,29 @@ public partial class ValueSecretInfo partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValueSecretInfo DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValueSecretInfo DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new ValueSecretInfo(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValueSecretInfo DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValueSecretInfo DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new ValueSecretInfo(content); } @@ -85,7 +89,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api2022050 /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValueSecretInfo FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValueSecretInfo FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. @@ -93,7 +97,7 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api2022050 public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeAll)?.ToString(); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -108,17 +112,17 @@ internal ValueSecretInfo(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValueSecretInfoInternal)this).Value = (string) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValueSecretInfoInternal)this).Value, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValueSecretInfoInternal)this).Value = (string) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValueSecretInfoInternal)this).Value, global::System.Convert.ToString); } if (content.Contains("SecretType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBaseInternal)this).SecretType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.SecretType) content.GetValueForProperty("SecretType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBaseInternal)this).SecretType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.SecretType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBaseInternal)this).SecretType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.SecretType) content.GetValueForProperty("SecretType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBaseInternal)this).SecretType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.SecretType.CreateFrom); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -133,11 +137,11 @@ internal ValueSecretInfo(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValueSecretInfoInternal)this).Value = (string) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValueSecretInfoInternal)this).Value, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValueSecretInfoInternal)this).Value = (string) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValueSecretInfoInternal)this).Value, global::System.Convert.ToString); } if (content.Contains("SecretType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBaseInternal)this).SecretType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.SecretType) content.GetValueForProperty("SecretType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBaseInternal)this).SecretType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.SecretType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBaseInternal)this).SecretType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.SecretType) content.GetValueForProperty("SecretType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBaseInternal)this).SecretType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.SecretType.CreateFrom); } AfterDeserializePSObject(content); } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/ValueSecretInfo.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ValueSecretInfo.TypeConverter.cs similarity index 82% rename from src/ServiceLinker/generated/api/Models/Api20220501/ValueSecretInfo.TypeConverter.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/ValueSecretInfo.TypeConverter.cs index 33b14f1012bf..3a273ac5d63e 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/ValueSecretInfo.TypeConverter.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ValueSecretInfo.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -14,19 +14,20 @@ public partial class ValueSecretInfoTypeConverter : global::System.Management.Au { /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); /// - /// Determines if the converter can convert the parameter to the . + /// Determines if the converter can convert the parameter to the + /// type. /// /// the instance to check if it can be converted to the type. @@ -74,19 +75,20 @@ public static bool CanConvertFrom(dynamic sourceValue) } /// - /// Determines if the parameter can be converted to the parameter + /// Determines if the parameter can be converted to the + /// parameter /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false + /// true if the converter can convert the parameter to the parameter, otherwise false /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to @@ -98,21 +100,20 @@ public static bool CanConvertFrom(dynamic sourceValue) public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); /// - /// Converts the parameter to the parameter using and + /// Converts the parameter into an instance of /// /// the value to convert into an instance of . /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValueSecretInfo ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValueSecretInfo ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValueSecretInfo).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValueSecretInfo).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/ValueSecretInfo.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ValueSecretInfo.cs similarity index 84% rename from src/ServiceLinker/generated/api/Models/Api20220501/ValueSecretInfo.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/ValueSecretInfo.cs index 9a9a506120a3..30a2e09a1d45 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/ValueSecretInfo.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ValueSecretInfo.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; @@ -11,19 +11,19 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 /// The secret info when type is rawValue. It's for scenarios that user input the secret. /// public partial class ValueSecretInfo : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValueSecretInfo, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValueSecretInfoInternal, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValueSecretInfo, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValueSecretInfoInternal, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IValidates { /// - /// Backing field for Inherited model /// - private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBase __secretInfoBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SecretInfoBase(); + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBase __secretInfoBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SecretInfoBase(); /// The secret type. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.SecretType SecretType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBaseInternal)__secretInfoBase).SecretType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBaseInternal)__secretInfoBase).SecretType = value ; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.SecretType SecretType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBaseInternal)__secretInfoBase).SecretType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBaseInternal)__secretInfoBase).SecretType = value ; } /// Backing field for property. private string _value; @@ -53,7 +53,7 @@ public ValueSecretInfo() /// The secret info when type is rawValue. It's for scenarios that user input the secret. public partial interface IValueSecretInfo : Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBase + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBase { /// The actual value of the secret. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( @@ -67,7 +67,7 @@ public partial interface IValueSecretInfo : } /// The secret info when type is rawValue. It's for scenarios that user input the secret. internal partial interface IValueSecretInfoInternal : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISecretInfoBaseInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISecretInfoBaseInternal { /// The actual value of the secret. string Value { get; set; } diff --git a/src/ServiceLinker/generated/api/Models/Api20220501/ValueSecretInfo.json.cs b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ValueSecretInfo.json.cs similarity index 95% rename from src/ServiceLinker/generated/api/Models/Api20220501/ValueSecretInfo.json.cs rename to src/ServiceLinker/generated/api/Models/Api20221101Preview/ValueSecretInfo.json.cs index a7bad4940ecf..c8d5746531d9 100644 --- a/src/ServiceLinker/generated/api/Models/Api20220501/ValueSecretInfo.json.cs +++ b/src/ServiceLinker/generated/api/Models/Api20221101Preview/ValueSecretInfo.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; @@ -56,13 +56,13 @@ public partial class ValueSecretInfo partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValueSecretInfo. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValueSecretInfo. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValueSecretInfo. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValueSecretInfo. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValueSecretInfo FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValueSecretInfo FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new ValueSecretInfo(json) : null; } @@ -104,7 +104,7 @@ internal ValueSecretInfo(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtim { return; } - __secretInfoBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SecretInfoBase(json); + __secretInfoBase = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SecretInfoBase(json); {_value = If( json?.PropertyT("value"), out var __jsonValue) ? (string)__jsonValue : (string)Value;} AfterFromJson(json); } diff --git a/src/ServiceLinker/generated/api/Models/Api20/ErrorAdditionalInfo.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api30/ErrorAdditionalInfo.PowerShell.cs similarity index 86% rename from src/ServiceLinker/generated/api/Models/Api20/ErrorAdditionalInfo.PowerShell.cs rename to src/ServiceLinker/generated/api/Models/Api30/ErrorAdditionalInfo.PowerShell.cs index a42d22eb8076..d1286b7370eb 100644 --- a/src/ServiceLinker/generated/api/Models/Api20/ErrorAdditionalInfo.PowerShell.cs +++ b/src/ServiceLinker/generated/api/Models/Api30/ErrorAdditionalInfo.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30 { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -31,7 +31,8 @@ public partial class ErrorAdditionalInfo /// /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Collections.IDictionary content that should be used. @@ -43,7 +44,8 @@ public partial class ErrorAdditionalInfo /// /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -53,33 +55,33 @@ public partial class ErrorAdditionalInfo partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorAdditionalInfo DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorAdditionalInfo DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new ErrorAdditionalInfo(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorAdditionalInfo DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorAdditionalInfo DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new ErrorAdditionalInfo(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -94,17 +96,17 @@ internal ErrorAdditionalInfo(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorAdditionalInfoInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorAdditionalInfoInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorAdditionalInfoInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorAdditionalInfoInternal)this).Type, global::System.Convert.ToString); } if (content.Contains("Info")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorAdditionalInfoInternal)this).Info = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAny) content.GetValueForProperty("Info",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorAdditionalInfoInternal)this).Info, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.AnyTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorAdditionalInfoInternal)this).Info = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAny) content.GetValueForProperty("Info",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorAdditionalInfoInternal)this).Info, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.AnyTypeConverter.ConvertFrom); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -119,11 +121,11 @@ internal ErrorAdditionalInfo(global::System.Management.Automation.PSObject conte // actually deserialize if (content.Contains("Type")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorAdditionalInfoInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorAdditionalInfoInternal)this).Type, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorAdditionalInfoInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorAdditionalInfoInternal)this).Type, global::System.Convert.ToString); } if (content.Contains("Info")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorAdditionalInfoInternal)this).Info = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAny) content.GetValueForProperty("Info",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorAdditionalInfoInternal)this).Info, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.AnyTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorAdditionalInfoInternal)this).Info = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAny) content.GetValueForProperty("Info",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorAdditionalInfoInternal)this).Info, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.AnyTypeConverter.ConvertFrom); } AfterDeserializePSObject(content); } @@ -133,7 +135,7 @@ internal ErrorAdditionalInfo(global::System.Management.Automation.PSObject conte /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorAdditionalInfo FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorAdditionalInfo FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/ServiceLinker/generated/api/Models/Api20/ErrorAdditionalInfo.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api30/ErrorAdditionalInfo.TypeConverter.cs similarity index 82% rename from src/ServiceLinker/generated/api/Models/Api20/ErrorAdditionalInfo.TypeConverter.cs rename to src/ServiceLinker/generated/api/Models/Api30/ErrorAdditionalInfo.TypeConverter.cs index 7db9e21b6715..962053db83ae 100644 --- a/src/ServiceLinker/generated/api/Models/Api20/ErrorAdditionalInfo.TypeConverter.cs +++ b/src/ServiceLinker/generated/api/Models/Api30/ErrorAdditionalInfo.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30 { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -14,20 +14,20 @@ public partial class ErrorAdditionalInfoTypeConverter : global::System.Managemen { /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); /// - /// Determines if the converter can convert the parameter to the . + /// Determines if the converter can convert the parameter to the + /// type. /// /// the instance to check if it can be converted to the type. @@ -75,19 +75,20 @@ public static bool CanConvertFrom(dynamic sourceValue) } /// - /// Determines if the parameter can be converted to the parameter + /// Determines if the parameter can be converted to the + /// parameter /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false + /// true if the converter can convert the parameter to the parameter, otherwise false /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to @@ -99,21 +100,20 @@ public static bool CanConvertFrom(dynamic sourceValue) public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); /// - /// Converts the parameter to the parameter using and + /// Converts the parameter into an instance of /// /// the value to convert into an instance of . /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorAdditionalInfo ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorAdditionalInfo ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorAdditionalInfo).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorAdditionalInfo).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceLinker/generated/api/Models/Api20/ErrorAdditionalInfo.cs b/src/ServiceLinker/generated/api/Models/Api30/ErrorAdditionalInfo.cs similarity index 94% rename from src/ServiceLinker/generated/api/Models/Api20/ErrorAdditionalInfo.cs rename to src/ServiceLinker/generated/api/Models/Api30/ErrorAdditionalInfo.cs index 40122d4b23c8..1a45eaa7022b 100644 --- a/src/ServiceLinker/generated/api/Models/Api20/ErrorAdditionalInfo.cs +++ b/src/ServiceLinker/generated/api/Models/Api30/ErrorAdditionalInfo.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30 { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; /// The resource management error additional info. public partial class ErrorAdditionalInfo : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorAdditionalInfo, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorAdditionalInfoInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorAdditionalInfo, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorAdditionalInfoInternal { /// Backing field for property. @@ -21,10 +21,10 @@ public partial class ErrorAdditionalInfo : public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAny Info { get => (this._info = this._info ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Any()); } /// Internal Acessors for Info - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAny Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorAdditionalInfoInternal.Info { get => (this._info = this._info ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Any()); set { {_info = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IAny Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorAdditionalInfoInternal.Info { get => (this._info = this._info ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Any()); set { {_info = value;} } } /// Internal Acessors for Type - string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorAdditionalInfoInternal.Type { get => this._type; set { {_type = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorAdditionalInfoInternal.Type { get => this._type; set { {_type = value;} } } /// Backing field for property. private string _type; diff --git a/src/ServiceLinker/generated/api/Models/Api20/ErrorAdditionalInfo.json.cs b/src/ServiceLinker/generated/api/Models/Api30/ErrorAdditionalInfo.json.cs similarity index 97% rename from src/ServiceLinker/generated/api/Models/Api20/ErrorAdditionalInfo.json.cs rename to src/ServiceLinker/generated/api/Models/Api30/ErrorAdditionalInfo.json.cs index 6cc63af7ac40..94e103476241 100644 --- a/src/ServiceLinker/generated/api/Models/Api20/ErrorAdditionalInfo.json.cs +++ b/src/ServiceLinker/generated/api/Models/Api30/ErrorAdditionalInfo.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30 { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; @@ -71,13 +71,13 @@ internal ErrorAdditionalInfo(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Ru } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorAdditionalInfo. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorAdditionalInfo. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorAdditionalInfo. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorAdditionalInfo. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorAdditionalInfo FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorAdditionalInfo FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new ErrorAdditionalInfo(json) : null; } diff --git a/src/ServiceLinker/generated/api/Models/Api20/ErrorDetail.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api30/ErrorDetail.PowerShell.cs similarity index 77% rename from src/ServiceLinker/generated/api/Models/Api20/ErrorDetail.PowerShell.cs rename to src/ServiceLinker/generated/api/Models/Api30/ErrorDetail.PowerShell.cs index 6fffe04349f4..da49fba40996 100644 --- a/src/ServiceLinker/generated/api/Models/Api20/ErrorDetail.PowerShell.cs +++ b/src/ServiceLinker/generated/api/Models/Api30/ErrorDetail.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30 { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -31,7 +31,8 @@ public partial class ErrorDetail /// /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Collections.IDictionary content that should be used. @@ -43,7 +44,8 @@ public partial class ErrorDetail /// /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -53,33 +55,33 @@ public partial class ErrorDetail partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetail DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetail DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new ErrorDetail(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetail DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetail DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new ErrorDetail(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -94,29 +96,29 @@ internal ErrorDetail(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Code")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetailInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetailInternal)this).Code, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetailInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetailInternal)this).Code, global::System.Convert.ToString); } if (content.Contains("Message")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetailInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetailInternal)this).Message, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetailInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetailInternal)this).Message, global::System.Convert.ToString); } if (content.Contains("Target")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetailInternal)this).Target = (string) content.GetValueForProperty("Target",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetailInternal)this).Target, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetailInternal)this).Target = (string) content.GetValueForProperty("Target",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetailInternal)this).Target, global::System.Convert.ToString); } if (content.Contains("Detail")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetailInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetail[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetailInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ErrorDetailTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetailInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetail[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetailInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ErrorDetailTypeConverter.ConvertFrom)); } if (content.Contains("AdditionalInfo")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetailInternal)this).AdditionalInfo = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorAdditionalInfo[]) content.GetValueForProperty("AdditionalInfo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetailInternal)this).AdditionalInfo, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ErrorAdditionalInfoTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetailInternal)this).AdditionalInfo = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorAdditionalInfo[]) content.GetValueForProperty("AdditionalInfo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetailInternal)this).AdditionalInfo, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ErrorAdditionalInfoTypeConverter.ConvertFrom)); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -131,23 +133,23 @@ internal ErrorDetail(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("Code")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetailInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetailInternal)this).Code, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetailInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetailInternal)this).Code, global::System.Convert.ToString); } if (content.Contains("Message")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetailInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetailInternal)this).Message, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetailInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetailInternal)this).Message, global::System.Convert.ToString); } if (content.Contains("Target")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetailInternal)this).Target = (string) content.GetValueForProperty("Target",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetailInternal)this).Target, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetailInternal)this).Target = (string) content.GetValueForProperty("Target",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetailInternal)this).Target, global::System.Convert.ToString); } if (content.Contains("Detail")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetailInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetail[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetailInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ErrorDetailTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetailInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetail[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetailInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ErrorDetailTypeConverter.ConvertFrom)); } if (content.Contains("AdditionalInfo")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetailInternal)this).AdditionalInfo = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorAdditionalInfo[]) content.GetValueForProperty("AdditionalInfo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetailInternal)this).AdditionalInfo, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ErrorAdditionalInfoTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetailInternal)this).AdditionalInfo = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorAdditionalInfo[]) content.GetValueForProperty("AdditionalInfo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetailInternal)this).AdditionalInfo, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ErrorAdditionalInfoTypeConverter.ConvertFrom)); } AfterDeserializePSObject(content); } @@ -157,7 +159,7 @@ internal ErrorDetail(global::System.Management.Automation.PSObject content) /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetail FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetail FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/ServiceLinker/generated/api/Models/Api20/ErrorDetail.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api30/ErrorDetail.TypeConverter.cs similarity index 82% rename from src/ServiceLinker/generated/api/Models/Api20/ErrorDetail.TypeConverter.cs rename to src/ServiceLinker/generated/api/Models/Api30/ErrorDetail.TypeConverter.cs index a8c4fff24bf0..4e18ea4996b2 100644 --- a/src/ServiceLinker/generated/api/Models/Api20/ErrorDetail.TypeConverter.cs +++ b/src/ServiceLinker/generated/api/Models/Api30/ErrorDetail.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30 { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -14,19 +14,20 @@ public partial class ErrorDetailTypeConverter : global::System.Management.Automa { /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); /// - /// Determines if the converter can convert the parameter to the . + /// Determines if the converter can convert the parameter to the + /// type. /// /// the instance to check if it can be converted to the type. @@ -74,19 +75,20 @@ public static bool CanConvertFrom(dynamic sourceValue) } /// - /// Determines if the parameter can be converted to the parameter + /// Determines if the parameter can be converted to the + /// parameter /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false + /// true if the converter can convert the parameter to the parameter, otherwise false /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to @@ -98,21 +100,20 @@ public static bool CanConvertFrom(dynamic sourceValue) public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); /// - /// Converts the parameter to the parameter using and + /// Converts the parameter into an instance of /// /// the value to convert into an instance of . /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetail ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetail ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetail).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetail).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceLinker/generated/api/Models/Api20/ErrorDetail.cs b/src/ServiceLinker/generated/api/Models/Api30/ErrorDetail.cs similarity index 85% rename from src/ServiceLinker/generated/api/Models/Api20/ErrorDetail.cs rename to src/ServiceLinker/generated/api/Models/Api30/ErrorDetail.cs index 663272dd1898..ef277fa786e6 100644 --- a/src/ServiceLinker/generated/api/Models/Api20/ErrorDetail.cs +++ b/src/ServiceLinker/generated/api/Models/Api30/ErrorDetail.cs @@ -3,22 +3,22 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30 { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; /// The error detail. public partial class ErrorDetail : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetail, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetailInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetail, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetailInternal { /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorAdditionalInfo[] _additionalInfo; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorAdditionalInfo[] _additionalInfo; /// The error additional info. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorAdditionalInfo[] AdditionalInfo { get => this._additionalInfo; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorAdditionalInfo[] AdditionalInfo { get => this._additionalInfo; } /// Backing field for property. private string _code; @@ -28,11 +28,11 @@ public partial class ErrorDetail : public string Code { get => this._code; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetail[] _detail; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetail[] _detail; /// The error details. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetail[] Detail { get => this._detail; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetail[] Detail { get => this._detail; } /// Backing field for property. private string _message; @@ -42,19 +42,19 @@ public partial class ErrorDetail : public string Message { get => this._message; } /// Internal Acessors for AdditionalInfo - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorAdditionalInfo[] Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetailInternal.AdditionalInfo { get => this._additionalInfo; set { {_additionalInfo = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorAdditionalInfo[] Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetailInternal.AdditionalInfo { get => this._additionalInfo; set { {_additionalInfo = value;} } } /// Internal Acessors for Code - string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetailInternal.Code { get => this._code; set { {_code = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetailInternal.Code { get => this._code; set { {_code = value;} } } /// Internal Acessors for Detail - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetail[] Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetailInternal.Detail { get => this._detail; set { {_detail = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetail[] Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetailInternal.Detail { get => this._detail; set { {_detail = value;} } } /// Internal Acessors for Message - string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetailInternal.Message { get => this._message; set { {_message = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetailInternal.Message { get => this._message; set { {_message = value;} } } /// Internal Acessors for Target - string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetailInternal.Target { get => this._target; set { {_target = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetailInternal.Target { get => this._target; set { {_target = value;} } } /// Backing field for property. private string _target; @@ -79,8 +79,8 @@ public partial interface IErrorDetail : ReadOnly = true, Description = @"The error additional info.", SerializedName = @"additionalInfo", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorAdditionalInfo) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorAdditionalInfo[] AdditionalInfo { get; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorAdditionalInfo) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorAdditionalInfo[] AdditionalInfo { get; } /// The error code. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( Required = false, @@ -95,8 +95,8 @@ public partial interface IErrorDetail : ReadOnly = true, Description = @"The error details.", SerializedName = @"details", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetail) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetail[] Detail { get; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetail) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetail[] Detail { get; } /// The error message. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( Required = false, @@ -120,11 +120,11 @@ internal partial interface IErrorDetailInternal { /// The error additional info. - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorAdditionalInfo[] AdditionalInfo { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorAdditionalInfo[] AdditionalInfo { get; set; } /// The error code. string Code { get; set; } /// The error details. - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetail[] Detail { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetail[] Detail { get; set; } /// The error message. string Message { get; set; } /// The error target. diff --git a/src/ServiceLinker/generated/api/Models/Api20/ErrorDetail.json.cs b/src/ServiceLinker/generated/api/Models/Api30/ErrorDetail.json.cs similarity index 94% rename from src/ServiceLinker/generated/api/Models/Api20/ErrorDetail.json.cs rename to src/ServiceLinker/generated/api/Models/Api30/ErrorDetail.json.cs index eafae11b297a..4ebe0bda51d3 100644 --- a/src/ServiceLinker/generated/api/Models/Api20/ErrorDetail.json.cs +++ b/src/ServiceLinker/generated/api/Models/Api30/ErrorDetail.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30 { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; @@ -68,19 +68,19 @@ internal ErrorDetail(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Js {_code = If( json?.PropertyT("code"), out var __jsonCode) ? (string)__jsonCode : (string)Code;} {_message = If( json?.PropertyT("message"), out var __jsonMessage) ? (string)__jsonMessage : (string)Message;} {_target = If( json?.PropertyT("target"), out var __jsonTarget) ? (string)__jsonTarget : (string)Target;} - {_detail = If( json?.PropertyT("details"), out var __jsonDetails) ? If( __jsonDetails as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetail) (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ErrorDetail.FromJson(__u) )) ))() : null : Detail;} - {_additionalInfo = If( json?.PropertyT("additionalInfo"), out var __jsonAdditionalInfo) ? If( __jsonAdditionalInfo as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonArray, out var __q) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__q, (__p)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorAdditionalInfo) (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ErrorAdditionalInfo.FromJson(__p) )) ))() : null : AdditionalInfo;} + {_detail = If( json?.PropertyT("details"), out var __jsonDetails) ? If( __jsonDetails as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetail) (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ErrorDetail.FromJson(__u) )) ))() : null : Detail;} + {_additionalInfo = If( json?.PropertyT("additionalInfo"), out var __jsonAdditionalInfo) ? If( __jsonAdditionalInfo as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonArray, out var __q) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__q, (__p)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorAdditionalInfo) (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ErrorAdditionalInfo.FromJson(__p) )) ))() : null : AdditionalInfo;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetail. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetail. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetail. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetail. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetail FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetail FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new ErrorDetail(json) : null; } diff --git a/src/ServiceLinker/generated/api/Models/Api20/ErrorResponse.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api30/ErrorResponse.PowerShell.cs similarity index 76% rename from src/ServiceLinker/generated/api/Models/Api20/ErrorResponse.PowerShell.cs rename to src/ServiceLinker/generated/api/Models/Api30/ErrorResponse.PowerShell.cs index 6644e547eee1..33736ae0469e 100644 --- a/src/ServiceLinker/generated/api/Models/Api20/ErrorResponse.PowerShell.cs +++ b/src/ServiceLinker/generated/api/Models/Api30/ErrorResponse.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30 { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -34,7 +34,8 @@ public partial class ErrorResponse /// /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Collections.IDictionary content that should be used. @@ -46,7 +47,8 @@ public partial class ErrorResponse /// /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -56,33 +58,33 @@ public partial class ErrorResponse partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorResponse DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new ErrorResponse(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorResponse DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new ErrorResponse(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -97,33 +99,33 @@ internal ErrorResponse(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Error")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorResponseInternal)this).Error = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetail) content.GetValueForProperty("Error",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorResponseInternal)this).Error, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ErrorDetailTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponseInternal)this).Error = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetail) content.GetValueForProperty("Error",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponseInternal)this).Error, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ErrorDetailTypeConverter.ConvertFrom); } if (content.Contains("Code")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorResponseInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorResponseInternal)this).Code, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponseInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponseInternal)this).Code, global::System.Convert.ToString); } if (content.Contains("Message")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorResponseInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorResponseInternal)this).Message, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponseInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponseInternal)this).Message, global::System.Convert.ToString); } if (content.Contains("Target")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorResponseInternal)this).Target = (string) content.GetValueForProperty("Target",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorResponseInternal)this).Target, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponseInternal)this).Target = (string) content.GetValueForProperty("Target",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponseInternal)this).Target, global::System.Convert.ToString); } if (content.Contains("Detail")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorResponseInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetail[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorResponseInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ErrorDetailTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponseInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetail[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponseInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ErrorDetailTypeConverter.ConvertFrom)); } if (content.Contains("AdditionalInfo")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorResponseInternal)this).AdditionalInfo = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorAdditionalInfo[]) content.GetValueForProperty("AdditionalInfo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorResponseInternal)this).AdditionalInfo, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ErrorAdditionalInfoTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponseInternal)this).AdditionalInfo = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorAdditionalInfo[]) content.GetValueForProperty("AdditionalInfo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponseInternal)this).AdditionalInfo, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ErrorAdditionalInfoTypeConverter.ConvertFrom)); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -138,27 +140,27 @@ internal ErrorResponse(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("Error")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorResponseInternal)this).Error = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetail) content.GetValueForProperty("Error",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorResponseInternal)this).Error, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ErrorDetailTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponseInternal)this).Error = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetail) content.GetValueForProperty("Error",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponseInternal)this).Error, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ErrorDetailTypeConverter.ConvertFrom); } if (content.Contains("Code")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorResponseInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorResponseInternal)this).Code, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponseInternal)this).Code = (string) content.GetValueForProperty("Code",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponseInternal)this).Code, global::System.Convert.ToString); } if (content.Contains("Message")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorResponseInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorResponseInternal)this).Message, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponseInternal)this).Message = (string) content.GetValueForProperty("Message",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponseInternal)this).Message, global::System.Convert.ToString); } if (content.Contains("Target")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorResponseInternal)this).Target = (string) content.GetValueForProperty("Target",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorResponseInternal)this).Target, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponseInternal)this).Target = (string) content.GetValueForProperty("Target",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponseInternal)this).Target, global::System.Convert.ToString); } if (content.Contains("Detail")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorResponseInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetail[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorResponseInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ErrorDetailTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponseInternal)this).Detail = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetail[]) content.GetValueForProperty("Detail",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponseInternal)this).Detail, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ErrorDetailTypeConverter.ConvertFrom)); } if (content.Contains("AdditionalInfo")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorResponseInternal)this).AdditionalInfo = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorAdditionalInfo[]) content.GetValueForProperty("AdditionalInfo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorResponseInternal)this).AdditionalInfo, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ErrorAdditionalInfoTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponseInternal)this).AdditionalInfo = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorAdditionalInfo[]) content.GetValueForProperty("AdditionalInfo",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponseInternal)this).AdditionalInfo, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ErrorAdditionalInfoTypeConverter.ConvertFrom)); } AfterDeserializePSObject(content); } @@ -168,7 +170,7 @@ internal ErrorResponse(global::System.Management.Automation.PSObject content) /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorResponse FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); /// Serializes this instance to a json string. diff --git a/src/ServiceLinker/generated/api/Models/Api20/ErrorResponse.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api30/ErrorResponse.TypeConverter.cs similarity index 82% rename from src/ServiceLinker/generated/api/Models/Api20/ErrorResponse.TypeConverter.cs rename to src/ServiceLinker/generated/api/Models/Api30/ErrorResponse.TypeConverter.cs index a9fe620a6ffa..5dc1b6360284 100644 --- a/src/ServiceLinker/generated/api/Models/Api20/ErrorResponse.TypeConverter.cs +++ b/src/ServiceLinker/generated/api/Models/Api30/ErrorResponse.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30 { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -14,19 +14,20 @@ public partial class ErrorResponseTypeConverter : global::System.Management.Auto { /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); /// - /// Determines if the converter can convert the parameter to the . + /// Determines if the converter can convert the parameter to the + /// type. /// /// the instance to check if it can be converted to the type. @@ -74,19 +75,20 @@ public static bool CanConvertFrom(dynamic sourceValue) } /// - /// Determines if the parameter can be converted to the parameter + /// Determines if the parameter can be converted to the + /// parameter /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false + /// true if the converter can convert the parameter to the parameter, otherwise false /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to @@ -98,21 +100,20 @@ public static bool CanConvertFrom(dynamic sourceValue) public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); /// - /// Converts the parameter to the parameter using and + /// Converts the parameter into an instance of /// /// the value to convert into an instance of . /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorResponse ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorResponse).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceLinker/generated/api/Models/Api20/ErrorResponse.cs b/src/ServiceLinker/generated/api/Models/Api30/ErrorResponse.cs similarity index 75% rename from src/ServiceLinker/generated/api/Models/Api20/ErrorResponse.cs rename to src/ServiceLinker/generated/api/Models/Api30/ErrorResponse.cs index 54e66ac6b22f..4add55ab3058 100644 --- a/src/ServiceLinker/generated/api/Models/Api20/ErrorResponse.cs +++ b/src/ServiceLinker/generated/api/Models/Api30/ErrorResponse.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30 { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; @@ -12,54 +12,54 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20 /// the OData error response format.). /// public partial class ErrorResponse : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorResponse, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorResponseInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponseInternal { /// The error additional info. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorAdditionalInfo[] AdditionalInfo { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetailInternal)Error).AdditionalInfo; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorAdditionalInfo[] AdditionalInfo { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetailInternal)Error).AdditionalInfo; } /// The error code. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] - public string Code { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetailInternal)Error).Code; } + public string Code { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetailInternal)Error).Code; } /// The error details. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetail[] Detail { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetailInternal)Error).Detail; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetail[] Detail { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetailInternal)Error).Detail; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetail _error; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetail _error; /// The error object. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetail Error { get => (this._error = this._error ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ErrorDetail()); set => this._error = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetail Error { get => (this._error = this._error ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ErrorDetail()); set => this._error = value; } /// The error message. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] - public string Message { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetailInternal)Error).Message; } + public string Message { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetailInternal)Error).Message; } /// Internal Acessors for AdditionalInfo - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorAdditionalInfo[] Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorResponseInternal.AdditionalInfo { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetailInternal)Error).AdditionalInfo; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetailInternal)Error).AdditionalInfo = value; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorAdditionalInfo[] Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponseInternal.AdditionalInfo { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetailInternal)Error).AdditionalInfo; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetailInternal)Error).AdditionalInfo = value; } /// Internal Acessors for Code - string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorResponseInternal.Code { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetailInternal)Error).Code; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetailInternal)Error).Code = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponseInternal.Code { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetailInternal)Error).Code; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetailInternal)Error).Code = value; } /// Internal Acessors for Detail - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetail[] Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorResponseInternal.Detail { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetailInternal)Error).Detail; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetailInternal)Error).Detail = value; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetail[] Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponseInternal.Detail { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetailInternal)Error).Detail; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetailInternal)Error).Detail = value; } /// Internal Acessors for Error - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetail Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorResponseInternal.Error { get => (this._error = this._error ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ErrorDetail()); set { {_error = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetail Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponseInternal.Error { get => (this._error = this._error ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ErrorDetail()); set { {_error = value;} } } /// Internal Acessors for Message - string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorResponseInternal.Message { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetailInternal)Error).Message; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetailInternal)Error).Message = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponseInternal.Message { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetailInternal)Error).Message; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetailInternal)Error).Message = value; } /// Internal Acessors for Target - string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorResponseInternal.Target { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetailInternal)Error).Target; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetailInternal)Error).Target = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponseInternal.Target { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetailInternal)Error).Target; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetailInternal)Error).Target = value; } /// The error target. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] - public string Target { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetailInternal)Error).Target; } + public string Target { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetailInternal)Error).Target; } /// Creates an new instance. public ErrorResponse() @@ -78,8 +78,8 @@ public partial interface IErrorResponse : ReadOnly = true, Description = @"The error additional info.", SerializedName = @"additionalInfo", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorAdditionalInfo) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorAdditionalInfo[] AdditionalInfo { get; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorAdditionalInfo) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorAdditionalInfo[] AdditionalInfo { get; } /// The error code. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( Required = false, @@ -94,8 +94,8 @@ public partial interface IErrorResponse : ReadOnly = true, Description = @"The error details.", SerializedName = @"details", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetail) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetail[] Detail { get; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetail) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetail[] Detail { get; } /// The error message. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( Required = false, @@ -120,13 +120,13 @@ internal partial interface IErrorResponseInternal { /// The error additional info. - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorAdditionalInfo[] AdditionalInfo { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorAdditionalInfo[] AdditionalInfo { get; set; } /// The error code. string Code { get; set; } /// The error details. - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetail[] Detail { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetail[] Detail { get; set; } /// The error object. - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorDetail Error { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorDetail Error { get; set; } /// The error message. string Message { get; set; } /// The error target. diff --git a/src/ServiceLinker/generated/api/Models/Api20/ErrorResponse.json.cs b/src/ServiceLinker/generated/api/Models/Api30/ErrorResponse.json.cs similarity index 96% rename from src/ServiceLinker/generated/api/Models/Api20/ErrorResponse.json.cs rename to src/ServiceLinker/generated/api/Models/Api30/ErrorResponse.json.cs index 4ea4ebb8cf61..0cb3fafbfe45 100644 --- a/src/ServiceLinker/generated/api/Models/Api20/ErrorResponse.json.cs +++ b/src/ServiceLinker/generated/api/Models/Api30/ErrorResponse.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30 { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; @@ -68,18 +68,18 @@ internal ErrorResponse(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime. { return; } - {_error = If( json?.PropertyT("error"), out var __jsonError) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ErrorDetail.FromJson(__jsonError) : Error;} + {_error = If( json?.PropertyT("error"), out var __jsonError) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ErrorDetail.FromJson(__jsonError) : Error;} AfterFromJson(json); } /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorResponse. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorResponse. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IErrorResponse FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new ErrorResponse(json) : null; } diff --git a/src/ServiceLinker/generated/api/Models/Api20/Operation.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api30/Operation.PowerShell.cs similarity index 78% rename from src/ServiceLinker/generated/api/Models/Api20/Operation.PowerShell.cs rename to src/ServiceLinker/generated/api/Models/Api30/Operation.PowerShell.cs index 4bdd436b7027..b670f34cbd18 100644 --- a/src/ServiceLinker/generated/api/Models/Api20/Operation.PowerShell.cs +++ b/src/ServiceLinker/generated/api/Models/Api30/Operation.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30 { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -33,7 +33,8 @@ public partial class Operation /// /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Collections.IDictionary content that should be used. @@ -45,7 +46,8 @@ public partial class Operation /// /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -55,27 +57,27 @@ public partial class Operation partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperation DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperation DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new Operation(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperation DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperation DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new Operation(content); } @@ -85,10 +87,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOpe /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperation FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperation FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -103,45 +105,45 @@ internal Operation(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Display")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal)this).Display = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplay) content.GetValueForProperty("Display",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal)this).Display, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.OperationDisplayTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal)this).Display = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplay) content.GetValueForProperty("Display",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal)this).Display, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.OperationDisplayTypeConverter.ConvertFrom); } if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal)this).Name, global::System.Convert.ToString); } if (content.Contains("IsDataAction")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal)this).IsDataAction = (bool?) content.GetValueForProperty("IsDataAction",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal)this).IsDataAction, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal)this).IsDataAction = (bool?) content.GetValueForProperty("IsDataAction",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal)this).IsDataAction, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } if (content.Contains("Origin")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal)this).Origin = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.Origin?) content.GetValueForProperty("Origin",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal)this).Origin, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.Origin.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal)this).Origin = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.Origin?) content.GetValueForProperty("Origin",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal)this).Origin, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.Origin.CreateFrom); } if (content.Contains("ActionType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal)this).ActionType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType?) content.GetValueForProperty("ActionType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal)this).ActionType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal)this).ActionType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType?) content.GetValueForProperty("ActionType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal)this).ActionType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType.CreateFrom); } if (content.Contains("DisplayProvider")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal)this).DisplayProvider = (string) content.GetValueForProperty("DisplayProvider",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal)this).DisplayProvider, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal)this).DisplayProvider = (string) content.GetValueForProperty("DisplayProvider",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal)this).DisplayProvider, global::System.Convert.ToString); } if (content.Contains("DisplayResource")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal)this).DisplayResource = (string) content.GetValueForProperty("DisplayResource",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal)this).DisplayResource, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal)this).DisplayResource = (string) content.GetValueForProperty("DisplayResource",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal)this).DisplayResource, global::System.Convert.ToString); } if (content.Contains("DisplayOperation")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal)this).DisplayOperation = (string) content.GetValueForProperty("DisplayOperation",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal)this).DisplayOperation, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal)this).DisplayOperation = (string) content.GetValueForProperty("DisplayOperation",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal)this).DisplayOperation, global::System.Convert.ToString); } if (content.Contains("DisplayDescription")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal)this).DisplayDescription = (string) content.GetValueForProperty("DisplayDescription",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal)this).DisplayDescription, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal)this).DisplayDescription = (string) content.GetValueForProperty("DisplayDescription",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal)this).DisplayDescription, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -156,39 +158,39 @@ internal Operation(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("Display")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal)this).Display = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplay) content.GetValueForProperty("Display",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal)this).Display, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.OperationDisplayTypeConverter.ConvertFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal)this).Display = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplay) content.GetValueForProperty("Display",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal)this).Display, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.OperationDisplayTypeConverter.ConvertFrom); } if (content.Contains("Name")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal)this).Name, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal)this).Name, global::System.Convert.ToString); } if (content.Contains("IsDataAction")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal)this).IsDataAction = (bool?) content.GetValueForProperty("IsDataAction",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal)this).IsDataAction, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal)this).IsDataAction = (bool?) content.GetValueForProperty("IsDataAction",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal)this).IsDataAction, (__y)=> (bool) global::System.Convert.ChangeType(__y, typeof(bool))); } if (content.Contains("Origin")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal)this).Origin = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.Origin?) content.GetValueForProperty("Origin",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal)this).Origin, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.Origin.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal)this).Origin = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.Origin?) content.GetValueForProperty("Origin",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal)this).Origin, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.Origin.CreateFrom); } if (content.Contains("ActionType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal)this).ActionType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType?) content.GetValueForProperty("ActionType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal)this).ActionType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal)this).ActionType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType?) content.GetValueForProperty("ActionType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal)this).ActionType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType.CreateFrom); } if (content.Contains("DisplayProvider")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal)this).DisplayProvider = (string) content.GetValueForProperty("DisplayProvider",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal)this).DisplayProvider, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal)this).DisplayProvider = (string) content.GetValueForProperty("DisplayProvider",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal)this).DisplayProvider, global::System.Convert.ToString); } if (content.Contains("DisplayResource")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal)this).DisplayResource = (string) content.GetValueForProperty("DisplayResource",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal)this).DisplayResource, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal)this).DisplayResource = (string) content.GetValueForProperty("DisplayResource",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal)this).DisplayResource, global::System.Convert.ToString); } if (content.Contains("DisplayOperation")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal)this).DisplayOperation = (string) content.GetValueForProperty("DisplayOperation",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal)this).DisplayOperation, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal)this).DisplayOperation = (string) content.GetValueForProperty("DisplayOperation",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal)this).DisplayOperation, global::System.Convert.ToString); } if (content.Contains("DisplayDescription")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal)this).DisplayDescription = (string) content.GetValueForProperty("DisplayDescription",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal)this).DisplayDescription, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal)this).DisplayDescription = (string) content.GetValueForProperty("DisplayDescription",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal)this).DisplayDescription, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/src/ServiceLinker/generated/api/Models/Api20/Operation.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api30/Operation.TypeConverter.cs similarity index 82% rename from src/ServiceLinker/generated/api/Models/Api20/Operation.TypeConverter.cs rename to src/ServiceLinker/generated/api/Models/Api30/Operation.TypeConverter.cs index f13eaf62ec4b..ef3b8588c854 100644 --- a/src/ServiceLinker/generated/api/Models/Api20/Operation.TypeConverter.cs +++ b/src/ServiceLinker/generated/api/Models/Api30/Operation.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30 { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -14,19 +14,19 @@ public partial class OperationTypeConverter : global::System.Management.Automati { /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); /// - /// Determines if the converter can convert the parameter to the . + /// Determines if the converter can convert the parameter to the type. /// /// the instance to check if it can be converted to the type. @@ -74,19 +74,20 @@ public static bool CanConvertFrom(dynamic sourceValue) } /// - /// Determines if the parameter can be converted to the parameter + /// Determines if the parameter can be converted to the + /// parameter /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false + /// true if the converter can convert the parameter to the parameter, otherwise false /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to @@ -98,21 +99,20 @@ public static bool CanConvertFrom(dynamic sourceValue) public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); /// - /// Converts the parameter to the parameter using and + /// Converts the parameter into an instance of /// /// the value to convert into an instance of . /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperation ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperation ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperation).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperation).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceLinker/generated/api/Models/Api20/Operation.cs b/src/ServiceLinker/generated/api/Models/Api30/Operation.cs similarity index 89% rename from src/ServiceLinker/generated/api/Models/Api20/Operation.cs rename to src/ServiceLinker/generated/api/Models/Api30/Operation.cs index 7b05478324e6..a71cb198cabe 100644 --- a/src/ServiceLinker/generated/api/Models/Api20/Operation.cs +++ b/src/ServiceLinker/generated/api/Models/Api30/Operation.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30 { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; @@ -11,8 +11,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20 /// Details of a REST API operation, returned from the Resource Provider Operations API /// public partial class Operation : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperation, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperation, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal { /// Backing field for property. @@ -25,36 +25,36 @@ public partial class Operation : public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType? ActionType { get => this._actionType; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplay _display; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplay _display; /// Localized display information for this particular operation. [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] - internal Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplay Display { get => (this._display = this._display ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.OperationDisplay()); set => this._display = value; } + internal Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplay Display { get => (this._display = this._display ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.OperationDisplay()); set => this._display = value; } /// /// The short, localized friendly description of the operation; suitable for tool tips and detailed views. /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] - public string DisplayDescription { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplayInternal)Display).Description; } + public string DisplayDescription { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplayInternal)Display).Description; } /// /// The concise, localized friendly name for the operation; suitable for dropdowns. E.g. "Create or Update Virtual Machine", /// "Restart Virtual Machine". /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] - public string DisplayOperation { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplayInternal)Display).Operation; } + public string DisplayOperation { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplayInternal)Display).Operation; } /// /// The localized friendly form of the resource provider name, e.g. "Microsoft Monitoring Insights" or "Microsoft Compute". /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] - public string DisplayProvider { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplayInternal)Display).Provider; } + public string DisplayProvider { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplayInternal)Display).Provider; } /// /// The localized friendly name of the resource type related to this operation. E.g. "Virtual Machines" or "Job Schedule Collections". /// [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] - public string DisplayResource { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplayInternal)Display).Resource; } + public string DisplayResource { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplayInternal)Display).Resource; } /// Backing field for property. private bool? _isDataAction; @@ -67,31 +67,31 @@ public partial class Operation : public bool? IsDataAction { get => this._isDataAction; } /// Internal Acessors for ActionType - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType? Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal.ActionType { get => this._actionType; set { {_actionType = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType? Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal.ActionType { get => this._actionType; set { {_actionType = value;} } } /// Internal Acessors for Display - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplay Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal.Display { get => (this._display = this._display ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.OperationDisplay()); set { {_display = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplay Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal.Display { get => (this._display = this._display ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.OperationDisplay()); set { {_display = value;} } } /// Internal Acessors for DisplayDescription - string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal.DisplayDescription { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplayInternal)Display).Description; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplayInternal)Display).Description = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal.DisplayDescription { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplayInternal)Display).Description; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplayInternal)Display).Description = value; } /// Internal Acessors for DisplayOperation - string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal.DisplayOperation { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplayInternal)Display).Operation; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplayInternal)Display).Operation = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal.DisplayOperation { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplayInternal)Display).Operation; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplayInternal)Display).Operation = value; } /// Internal Acessors for DisplayProvider - string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal.DisplayProvider { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplayInternal)Display).Provider; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplayInternal)Display).Provider = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal.DisplayProvider { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplayInternal)Display).Provider; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplayInternal)Display).Provider = value; } /// Internal Acessors for DisplayResource - string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal.DisplayResource { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplayInternal)Display).Resource; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplayInternal)Display).Resource = value; } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal.DisplayResource { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplayInternal)Display).Resource; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplayInternal)Display).Resource = value; } /// Internal Acessors for IsDataAction - bool? Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal.IsDataAction { get => this._isDataAction; set { {_isDataAction = value;} } } + bool? Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal.IsDataAction { get => this._isDataAction; set { {_isDataAction = value;} } } /// Internal Acessors for Name - string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal.Name { get => this._name; set { {_name = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal.Name { get => this._name; set { {_name = value;} } } /// Internal Acessors for Origin - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.Origin? Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationInternal.Origin { get => this._origin; set { {_origin = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.Origin? Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationInternal.Origin { get => this._origin; set { {_origin = value;} } } /// Backing field for property. private string _name; @@ -218,7 +218,7 @@ internal partial interface IOperationInternal /// Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType? ActionType { get; set; } /// Localized display information for this particular operation. - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplay Display { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplay Display { get; set; } /// /// The short, localized friendly description of the operation; suitable for tool tips and detailed views. /// diff --git a/src/ServiceLinker/generated/api/Models/Api20/Operation.json.cs b/src/ServiceLinker/generated/api/Models/Api30/Operation.json.cs similarity index 97% rename from src/ServiceLinker/generated/api/Models/Api20/Operation.json.cs rename to src/ServiceLinker/generated/api/Models/Api30/Operation.json.cs index 89f1e9a303fe..937a84cba627 100644 --- a/src/ServiceLinker/generated/api/Models/Api20/Operation.json.cs +++ b/src/ServiceLinker/generated/api/Models/Api30/Operation.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30 { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; @@ -56,13 +56,13 @@ public partial class Operation partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperation. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperation. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperation. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperation. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperation FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperation FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new Operation(json) : null; } @@ -79,7 +79,7 @@ internal Operation(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json { return; } - {_display = If( json?.PropertyT("display"), out var __jsonDisplay) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.OperationDisplay.FromJson(__jsonDisplay) : Display;} + {_display = If( json?.PropertyT("display"), out var __jsonDisplay) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.OperationDisplay.FromJson(__jsonDisplay) : Display;} {_name = If( json?.PropertyT("name"), out var __jsonName) ? (string)__jsonName : (string)Name;} {_isDataAction = If( json?.PropertyT("isDataAction"), out var __jsonIsDataAction) ? (bool?)__jsonIsDataAction : IsDataAction;} {_origin = If( json?.PropertyT("origin"), out var __jsonOrigin) ? (string)__jsonOrigin : (string)Origin;} diff --git a/src/ServiceLinker/generated/api/Models/Api20/OperationDisplay.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api30/OperationDisplay.PowerShell.cs similarity index 83% rename from src/ServiceLinker/generated/api/Models/Api20/OperationDisplay.PowerShell.cs rename to src/ServiceLinker/generated/api/Models/Api30/OperationDisplay.PowerShell.cs index a3e03db122f6..fe8f9d5533f2 100644 --- a/src/ServiceLinker/generated/api/Models/Api20/OperationDisplay.PowerShell.cs +++ b/src/ServiceLinker/generated/api/Models/Api30/OperationDisplay.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30 { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -31,7 +31,8 @@ public partial class OperationDisplay /// /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Collections.IDictionary content that should be used. @@ -43,7 +44,8 @@ public partial class OperationDisplay /// /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -53,27 +55,27 @@ public partial class OperationDisplay partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplay DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplay DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new OperationDisplay(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplay DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplay DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new OperationDisplay(content); } @@ -83,10 +85,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOpe /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplay FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplay FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -101,25 +103,25 @@ internal OperationDisplay(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Provider")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplayInternal)this).Provider = (string) content.GetValueForProperty("Provider",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplayInternal)this).Provider, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplayInternal)this).Provider = (string) content.GetValueForProperty("Provider",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplayInternal)this).Provider, global::System.Convert.ToString); } if (content.Contains("Resource")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplayInternal)this).Resource = (string) content.GetValueForProperty("Resource",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplayInternal)this).Resource, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplayInternal)this).Resource = (string) content.GetValueForProperty("Resource",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplayInternal)this).Resource, global::System.Convert.ToString); } if (content.Contains("Operation")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplayInternal)this).Operation = (string) content.GetValueForProperty("Operation",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplayInternal)this).Operation, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplayInternal)this).Operation = (string) content.GetValueForProperty("Operation",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplayInternal)this).Operation, global::System.Convert.ToString); } if (content.Contains("Description")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplayInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplayInternal)this).Description, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplayInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplayInternal)this).Description, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -134,19 +136,19 @@ internal OperationDisplay(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("Provider")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplayInternal)this).Provider = (string) content.GetValueForProperty("Provider",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplayInternal)this).Provider, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplayInternal)this).Provider = (string) content.GetValueForProperty("Provider",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplayInternal)this).Provider, global::System.Convert.ToString); } if (content.Contains("Resource")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplayInternal)this).Resource = (string) content.GetValueForProperty("Resource",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplayInternal)this).Resource, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplayInternal)this).Resource = (string) content.GetValueForProperty("Resource",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplayInternal)this).Resource, global::System.Convert.ToString); } if (content.Contains("Operation")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplayInternal)this).Operation = (string) content.GetValueForProperty("Operation",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplayInternal)this).Operation, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplayInternal)this).Operation = (string) content.GetValueForProperty("Operation",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplayInternal)this).Operation, global::System.Convert.ToString); } if (content.Contains("Description")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplayInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplayInternal)this).Description, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplayInternal)this).Description = (string) content.GetValueForProperty("Description",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplayInternal)this).Description, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/src/ServiceLinker/generated/api/Models/Api20/OperationDisplay.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api30/OperationDisplay.TypeConverter.cs similarity index 82% rename from src/ServiceLinker/generated/api/Models/Api20/OperationDisplay.TypeConverter.cs rename to src/ServiceLinker/generated/api/Models/Api30/OperationDisplay.TypeConverter.cs index ec0b0b8849b5..ee0ab355a31e 100644 --- a/src/ServiceLinker/generated/api/Models/Api20/OperationDisplay.TypeConverter.cs +++ b/src/ServiceLinker/generated/api/Models/Api30/OperationDisplay.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30 { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -14,19 +14,20 @@ public partial class OperationDisplayTypeConverter : global::System.Management.A { /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); /// - /// Determines if the converter can convert the parameter to the . + /// Determines if the converter can convert the parameter to the + /// type. /// /// the instance to check if it can be converted to the type. @@ -74,19 +75,20 @@ public static bool CanConvertFrom(dynamic sourceValue) } /// - /// Determines if the parameter can be converted to the parameter + /// Determines if the parameter can be converted to the + /// parameter /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false + /// true if the converter can convert the parameter to the parameter, otherwise false /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to @@ -98,21 +100,20 @@ public static bool CanConvertFrom(dynamic sourceValue) public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); /// - /// Converts the parameter to the parameter using and + /// Converts the parameter into an instance of /// /// the value to convert into an instance of . /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplay ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplay ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplay).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplay).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceLinker/generated/api/Models/Api20/OperationDisplay.cs b/src/ServiceLinker/generated/api/Models/Api30/OperationDisplay.cs similarity index 95% rename from src/ServiceLinker/generated/api/Models/Api20/OperationDisplay.cs rename to src/ServiceLinker/generated/api/Models/Api30/OperationDisplay.cs index 7b6392b7245b..eff581f5919d 100644 --- a/src/ServiceLinker/generated/api/Models/Api20/OperationDisplay.cs +++ b/src/ServiceLinker/generated/api/Models/Api30/OperationDisplay.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30 { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; /// Localized display information for this particular operation. public partial class OperationDisplay : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplay, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplayInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplay, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplayInternal { /// Backing field for property. @@ -23,16 +23,16 @@ public partial class OperationDisplay : public string Description { get => this._description; } /// Internal Acessors for Description - string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplayInternal.Description { get => this._description; set { {_description = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplayInternal.Description { get => this._description; set { {_description = value;} } } /// Internal Acessors for Operation - string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplayInternal.Operation { get => this._operation; set { {_operation = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplayInternal.Operation { get => this._operation; set { {_operation = value;} } } /// Internal Acessors for Provider - string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplayInternal.Provider { get => this._provider; set { {_provider = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplayInternal.Provider { get => this._provider; set { {_provider = value;} } } /// Internal Acessors for Resource - string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplayInternal.Resource { get => this._resource; set { {_resource = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplayInternal.Resource { get => this._resource; set { {_resource = value;} } } /// Backing field for property. private string _operation; diff --git a/src/ServiceLinker/generated/api/Models/Api20/OperationDisplay.json.cs b/src/ServiceLinker/generated/api/Models/Api30/OperationDisplay.json.cs similarity index 98% rename from src/ServiceLinker/generated/api/Models/Api20/OperationDisplay.json.cs rename to src/ServiceLinker/generated/api/Models/Api30/OperationDisplay.json.cs index 5339e38ac991..e4d65414adea 100644 --- a/src/ServiceLinker/generated/api/Models/Api20/OperationDisplay.json.cs +++ b/src/ServiceLinker/generated/api/Models/Api30/OperationDisplay.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30 { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class OperationDisplay partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplay. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplay. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplay. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplay. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationDisplay FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationDisplay FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new OperationDisplay(json) : null; } diff --git a/src/ServiceLinker/generated/api/Models/Api20/OperationListResult.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api30/OperationListResult.PowerShell.cs similarity index 83% rename from src/ServiceLinker/generated/api/Models/Api20/OperationListResult.PowerShell.cs rename to src/ServiceLinker/generated/api/Models/Api30/OperationListResult.PowerShell.cs index f310d610b65a..51d9ac554f2b 100644 --- a/src/ServiceLinker/generated/api/Models/Api20/OperationListResult.PowerShell.cs +++ b/src/ServiceLinker/generated/api/Models/Api30/OperationListResult.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30 { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -34,7 +34,8 @@ public partial class OperationListResult /// /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Collections.IDictionary content that should be used. @@ -46,7 +47,8 @@ public partial class OperationListResult /// /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -56,27 +58,27 @@ public partial class OperationListResult partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationListResult DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new OperationListResult(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationListResult DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new OperationListResult(content); } @@ -86,10 +88,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOpe /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationListResult FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -104,17 +106,17 @@ internal OperationListResult(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperation[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.OperationTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperation[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.OperationTypeConverter.ConvertFrom)); } if (content.Contains("NextLink")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationListResultInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationListResultInternal)this).NextLink, global::System.Convert.ToString); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -129,11 +131,11 @@ internal OperationListResult(global::System.Management.Automation.PSObject conte // actually deserialize if (content.Contains("Value")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperation[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.OperationTypeConverter.ConvertFrom)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationListResultInternal)this).Value = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperation[]) content.GetValueForProperty("Value",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationListResultInternal)this).Value, __y => TypeConverterExtensions.SelectToArray(__y, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.OperationTypeConverter.ConvertFrom)); } if (content.Contains("NextLink")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationListResultInternal)this).NextLink, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationListResultInternal)this).NextLink = (string) content.GetValueForProperty("NextLink",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationListResultInternal)this).NextLink, global::System.Convert.ToString); } AfterDeserializePSObject(content); } diff --git a/src/ServiceLinker/generated/api/Models/Api20/OperationListResult.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api30/OperationListResult.TypeConverter.cs similarity index 82% rename from src/ServiceLinker/generated/api/Models/Api20/OperationListResult.TypeConverter.cs rename to src/ServiceLinker/generated/api/Models/Api30/OperationListResult.TypeConverter.cs index ed10d4581983..92d8c7afed02 100644 --- a/src/ServiceLinker/generated/api/Models/Api20/OperationListResult.TypeConverter.cs +++ b/src/ServiceLinker/generated/api/Models/Api30/OperationListResult.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30 { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -14,20 +14,20 @@ public partial class OperationListResultTypeConverter : global::System.Managemen { /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); /// - /// Determines if the converter can convert the parameter to the . + /// Determines if the converter can convert the parameter to the + /// type. /// /// the instance to check if it can be converted to the type. @@ -75,19 +75,20 @@ public static bool CanConvertFrom(dynamic sourceValue) } /// - /// Determines if the parameter can be converted to the parameter + /// Determines if the parameter can be converted to the + /// parameter /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false + /// true if the converter can convert the parameter to the parameter, otherwise false /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to @@ -99,21 +100,20 @@ public static bool CanConvertFrom(dynamic sourceValue) public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); /// - /// Converts the parameter to the parameter using and + /// Converts the parameter into an instance of /// /// the value to convert into an instance of . /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationListResult ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationListResult ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationListResult).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationListResult).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceLinker/generated/api/Models/Api20/OperationListResult.cs b/src/ServiceLinker/generated/api/Models/Api30/OperationListResult.cs similarity index 88% rename from src/ServiceLinker/generated/api/Models/Api20/OperationListResult.cs rename to src/ServiceLinker/generated/api/Models/Api30/OperationListResult.cs index 1b4c59575100..c06c7c6805b0 100644 --- a/src/ServiceLinker/generated/api/Models/Api20/OperationListResult.cs +++ b/src/ServiceLinker/generated/api/Models/Api30/OperationListResult.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30 { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; @@ -12,15 +12,15 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20 /// results. /// public partial class OperationListResult : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationListResult, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationListResultInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationListResult, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationListResultInternal { /// Internal Acessors for NextLink - string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationListResultInternal.NextLink { get => this._nextLink; set { {_nextLink = value;} } } + string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationListResultInternal.NextLink { get => this._nextLink; set { {_nextLink = value;} } } /// Internal Acessors for Value - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperation[] Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationListResultInternal.Value { get => this._value; set { {_value = value;} } } + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperation[] Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationListResultInternal.Value { get => this._value; set { {_value = value;} } } /// Backing field for property. private string _nextLink; @@ -30,11 +30,11 @@ public partial class OperationListResult : public string NextLink { get => this._nextLink; } /// Backing field for property. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperation[] _value; + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperation[] _value; /// List of operations supported by the resource provider [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperation[] Value { get => this._value; } + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperation[] Value { get => this._value; } /// Creates an new instance. public OperationListResult() @@ -61,8 +61,8 @@ public partial interface IOperationListResult : ReadOnly = true, Description = @"List of operations supported by the resource provider", SerializedName = @"value", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperation) })] - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperation[] Value { get; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperation) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperation[] Value { get; } } /// A list of REST API operations supported by an Azure Resource Provider. It contains an URL link to get the next set of @@ -73,7 +73,7 @@ internal partial interface IOperationListResultInternal /// URL to get the next set of operation list results (if there are any). string NextLink { get; set; } /// List of operations supported by the resource provider - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperation[] Value { get; set; } + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperation[] Value { get; set; } } } \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20/OperationListResult.json.cs b/src/ServiceLinker/generated/api/Models/Api30/OperationListResult.json.cs similarity index 95% rename from src/ServiceLinker/generated/api/Models/Api20/OperationListResult.json.cs rename to src/ServiceLinker/generated/api/Models/Api30/OperationListResult.json.cs index 15f8aab62bb2..b6c389de7b08 100644 --- a/src/ServiceLinker/generated/api/Models/Api20/OperationListResult.json.cs +++ b/src/ServiceLinker/generated/api/Models/Api30/OperationListResult.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30 { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; @@ -57,13 +57,13 @@ public partial class OperationListResult partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationListResult. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationListResult. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationListResult. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationListResult. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperationListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationListResult FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new OperationListResult(json) : null; } @@ -80,7 +80,7 @@ internal OperationListResult(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Ru { return; } - {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperation) (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.Operation.FromJson(__u) )) ))() : null : Value;} + {_value = If( json?.PropertyT("value"), out var __jsonValue) ? If( __jsonValue as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonArray, out var __v) ? new global::System.Func(()=> global::System.Linq.Enumerable.ToArray(global::System.Linq.Enumerable.Select(__v, (__u)=>(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperation) (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.Operation.FromJson(__u) )) ))() : null : Value;} {_nextLink = If( json?.PropertyT("nextLink"), out var __jsonNextLink) ? (string)__jsonNextLink : (string)NextLink;} AfterFromJson(json); } diff --git a/src/ServiceLinker/generated/api/Models/Api30/ProxyResource.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api30/ProxyResource.PowerShell.cs new file mode 100644 index 000000000000..0f4484d9e5bf --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api30/ProxyResource.PowerShell.cs @@ -0,0 +1,218 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30 +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// + /// The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location + /// + [System.ComponentModel.TypeConverter(typeof(ProxyResourceTypeConverter))] + public partial class ProxyResource + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IProxyResource DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new ProxyResource(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IProxyResource DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new ProxyResource(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IProxyResource FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal ProxyResource(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("SystemDataCreatedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemDataCreatedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemData")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.SystemDataTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Type, global::System.Convert.ToString); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal ProxyResource(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("SystemDataCreatedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemDataCreatedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemData")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.SystemDataTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Type, global::System.Convert.ToString); + } + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location + [System.ComponentModel.TypeConverter(typeof(ProxyResourceTypeConverter))] + public partial interface IProxyResource + + { + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20/ProxyResource.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api30/ProxyResource.TypeConverter.cs similarity index 82% rename from src/ServiceLinker/generated/api/Models/Api20/ProxyResource.TypeConverter.cs rename to src/ServiceLinker/generated/api/Models/Api30/ProxyResource.TypeConverter.cs index d0e15e900e26..646ad0e05d40 100644 --- a/src/ServiceLinker/generated/api/Models/Api20/ProxyResource.TypeConverter.cs +++ b/src/ServiceLinker/generated/api/Models/Api30/ProxyResource.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30 { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -14,19 +14,20 @@ public partial class ProxyResourceTypeConverter : global::System.Management.Auto { /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); /// - /// Determines if the converter can convert the parameter to the . + /// Determines if the converter can convert the parameter to the + /// type. /// /// the instance to check if it can be converted to the type. @@ -74,19 +75,20 @@ public static bool CanConvertFrom(dynamic sourceValue) } /// - /// Determines if the parameter can be converted to the parameter + /// Determines if the parameter can be converted to the + /// parameter /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false + /// true if the converter can convert the parameter to the parameter, otherwise false /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to @@ -98,21 +100,20 @@ public static bool CanConvertFrom(dynamic sourceValue) public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); /// - /// Converts the parameter to the parameter using and + /// Converts the parameter into an instance of /// /// the value to convert into an instance of . /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IProxyResource ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IProxyResource ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IProxyResource).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IProxyResource).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceLinker/generated/api/Models/Api30/ProxyResource.cs b/src/ServiceLinker/generated/api/Models/Api30/ProxyResource.cs new file mode 100644 index 000000000000..2d12969a03d5 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api30/ProxyResource.cs @@ -0,0 +1,113 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// + /// The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location + /// + public partial class ProxyResource : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IProxyResource, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IProxyResourceInternal, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IValidates + { + /// + /// Backing field for Inherited model + /// + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResource __resource = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.Resource(); + + /// + /// Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public string Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).Id; } + + /// Internal Acessors for Id + string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal.Id { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).Id; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).Id = value; } + + /// Internal Acessors for Name + string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal.Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).Name; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).Name = value; } + + /// Internal Acessors for SystemData + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemData Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal.SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).SystemData; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).SystemData = value; } + + /// Internal Acessors for Type + string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal.Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).Type; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).Type = value; } + + /// The name of the resource + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public string Name { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).Name; } + + /// + /// Azure Resource Manager metadata containing createdBy and modifiedBy information. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemData SystemData { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).SystemData; } + + /// The timestamp of resource creation (UTC). + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public global::System.DateTime? SystemDataCreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).SystemDataCreatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).SystemDataCreatedAt = value ?? default(global::System.DateTime); } + + /// The identity that created the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public string SystemDataCreatedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).SystemDataCreatedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).SystemDataCreatedBy = value ?? null; } + + /// The type of identity that created the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType? SystemDataCreatedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).SystemDataCreatedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).SystemDataCreatedByType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType)""); } + + /// The timestamp of resource last modification (UTC) + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public global::System.DateTime? SystemDataLastModifiedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).SystemDataLastModifiedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).SystemDataLastModifiedAt = value ?? default(global::System.DateTime); } + + /// The identity that last modified the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public string SystemDataLastModifiedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).SystemDataLastModifiedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).SystemDataLastModifiedBy = value ?? null; } + + /// The type of identity that last modified the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType? SystemDataLastModifiedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).SystemDataLastModifiedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).SystemDataLastModifiedByType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType)""); } + + /// + /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inherited)] + public string Type { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)__resource).Type; } + + /// Creates an new instance. + public ProxyResource() + { + + } + + /// Validates that this object meets the validation criteria. + /// an instance that will receive validation + /// events. + /// + /// A that will be complete when validation is completed. + /// + public async global::System.Threading.Tasks.Task Validate(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) + { + await eventListener.AssertNotNull(nameof(__resource), __resource); + await eventListener.AssertObjectIsValid(nameof(__resource), __resource); + } + } + /// The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location + public partial interface IProxyResource : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResource + { + + } + /// The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location + internal partial interface IProxyResourceInternal : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal + { + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20/ProxyResource.json.cs b/src/ServiceLinker/generated/api/Models/Api30/ProxyResource.json.cs similarity index 96% rename from src/ServiceLinker/generated/api/Models/Api20/ProxyResource.json.cs rename to src/ServiceLinker/generated/api/Models/Api30/ProxyResource.json.cs index cf0b364150f2..3057ac37d5e5 100644 --- a/src/ServiceLinker/generated/api/Models/Api20/ProxyResource.json.cs +++ b/src/ServiceLinker/generated/api/Models/Api30/ProxyResource.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30 { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; @@ -56,13 +56,13 @@ public partial class ProxyResource partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IProxyResource. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IProxyResource. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IProxyResource. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IProxyResource. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IProxyResource FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IProxyResource FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new ProxyResource(json) : null; } @@ -79,7 +79,7 @@ internal ProxyResource(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime. { return; } - __resource = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.Resource(json); + __resource = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.Resource(json); AfterFromJson(json); } diff --git a/src/ServiceLinker/generated/api/Models/Api30/Resource.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api30/Resource.PowerShell.cs new file mode 100644 index 000000000000..2d59e04bb9ec --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api30/Resource.PowerShell.cs @@ -0,0 +1,218 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30 +{ + using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; + + /// + /// Common fields that are returned in the response for all Azure Resource Manager resources + /// + [System.ComponentModel.TypeConverter(typeof(ResourceTypeConverter))] + public partial class Resource + { + + /// + /// AfterDeserializeDictionary will be called after the deserialization has finished, allowing customization of the + /// object before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Collections.IDictionary content that should be used. + + partial void AfterDeserializeDictionary(global::System.Collections.IDictionary content); + + /// + /// AfterDeserializePSObject will be called after the deserialization has finished, allowing customization of the object + /// before it is returned. Implement this method in a partial class to enable this behavior + /// + /// The global::System.Management.Automation.PSObject content that should be used. + + partial void AfterDeserializePSObject(global::System.Management.Automation.PSObject content); + + /// + /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Collections.IDictionary content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializeDictionary(global::System.Collections.IDictionary content, ref bool returnNow); + + /// + /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization + /// of the object before it is deserialized. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. + /// Implement this method in a partial class to enable this behavior. + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// Determines if the rest of the serialization should be processed, or if the method should return + /// instantly. + + partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResource DeserializeFromDictionary(global::System.Collections.IDictionary content) + { + return new Resource(content); + } + + /// + /// Deserializes a into an instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + /// + /// an instance of . + /// + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResource DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + { + return new Resource(content); + } + + /// + /// Creates a new instance of , deserializing the content from a json string. + /// + /// a string containing a JSON serialized instance of this model. + /// an instance of the model class. + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResource FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Collections.IDictionary content that should be used. + internal Resource(global::System.Collections.IDictionary content) + { + bool returnNow = false; + BeforeDeserializeDictionary(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("SystemData")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.SystemDataTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Type, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemDataCreatedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + AfterDeserializeDictionary(content); + } + + /// + /// Deserializes a into a new instance of . + /// + /// The global::System.Management.Automation.PSObject content that should be used. + internal Resource(global::System.Management.Automation.PSObject content) + { + bool returnNow = false; + BeforeDeserializePSObject(content, ref returnNow); + if (returnNow) + { + return; + } + // actually deserialize + if (content.Contains("SystemData")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemData = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemData) content.GetValueForProperty("SystemData",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemData, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.SystemDataTypeConverter.ConvertFrom); + } + if (content.Contains("Id")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Id = (string) content.GetValueForProperty("Id",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Id, global::System.Convert.ToString); + } + if (content.Contains("Name")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Name = (string) content.GetValueForProperty("Name",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Name, global::System.Convert.ToString); + } + if (content.Contains("Type")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Type = (string) content.GetValueForProperty("Type",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).Type, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedBy = (string) content.GetValueForProperty("SystemDataCreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataCreatedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataCreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + if (content.Contains("SystemDataCreatedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType?) content.GetValueForProperty("SystemDataCreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataCreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedBy")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedBy = (string) content.GetValueForProperty("SystemDataLastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedBy, global::System.Convert.ToString); + } + if (content.Contains("SystemDataLastModifiedByType")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType?) content.GetValueForProperty("SystemDataLastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType.CreateFrom); + } + if (content.Contains("SystemDataLastModifiedAt")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("SystemDataLastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal)this).SystemDataLastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + } + AfterDeserializePSObject(content); + } + + /// Serializes this instance to a json string. + + /// a containing this model serialized to JSON text. + public string ToJsonString() => ToJson(null, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeAll)?.ToString(); + } + /// Common fields that are returned in the response for all Azure Resource Manager resources + [System.ComponentModel.TypeConverter(typeof(ResourceTypeConverter))] + public partial interface IResource + + { + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20/Resource.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api30/Resource.TypeConverter.cs similarity index 82% rename from src/ServiceLinker/generated/api/Models/Api20/Resource.TypeConverter.cs rename to src/ServiceLinker/generated/api/Models/Api30/Resource.TypeConverter.cs index 8f02dd2f96a0..36137338c55c 100644 --- a/src/ServiceLinker/generated/api/Models/Api20/Resource.TypeConverter.cs +++ b/src/ServiceLinker/generated/api/Models/Api30/Resource.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30 { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -14,19 +14,19 @@ public partial class ResourceTypeConverter : global::System.Management.Automatio { /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); /// - /// Determines if the converter can convert the parameter to the . + /// Determines if the converter can convert the parameter to the type. /// /// the instance to check if it can be converted to the type. @@ -74,19 +74,20 @@ public static bool CanConvertFrom(dynamic sourceValue) } /// - /// Determines if the parameter can be converted to the parameter + /// Determines if the parameter can be converted to the + /// parameter /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false + /// true if the converter can convert the parameter to the parameter, otherwise false /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to @@ -98,21 +99,20 @@ public static bool CanConvertFrom(dynamic sourceValue) public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); /// - /// Converts the parameter to the parameter using and + /// Converts the parameter into an instance of /// /// the value to convert into an instance of . /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResource ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResource ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResource).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResource).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceLinker/generated/api/Models/Api30/Resource.cs b/src/ServiceLinker/generated/api/Models/Api30/Resource.cs new file mode 100644 index 000000000000..bb9a2a0574b3 --- /dev/null +++ b/src/ServiceLinker/generated/api/Models/Api30/Resource.cs @@ -0,0 +1,208 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30 +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + + /// + /// Common fields that are returned in the response for all Azure Resource Manager resources + /// + public partial class Resource : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResource, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal + { + + /// Backing field for property. + private string _id; + + /// + /// Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public string Id { get => this._id; } + + /// Internal Acessors for Id + string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal.Id { get => this._id; set { {_id = value;} } } + + /// Internal Acessors for Name + string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal.Name { get => this._name; set { {_name = value;} } } + + /// Internal Acessors for SystemData + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemData Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal.SystemData { get => (this._systemData = this._systemData ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.SystemData()); set { {_systemData = value;} } } + + /// Internal Acessors for Type + string Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResourceInternal.Type { get => this._type; set { {_type = value;} } } + + /// Backing field for property. + private string _name; + + /// The name of the resource + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public string Name { get => this._name; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemData _systemData; + + /// + /// Azure Resource Manager metadata containing createdBy and modifiedBy information. + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + internal Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemData SystemData { get => (this._systemData = this._systemData ?? new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.SystemData()); } + + /// The timestamp of resource creation (UTC). + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public global::System.DateTime? SystemDataCreatedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemDataInternal)SystemData).CreatedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemDataInternal)SystemData).CreatedAt = value ?? default(global::System.DateTime); } + + /// The identity that created the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public string SystemDataCreatedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemDataInternal)SystemData).CreatedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemDataInternal)SystemData).CreatedBy = value ?? null; } + + /// The type of identity that created the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType? SystemDataCreatedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemDataInternal)SystemData).CreatedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemDataInternal)SystemData).CreatedByType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType)""); } + + /// The timestamp of resource last modification (UTC) + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public global::System.DateTime? SystemDataLastModifiedAt { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemDataInternal)SystemData).LastModifiedAt; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemDataInternal)SystemData).LastModifiedAt = value ?? default(global::System.DateTime); } + + /// The identity that last modified the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public string SystemDataLastModifiedBy { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemDataInternal)SystemData).LastModifiedBy; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemDataInternal)SystemData).LastModifiedBy = value ?? null; } + + /// The type of identity that last modified the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Inlined)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType? SystemDataLastModifiedByType { get => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemDataInternal)SystemData).LastModifiedByType; set => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemDataInternal)SystemData).LastModifiedByType = value ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType)""); } + + /// Backing field for property. + private string _type; + + /// + /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public string Type { get => this._type; } + + /// Creates an new instance. + public Resource() + { + + } + } + /// Common fields that are returned in the response for all Azure Resource Manager resources + public partial interface IResource : + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable + { + /// + /// Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}", + SerializedName = @"id", + PossibleTypes = new [] { typeof(string) })] + string Id { get; } + /// The name of the resource + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The name of the resource", + SerializedName = @"name", + PossibleTypes = new [] { typeof(string) })] + string Name { get; } + /// The timestamp of resource creation (UTC). + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The timestamp of resource creation (UTC).", + SerializedName = @"createdAt", + PossibleTypes = new [] { typeof(global::System.DateTime) })] + global::System.DateTime? SystemDataCreatedAt { get; set; } + /// The identity that created the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The identity that created the resource.", + SerializedName = @"createdBy", + PossibleTypes = new [] { typeof(string) })] + string SystemDataCreatedBy { get; set; } + /// The type of identity that created the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The type of identity that created the resource.", + SerializedName = @"createdByType", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType? SystemDataCreatedByType { get; set; } + /// The timestamp of resource last modification (UTC) + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The timestamp of resource last modification (UTC)", + SerializedName = @"lastModifiedAt", + PossibleTypes = new [] { typeof(global::System.DateTime) })] + global::System.DateTime? SystemDataLastModifiedAt { get; set; } + /// The identity that last modified the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The identity that last modified the resource.", + SerializedName = @"lastModifiedBy", + PossibleTypes = new [] { typeof(string) })] + string SystemDataLastModifiedBy { get; set; } + /// The type of identity that last modified the resource. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The type of identity that last modified the resource.", + SerializedName = @"lastModifiedByType", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType) })] + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType? SystemDataLastModifiedByType { get; set; } + /// + /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" + /// + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = true, + Description = @"The type of the resource. E.g. ""Microsoft.Compute/virtualMachines"" or ""Microsoft.Storage/storageAccounts""", + SerializedName = @"type", + PossibleTypes = new [] { typeof(string) })] + string Type { get; } + + } + /// Common fields that are returned in the response for all Azure Resource Manager resources + internal partial interface IResourceInternal + + { + /// + /// Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// + string Id { get; set; } + /// The name of the resource + string Name { get; set; } + /// + /// Azure Resource Manager metadata containing createdBy and modifiedBy information. + /// + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemData SystemData { get; set; } + /// The timestamp of resource creation (UTC). + global::System.DateTime? SystemDataCreatedAt { get; set; } + /// The identity that created the resource. + string SystemDataCreatedBy { get; set; } + /// The type of identity that created the resource. + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType? SystemDataCreatedByType { get; set; } + /// The timestamp of resource last modification (UTC) + global::System.DateTime? SystemDataLastModifiedAt { get; set; } + /// The identity that last modified the resource. + string SystemDataLastModifiedBy { get; set; } + /// The type of identity that last modified the resource. + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType? SystemDataLastModifiedByType { get; set; } + /// + /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" + /// + string Type { get; set; } + + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/Api20/Resource.json.cs b/src/ServiceLinker/generated/api/Models/Api30/Resource.json.cs similarity index 90% rename from src/ServiceLinker/generated/api/Models/Api20/Resource.json.cs rename to src/ServiceLinker/generated/api/Models/Api30/Resource.json.cs index 98b66a3b6e30..437c997420f1 100644 --- a/src/ServiceLinker/generated/api/Models/Api20/Resource.json.cs +++ b/src/ServiceLinker/generated/api/Models/Api30/Resource.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30 { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; @@ -56,13 +56,13 @@ public partial class Resource partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResource. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResource. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResource. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResource. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IResource FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IResource FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new Resource(json) : null; } @@ -79,6 +79,7 @@ internal Resource(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json. { return; } + {_systemData = If( json?.PropertyT("systemData"), out var __jsonSystemData) ? Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.SystemData.FromJson(__jsonSystemData) : SystemData;} {_id = If( json?.PropertyT("id"), out var __jsonId) ? (string)__jsonId : (string)Id;} {_name = If( json?.PropertyT("name"), out var __jsonName) ? (string)__jsonName : (string)Name;} {_type = If( json?.PropertyT("type"), out var __jsonType) ? (string)__jsonType : (string)Type;} @@ -105,6 +106,10 @@ public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode To return container; } if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeReadOnly)) + { + AddIf( null != this._systemData ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) this._systemData.ToJson(null,serializationMode) : null, "systemData" ,container.Add ); + } + if (serializationMode.HasFlag(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SerializationMode.IncludeReadOnly)) { AddIf( null != (((object)this._id)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._id.ToString()) : null, "id" ,container.Add ); } diff --git a/src/ServiceLinker/generated/api/Models/Api20/SystemData.PowerShell.cs b/src/ServiceLinker/generated/api/Models/Api30/SystemData.PowerShell.cs similarity index 82% rename from src/ServiceLinker/generated/api/Models/Api20/SystemData.PowerShell.cs rename to src/ServiceLinker/generated/api/Models/Api30/SystemData.PowerShell.cs index e0ccdafde4b3..0d5630da89b6 100644 --- a/src/ServiceLinker/generated/api/Models/Api20/SystemData.PowerShell.cs +++ b/src/ServiceLinker/generated/api/Models/Api30/SystemData.PowerShell.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30 { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -31,7 +31,8 @@ public partial class SystemData /// /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Collections.IDictionary content that should be used. @@ -43,7 +44,8 @@ public partial class SystemData /// /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -53,27 +55,27 @@ public partial class SystemData partial void BeforeDeserializePSObject(global::System.Management.Automation.PSObject content, ref bool returnNow); /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Collections.IDictionary content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemData DeserializeFromDictionary(global::System.Collections.IDictionary content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemData DeserializeFromDictionary(global::System.Collections.IDictionary content) { return new SystemData(content); } /// - /// Deserializes a into an instance of into an instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. /// - /// an instance of . + /// an instance of . /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemData DeserializeFromPSObject(global::System.Management.Automation.PSObject content) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemData DeserializeFromPSObject(global::System.Management.Automation.PSObject content) { return new SystemData(content); } @@ -83,10 +85,10 @@ public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISys /// /// a string containing a JSON serialized instance of this model. /// an instance of the model class. - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemData FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemData FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Collections.IDictionary content that should be used. @@ -101,33 +103,33 @@ internal SystemData(global::System.Collections.IDictionary content) // actually deserialize if (content.Contains("CreatedBy")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemDataInternal)this).CreatedBy = (string) content.GetValueForProperty("CreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemDataInternal)this).CreatedBy, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemDataInternal)this).CreatedBy = (string) content.GetValueForProperty("CreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemDataInternal)this).CreatedBy, global::System.Convert.ToString); } if (content.Contains("CreatedByType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemDataInternal)this).CreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType?) content.GetValueForProperty("CreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemDataInternal)this).CreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemDataInternal)this).CreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType?) content.GetValueForProperty("CreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemDataInternal)this).CreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType.CreateFrom); } if (content.Contains("CreatedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemDataInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemDataInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemDataInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemDataInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } if (content.Contains("LastModifiedBy")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemDataInternal)this).LastModifiedBy = (string) content.GetValueForProperty("LastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemDataInternal)this).LastModifiedBy, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemDataInternal)this).LastModifiedBy = (string) content.GetValueForProperty("LastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemDataInternal)this).LastModifiedBy, global::System.Convert.ToString); } if (content.Contains("LastModifiedByType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemDataInternal)this).LastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType?) content.GetValueForProperty("LastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemDataInternal)this).LastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemDataInternal)this).LastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType?) content.GetValueForProperty("LastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemDataInternal)this).LastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType.CreateFrom); } if (content.Contains("LastModifiedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemDataInternal)this).LastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("LastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemDataInternal)this).LastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemDataInternal)this).LastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("LastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemDataInternal)this).LastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } AfterDeserializeDictionary(content); } /// - /// Deserializes a into a new instance of into a new instance of . /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -142,27 +144,27 @@ internal SystemData(global::System.Management.Automation.PSObject content) // actually deserialize if (content.Contains("CreatedBy")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemDataInternal)this).CreatedBy = (string) content.GetValueForProperty("CreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemDataInternal)this).CreatedBy, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemDataInternal)this).CreatedBy = (string) content.GetValueForProperty("CreatedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemDataInternal)this).CreatedBy, global::System.Convert.ToString); } if (content.Contains("CreatedByType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemDataInternal)this).CreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType?) content.GetValueForProperty("CreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemDataInternal)this).CreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemDataInternal)this).CreatedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType?) content.GetValueForProperty("CreatedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemDataInternal)this).CreatedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType.CreateFrom); } if (content.Contains("CreatedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemDataInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemDataInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemDataInternal)this).CreatedAt = (global::System.DateTime?) content.GetValueForProperty("CreatedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemDataInternal)this).CreatedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } if (content.Contains("LastModifiedBy")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemDataInternal)this).LastModifiedBy = (string) content.GetValueForProperty("LastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemDataInternal)this).LastModifiedBy, global::System.Convert.ToString); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemDataInternal)this).LastModifiedBy = (string) content.GetValueForProperty("LastModifiedBy",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemDataInternal)this).LastModifiedBy, global::System.Convert.ToString); } if (content.Contains("LastModifiedByType")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemDataInternal)this).LastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType?) content.GetValueForProperty("LastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemDataInternal)this).LastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType.CreateFrom); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemDataInternal)this).LastModifiedByType = (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType?) content.GetValueForProperty("LastModifiedByType",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemDataInternal)this).LastModifiedByType, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.CreatedByType.CreateFrom); } if (content.Contains("LastModifiedAt")) { - ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemDataInternal)this).LastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("LastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemDataInternal)this).LastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemDataInternal)this).LastModifiedAt = (global::System.DateTime?) content.GetValueForProperty("LastModifiedAt",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemDataInternal)this).LastModifiedAt, (v) => v is global::System.DateTime _v ? _v : global::System.Xml.XmlConvert.ToDateTime( v.ToString() , global::System.Xml.XmlDateTimeSerializationMode.Unspecified)); } AfterDeserializePSObject(content); } diff --git a/src/ServiceLinker/generated/api/Models/Api20/SystemData.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/Api30/SystemData.TypeConverter.cs similarity index 82% rename from src/ServiceLinker/generated/api/Models/Api20/SystemData.TypeConverter.cs rename to src/ServiceLinker/generated/api/Models/Api30/SystemData.TypeConverter.cs index ab0a3c9dc566..2df403b4eaba 100644 --- a/src/ServiceLinker/generated/api/Models/Api20/SystemData.TypeConverter.cs +++ b/src/ServiceLinker/generated/api/Models/Api30/SystemData.TypeConverter.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30 { using Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell; @@ -14,19 +14,19 @@ public partial class SystemDataTypeConverter : global::System.Management.Automat { /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); /// - /// Determines if the converter can convert the parameter to the . + /// Determines if the converter can convert the parameter to the type. /// /// the instance to check if it can be converted to the type. @@ -74,19 +74,20 @@ public static bool CanConvertFrom(dynamic sourceValue) } /// - /// Determines if the parameter can be converted to the parameter + /// Determines if the parameter can be converted to the + /// parameter /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false + /// true if the converter can convert the parameter to the parameter, otherwise false /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to @@ -98,21 +99,20 @@ public static bool CanConvertFrom(dynamic sourceValue) public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); /// - /// Converts the parameter to the parameter using and + /// Converts the parameter into an instance of /// /// the value to convert into an instance of . /// /// an instance of , or null if there is no suitable conversion. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemData ConvertFrom(dynamic sourceValue) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemData ConvertFrom(dynamic sourceValue) { if (null == sourceValue) { return null; } global::System.Type type = sourceValue.GetType(); - if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemData).IsAssignableFrom(type)) + if (typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemData).IsAssignableFrom(type)) { return sourceValue; } diff --git a/src/ServiceLinker/generated/api/Models/Api20/SystemData.cs b/src/ServiceLinker/generated/api/Models/Api30/SystemData.cs similarity index 99% rename from src/ServiceLinker/generated/api/Models/Api20/SystemData.cs rename to src/ServiceLinker/generated/api/Models/Api30/SystemData.cs index 9a05fb5b8792..8b0ec13df116 100644 --- a/src/ServiceLinker/generated/api/Models/Api20/SystemData.cs +++ b/src/ServiceLinker/generated/api/Models/Api30/SystemData.cs @@ -3,14 +3,14 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30 { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; /// Metadata pertaining to creation and last modification of the resource. public partial class SystemData : - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemData, - Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemDataInternal + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemData, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemDataInternal { /// Backing field for property. diff --git a/src/ServiceLinker/generated/api/Models/Api20/SystemData.json.cs b/src/ServiceLinker/generated/api/Models/Api30/SystemData.json.cs similarity index 98% rename from src/ServiceLinker/generated/api/Models/Api20/SystemData.json.cs rename to src/ServiceLinker/generated/api/Models/Api30/SystemData.json.cs index 29569022bd07..017fd580f89c 100644 --- a/src/ServiceLinker/generated/api/Models/Api20/SystemData.json.cs +++ b/src/ServiceLinker/generated/api/Models/Api30/SystemData.json.cs @@ -3,7 +3,7 @@ // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. -namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20 +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30 { using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; @@ -54,13 +54,13 @@ public partial class SystemData partial void BeforeToJson(ref Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject container, ref bool returnNow); /// - /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemData. + /// Deserializes a into an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemData. /// /// a to deserialize from. /// - /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemData. + /// an instance of Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemData. /// - public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ISystemData FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ISystemData FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode node) { return node is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json ? new SystemData(json) : null; } diff --git a/src/ServiceLinker/generated/api/Models/ServiceLinkerIdentity.PowerShell.cs b/src/ServiceLinker/generated/api/Models/ServiceLinkerIdentity.PowerShell.cs index b3a861462959..e476e55f7989 100644 --- a/src/ServiceLinker/generated/api/Models/ServiceLinkerIdentity.PowerShell.cs +++ b/src/ServiceLinker/generated/api/Models/ServiceLinkerIdentity.PowerShell.cs @@ -30,7 +30,8 @@ public partial class ServiceLinkerIdentity /// /// BeforeDeserializeDictionary will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Collections.IDictionary content that should be used. @@ -42,7 +43,8 @@ public partial class ServiceLinkerIdentity /// /// BeforeDeserializePSObject will be called before the deserialization has commenced, allowing complete customization /// of the object before it is deserialized. - /// If you wish to disable the default deserialization entirely, return true in the output parameter. + /// If you wish to disable the default deserialization entirely, return true in the output + /// parameter. /// Implement this method in a partial class to enable this behavior. /// /// The global::System.Management.Automation.PSObject content that should be used. @@ -98,6 +100,26 @@ internal ServiceLinkerIdentity(global::System.Collections.IDictionary content) return; } // actually deserialize + if (content.Contains("SubscriptionId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentityInternal)this).SubscriptionId = (string) content.GetValueForProperty("SubscriptionId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentityInternal)this).SubscriptionId, global::System.Convert.ToString); + } + if (content.Contains("ResourceGroupName")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentityInternal)this).ResourceGroupName = (string) content.GetValueForProperty("ResourceGroupName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentityInternal)this).ResourceGroupName, global::System.Convert.ToString); + } + if (content.Contains("Location")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentityInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentityInternal)this).Location, global::System.Convert.ToString); + } + if (content.Contains("DryrunName")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentityInternal)this).DryrunName = (string) content.GetValueForProperty("DryrunName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentityInternal)this).DryrunName, global::System.Convert.ToString); + } + if (content.Contains("ConnectorName")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentityInternal)this).ConnectorName = (string) content.GetValueForProperty("ConnectorName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentityInternal)this).ConnectorName, global::System.Convert.ToString); + } if (content.Contains("ResourceUri")) { ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentityInternal)this).ResourceUri = (string) content.GetValueForProperty("ResourceUri",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentityInternal)this).ResourceUri, global::System.Convert.ToString); @@ -127,6 +149,26 @@ internal ServiceLinkerIdentity(global::System.Management.Automation.PSObject con return; } // actually deserialize + if (content.Contains("SubscriptionId")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentityInternal)this).SubscriptionId = (string) content.GetValueForProperty("SubscriptionId",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentityInternal)this).SubscriptionId, global::System.Convert.ToString); + } + if (content.Contains("ResourceGroupName")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentityInternal)this).ResourceGroupName = (string) content.GetValueForProperty("ResourceGroupName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentityInternal)this).ResourceGroupName, global::System.Convert.ToString); + } + if (content.Contains("Location")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentityInternal)this).Location = (string) content.GetValueForProperty("Location",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentityInternal)this).Location, global::System.Convert.ToString); + } + if (content.Contains("DryrunName")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentityInternal)this).DryrunName = (string) content.GetValueForProperty("DryrunName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentityInternal)this).DryrunName, global::System.Convert.ToString); + } + if (content.Contains("ConnectorName")) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentityInternal)this).ConnectorName = (string) content.GetValueForProperty("ConnectorName",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentityInternal)this).ConnectorName, global::System.Convert.ToString); + } if (content.Contains("ResourceUri")) { ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentityInternal)this).ResourceUri = (string) content.GetValueForProperty("ResourceUri",((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentityInternal)this).ResourceUri, global::System.Convert.ToString); diff --git a/src/ServiceLinker/generated/api/Models/ServiceLinkerIdentity.TypeConverter.cs b/src/ServiceLinker/generated/api/Models/ServiceLinkerIdentity.TypeConverter.cs index b914cfbf3c67..7be4384d6954 100644 --- a/src/ServiceLinker/generated/api/Models/ServiceLinkerIdentity.TypeConverter.cs +++ b/src/ServiceLinker/generated/api/Models/ServiceLinkerIdentity.TypeConverter.cs @@ -14,20 +14,20 @@ public partial class ServiceLinkerIdentityTypeConverter : global::System.Managem { /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); /// - /// Determines if the converter can convert the parameter to the . + /// Determines if the converter can convert the parameter to the + /// type. /// /// the instance to check if it can be converted to the type. @@ -80,19 +80,20 @@ public static bool CanConvertFrom(dynamic sourceValue) } /// - /// Determines if the parameter can be converted to the parameter + /// Determines if the parameter can be converted to the + /// parameter /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false + /// true if the converter can convert the parameter to the parameter, otherwise false /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to @@ -104,8 +105,7 @@ public static bool CanConvertFrom(dynamic sourceValue) public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); /// - /// Converts the parameter to the parameter using and + /// Converts the parameter into an instance of /// /// the value to convert into an instance of . /// diff --git a/src/ServiceLinker/generated/api/Models/ServiceLinkerIdentity.cs b/src/ServiceLinker/generated/api/Models/ServiceLinkerIdentity.cs index b287fc2cdeb3..3b300f19461e 100644 --- a/src/ServiceLinker/generated/api/Models/ServiceLinkerIdentity.cs +++ b/src/ServiceLinker/generated/api/Models/ServiceLinkerIdentity.cs @@ -12,6 +12,20 @@ public partial class ServiceLinkerIdentity : Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentityInternal { + /// Backing field for property. + private string _connectorName; + + /// The name of resource. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public string ConnectorName { get => this._connectorName; set => this._connectorName = value; } + + /// Backing field for property. + private string _dryrunName; + + /// The name of dryrun. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public string DryrunName { get => this._dryrunName; set => this._dryrunName = value; } + /// Backing field for property. private string _id; @@ -26,6 +40,20 @@ public partial class ServiceLinkerIdentity : [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] public string LinkerName { get => this._linkerName; set => this._linkerName = value; } + /// Backing field for property. + private string _location; + + /// The name of Azure region. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public string Location { get => this._location; set => this._location = value; } + + /// Backing field for property. + private string _resourceGroupName; + + /// The name of the resource group. The name is case insensitive. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public string ResourceGroupName { get => this._resourceGroupName; set => this._resourceGroupName = value; } + /// Backing field for property. private string _resourceUri; @@ -35,6 +63,13 @@ public partial class ServiceLinkerIdentity : [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] public string ResourceUri { get => this._resourceUri; set => this._resourceUri = value; } + /// Backing field for property. + private string _subscriptionId; + + /// The ID of the target subscription. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Origin(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.PropertyOrigin.Owned)] + public string SubscriptionId { get => this._subscriptionId; set => this._subscriptionId = value; } + /// Creates an new instance. public ServiceLinkerIdentity() { @@ -44,6 +79,22 @@ public ServiceLinkerIdentity() public partial interface IServiceLinkerIdentity : Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IJsonSerializable { + /// The name of resource. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The name of resource.", + SerializedName = @"connectorName", + PossibleTypes = new [] { typeof(string) })] + string ConnectorName { get; set; } + /// The name of dryrun. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The name of dryrun.", + SerializedName = @"dryrunName", + PossibleTypes = new [] { typeof(string) })] + string DryrunName { get; set; } /// Resource identity path [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( Required = false, @@ -60,6 +111,22 @@ public partial interface IServiceLinkerIdentity : SerializedName = @"linkerName", PossibleTypes = new [] { typeof(string) })] string LinkerName { get; set; } + /// The name of Azure region. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The name of Azure region.", + SerializedName = @"location", + PossibleTypes = new [] { typeof(string) })] + string Location { get; set; } + /// The name of the resource group. The name is case insensitive. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The name of the resource group. The name is case insensitive.", + SerializedName = @"resourceGroupName", + PossibleTypes = new [] { typeof(string) })] + string ResourceGroupName { get; set; } /// /// The fully qualified Azure Resource manager identifier of the resource to be connected. /// @@ -70,19 +137,37 @@ public partial interface IServiceLinkerIdentity : SerializedName = @"resourceUri", PossibleTypes = new [] { typeof(string) })] string ResourceUri { get; set; } + /// The ID of the target subscription. + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The ID of the target subscription.", + SerializedName = @"subscriptionId", + PossibleTypes = new [] { typeof(string) })] + string SubscriptionId { get; set; } } internal partial interface IServiceLinkerIdentityInternal { + /// The name of resource. + string ConnectorName { get; set; } + /// The name of dryrun. + string DryrunName { get; set; } /// Resource identity path string Id { get; set; } /// The name Linker resource. string LinkerName { get; set; } + /// The name of Azure region. + string Location { get; set; } + /// The name of the resource group. The name is case insensitive. + string ResourceGroupName { get; set; } /// /// The fully qualified Azure Resource manager identifier of the resource to be connected. /// string ResourceUri { get; set; } + /// The ID of the target subscription. + string SubscriptionId { get; set; } } } \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Models/ServiceLinkerIdentity.json.cs b/src/ServiceLinker/generated/api/Models/ServiceLinkerIdentity.json.cs index 77b66bc5f357..9fe970417783 100644 --- a/src/ServiceLinker/generated/api/Models/ServiceLinkerIdentity.json.cs +++ b/src/ServiceLinker/generated/api/Models/ServiceLinkerIdentity.json.cs @@ -76,6 +76,11 @@ internal ServiceLinkerIdentity(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker. { return; } + {_subscriptionId = If( json?.PropertyT("subscriptionId"), out var __jsonSubscriptionId) ? (string)__jsonSubscriptionId : (string)SubscriptionId;} + {_resourceGroupName = If( json?.PropertyT("resourceGroupName"), out var __jsonResourceGroupName) ? (string)__jsonResourceGroupName : (string)ResourceGroupName;} + {_location = If( json?.PropertyT("location"), out var __jsonLocation) ? (string)__jsonLocation : (string)Location;} + {_dryrunName = If( json?.PropertyT("dryrunName"), out var __jsonDryrunName) ? (string)__jsonDryrunName : (string)DryrunName;} + {_connectorName = If( json?.PropertyT("connectorName"), out var __jsonConnectorName) ? (string)__jsonConnectorName : (string)ConnectorName;} {_resourceUri = If( json?.PropertyT("resourceUri"), out var __jsonResourceUri) ? (string)__jsonResourceUri : (string)ResourceUri;} {_linkerName = If( json?.PropertyT("linkerName"), out var __jsonLinkerName) ? (string)__jsonLinkerName : (string)LinkerName;} {_id = If( json?.PropertyT("id"), out var __jsonId) ? (string)__jsonId : (string)Id;} @@ -101,6 +106,11 @@ public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode To { return container; } + AddIf( null != (((object)this._subscriptionId)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._subscriptionId.ToString()) : null, "subscriptionId" ,container.Add ); + AddIf( null != (((object)this._resourceGroupName)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._resourceGroupName.ToString()) : null, "resourceGroupName" ,container.Add ); + AddIf( null != (((object)this._location)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._location.ToString()) : null, "location" ,container.Add ); + AddIf( null != (((object)this._dryrunName)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._dryrunName.ToString()) : null, "dryrunName" ,container.Add ); + AddIf( null != (((object)this._connectorName)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._connectorName.ToString()) : null, "connectorName" ,container.Add ); AddIf( null != (((object)this._resourceUri)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._resourceUri.ToString()) : null, "resourceUri" ,container.Add ); AddIf( null != (((object)this._linkerName)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._linkerName.ToString()) : null, "linkerName" ,container.Add ); AddIf( null != (((object)this._id)?.ToString()) ? (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode) new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonString(this._id.ToString()) : null, "id" ,container.Add ); diff --git a/src/ServiceLinker/generated/api/ServiceLinker.cs b/src/ServiceLinker/generated/api/ServiceLinker.cs index 2ba9affcbeae..ec906d8e4f73 100644 --- a/src/ServiceLinker/generated/api/ServiceLinker.cs +++ b/src/ServiceLinker/generated/api/ServiceLinker.cs @@ -14,11 +14,4274 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker public partial class ServiceLinker { - /// Create or update linker resource. + /// + /// Lists the configuration names generated by Service Connector for all target, client types, auth types. + /// + /// OData filter options. + /// OData skipToken option for pagination. + /// 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.ServiceLinker.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 ConfigurationNamesList(string Filter, string SkipToken, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + { + var apiVersion = @"2022-11-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/providers/Microsoft.ServiceLinker/configurationNames" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + + "&" + + (string.IsNullOrEmpty(Filter) ? global::System.String.Empty : "$filter=" + global::System.Uri.EscapeDataString(Filter)) + + "&" + + (string.IsNullOrEmpty(SkipToken) ? global::System.String.Empty : "$skipToken=" + global::System.Uri.EscapeDataString(SkipToken)) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.ConfigurationNamesList_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// + /// Lists the configuration names generated by Service Connector for all target, client types, auth types. + /// + /// + /// OData filter options. + /// OData skipToken option for pagination. + /// 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.ServiceLinker.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 ConfigurationNamesListViaIdentity(global::System.String viaIdentity, string Filter, string SkipToken, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + { + var apiVersion = @"2022-11-01-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.ServiceLinker/configurationNames$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/providers/Microsoft.ServiceLinker/configurationNames'"); + } + + // replace URI parameters with values from identity + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/providers/Microsoft.ServiceLinker/configurationNames" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + + "&" + + (string.IsNullOrEmpty(Filter) ? global::System.String.Empty : "$filter=" + global::System.Uri.EscapeDataString(Filter)) + + "&" + + (string.IsNullOrEmpty(SkipToken) ? global::System.String.Empty : "$skipToken=" + global::System.Uri.EscapeDataString(SkipToken)) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.ConfigurationNamesList_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.ServiceLinker.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 ConfigurationNamesList_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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sendTask; + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationNameResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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. + /// + /// OData filter options. + /// OData skipToken option for pagination. + /// 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 ConfigurationNamesList_Validate(string Filter, string SkipToken, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(Filter),Filter); + await eventListener.AssertNotNull(nameof(SkipToken),SkipToken); + } + } + + /// create a dryrun job to do necessary check before actual creation + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// The name of Azure region. + /// The name of dryrun. + /// dryrun 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.ServiceLinker.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 ConnectorCreateDryrun(string subscriptionId, string resourceGroupName, string location, string dryrunName, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + { + var apiVersion = @"2022-11-01-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.ServiceLinker/locations/" + + global::System.Uri.EscapeDataString(location) + + "/dryruns/" + + global::System.Uri.EscapeDataString(dryrunName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Method.Put, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.ConnectorCreateDryrun_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// create a dryrun job to do necessary check before actual creation + /// + /// dryrun 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.ServiceLinker.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 ConnectorCreateDryrunViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + { + var apiVersion = @"2022-11-01-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.ServiceLinker/locations/(?[^/]+)/dryruns/(?[^/]+)$", 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.ServiceLinker/locations/{location}/dryruns/{dryrunName}'"); + } + + // replace URI parameters with values from identity + var subscriptionId = _match.Groups["subscriptionId"].Value; + var resourceGroupName = _match.Groups["resourceGroupName"].Value; + var location = _match.Groups["location"].Value; + var dryrunName = _match.Groups["dryrunName"].Value; + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/subscriptions/" + + subscriptionId + + "/resourcegroups/" + + resourceGroupName + + "/providers/Microsoft.ServiceLinker/locations/" + + location + + "/dryruns/" + + dryrunName + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Method.Put, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.ConnectorCreateDryrun_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.ServiceLinker.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 ConnectorCreateDryrun_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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sendTask; + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + // this operation supports x-ms-long-running-operation + var _originalUri = request.RequestUri.AbsoluteUri; + // declared final-state-via: azure-async-operation + var asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = _response.GetFirstHeader(@"Location"); + while (request.Method == System.Net.Http.HttpMethod.Put && _response.StatusCode == global::System.Net.HttpStatusCode.OK || _response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + + // get the delay before polling. (default to 30 seconds if not present) + int delay = (int)(_response.Headers.RetryAfter?.Delta?.TotalSeconds ?? 30); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.DelayBeforePolling, $"Delaying {delay} seconds before polling.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // start the delay timer (we'll await later...) + var waiting = global::System.Threading.Tasks.Task.Delay(delay * 1000, eventListener.Token ); + + // while we wait, let's grab the headers and get ready to poll. + if (!System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Azure-AsyncOperation"))) { + asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + } + if (!global::System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Location"))) { + location = _response.GetFirstHeader(@"Location"); + } + var _uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? _originalUri : location : asyncOperation; + request = request.CloneAndDispose(new global::System.Uri(_uri), Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Method.Get); + + // and let's look at the current response body and see if we have some information we can give back to the listener + var content = await _response.Content.ReadAsStringAsync(); + await waiting; + + // check for cancellation + if( eventListener.Token.IsCancellationRequested ) { return; } + + // drop the old response + _response?.Dispose(); + + // make the polling call + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Polling, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // if we got back an OK, take a peek inside and see if it's done + if( _response.StatusCode == global::System.Net.HttpStatusCode.OK) + { + var error = false; + try { + if( Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(await _response.Content.ReadAsStringAsync()) is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json) + { + var state = json.Property("properties")?.PropertyT("provisioningState") ?? json.PropertyT("status"); + if( state is null ) + { + // the body doesn't contain any information that has the state of the LRO + // we're going to just get out, and let the consumer have the result + break; + } + + switch( state?.ToString()?.ToLower() ) + { + case "failed": + error = true; + break; + case "succeeded": + case "canceled": + // we're done polling. + break; + + default: + // need to keep polling! + _response.StatusCode = global::System.Net.HttpStatusCode.Created; + continue; + } + } + } catch { + // if we run into a problem peeking into the result, + // we really don't want to do anything special. + } + if (error) { + throw new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.UndeclaredResponseException(_response); + } + } + + // check for terminal status code + if (_response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + continue; + } + // we are done polling, do a request on final target? + // create a new request with the final uri + request = request.CloneAndDispose(new global::System.Uri(_originalUri), Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Method.Get); + + // drop the old response + _response?.Dispose(); + + // make the final call + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Polling, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + break; + } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunResource.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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 target subscription. + /// The name of the resource group. The name is case insensitive. + /// The name of Azure region. + /// The name of dryrun. + /// dryrun 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 ConnectorCreateDryrun_Validate(string subscriptionId, string resourceGroupName, string location, string dryrunName, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource body, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); + await eventListener.AssertMinimumLength(nameof(subscriptionId),subscriptionId,1); + await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); + await eventListener.AssertMinimumLength(nameof(resourceGroupName),resourceGroupName,1); + await eventListener.AssertMaximumLength(nameof(resourceGroupName),resourceGroupName,90); + await eventListener.AssertNotNull(nameof(location),location); + await eventListener.AssertMinimumLength(nameof(location),location,1); + await eventListener.AssertNotNull(nameof(dryrunName),dryrunName); + await eventListener.AssertNotNull(nameof(body), body); + await eventListener.AssertObjectIsValid(nameof(body), body); + } + } + + /// Create or update Connector resource. + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// The name of Azure region. + /// The name of resource. + /// Connector details. + /// 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.ServiceLinker.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 ConnectorCreateOrUpdate(string subscriptionId, string resourceGroupName, string location, string connectorName, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + { + var apiVersion = @"2022-11-01-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.ServiceLinker/locations/" + + global::System.Uri.EscapeDataString(location) + + "/connectors/" + + global::System.Uri.EscapeDataString(connectorName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Method.Put, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.ConnectorCreateOrUpdate_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Create or update Connector resource. + /// + /// Connector details. + /// 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.ServiceLinker.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 ConnectorCreateOrUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + { + var apiVersion = @"2022-11-01-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.ServiceLinker/locations/(?[^/]+)/connectors/(?[^/]+)$", 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.ServiceLinker/locations/{location}/connectors/{connectorName}'"); + } + + // replace URI parameters with values from identity + var subscriptionId = _match.Groups["subscriptionId"].Value; + var resourceGroupName = _match.Groups["resourceGroupName"].Value; + var location = _match.Groups["location"].Value; + var connectorName = _match.Groups["connectorName"].Value; + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/subscriptions/" + + subscriptionId + + "/resourcegroups/" + + resourceGroupName + + "/providers/Microsoft.ServiceLinker/locations/" + + location + + "/connectors/" + + connectorName + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Method.Put, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.ConnectorCreateOrUpdate_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.ServiceLinker.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 ConnectorCreateOrUpdate_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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sendTask; + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + // this operation supports x-ms-long-running-operation + var _originalUri = request.RequestUri.AbsoluteUri; + // declared final-state-via: azure-async-operation + var asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = _response.GetFirstHeader(@"Location"); + while (request.Method == System.Net.Http.HttpMethod.Put && _response.StatusCode == global::System.Net.HttpStatusCode.OK || _response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + + // get the delay before polling. (default to 30 seconds if not present) + int delay = (int)(_response.Headers.RetryAfter?.Delta?.TotalSeconds ?? 30); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.DelayBeforePolling, $"Delaying {delay} seconds before polling.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // start the delay timer (we'll await later...) + var waiting = global::System.Threading.Tasks.Task.Delay(delay * 1000, eventListener.Token ); + + // while we wait, let's grab the headers and get ready to poll. + if (!System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Azure-AsyncOperation"))) { + asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + } + if (!global::System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Location"))) { + location = _response.GetFirstHeader(@"Location"); + } + var _uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? _originalUri : location : asyncOperation; + request = request.CloneAndDispose(new global::System.Uri(_uri), Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Method.Get); + + // and let's look at the current response body and see if we have some information we can give back to the listener + var content = await _response.Content.ReadAsStringAsync(); + await waiting; + + // check for cancellation + if( eventListener.Token.IsCancellationRequested ) { return; } + + // drop the old response + _response?.Dispose(); + + // make the polling call + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Polling, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // if we got back an OK, take a peek inside and see if it's done + if( _response.StatusCode == global::System.Net.HttpStatusCode.OK) + { + var error = false; + try { + if( Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(await _response.Content.ReadAsStringAsync()) is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json) + { + var state = json.Property("properties")?.PropertyT("provisioningState") ?? json.PropertyT("status"); + if( state is null ) + { + // the body doesn't contain any information that has the state of the LRO + // we're going to just get out, and let the consumer have the result + break; + } + + switch( state?.ToString()?.ToLower() ) + { + case "failed": + error = true; + break; + case "succeeded": + case "canceled": + // we're done polling. + break; + + default: + // need to keep polling! + _response.StatusCode = global::System.Net.HttpStatusCode.Created; + continue; + } + } + } catch { + // if we run into a problem peeking into the result, + // we really don't want to do anything special. + } + if (error) { + throw new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.UndeclaredResponseException(_response); + } + } + + // check for terminal status code + if (_response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + continue; + } + // we are done polling, do a request on final target? + // create a new request with the final uri + request = request.CloneAndDispose(new global::System.Uri(_originalUri), Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Method.Get); + + // drop the old response + _response?.Dispose(); + + // make the final call + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Polling, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + break; + } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.LinkerResource.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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 target subscription. + /// The name of the resource group. The name is case insensitive. + /// The name of Azure region. + /// The name of resource. + /// Connector details. + /// 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 ConnectorCreateOrUpdate_Validate(string subscriptionId, string resourceGroupName, string location, string connectorName, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource body, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); + await eventListener.AssertMinimumLength(nameof(subscriptionId),subscriptionId,1); + await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); + await eventListener.AssertMinimumLength(nameof(resourceGroupName),resourceGroupName,1); + await eventListener.AssertMaximumLength(nameof(resourceGroupName),resourceGroupName,90); + await eventListener.AssertNotNull(nameof(location),location); + await eventListener.AssertMinimumLength(nameof(location),location,1); + await eventListener.AssertNotNull(nameof(connectorName),connectorName); + await eventListener.AssertNotNull(nameof(body), body); + await eventListener.AssertObjectIsValid(nameof(body), body); + } + } + + /// Delete a Connector. + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// The name of Azure region. + /// The name of 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.ServiceLinker.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 ConnectorDelete(string subscriptionId, string resourceGroupName, string location, string connectorName, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + { + var apiVersion = @"2022-11-01-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.ServiceLinker/locations/" + + global::System.Uri.EscapeDataString(location) + + "/connectors/" + + global::System.Uri.EscapeDataString(connectorName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Method.Delete, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.ConnectorDelete_Call(request,onOk,onNoContent,onDefault,eventListener,sender); + } + } + + /// delete a dryrun job + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// The name of Azure region. + /// The name of dryrun. + /// 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.ServiceLinker.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 ConnectorDeleteDryrun(string subscriptionId, string resourceGroupName, string location, string dryrunName, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + { + var apiVersion = @"2022-11-01-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.ServiceLinker/locations/" + + global::System.Uri.EscapeDataString(location) + + "/dryruns/" + + global::System.Uri.EscapeDataString(dryrunName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Method.Delete, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.ConnectorDeleteDryrun_Call(request,onOk,onNoContent,onDefault,eventListener,sender); + } + } + + /// delete a dryrun job + /// + /// 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.ServiceLinker.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 ConnectorDeleteDryrunViaIdentity(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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + { + var apiVersion = @"2022-11-01-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.ServiceLinker/locations/(?[^/]+)/dryruns/(?[^/]+)$", 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.ServiceLinker/locations/{location}/dryruns/{dryrunName}'"); + } + + // replace URI parameters with values from identity + var subscriptionId = _match.Groups["subscriptionId"].Value; + var resourceGroupName = _match.Groups["resourceGroupName"].Value; + var location = _match.Groups["location"].Value; + var dryrunName = _match.Groups["dryrunName"].Value; + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/subscriptions/" + + subscriptionId + + "/resourcegroups/" + + resourceGroupName + + "/providers/Microsoft.ServiceLinker/locations/" + + location + + "/dryruns/" + + dryrunName + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Method.Delete, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.ConnectorDeleteDryrun_Call(request,onOk,onNoContent,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 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.ServiceLinker.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 ConnectorDeleteDryrun_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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sendTask; + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.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.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onNoContent(_response); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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 target subscription. + /// The name of the resource group. The name is case insensitive. + /// The name of Azure region. + /// The name of dryrun. + /// 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 ConnectorDeleteDryrun_Validate(string subscriptionId, string resourceGroupName, string location, string dryrunName, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); + await eventListener.AssertMinimumLength(nameof(subscriptionId),subscriptionId,1); + await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); + await eventListener.AssertMinimumLength(nameof(resourceGroupName),resourceGroupName,1); + await eventListener.AssertMaximumLength(nameof(resourceGroupName),resourceGroupName,90); + await eventListener.AssertNotNull(nameof(location),location); + await eventListener.AssertMinimumLength(nameof(location),location,1); + await eventListener.AssertNotNull(nameof(dryrunName),dryrunName); + } + } + + /// Delete a Connector. + /// + /// 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.ServiceLinker.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 ConnectorDeleteViaIdentity(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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + { + var apiVersion = @"2022-11-01-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.ServiceLinker/locations/(?[^/]+)/connectors/(?[^/]+)$", 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.ServiceLinker/locations/{location}/connectors/{connectorName}'"); + } + + // replace URI parameters with values from identity + var subscriptionId = _match.Groups["subscriptionId"].Value; + var resourceGroupName = _match.Groups["resourceGroupName"].Value; + var location = _match.Groups["location"].Value; + var connectorName = _match.Groups["connectorName"].Value; + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/subscriptions/" + + subscriptionId + + "/resourcegroups/" + + resourceGroupName + + "/providers/Microsoft.ServiceLinker/locations/" + + location + + "/connectors/" + + connectorName + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Method.Delete, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.ConnectorDelete_Call(request,onOk,onNoContent,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 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.ServiceLinker.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 ConnectorDelete_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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sendTask; + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + // this operation supports x-ms-long-running-operation + var _originalUri = request.RequestUri.AbsoluteUri; + // declared final-state-via: azure-async-operation + var _finalUri = _response.GetFirstHeader(@"Azure-AsyncOperation"); + var asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = _response.GetFirstHeader(@"Location"); + while (request.Method == System.Net.Http.HttpMethod.Put && _response.StatusCode == global::System.Net.HttpStatusCode.OK || _response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + + // get the delay before polling. (default to 30 seconds if not present) + int delay = (int)(_response.Headers.RetryAfter?.Delta?.TotalSeconds ?? 30); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.DelayBeforePolling, $"Delaying {delay} seconds before polling.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // start the delay timer (we'll await later...) + var waiting = global::System.Threading.Tasks.Task.Delay(delay * 1000, eventListener.Token ); + + // while we wait, let's grab the headers and get ready to poll. + if (!System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Azure-AsyncOperation"))) { + asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + } + if (!global::System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Location"))) { + location = _response.GetFirstHeader(@"Location"); + } + var _uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? _originalUri : location : asyncOperation; + request = request.CloneAndDispose(new global::System.Uri(_uri), Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Method.Get); + + // and let's look at the current response body and see if we have some information we can give back to the listener + var content = await _response.Content.ReadAsStringAsync(); + await waiting; + + // check for cancellation + if( eventListener.Token.IsCancellationRequested ) { return; } + + // drop the old response + _response?.Dispose(); + + // make the polling call + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Polling, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // if we got back an OK, take a peek inside and see if it's done + if( _response.StatusCode == global::System.Net.HttpStatusCode.OK) + { + var error = false; + try { + if( Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(await _response.Content.ReadAsStringAsync()) is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json) + { + var state = json.Property("properties")?.PropertyT("provisioningState") ?? json.PropertyT("status"); + if( state is null ) + { + // the body doesn't contain any information that has the state of the LRO + // we're going to just get out, and let the consumer have the result + break; + } + + switch( state?.ToString()?.ToLower() ) + { + case "failed": + error = true; + break; + case "succeeded": + case "canceled": + // we're done polling. + break; + + default: + // need to keep polling! + _response.StatusCode = global::System.Net.HttpStatusCode.Created; + continue; + } + } + } catch { + // if we run into a problem peeking into the result, + // we really don't want to do anything special. + } + if (error) { + throw new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.UndeclaredResponseException(_response); + } + } + + // check for terminal status code + if (_response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + continue; + } + // we are done polling, do a request on final target? + // create a new request with the final uri + request = request.CloneAndDispose(new global::System.Uri(_finalUri), Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Method.Get); + + // drop the old response + _response?.Dispose(); + + // make the final call + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Polling, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + break; + } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onNoContent(_response); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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 target subscription. + /// The name of the resource group. The name is case insensitive. + /// The name of Azure region. + /// The name of 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 ConnectorDelete_Validate(string subscriptionId, string resourceGroupName, string location, string connectorName, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); + await eventListener.AssertMinimumLength(nameof(subscriptionId),subscriptionId,1); + await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); + await eventListener.AssertMinimumLength(nameof(resourceGroupName),resourceGroupName,1); + await eventListener.AssertMaximumLength(nameof(resourceGroupName),resourceGroupName,90); + await eventListener.AssertNotNull(nameof(location),location); + await eventListener.AssertMinimumLength(nameof(location),location,1); + await eventListener.AssertNotNull(nameof(connectorName),connectorName); + } + } + + /// Generate configurations for a Connector. + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// The name of Azure region. + /// The name of resource. + /// Connection Info, including format, secret store, etc + /// 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.ServiceLinker.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 ConnectorGenerateConfigurations(string subscriptionId, string resourceGroupName, string location, string connectorName, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfo body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + { + var apiVersion = @"2022-11-01-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.ServiceLinker/locations/" + + global::System.Uri.EscapeDataString(location) + + "/connectors/" + + global::System.Uri.EscapeDataString(connectorName) + + "/generateConfigurations" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Method.Post, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.ConnectorGenerateConfigurations_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Generate configurations for a Connector. + /// + /// Connection Info, including format, secret store, etc + /// 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.ServiceLinker.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 ConnectorGenerateConfigurationsViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfo body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + { + var apiVersion = @"2022-11-01-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.ServiceLinker/locations/(?[^/]+)/connectors/(?[^/]+)/generateConfigurations$", 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.ServiceLinker/locations/{location}/connectors/{connectorName}/generateConfigurations'"); + } + + // replace URI parameters with values from identity + var subscriptionId = _match.Groups["subscriptionId"].Value; + var resourceGroupName = _match.Groups["resourceGroupName"].Value; + var location = _match.Groups["location"].Value; + var connectorName = _match.Groups["connectorName"].Value; + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/subscriptions/" + + subscriptionId + + "/resourcegroups/" + + resourceGroupName + + "/providers/Microsoft.ServiceLinker/locations/" + + location + + "/connectors/" + + connectorName + + "/generateConfigurations" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Method.Post, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.ConnectorGenerateConfigurations_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.ServiceLinker.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 ConnectorGenerateConfigurations_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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sendTask; + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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 target subscription. + /// The name of the resource group. The name is case insensitive. + /// The name of Azure region. + /// The name of resource. + /// Connection Info, including format, secret store, etc + /// 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 ConnectorGenerateConfigurations_Validate(string subscriptionId, string resourceGroupName, string location, string connectorName, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfo body, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); + await eventListener.AssertMinimumLength(nameof(subscriptionId),subscriptionId,1); + await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); + await eventListener.AssertMinimumLength(nameof(resourceGroupName),resourceGroupName,1); + await eventListener.AssertMaximumLength(nameof(resourceGroupName),resourceGroupName,90); + await eventListener.AssertNotNull(nameof(location),location); + await eventListener.AssertMinimumLength(nameof(location),location,1); + await eventListener.AssertNotNull(nameof(connectorName),connectorName); + await eventListener.AssertNotNull(nameof(body), body); + await eventListener.AssertObjectIsValid(nameof(body), body); + } + } + + /// Returns Connector resource for a given name. + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// The name of Azure region. + /// The name of 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.ServiceLinker.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 ConnectorGet(string subscriptionId, string resourceGroupName, string location, string connectorName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + { + var apiVersion = @"2022-11-01-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.ServiceLinker/locations/" + + global::System.Uri.EscapeDataString(location) + + "/connectors/" + + global::System.Uri.EscapeDataString(connectorName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.ConnectorGet_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// get a dryrun job + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// The name of Azure region. + /// The name of dryrun. + /// 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.ServiceLinker.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 ConnectorGetDryrun(string subscriptionId, string resourceGroupName, string location, string dryrunName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + { + var apiVersion = @"2022-11-01-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.ServiceLinker/locations/" + + global::System.Uri.EscapeDataString(location) + + "/dryruns/" + + global::System.Uri.EscapeDataString(dryrunName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.ConnectorGetDryrun_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// get a dryrun job + /// + /// 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.ServiceLinker.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 ConnectorGetDryrunViaIdentity(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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + { + var apiVersion = @"2022-11-01-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.ServiceLinker/locations/(?[^/]+)/dryruns/(?[^/]+)$", 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.ServiceLinker/locations/{location}/dryruns/{dryrunName}'"); + } + + // replace URI parameters with values from identity + var subscriptionId = _match.Groups["subscriptionId"].Value; + var resourceGroupName = _match.Groups["resourceGroupName"].Value; + var location = _match.Groups["location"].Value; + var dryrunName = _match.Groups["dryrunName"].Value; + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/subscriptions/" + + subscriptionId + + "/resourcegroups/" + + resourceGroupName + + "/providers/Microsoft.ServiceLinker/locations/" + + location + + "/dryruns/" + + dryrunName + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.ConnectorGetDryrun_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.ServiceLinker.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 ConnectorGetDryrun_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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sendTask; + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunResource.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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 target subscription. + /// The name of the resource group. The name is case insensitive. + /// The name of Azure region. + /// The name of dryrun. + /// 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 ConnectorGetDryrun_Validate(string subscriptionId, string resourceGroupName, string location, string dryrunName, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); + await eventListener.AssertMinimumLength(nameof(subscriptionId),subscriptionId,1); + await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); + await eventListener.AssertMinimumLength(nameof(resourceGroupName),resourceGroupName,1); + await eventListener.AssertMaximumLength(nameof(resourceGroupName),resourceGroupName,90); + await eventListener.AssertNotNull(nameof(location),location); + await eventListener.AssertMinimumLength(nameof(location),location,1); + await eventListener.AssertNotNull(nameof(dryrunName),dryrunName); + } + } + + /// Returns Connector resource for a given name. + /// + /// 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.ServiceLinker.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 ConnectorGetViaIdentity(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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + { + var apiVersion = @"2022-11-01-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.ServiceLinker/locations/(?[^/]+)/connectors/(?[^/]+)$", 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.ServiceLinker/locations/{location}/connectors/{connectorName}'"); + } + + // replace URI parameters with values from identity + var subscriptionId = _match.Groups["subscriptionId"].Value; + var resourceGroupName = _match.Groups["resourceGroupName"].Value; + var location = _match.Groups["location"].Value; + var connectorName = _match.Groups["connectorName"].Value; + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/subscriptions/" + + subscriptionId + + "/resourcegroups/" + + resourceGroupName + + "/providers/Microsoft.ServiceLinker/locations/" + + location + + "/connectors/" + + connectorName + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.ConnectorGet_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.ServiceLinker.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 ConnectorGet_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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sendTask; + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.LinkerResource.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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 target subscription. + /// The name of the resource group. The name is case insensitive. + /// The name of Azure region. + /// The name of 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 ConnectorGet_Validate(string subscriptionId, string resourceGroupName, string location, string connectorName, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); + await eventListener.AssertMinimumLength(nameof(subscriptionId),subscriptionId,1); + await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); + await eventListener.AssertMinimumLength(nameof(resourceGroupName),resourceGroupName,1); + await eventListener.AssertMaximumLength(nameof(resourceGroupName),resourceGroupName,90); + await eventListener.AssertNotNull(nameof(location),location); + await eventListener.AssertMinimumLength(nameof(location),location,1); + await eventListener.AssertNotNull(nameof(connectorName),connectorName); + } + } + + /// + /// Returns list of connector which connects to the resource, which supports to config the target service during the resource + /// provision. + /// + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// The name of Azure region. + /// 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.ServiceLinker.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 ConnectorList(string subscriptionId, string resourceGroupName, string location, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + { + var apiVersion = @"2022-11-01-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.ServiceLinker/locations/" + + global::System.Uri.EscapeDataString(location) + + "/connectors" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.ConnectorList_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// list dryrun jobs + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// The name of Azure region. + /// 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.ServiceLinker.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 ConnectorListDryrun(string subscriptionId, string resourceGroupName, string location, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + { + var apiVersion = @"2022-11-01-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.ServiceLinker/locations/" + + global::System.Uri.EscapeDataString(location) + + "/dryruns" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.ConnectorListDryrun_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// list dryrun jobs + /// + /// 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.ServiceLinker.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 ConnectorListDryrunViaIdentity(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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + { + var apiVersion = @"2022-11-01-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.ServiceLinker/locations/(?[^/]+)/dryruns$", 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.ServiceLinker/locations/{location}/dryruns'"); + } + + // replace URI parameters with values from identity + var subscriptionId = _match.Groups["subscriptionId"].Value; + var resourceGroupName = _match.Groups["resourceGroupName"].Value; + var location = _match.Groups["location"].Value; + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/subscriptions/" + + subscriptionId + + "/resourcegroups/" + + resourceGroupName + + "/providers/Microsoft.ServiceLinker/locations/" + + location + + "/dryruns" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.ConnectorListDryrun_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.ServiceLinker.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 ConnectorListDryrun_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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sendTask; + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunList.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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 target subscription. + /// The name of the resource group. The name is case insensitive. + /// The name of Azure region. + /// 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 ConnectorListDryrun_Validate(string subscriptionId, string resourceGroupName, string location, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); + await eventListener.AssertMinimumLength(nameof(subscriptionId),subscriptionId,1); + await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); + await eventListener.AssertMinimumLength(nameof(resourceGroupName),resourceGroupName,1); + await eventListener.AssertMaximumLength(nameof(resourceGroupName),resourceGroupName,90); + await eventListener.AssertNotNull(nameof(location),location); + await eventListener.AssertMinimumLength(nameof(location),location,1); + } + } + + /// + /// Returns list of connector which connects to the resource, which supports to config the target service during the resource + /// provision. + /// + /// + /// 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.ServiceLinker.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 ConnectorListViaIdentity(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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + { + var apiVersion = @"2022-11-01-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.ServiceLinker/locations/(?[^/]+)/connectors$", 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.ServiceLinker/locations/{location}/connectors'"); + } + + // replace URI parameters with values from identity + var subscriptionId = _match.Groups["subscriptionId"].Value; + var resourceGroupName = _match.Groups["resourceGroupName"].Value; + var location = _match.Groups["location"].Value; + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/subscriptions/" + + subscriptionId + + "/resourcegroups/" + + resourceGroupName + + "/providers/Microsoft.ServiceLinker/locations/" + + location + + "/connectors" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.ConnectorList_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.ServiceLinker.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 ConnectorList_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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sendTask; + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ResourceList.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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 target subscription. + /// The name of the resource group. The name is case insensitive. + /// The name of Azure region. + /// 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 ConnectorList_Validate(string subscriptionId, string resourceGroupName, string location, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); + await eventListener.AssertMinimumLength(nameof(subscriptionId),subscriptionId,1); + await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); + await eventListener.AssertMinimumLength(nameof(resourceGroupName),resourceGroupName,1); + await eventListener.AssertMaximumLength(nameof(resourceGroupName),resourceGroupName,90); + await eventListener.AssertNotNull(nameof(location),location); + await eventListener.AssertMinimumLength(nameof(location),location,1); + } + } + + /// Operation to update an existing Connector. + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// The name of Azure region. + /// The name of resource. + /// Connector details. + /// 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.ServiceLinker.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 ConnectorUpdate(string subscriptionId, string resourceGroupName, string location, string connectorName, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatch body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + { + var apiVersion = @"2022-11-01-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.ServiceLinker/locations/" + + global::System.Uri.EscapeDataString(location) + + "/connectors/" + + global::System.Uri.EscapeDataString(connectorName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Method.Patch, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.ConnectorUpdate_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// update a dryrun job to do necessary check before actual creation + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// The name of Azure region. + /// The name of dryrun. + /// dryrun 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.ServiceLinker.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 ConnectorUpdateDryrun(string subscriptionId, string resourceGroupName, string location, string dryrunName, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatch body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + { + var apiVersion = @"2022-11-01-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.ServiceLinker/locations/" + + global::System.Uri.EscapeDataString(location) + + "/dryruns/" + + global::System.Uri.EscapeDataString(dryrunName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Method.Patch, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.ConnectorUpdateDryrun_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// update a dryrun job to do necessary check before actual creation + /// + /// dryrun 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.ServiceLinker.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 ConnectorUpdateDryrunViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatch body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + { + var apiVersion = @"2022-11-01-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.ServiceLinker/locations/(?[^/]+)/dryruns/(?[^/]+)$", 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.ServiceLinker/locations/{location}/dryruns/{dryrunName}'"); + } + + // replace URI parameters with values from identity + var subscriptionId = _match.Groups["subscriptionId"].Value; + var resourceGroupName = _match.Groups["resourceGroupName"].Value; + var location = _match.Groups["location"].Value; + var dryrunName = _match.Groups["dryrunName"].Value; + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/subscriptions/" + + subscriptionId + + "/resourcegroups/" + + resourceGroupName + + "/providers/Microsoft.ServiceLinker/locations/" + + location + + "/dryruns/" + + dryrunName + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Method.Patch, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.ConnectorUpdateDryrun_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.ServiceLinker.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 ConnectorUpdateDryrun_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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sendTask; + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + // this operation supports x-ms-long-running-operation + var _originalUri = request.RequestUri.AbsoluteUri; + // declared final-state-via: azure-async-operation + var asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = _response.GetFirstHeader(@"Location"); + while (request.Method == System.Net.Http.HttpMethod.Put && _response.StatusCode == global::System.Net.HttpStatusCode.OK || _response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + + // get the delay before polling. (default to 30 seconds if not present) + int delay = (int)(_response.Headers.RetryAfter?.Delta?.TotalSeconds ?? 30); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.DelayBeforePolling, $"Delaying {delay} seconds before polling.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // start the delay timer (we'll await later...) + var waiting = global::System.Threading.Tasks.Task.Delay(delay * 1000, eventListener.Token ); + + // while we wait, let's grab the headers and get ready to poll. + if (!System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Azure-AsyncOperation"))) { + asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + } + if (!global::System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Location"))) { + location = _response.GetFirstHeader(@"Location"); + } + var _uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? _originalUri : location : asyncOperation; + request = request.CloneAndDispose(new global::System.Uri(_uri), Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Method.Get); + + // and let's look at the current response body and see if we have some information we can give back to the listener + var content = await _response.Content.ReadAsStringAsync(); + await waiting; + + // check for cancellation + if( eventListener.Token.IsCancellationRequested ) { return; } + + // drop the old response + _response?.Dispose(); + + // make the polling call + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Polling, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // if we got back an OK, take a peek inside and see if it's done + if( _response.StatusCode == global::System.Net.HttpStatusCode.OK) + { + var error = false; + try { + if( Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(await _response.Content.ReadAsStringAsync()) is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json) + { + var state = json.Property("properties")?.PropertyT("provisioningState") ?? json.PropertyT("status"); + if( state is null ) + { + // the body doesn't contain any information that has the state of the LRO + // we're going to just get out, and let the consumer have the result + break; + } + + switch( state?.ToString()?.ToLower() ) + { + case "failed": + error = true; + break; + case "succeeded": + case "canceled": + // we're done polling. + break; + + default: + // need to keep polling! + _response.StatusCode = global::System.Net.HttpStatusCode.Created; + continue; + } + } + } catch { + // if we run into a problem peeking into the result, + // we really don't want to do anything special. + } + if (error) { + throw new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.UndeclaredResponseException(_response); + } + } + + // check for terminal status code + if (_response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + continue; + } + // we are done polling, do a request on final target? + // create a new request with the final uri + request = request.CloneAndDispose(new global::System.Uri(_originalUri), Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Method.Get); + + // drop the old response + _response?.Dispose(); + + // make the final call + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Polling, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + break; + } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunResource.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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 target subscription. + /// The name of the resource group. The name is case insensitive. + /// The name of Azure region. + /// The name of dryrun. + /// dryrun 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 ConnectorUpdateDryrun_Validate(string subscriptionId, string resourceGroupName, string location, string dryrunName, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatch body, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); + await eventListener.AssertMinimumLength(nameof(subscriptionId),subscriptionId,1); + await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); + await eventListener.AssertMinimumLength(nameof(resourceGroupName),resourceGroupName,1); + await eventListener.AssertMaximumLength(nameof(resourceGroupName),resourceGroupName,90); + await eventListener.AssertNotNull(nameof(location),location); + await eventListener.AssertMinimumLength(nameof(location),location,1); + await eventListener.AssertNotNull(nameof(dryrunName),dryrunName); + await eventListener.AssertNotNull(nameof(body), body); + await eventListener.AssertObjectIsValid(nameof(body), body); + } + } + + /// Operation to update an existing Connector. + /// + /// Connector details. + /// 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.ServiceLinker.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 ConnectorUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatch body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + { + var apiVersion = @"2022-11-01-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.ServiceLinker/locations/(?[^/]+)/connectors/(?[^/]+)$", 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.ServiceLinker/locations/{location}/connectors/{connectorName}'"); + } + + // replace URI parameters with values from identity + var subscriptionId = _match.Groups["subscriptionId"].Value; + var resourceGroupName = _match.Groups["resourceGroupName"].Value; + var location = _match.Groups["location"].Value; + var connectorName = _match.Groups["connectorName"].Value; + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/subscriptions/" + + subscriptionId + + "/resourcegroups/" + + resourceGroupName + + "/providers/Microsoft.ServiceLinker/locations/" + + location + + "/connectors/" + + connectorName + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Method.Patch, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.ConnectorUpdate_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.ServiceLinker.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 ConnectorUpdate_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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sendTask; + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + // this operation supports x-ms-long-running-operation + var _originalUri = request.RequestUri.AbsoluteUri; + // declared final-state-via: azure-async-operation + var asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = _response.GetFirstHeader(@"Location"); + while (request.Method == System.Net.Http.HttpMethod.Put && _response.StatusCode == global::System.Net.HttpStatusCode.OK || _response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + + // get the delay before polling. (default to 30 seconds if not present) + int delay = (int)(_response.Headers.RetryAfter?.Delta?.TotalSeconds ?? 30); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.DelayBeforePolling, $"Delaying {delay} seconds before polling.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // start the delay timer (we'll await later...) + var waiting = global::System.Threading.Tasks.Task.Delay(delay * 1000, eventListener.Token ); + + // while we wait, let's grab the headers and get ready to poll. + if (!System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Azure-AsyncOperation"))) { + asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + } + if (!global::System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Location"))) { + location = _response.GetFirstHeader(@"Location"); + } + var _uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? _originalUri : location : asyncOperation; + request = request.CloneAndDispose(new global::System.Uri(_uri), Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Method.Get); + + // and let's look at the current response body and see if we have some information we can give back to the listener + var content = await _response.Content.ReadAsStringAsync(); + await waiting; + + // check for cancellation + if( eventListener.Token.IsCancellationRequested ) { return; } + + // drop the old response + _response?.Dispose(); + + // make the polling call + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Polling, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // if we got back an OK, take a peek inside and see if it's done + if( _response.StatusCode == global::System.Net.HttpStatusCode.OK) + { + var error = false; + try { + if( Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(await _response.Content.ReadAsStringAsync()) is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json) + { + var state = json.Property("properties")?.PropertyT("provisioningState") ?? json.PropertyT("status"); + if( state is null ) + { + // the body doesn't contain any information that has the state of the LRO + // we're going to just get out, and let the consumer have the result + break; + } + + switch( state?.ToString()?.ToLower() ) + { + case "failed": + error = true; + break; + case "succeeded": + case "canceled": + // we're done polling. + break; + + default: + // need to keep polling! + _response.StatusCode = global::System.Net.HttpStatusCode.Created; + continue; + } + } + } catch { + // if we run into a problem peeking into the result, + // we really don't want to do anything special. + } + if (error) { + throw new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.UndeclaredResponseException(_response); + } + } + + // check for terminal status code + if (_response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + continue; + } + // we are done polling, do a request on final target? + // create a new request with the final uri + request = request.CloneAndDispose(new global::System.Uri(_originalUri), Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Method.Get); + + // drop the old response + _response?.Dispose(); + + // make the final call + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Polling, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + break; + } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.LinkerResource.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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 target subscription. + /// The name of the resource group. The name is case insensitive. + /// The name of Azure region. + /// The name of resource. + /// Connector details. + /// 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 ConnectorUpdate_Validate(string subscriptionId, string resourceGroupName, string location, string connectorName, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatch body, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); + await eventListener.AssertMinimumLength(nameof(subscriptionId),subscriptionId,1); + await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); + await eventListener.AssertMinimumLength(nameof(resourceGroupName),resourceGroupName,1); + await eventListener.AssertMaximumLength(nameof(resourceGroupName),resourceGroupName,90); + await eventListener.AssertNotNull(nameof(location),location); + await eventListener.AssertMinimumLength(nameof(location),location,1); + await eventListener.AssertNotNull(nameof(connectorName),connectorName); + await eventListener.AssertNotNull(nameof(body), body); + await eventListener.AssertObjectIsValid(nameof(body), body); + } + } + + /// Validate a Connector. + /// The ID of the target subscription. + /// The name of the resource group. The name is case insensitive. + /// The name of Azure region. + /// The name of 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.ServiceLinker.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 ConnectorValidate(string subscriptionId, string resourceGroupName, string location, string connectorName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + { + var apiVersion = @"2022-11-01-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.ServiceLinker/locations/" + + global::System.Uri.EscapeDataString(location) + + "/connectors/" + + global::System.Uri.EscapeDataString(connectorName) + + "/validate" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Method.Post, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.ConnectorValidate_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Validate a Connector. + /// + /// 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.ServiceLinker.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 ConnectorValidateViaIdentity(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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + { + var apiVersion = @"2022-11-01-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.ServiceLinker/locations/(?[^/]+)/connectors/(?[^/]+)/validate$", 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.ServiceLinker/locations/{location}/connectors/{connectorName}/validate'"); + } + + // replace URI parameters with values from identity + var subscriptionId = _match.Groups["subscriptionId"].Value; + var resourceGroupName = _match.Groups["resourceGroupName"].Value; + var location = _match.Groups["location"].Value; + var connectorName = _match.Groups["connectorName"].Value; + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/subscriptions/" + + subscriptionId + + "/resourcegroups/" + + resourceGroupName + + "/providers/Microsoft.ServiceLinker/locations/" + + location + + "/connectors/" + + connectorName + + "/validate" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Method.Post, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.ConnectorValidate_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.ServiceLinker.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 ConnectorValidate_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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sendTask; + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + // this operation supports x-ms-long-running-operation + var _originalUri = request.RequestUri.AbsoluteUri; + // declared final-state-via: location + var _finalUri = _response.GetFirstHeader(@"Location"); + var asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = _response.GetFirstHeader(@"Location"); + while (request.Method == System.Net.Http.HttpMethod.Put && _response.StatusCode == global::System.Net.HttpStatusCode.OK || _response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + + // get the delay before polling. (default to 30 seconds if not present) + int delay = (int)(_response.Headers.RetryAfter?.Delta?.TotalSeconds ?? 30); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.DelayBeforePolling, $"Delaying {delay} seconds before polling.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // start the delay timer (we'll await later...) + var waiting = global::System.Threading.Tasks.Task.Delay(delay * 1000, eventListener.Token ); + + // while we wait, let's grab the headers and get ready to poll. + if (!System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Azure-AsyncOperation"))) { + asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + } + if (!global::System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Location"))) { + location = _response.GetFirstHeader(@"Location"); + } + var _uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? _originalUri : location : asyncOperation; + request = request.CloneAndDispose(new global::System.Uri(_uri), Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Method.Get); + + // and let's look at the current response body and see if we have some information we can give back to the listener + var content = await _response.Content.ReadAsStringAsync(); + await waiting; + + // check for cancellation + if( eventListener.Token.IsCancellationRequested ) { return; } + + // drop the old response + _response?.Dispose(); + + // make the polling call + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Polling, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // if we got back an OK, take a peek inside and see if it's done + if( _response.StatusCode == global::System.Net.HttpStatusCode.OK) + { + var error = false; + try { + if( Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(await _response.Content.ReadAsStringAsync()) is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json) + { + var state = json.Property("properties")?.PropertyT("provisioningState") ?? json.PropertyT("status"); + if( state is null ) + { + // the body doesn't contain any information that has the state of the LRO + // we're going to just get out, and let the consumer have the result + break; + } + + switch( state?.ToString()?.ToLower() ) + { + case "failed": + error = true; + break; + case "succeeded": + case "canceled": + // we're done polling. + break; + + default: + // need to keep polling! + _response.StatusCode = global::System.Net.HttpStatusCode.Created; + continue; + } + } + } catch { + // if we run into a problem peeking into the result, + // we really don't want to do anything special. + } + if (error) { + throw new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.UndeclaredResponseException(_response); + } + } + + // check for terminal status code + if (_response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + continue; + } + // we are done polling, do a request on final target? + // create a new request with the final uri + request = request.CloneAndDispose(new global::System.Uri(_finalUri), Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Method.Get); + + // drop the old response + _response?.Dispose(); + + // make the final call + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Polling, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + break; + } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ValidateOperationResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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 target subscription. + /// The name of the resource group. The name is case insensitive. + /// The name of Azure region. + /// The name of 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 ConnectorValidate_Validate(string subscriptionId, string resourceGroupName, string location, string connectorName, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(subscriptionId),subscriptionId); + await eventListener.AssertMinimumLength(nameof(subscriptionId),subscriptionId,1); + await eventListener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); + await eventListener.AssertMinimumLength(nameof(resourceGroupName),resourceGroupName,1); + await eventListener.AssertMaximumLength(nameof(resourceGroupName),resourceGroupName,90); + await eventListener.AssertNotNull(nameof(location),location); + await eventListener.AssertMinimumLength(nameof(location),location,1); + await eventListener.AssertNotNull(nameof(connectorName),connectorName); + } + } + + /// Create or update Linker resource. + /// The fully qualified Azure Resource manager identifier of the resource to be connected. + /// The name Linker resource. + /// + /// Linker details. + /// 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.ServiceLinker.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 LinkerCreateOrUpdate(string resourceUri, string linkerName, string xMSServiceconnectorUserToken, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + { + var apiVersion = @"2022-11-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + (resourceUri) + + "/providers/Microsoft.ServiceLinker/linkers/" + + global::System.Uri.EscapeDataString(linkerName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Method.Put, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + // add headers parameters + if (null != xMSServiceconnectorUserToken) + { + request.Headers.Add("x-ms-serviceconnector-user-token",xMSServiceconnectorUserToken); + } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.LinkerCreateOrUpdate_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Create or update Linker resource. + /// + /// + /// Linker details. + /// 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.ServiceLinker.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 LinkerCreateOrUpdateViaIdentity(global::System.String viaIdentity, string xMSServiceconnectorUserToken, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + { + var apiVersion = @"2022-11-01-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.ServiceLinker/linkers/(?[^/]+)$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/{resourceUri}/providers/Microsoft.ServiceLinker/linkers/{linkerName}'"); + } + + // replace URI parameters with values from identity + var resourceUri = _match.Groups["resourceUri"].Value; + var linkerName = _match.Groups["linkerName"].Value; + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + resourceUri + + "/providers/Microsoft.ServiceLinker/linkers/" + + linkerName + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Method.Put, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + // add headers parameters + if (null != xMSServiceconnectorUserToken) + { + request.Headers.Add("x-ms-serviceconnector-user-token",xMSServiceconnectorUserToken); + } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.LinkerCreateOrUpdate_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.ServiceLinker.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 LinkerCreateOrUpdate_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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sendTask; + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + // this operation supports x-ms-long-running-operation + var _originalUri = request.RequestUri.AbsoluteUri; + // declared final-state-via: azure-async-operation + var asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = _response.GetFirstHeader(@"Location"); + while (request.Method == System.Net.Http.HttpMethod.Put && _response.StatusCode == global::System.Net.HttpStatusCode.OK || _response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + + // get the delay before polling. (default to 30 seconds if not present) + int delay = (int)(_response.Headers.RetryAfter?.Delta?.TotalSeconds ?? 30); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.DelayBeforePolling, $"Delaying {delay} seconds before polling.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // start the delay timer (we'll await later...) + var waiting = global::System.Threading.Tasks.Task.Delay(delay * 1000, eventListener.Token ); + + // while we wait, let's grab the headers and get ready to poll. + if (!System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Azure-AsyncOperation"))) { + asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + } + if (!global::System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Location"))) { + location = _response.GetFirstHeader(@"Location"); + } + var _uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? _originalUri : location : asyncOperation; + request = request.CloneAndDispose(new global::System.Uri(_uri), Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Method.Get); + + // and let's look at the current response body and see if we have some information we can give back to the listener + var content = await _response.Content.ReadAsStringAsync(); + await waiting; + + // check for cancellation + if( eventListener.Token.IsCancellationRequested ) { return; } + + // drop the old response + _response?.Dispose(); + + // make the polling call + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Polling, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // if we got back an OK, take a peek inside and see if it's done + if( _response.StatusCode == global::System.Net.HttpStatusCode.OK) + { + var error = false; + try { + if( Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(await _response.Content.ReadAsStringAsync()) is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json) + { + var state = json.Property("properties")?.PropertyT("provisioningState") ?? json.PropertyT("status"); + if( state is null ) + { + // the body doesn't contain any information that has the state of the LRO + // we're going to just get out, and let the consumer have the result + break; + } + + switch( state?.ToString()?.ToLower() ) + { + case "failed": + error = true; + break; + case "succeeded": + case "canceled": + // we're done polling. + break; + + default: + // need to keep polling! + _response.StatusCode = global::System.Net.HttpStatusCode.Created; + continue; + } + } + } catch { + // if we run into a problem peeking into the result, + // we really don't want to do anything special. + } + if (error) { + throw new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.UndeclaredResponseException(_response); + } + } + + // check for terminal status code + if (_response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + continue; + } + // we are done polling, do a request on final target? + // create a new request with the final uri + request = request.CloneAndDispose(new global::System.Uri(_originalUri), Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Method.Get); + + // drop the old response + _response?.Dispose(); + + // make the final call + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Polling, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + break; + } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.LinkerResource.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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 fully qualified Azure Resource manager identifier of the resource to be connected. + /// The name Linker resource. + /// + /// Linker details. + /// 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 LinkerCreateOrUpdate_Validate(string resourceUri, string linkerName, string xMSServiceconnectorUserToken, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource body, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(resourceUri),resourceUri); + await eventListener.AssertNotNull(nameof(linkerName),linkerName); + await eventListener.AssertNotNull(nameof(xMSServiceconnectorUserToken),xMSServiceconnectorUserToken); + await eventListener.AssertNotNull(nameof(body), body); + await eventListener.AssertObjectIsValid(nameof(body), body); + } + } + + /// Delete a Linker. + /// The fully qualified Azure Resource manager identifier of the resource to be connected. + /// The name Linker 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.ServiceLinker.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 LinkerDelete(string resourceUri, string linkerName, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + { + var apiVersion = @"2022-11-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + (resourceUri) + + "/providers/Microsoft.ServiceLinker/linkers/" + + global::System.Uri.EscapeDataString(linkerName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Method.Delete, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.LinkerDelete_Call(request,onOk,onNoContent,onDefault,eventListener,sender); + } + } + + /// Delete a Linker. + /// + /// 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.ServiceLinker.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 LinkerDeleteViaIdentity(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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + { + var apiVersion = @"2022-11-01-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.ServiceLinker/linkers/(?[^/]+)$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/{resourceUri}/providers/Microsoft.ServiceLinker/linkers/{linkerName}'"); + } + + // replace URI parameters with values from identity + var resourceUri = _match.Groups["resourceUri"].Value; + var linkerName = _match.Groups["linkerName"].Value; + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + resourceUri + + "/providers/Microsoft.ServiceLinker/linkers/" + + linkerName + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Method.Delete, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.LinkerDelete_Call(request,onOk,onNoContent,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 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.ServiceLinker.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 LinkerDelete_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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sendTask; + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + // this operation supports x-ms-long-running-operation + var _originalUri = request.RequestUri.AbsoluteUri; + // declared final-state-via: azure-async-operation + var _finalUri = _response.GetFirstHeader(@"Azure-AsyncOperation"); + var asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = _response.GetFirstHeader(@"Location"); + while (request.Method == System.Net.Http.HttpMethod.Put && _response.StatusCode == global::System.Net.HttpStatusCode.OK || _response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + + // get the delay before polling. (default to 30 seconds if not present) + int delay = (int)(_response.Headers.RetryAfter?.Delta?.TotalSeconds ?? 30); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.DelayBeforePolling, $"Delaying {delay} seconds before polling.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // start the delay timer (we'll await later...) + var waiting = global::System.Threading.Tasks.Task.Delay(delay * 1000, eventListener.Token ); + + // while we wait, let's grab the headers and get ready to poll. + if (!System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Azure-AsyncOperation"))) { + asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + } + if (!global::System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Location"))) { + location = _response.GetFirstHeader(@"Location"); + } + var _uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? _originalUri : location : asyncOperation; + request = request.CloneAndDispose(new global::System.Uri(_uri), Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Method.Get); + + // and let's look at the current response body and see if we have some information we can give back to the listener + var content = await _response.Content.ReadAsStringAsync(); + await waiting; + + // check for cancellation + if( eventListener.Token.IsCancellationRequested ) { return; } + + // drop the old response + _response?.Dispose(); + + // make the polling call + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Polling, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // if we got back an OK, take a peek inside and see if it's done + if( _response.StatusCode == global::System.Net.HttpStatusCode.OK) + { + var error = false; + try { + if( Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(await _response.Content.ReadAsStringAsync()) is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json) + { + var state = json.Property("properties")?.PropertyT("provisioningState") ?? json.PropertyT("status"); + if( state is null ) + { + // the body doesn't contain any information that has the state of the LRO + // we're going to just get out, and let the consumer have the result + break; + } + + switch( state?.ToString()?.ToLower() ) + { + case "failed": + error = true; + break; + case "succeeded": + case "canceled": + // we're done polling. + break; + + default: + // need to keep polling! + _response.StatusCode = global::System.Net.HttpStatusCode.Created; + continue; + } + } + } catch { + // if we run into a problem peeking into the result, + // we really don't want to do anything special. + } + if (error) { + throw new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.UndeclaredResponseException(_response); + } + } + + // check for terminal status code + if (_response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + continue; + } + // we are done polling, do a request on final target? + // create a new request with the final uri + request = request.CloneAndDispose(new global::System.Uri(_finalUri), Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Method.Get); + + // drop the old response + _response?.Dispose(); + + // make the final call + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Polling, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + break; + } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onNoContent(_response); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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 fully qualified Azure Resource manager identifier of the resource to be connected. + /// The name Linker 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 LinkerDelete_Validate(string resourceUri, string linkerName, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(resourceUri),resourceUri); + await eventListener.AssertNotNull(nameof(linkerName),linkerName); + } + } + + /// Returns Linker resource for a given name. + /// The fully qualified Azure Resource manager identifier of the resource to be connected. + /// The name Linker 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.ServiceLinker.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 LinkerGet(string resourceUri, string linkerName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + { + var apiVersion = @"2022-11-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + (resourceUri) + + "/providers/Microsoft.ServiceLinker/linkers/" + + global::System.Uri.EscapeDataString(linkerName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.LinkerGet_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Returns Linker resource for a given name. + /// + /// 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.ServiceLinker.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 LinkerGetViaIdentity(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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + { + var apiVersion = @"2022-11-01-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.ServiceLinker/linkers/(?[^/]+)$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/{resourceUri}/providers/Microsoft.ServiceLinker/linkers/{linkerName}'"); + } + + // replace URI parameters with values from identity + var resourceUri = _match.Groups["resourceUri"].Value; + var linkerName = _match.Groups["linkerName"].Value; + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + resourceUri + + "/providers/Microsoft.ServiceLinker/linkers/" + + linkerName + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.LinkerGet_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.ServiceLinker.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 LinkerGet_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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sendTask; + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.LinkerResource.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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 fully qualified Azure Resource manager identifier of the resource to be connected. + /// The name Linker 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 LinkerGet_Validate(string resourceUri, string linkerName, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(resourceUri),resourceUri); + await eventListener.AssertNotNull(nameof(linkerName),linkerName); + } + } + + /// + /// Returns list of Linkers which connects to the resource. which supports to config both application and target service during + /// the resource provision. + /// + /// The fully qualified Azure Resource manager identifier of the resource to be connected. + /// 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.ServiceLinker.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 LinkerList(string resourceUri, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + { + var apiVersion = @"2022-11-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + (resourceUri) + + "/providers/Microsoft.ServiceLinker/linkers" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.LinkerList_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// list source configurations for a Linker. + /// The fully qualified Azure Resource manager identifier of the resource to be connected. + /// The name Linker 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.ServiceLinker.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 LinkerListConfigurations(string resourceUri, string linkerName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + { + var apiVersion = @"2022-11-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + (resourceUri) + + "/providers/Microsoft.ServiceLinker/linkers/" + + global::System.Uri.EscapeDataString(linkerName) + + "/listConfigurations" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Method.Post, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.LinkerListConfigurations_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// list source configurations for a Linker. + /// + /// 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.ServiceLinker.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 LinkerListConfigurationsViaIdentity(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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + { + var apiVersion = @"2022-11-01-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.ServiceLinker/linkers/(?[^/]+)/listConfigurations$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/{resourceUri}/providers/Microsoft.ServiceLinker/linkers/{linkerName}/listConfigurations'"); + } + + // replace URI parameters with values from identity + var resourceUri = _match.Groups["resourceUri"].Value; + var linkerName = _match.Groups["linkerName"].Value; + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + resourceUri + + "/providers/Microsoft.ServiceLinker/linkers/" + + linkerName + + "/listConfigurations" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Method.Post, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.LinkerListConfigurations_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.ServiceLinker.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 LinkerListConfigurations_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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sendTask; + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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 fully qualified Azure Resource manager identifier of the resource to be connected. + /// The name Linker 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 LinkerListConfigurations_Validate(string resourceUri, string linkerName, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(resourceUri),resourceUri); + await eventListener.AssertNotNull(nameof(linkerName),linkerName); + } + } + + /// + /// Returns list of Linkers which connects to the resource. which supports to config both application and target service during + /// the resource provision. + /// + /// + /// 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.ServiceLinker.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 LinkerListViaIdentity(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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + { + var apiVersion = @"2022-11-01-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.ServiceLinker/linkers$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/{resourceUri}/providers/Microsoft.ServiceLinker/linkers'"); + } + + // replace URI parameters with values from identity + var resourceUri = _match.Groups["resourceUri"].Value; + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + resourceUri + + "/providers/Microsoft.ServiceLinker/linkers" + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.LinkerList_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.ServiceLinker.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 LinkerList_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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sendTask; + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ResourceList.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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 fully qualified Azure Resource manager identifier of the resource to be connected. + /// 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 LinkerList_Validate(string resourceUri, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(resourceUri),resourceUri); + } + } + + /// Operation to update an existing Linker. + /// The fully qualified Azure Resource manager identifier of the resource to be connected. + /// The name Linker resource. + /// + /// Linker details. + /// 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.ServiceLinker.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 LinkerUpdate(string resourceUri, string linkerName, string xMSServiceconnectorUserToken, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatch body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + { + var apiVersion = @"2022-11-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + (resourceUri) + + "/providers/Microsoft.ServiceLinker/linkers/" + + global::System.Uri.EscapeDataString(linkerName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Method.Patch, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + // add headers parameters + if (null != xMSServiceconnectorUserToken) + { + request.Headers.Add("x-ms-serviceconnector-user-token",xMSServiceconnectorUserToken); + } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.LinkerUpdate_Call(request,onOk,onDefault,eventListener,sender); + } + } + + /// Operation to update an existing Linker. + /// + /// + /// Linker details. + /// 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.ServiceLinker.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 LinkerUpdateViaIdentity(global::System.String viaIdentity, string xMSServiceconnectorUserToken, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatch body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + { + var apiVersion = @"2022-11-01-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.ServiceLinker/linkers/(?[^/]+)$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); + if (!_match.Success) + { + throw new global::System.Exception("Invalid identity for URI '/{resourceUri}/providers/Microsoft.ServiceLinker/linkers/{linkerName}'"); + } + + // replace URI parameters with values from identity + var resourceUri = _match.Groups["resourceUri"].Value; + var linkerName = _match.Groups["linkerName"].Value; + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + resourceUri + + "/providers/Microsoft.ServiceLinker/linkers/" + + linkerName + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Method.Patch, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + // add headers parameters + if (null != xMSServiceconnectorUserToken) + { + request.Headers.Add("x-ms-serviceconnector-user-token",xMSServiceconnectorUserToken); + } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.LinkerUpdate_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.ServiceLinker.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 LinkerUpdate_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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } + _response = await sendTask; + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + // this operation supports x-ms-long-running-operation + var _originalUri = request.RequestUri.AbsoluteUri; + // declared final-state-via: azure-async-operation + var asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = _response.GetFirstHeader(@"Location"); + while (request.Method == System.Net.Http.HttpMethod.Put && _response.StatusCode == global::System.Net.HttpStatusCode.OK || _response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + + // get the delay before polling. (default to 30 seconds if not present) + int delay = (int)(_response.Headers.RetryAfter?.Delta?.TotalSeconds ?? 30); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.DelayBeforePolling, $"Delaying {delay} seconds before polling.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // start the delay timer (we'll await later...) + var waiting = global::System.Threading.Tasks.Task.Delay(delay * 1000, eventListener.Token ); + + // while we wait, let's grab the headers and get ready to poll. + if (!System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Azure-AsyncOperation"))) { + asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); + } + if (!global::System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Location"))) { + location = _response.GetFirstHeader(@"Location"); + } + var _uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? _originalUri : location : asyncOperation; + request = request.CloneAndDispose(new global::System.Uri(_uri), Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Method.Get); + + // and let's look at the current response body and see if we have some information we can give back to the listener + var content = await _response.Content.ReadAsStringAsync(); + await waiting; + + // check for cancellation + if( eventListener.Token.IsCancellationRequested ) { return; } + + // drop the old response + _response?.Dispose(); + + // make the polling call + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Polling, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + + // if we got back an OK, take a peek inside and see if it's done + if( _response.StatusCode == global::System.Net.HttpStatusCode.OK) + { + var error = false; + try { + if( Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(await _response.Content.ReadAsStringAsync()) is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json) + { + var state = json.Property("properties")?.PropertyT("provisioningState") ?? json.PropertyT("status"); + if( state is null ) + { + // the body doesn't contain any information that has the state of the LRO + // we're going to just get out, and let the consumer have the result + break; + } + + switch( state?.ToString()?.ToLower() ) + { + case "failed": + error = true; + break; + case "succeeded": + case "canceled": + // we're done polling. + break; + + default: + // need to keep polling! + _response.StatusCode = global::System.Net.HttpStatusCode.Created; + continue; + } + } + } catch { + // if we run into a problem peeking into the result, + // we really don't want to do anything special. + } + if (error) { + throw new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.UndeclaredResponseException(_response); + } + } + + // check for terminal status code + if (_response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) + { + continue; + } + // we are done polling, do a request on final target? + // create a new request with the final uri + request = request.CloneAndDispose(new global::System.Uri(_originalUri), Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Method.Get); + + // drop the old response + _response?.Dispose(); + + // make the final call + _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Polling, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + break; + } + var _contentType = _response.Content.Headers.ContentType?.MediaType; + + switch ( _response.StatusCode ) + { + case global::System.Net.HttpStatusCode.OK: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.LinkerResource.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + default: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + break; + } + } + } + finally + { + // finally statements + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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 fully qualified Azure Resource manager identifier of the resource to be connected. /// The name Linker resource. /// /// Linker details. + /// 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 LinkerUpdate_Validate(string resourceUri, string linkerName, string xMSServiceconnectorUserToken, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatch body, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(resourceUri),resourceUri); + await eventListener.AssertNotNull(nameof(linkerName),linkerName); + await eventListener.AssertNotNull(nameof(xMSServiceconnectorUserToken),xMSServiceconnectorUserToken); + await eventListener.AssertNotNull(nameof(body), body); + await eventListener.AssertObjectIsValid(nameof(body), body); + } + } + + /// Validate a Linker. + /// The fully qualified Azure Resource manager identifier of the resource to be connected. + /// The name Linker 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). @@ -27,9 +4290,9 @@ public partial class ServiceLinker /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task LinkerCreateOrUpdate(string resourceUri, string linkerName, string xMSServiceconnectorUserToken, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task LinkerValidate(string resourceUri, string linkerName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) { - var apiVersion = @"2022-05-01"; + var apiVersion = @"2022-11-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -39,6 +4302,7 @@ public partial class ServiceLinker + (resourceUri) + "/providers/Microsoft.ServiceLinker/linkers/" + global::System.Uri.EscapeDataString(linkerName) + + "/validateLinker" + "?" + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); @@ -47,29 +4311,17 @@ public partial class ServiceLinker // 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.ServiceLinker.Runtime.Method.Put, _url); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Method.Post, _url); await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } - // add headers parameters - if (null != xMSServiceconnectorUserToken) - { - request.Headers.Add("x-ms-serviceconnector-user-token",xMSServiceconnectorUserToken); - } - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.LinkerCreateOrUpdate_Call(request,onOk,onDefault,eventListener,sender); + await this.LinkerValidate_Call(request,onOk,onDefault,eventListener,sender); } } - /// Create or update linker resource. + /// Validate a Linker. /// - /// - /// Linker details. /// 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). @@ -78,18 +4330,18 @@ public partial class ServiceLinker /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task LinkerCreateOrUpdateViaIdentity(global::System.String viaIdentity, string xMSServiceconnectorUserToken, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task LinkerValidateViaIdentity(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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) { - var apiVersion = @"2022-05-01"; + var apiVersion = @"2022-11-01-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.ServiceLinker/linkers/(?[^/]+)$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); + var _match = new global::System.Text.RegularExpressions.Regex("^/(?[^/]+)/providers/Microsoft.ServiceLinker/linkers/(?[^/]+)/validateLinker$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); if (!_match.Success) { - throw new global::System.Exception("Invalid identity for URI '/{resourceUri}/providers/Microsoft.ServiceLinker/linkers/{linkerName}'"); + throw new global::System.Exception("Invalid identity for URI '/{resourceUri}/providers/Microsoft.ServiceLinker/linkers/{linkerName}/validateLinker'"); } // replace URI parameters with values from identity @@ -101,6 +4353,7 @@ public partial class ServiceLinker + resourceUri + "/providers/Microsoft.ServiceLinker/linkers/" + linkerName + + "/validateLinker" + "?" + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); @@ -109,26 +4362,16 @@ public partial class ServiceLinker // 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.ServiceLinker.Runtime.Method.Put, _url); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Method.Post, _url); await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } - // add headers parameters - if (null != xMSServiceconnectorUserToken) - { - request.Headers.Add("x-ms-serviceconnector-user-token",xMSServiceconnectorUserToken); - } - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.LinkerCreateOrUpdate_Call(request,onOk,onDefault,eventListener,sender); + await this.LinkerValidate_Call(request,onOk,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 default (any response code not handled @@ -138,7 +4381,7 @@ public partial class ServiceLinker /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task LinkerCreateOrUpdate_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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task LinkerValidate_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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -151,7 +4394,8 @@ public partial class ServiceLinker await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } // this operation supports x-ms-long-running-operation var _originalUri = request.RequestUri.AbsoluteUri; - // declared final-state-via: azure-async-operation + // declared final-state-via: location + var _finalUri = _response.GetFirstHeader(@"Location"); var asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); var location = _response.GetFirstHeader(@"Location"); while (request.Method == System.Net.Http.HttpMethod.Put && _response.StatusCode == global::System.Net.HttpStatusCode.OK || _response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) @@ -235,13 +4479,14 @@ public partial class ServiceLinker } // we are done polling, do a request on final target? // create a new request with the final uri - request = request.CloneAndDispose(new global::System.Uri(_originalUri), Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Method.Get); + request = request.CloneAndDispose(new global::System.Uri(_finalUri), Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Method.Get); // drop the old response _response?.Dispose(); // make the final call _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Polling, _response); if( eventListener.Token.IsCancellationRequested ) { return; } break; } var _contentType = _response.Content.Headers.ContentType?.MediaType; @@ -251,13 +4496,13 @@ public partial class ServiceLinker case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.LinkerResource.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ValidateOperationResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -273,34 +4518,29 @@ public partial class ServiceLinker } /// - /// Validation method for method. Call this like the actual call, but you will get validation + /// Validation method for method. Call this like the actual call, but you will get validation /// events back. /// /// The fully qualified Azure Resource manager identifier of the resource to be connected. /// The name Linker resource. - /// - /// Linker details. /// 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 LinkerCreateOrUpdate_Validate(string resourceUri, string linkerName, string xMSServiceconnectorUserToken, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource body, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task LinkerValidate_Validate(string resourceUri, string linkerName, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { await eventListener.AssertNotNull(nameof(resourceUri),resourceUri); await eventListener.AssertNotNull(nameof(linkerName),linkerName); - await eventListener.AssertNotNull(nameof(xMSServiceconnectorUserToken),xMSServiceconnectorUserToken); - await eventListener.AssertNotNull(nameof(body), body); - await eventListener.AssertObjectIsValid(nameof(body), body); } } - /// Delete a link. + /// create a dryrun job to do necessary check before actual creation /// The fully qualified Azure Resource manager identifier of the resource to be connected. - /// The name Linker resource. + /// The name of dryrun. + /// dryrun 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. @@ -308,9 +4548,9 @@ public partial class ServiceLinker /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task LinkerDelete(string resourceUri, string linkerName, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task LinkersCreateDryrun(string resourceUri, string dryrunName, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) { - var apiVersion = @"2022-05-01"; + var apiVersion = @"2022-11-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -318,8 +4558,8 @@ public partial class ServiceLinker var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( "/" + (resourceUri) - + "/providers/Microsoft.ServiceLinker/linkers/" - + global::System.Uri.EscapeDataString(linkerName) + + "/providers/Microsoft.ServiceLinker/dryruns/" + + global::System.Uri.EscapeDataString(dryrunName) + "?" + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); @@ -328,19 +4568,23 @@ public partial class ServiceLinker // 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.ServiceLinker.Runtime.Method.Delete, _url); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Method.Put, _url); await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.LinkerDelete_Call(request,onOk,onNoContent,onDefault,eventListener,sender); + await this.LinkersCreateDryrun_Call(request,onOk,onDefault,eventListener,sender); } } - /// Delete a link. + /// create a dryrun job to do necessary check before actual creation /// + /// dryrun 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. @@ -348,29 +4592,29 @@ public partial class ServiceLinker /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task LinkerDeleteViaIdentity(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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task LinkersCreateDryrunViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) { - var apiVersion = @"2022-05-01"; + var apiVersion = @"2022-11-01-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.ServiceLinker/linkers/(?[^/]+)$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); + var _match = new global::System.Text.RegularExpressions.Regex("^/(?[^/]+)/providers/Microsoft.ServiceLinker/dryruns/(?[^/]+)$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); if (!_match.Success) { - throw new global::System.Exception("Invalid identity for URI '/{resourceUri}/providers/Microsoft.ServiceLinker/linkers/{linkerName}'"); + throw new global::System.Exception("Invalid identity for URI '/{resourceUri}/providers/Microsoft.ServiceLinker/dryruns/{dryrunName}'"); } // replace URI parameters with values from identity var resourceUri = _match.Groups["resourceUri"].Value; - var linkerName = _match.Groups["linkerName"].Value; + var dryrunName = _match.Groups["dryrunName"].Value; // construct URL var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( "/" + resourceUri - + "/providers/Microsoft.ServiceLinker/linkers/" - + linkerName + + "/providers/Microsoft.ServiceLinker/dryruns/" + + dryrunName + "?" + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); @@ -379,19 +4623,22 @@ public partial class ServiceLinker // 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.ServiceLinker.Runtime.Method.Delete, _url); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Method.Put, _url); await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.LinkerDelete_Call(request,onOk,onNoContent,onDefault,eventListener,sender); + await this.LinkersCreateDryrun_Call(request,onOk,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. @@ -399,7 +4646,7 @@ public partial class ServiceLinker /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task LinkerDelete_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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task LinkersCreateDryrun_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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -413,7 +4660,6 @@ public partial class ServiceLinker // this operation supports x-ms-long-running-operation var _originalUri = request.RequestUri.AbsoluteUri; // declared final-state-via: azure-async-operation - var _finalUri = _response.GetFirstHeader(@"Azure-AsyncOperation"); var asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); var location = _response.GetFirstHeader(@"Location"); while (request.Method == System.Net.Http.HttpMethod.Put && _response.StatusCode == global::System.Net.HttpStatusCode.OK || _response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) @@ -497,13 +4743,14 @@ public partial class ServiceLinker } // we are done polling, do a request on final target? // create a new request with the final uri - request = request.CloneAndDispose(new global::System.Uri(_finalUri), Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Method.Get); + request = request.CloneAndDispose(new global::System.Uri(_originalUri), Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Method.Get); // drop the old response _response?.Dispose(); // make the final call _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Polling, _response); if( eventListener.Token.IsCancellationRequested ) { return; } break; } var _contentType = _response.Content.Headers.ContentType?.MediaType; @@ -513,19 +4760,13 @@ public partial class ServiceLinker case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onNoContent(_response); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunResource.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -541,28 +4782,32 @@ public partial class ServiceLinker } /// - /// Validation method for method. Call this like the actual call, but you will get validation + /// Validation method for method. Call this like the actual call, but you will get validation /// events back. /// /// The fully qualified Azure Resource manager identifier of the resource to be connected. - /// The name Linker resource. + /// The name of dryrun. + /// dryrun 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 LinkerDelete_Validate(string resourceUri, string linkerName, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task LinkersCreateDryrun_Validate(string resourceUri, string dryrunName, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource body, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { await eventListener.AssertNotNull(nameof(resourceUri),resourceUri); - await eventListener.AssertNotNull(nameof(linkerName),linkerName); + await eventListener.AssertNotNull(nameof(dryrunName),dryrunName); + await eventListener.AssertNotNull(nameof(body), body); + await eventListener.AssertObjectIsValid(nameof(body), body); } } - /// Returns Linker resource for a given name. + /// delete a dryrun job /// The fully qualified Azure Resource manager identifier of the resource to be connected. - /// The name Linker resource. + /// The name of dryrun. /// 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. @@ -570,9 +4815,9 @@ public partial class ServiceLinker /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task LinkerGet(string resourceUri, string linkerName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task LinkersDeleteDryrun(string resourceUri, string dryrunName, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) { - var apiVersion = @"2022-05-01"; + var apiVersion = @"2022-11-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -580,8 +4825,8 @@ public partial class ServiceLinker var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( "/" + (resourceUri) - + "/providers/Microsoft.ServiceLinker/linkers/" - + global::System.Uri.EscapeDataString(linkerName) + + "/providers/Microsoft.ServiceLinker/dryruns/" + + global::System.Uri.EscapeDataString(dryrunName) + "?" + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); @@ -590,18 +4835,19 @@ public partial class ServiceLinker // 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.ServiceLinker.Runtime.Method.Get, _url); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Method.Delete, _url); await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.LinkerGet_Call(request,onOk,onDefault,eventListener,sender); + await this.LinkersDeleteDryrun_Call(request,onOk,onNoContent,onDefault,eventListener,sender); } } - /// Returns Linker resource for a given name. + /// delete a dryrun job /// /// 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. @@ -609,29 +4855,29 @@ public partial class ServiceLinker /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task LinkerGetViaIdentity(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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task LinkersDeleteDryrunViaIdentity(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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) { - var apiVersion = @"2022-05-01"; + var apiVersion = @"2022-11-01-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.ServiceLinker/linkers/(?[^/]+)$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); + var _match = new global::System.Text.RegularExpressions.Regex("^/(?[^/]+)/providers/Microsoft.ServiceLinker/dryruns/(?[^/]+)$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); if (!_match.Success) { - throw new global::System.Exception("Invalid identity for URI '/{resourceUri}/providers/Microsoft.ServiceLinker/linkers/{linkerName}'"); + throw new global::System.Exception("Invalid identity for URI '/{resourceUri}/providers/Microsoft.ServiceLinker/dryruns/{dryrunName}'"); } // replace URI parameters with values from identity var resourceUri = _match.Groups["resourceUri"].Value; - var linkerName = _match.Groups["linkerName"].Value; + var dryrunName = _match.Groups["dryrunName"].Value; // construct URL var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( "/" + resourceUri - + "/providers/Microsoft.ServiceLinker/linkers/" - + linkerName + + "/providers/Microsoft.ServiceLinker/dryruns/" + + dryrunName + "?" + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); @@ -640,18 +4886,19 @@ public partial class ServiceLinker // 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.ServiceLinker.Runtime.Method.Get, _url); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Method.Delete, _url); await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.LinkerGet_Call(request,onOk,onDefault,eventListener,sender); + await this.LinkersDeleteDryrun_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. @@ -659,7 +4906,7 @@ public partial class ServiceLinker /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task LinkerGet_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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task LinkersDeleteDryrun_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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -677,13 +4924,19 @@ public partial class ServiceLinker case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.LinkerResource.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response); + break; + } + case global::System.Net.HttpStatusCode.NoContent: + { + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } + await onNoContent(_response); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -695,69 +4948,32 @@ public partial class ServiceLinker _response?.Dispose(); request?.Dispose(); } - } - } - - /// - /// Validation method for method. Call this like the actual call, but you will get validation events - /// back. - /// - /// The fully qualified Azure Resource manager identifier of the resource to be connected. - /// The name Linker 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 LinkerGet_Validate(string resourceUri, string linkerName, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) - { - using( NoSynchronizationContext ) - { - await eventListener.AssertNotNull(nameof(resourceUri),resourceUri); - await eventListener.AssertNotNull(nameof(linkerName),linkerName); - } - } - - /// Returns list of Linkers which connects to the resource. - /// The fully qualified Azure Resource manager identifier of the resource to be connected. - /// 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.ServiceLinker.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 LinkerList(string resourceUri, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) - { - var apiVersion = @"2022-05-01"; - // Constant Parameters - using( NoSynchronizationContext ) - { - // construct URL - var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( - "/" - + (resourceUri) - + "/providers/Microsoft.ServiceLinker/linkers" - + "?" - + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) - ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); - - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Method.Get, _url); - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + } + } - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } - // make the call - await this.LinkerList_Call(request,onOk,onDefault,eventListener,sender); + /// + /// Validation method for method. Call this like the actual call, but you will get validation + /// events back. + /// + /// The fully qualified Azure Resource manager identifier of the resource to be connected. + /// The name of dryrun. + /// 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 LinkersDeleteDryrun_Validate(string resourceUri, string dryrunName, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) + { + using( NoSynchronizationContext ) + { + await eventListener.AssertNotNull(nameof(resourceUri),resourceUri); + await eventListener.AssertNotNull(nameof(dryrunName),dryrunName); } } - /// list source configurations for a linker. + /// Generate configurations for a Linker. /// The fully qualified Azure Resource manager identifier of the resource to be connected. /// The name Linker resource. + /// Connection Info, including format, secret store, etc /// 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). @@ -766,9 +4982,9 @@ public partial class ServiceLinker /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task LinkerListConfigurations(string resourceUri, string linkerName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task LinkersGenerateConfigurations(string resourceUri, string linkerName, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfo body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) { - var apiVersion = @"2022-05-01"; + var apiVersion = @"2022-11-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -778,7 +4994,7 @@ public partial class ServiceLinker + (resourceUri) + "/providers/Microsoft.ServiceLinker/linkers/" + global::System.Uri.EscapeDataString(linkerName) - + "/listConfigurations" + + "/generateConfigurations" + "?" + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); @@ -791,13 +5007,18 @@ public partial class ServiceLinker await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.LinkerListConfigurations_Call(request,onOk,onDefault,eventListener,sender); + await this.LinkersGenerateConfigurations_Call(request,onOk,onDefault,eventListener,sender); } } - /// list source configurations for a linker. + /// Generate configurations for a Linker. /// + /// Connection Info, including format, secret store, etc /// 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). @@ -806,18 +5027,18 @@ public partial class ServiceLinker /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task LinkerListConfigurationsViaIdentity(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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task LinkersGenerateConfigurationsViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfo body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) { - var apiVersion = @"2022-05-01"; + var apiVersion = @"2022-11-01-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.ServiceLinker/linkers/(?[^/]+)/listConfigurations$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); + var _match = new global::System.Text.RegularExpressions.Regex("^/(?[^/]+)/providers/Microsoft.ServiceLinker/linkers/(?[^/]+)/generateConfigurations$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); if (!_match.Success) { - throw new global::System.Exception("Invalid identity for URI '/{resourceUri}/providers/Microsoft.ServiceLinker/linkers/{linkerName}/listConfigurations'"); + throw new global::System.Exception("Invalid identity for URI '/{resourceUri}/providers/Microsoft.ServiceLinker/linkers/{linkerName}/generateConfigurations'"); } // replace URI parameters with values from identity @@ -829,7 +5050,7 @@ public partial class ServiceLinker + resourceUri + "/providers/Microsoft.ServiceLinker/linkers/" + linkerName - + "/listConfigurations" + + "/generateConfigurations" + "?" + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); @@ -842,12 +5063,16 @@ public partial class ServiceLinker await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.LinkerListConfigurations_Call(request,onOk,onDefault,eventListener,sender); + await this.LinkersGenerateConfigurations_Call(request,onOk,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 default (any response code not handled @@ -857,7 +5082,7 @@ public partial class ServiceLinker /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task LinkerListConfigurations_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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task LinkersGenerateConfigurations_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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -875,13 +5100,13 @@ public partial class ServiceLinker case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SourceConfigurationResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -897,25 +5122,68 @@ public partial class ServiceLinker } /// - /// 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 fully qualified Azure Resource manager identifier of the resource to be connected. /// The name Linker resource. + /// Connection Info, including format, secret store, etc /// 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 LinkerListConfigurations_Validate(string resourceUri, string linkerName, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task LinkersGenerateConfigurations_Validate(string resourceUri, string linkerName, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfo body, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { await eventListener.AssertNotNull(nameof(resourceUri),resourceUri); await eventListener.AssertNotNull(nameof(linkerName),linkerName); + await eventListener.AssertNotNull(nameof(body), body); + await eventListener.AssertObjectIsValid(nameof(body), body); + } + } + + /// get a dryrun job + /// The fully qualified Azure Resource manager identifier of the resource to be connected. + /// The name of dryrun. + /// 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.ServiceLinker.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 LinkersGetDryrun(string resourceUri, string dryrunName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + { + var apiVersion = @"2022-11-01-preview"; + // Constant Parameters + using( NoSynchronizationContext ) + { + // construct URL + var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( + "/" + + (resourceUri) + + "/providers/Microsoft.ServiceLinker/dryruns/" + + global::System.Uri.EscapeDataString(dryrunName) + + "?" + + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) + ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Method.Get, _url); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } + + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } + // make the call + await this.LinkersGetDryrun_Call(request,onOk,onDefault,eventListener,sender); } } - /// Returns list of Linkers which connects to the resource. + /// get a dryrun job /// /// 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 @@ -925,27 +5193,29 @@ public partial class ServiceLinker /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task LinkerListViaIdentity(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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task LinkersGetDryrunViaIdentity(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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) { - var apiVersion = @"2022-05-01"; + var apiVersion = @"2022-11-01-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.ServiceLinker/linkers$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); + var _match = new global::System.Text.RegularExpressions.Regex("^/(?[^/]+)/providers/Microsoft.ServiceLinker/dryruns/(?[^/]+)$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); if (!_match.Success) { - throw new global::System.Exception("Invalid identity for URI '/{resourceUri}/providers/Microsoft.ServiceLinker/linkers'"); + throw new global::System.Exception("Invalid identity for URI '/{resourceUri}/providers/Microsoft.ServiceLinker/dryruns/{dryrunName}'"); } // replace URI parameters with values from identity var resourceUri = _match.Groups["resourceUri"].Value; + var dryrunName = _match.Groups["dryrunName"].Value; // construct URL var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( "/" + resourceUri - + "/providers/Microsoft.ServiceLinker/linkers" + + "/providers/Microsoft.ServiceLinker/dryruns/" + + dryrunName + "?" + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); @@ -959,11 +5229,11 @@ public partial class ServiceLinker await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.LinkerList_Call(request,onOk,onDefault,eventListener,sender); + await this.LinkersGetDryrun_Call(request,onOk,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 default (any response code not handled @@ -973,7 +5243,7 @@ public partial class ServiceLinker /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task LinkerList_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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task LinkersGetDryrun_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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -991,13 +5261,13 @@ public partial class ServiceLinker case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.LinkerList.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunResource.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -1013,27 +5283,26 @@ public partial class ServiceLinker } /// - /// 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 fully qualified Azure Resource manager identifier of the resource to be connected. + /// The name of dryrun. /// 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 LinkerList_Validate(string resourceUri, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task LinkersGetDryrun_Validate(string resourceUri, string dryrunName, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { await eventListener.AssertNotNull(nameof(resourceUri),resourceUri); + await eventListener.AssertNotNull(nameof(dryrunName),dryrunName); } } - /// Operation to update an existing link. + /// list dryrun jobs /// The fully qualified Azure Resource manager identifier of the resource to be connected. - /// The name Linker resource. - /// - /// Linker details. /// 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). @@ -1042,9 +5311,9 @@ public partial class ServiceLinker /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task LinkerUpdate(string resourceUri, string linkerName, string xMSServiceconnectorUserToken, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatch body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task LinkersListDryrun(string resourceUri, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) { - var apiVersion = @"2022-05-01"; + var apiVersion = @"2022-11-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -1052,8 +5321,7 @@ public partial class ServiceLinker var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( "/" + (resourceUri) - + "/providers/Microsoft.ServiceLinker/linkers/" - + global::System.Uri.EscapeDataString(linkerName) + + "/providers/Microsoft.ServiceLinker/dryruns" + "?" + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); @@ -1062,29 +5330,17 @@ public partial class ServiceLinker // 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.ServiceLinker.Runtime.Method.Patch, _url); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Method.Get, _url); await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } - // add headers parameters - if (null != xMSServiceconnectorUserToken) - { - request.Headers.Add("x-ms-serviceconnector-user-token",xMSServiceconnectorUserToken); - } - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.LinkerUpdate_Call(request,onOk,onDefault,eventListener,sender); + await this.LinkersListDryrun_Call(request,onOk,onDefault,eventListener,sender); } } - /// Operation to update an existing link. + /// list dryrun jobs /// - /// - /// Linker details. /// 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). @@ -1093,29 +5349,27 @@ public partial class ServiceLinker /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task LinkerUpdateViaIdentity(global::System.String viaIdentity, string xMSServiceconnectorUserToken, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatch body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task LinkersListDryrunViaIdentity(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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) { - var apiVersion = @"2022-05-01"; + var apiVersion = @"2022-11-01-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.ServiceLinker/linkers/(?[^/]+)$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); + var _match = new global::System.Text.RegularExpressions.Regex("^/(?[^/]+)/providers/Microsoft.ServiceLinker/dryruns$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); if (!_match.Success) { - throw new global::System.Exception("Invalid identity for URI '/{resourceUri}/providers/Microsoft.ServiceLinker/linkers/{linkerName}'"); + throw new global::System.Exception("Invalid identity for URI '/{resourceUri}/providers/Microsoft.ServiceLinker/dryruns'"); } // replace URI parameters with values from identity var resourceUri = _match.Groups["resourceUri"].Value; - var linkerName = _match.Groups["linkerName"].Value; // construct URL var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( "/" + resourceUri - + "/providers/Microsoft.ServiceLinker/linkers/" - + linkerName + + "/providers/Microsoft.ServiceLinker/dryruns" + "?" + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); @@ -1124,26 +5378,16 @@ public partial class ServiceLinker // 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.ServiceLinker.Runtime.Method.Patch, _url); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Method.Get, _url); await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } - // add headers parameters - if (null != xMSServiceconnectorUserToken) - { - request.Headers.Add("x-ms-serviceconnector-user-token",xMSServiceconnectorUserToken); - } - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.LinkerUpdate_Call(request,onOk,onDefault,eventListener,sender); + await this.LinkersListDryrun_Call(request,onOk,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 default (any response code not handled @@ -1153,7 +5397,7 @@ public partial class ServiceLinker /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task LinkerUpdate_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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task LinkersListDryrun_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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -1164,101 +5408,6 @@ public partial class ServiceLinker await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.BeforeCall, request); if( eventListener.Token.IsCancellationRequested ) { return; } _response = await sendTask; await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.ResponseCreated, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - // this operation supports x-ms-long-running-operation - var _originalUri = request.RequestUri.AbsoluteUri; - // declared final-state-via: azure-async-operation - var asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); - var location = _response.GetFirstHeader(@"Location"); - while (request.Method == System.Net.Http.HttpMethod.Put && _response.StatusCode == global::System.Net.HttpStatusCode.OK || _response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) - { - - // get the delay before polling. (default to 30 seconds if not present) - int delay = (int)(_response.Headers.RetryAfter?.Delta?.TotalSeconds ?? 30); - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.DelayBeforePolling, $"Delaying {delay} seconds before polling.", _response); if( eventListener.Token.IsCancellationRequested ) { return; } - - // start the delay timer (we'll await later...) - var waiting = global::System.Threading.Tasks.Task.Delay(delay * 1000, eventListener.Token ); - - // while we wait, let's grab the headers and get ready to poll. - if (!System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Azure-AsyncOperation"))) { - asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); - } - if (!global::System.String.IsNullOrEmpty(_response.GetFirstHeader(@"Location"))) { - location = _response.GetFirstHeader(@"Location"); - } - var _uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? _originalUri : location : asyncOperation; - request = request.CloneAndDispose(new global::System.Uri(_uri), Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Method.Get); - - // and let's look at the current response body and see if we have some information we can give back to the listener - var content = await _response.Content.ReadAsStringAsync(); - await waiting; - - // check for cancellation - if( eventListener.Token.IsCancellationRequested ) { return; } - - // drop the old response - _response?.Dispose(); - - // make the polling call - _response = await sender.SendAsync(request, eventListener); - await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Polling, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - - // if we got back an OK, take a peek inside and see if it's done - if( _response.StatusCode == global::System.Net.HttpStatusCode.OK) - { - var error = false; - try { - if( Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(await _response.Content.ReadAsStringAsync()) is Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonObject json) - { - var state = json.Property("properties")?.PropertyT("provisioningState") ?? json.PropertyT("status"); - if( state is null ) - { - // the body doesn't contain any information that has the state of the LRO - // we're going to just get out, and let the consumer have the result - break; - } - - switch( state?.ToString()?.ToLower() ) - { - case "failed": - error = true; - break; - case "succeeded": - case "canceled": - // we're done polling. - break; - - default: - // need to keep polling! - _response.StatusCode = global::System.Net.HttpStatusCode.Created; - continue; - } - } - } catch { - // if we run into a problem peeking into the result, - // we really don't want to do anything special. - } - if (error) { - throw new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.UndeclaredResponseException(_response); - } - } - - // check for terminal status code - if (_response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) - { - continue; - } - // we are done polling, do a request on final target? - // create a new request with the final uri - request = request.CloneAndDispose(new global::System.Uri(_originalUri), Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Method.Get); - - // drop the old response - _response?.Dispose(); - - // make the final call - _response = await sender.SendAsync(request, eventListener); - break; - } var _contentType = _response.Content.Headers.ContentType?.MediaType; switch ( _response.StatusCode ) @@ -1266,13 +5415,13 @@ public partial class ServiceLinker case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.LinkerResource.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunList.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -1288,32 +5437,26 @@ public partial class ServiceLinker } /// - /// Validation method for method. Call this like the actual call, but you will get validation + /// Validation method for method. Call this like the actual call, but you will get validation /// events back. /// /// The fully qualified Azure Resource manager identifier of the resource to be connected. - /// The name Linker resource. - /// - /// Linker details. /// 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 LinkerUpdate_Validate(string resourceUri, string linkerName, string xMSServiceconnectorUserToken, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatch body, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task LinkersListDryrun_Validate(string resourceUri, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { await eventListener.AssertNotNull(nameof(resourceUri),resourceUri); - await eventListener.AssertNotNull(nameof(linkerName),linkerName); - await eventListener.AssertNotNull(nameof(xMSServiceconnectorUserToken),xMSServiceconnectorUserToken); - await eventListener.AssertNotNull(nameof(body), body); - await eventListener.AssertObjectIsValid(nameof(body), body); } } - /// Validate a link. + /// add a dryrun job to do necessary check before actual creation /// The fully qualified Azure Resource manager identifier of the resource to be connected. - /// The name Linker resource. + /// The name of dryrun. + /// dryrun 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). @@ -1322,9 +5465,9 @@ public partial class ServiceLinker /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task LinkerValidate(string resourceUri, string linkerName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task LinkersUpdateDryrun(string resourceUri, string dryrunName, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatch body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) { - var apiVersion = @"2022-05-01"; + var apiVersion = @"2022-11-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -1332,9 +5475,8 @@ public partial class ServiceLinker var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( "/" + (resourceUri) - + "/providers/Microsoft.ServiceLinker/linkers/" - + global::System.Uri.EscapeDataString(linkerName) - + "/validateLinker" + + "/providers/Microsoft.ServiceLinker/dryruns/" + + global::System.Uri.EscapeDataString(dryrunName) + "?" + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); @@ -1343,17 +5485,22 @@ public partial class ServiceLinker // 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.ServiceLinker.Runtime.Method.Post, _url); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Method.Patch, _url); await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.LinkerValidate_Call(request,onOk,onDefault,eventListener,sender); + await this.LinkersUpdateDryrun_Call(request,onOk,onDefault,eventListener,sender); } } - /// Validate a link. + /// add a dryrun job to do necessary check before actual creation /// + /// dryrun 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). @@ -1362,30 +5509,29 @@ public partial class ServiceLinker /// /// A that will be complete when handling of the response is completed. /// - public async global::System.Threading.Tasks.Task LinkerValidateViaIdentity(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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + public async global::System.Threading.Tasks.Task LinkersUpdateDryrunViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatch body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) { - var apiVersion = @"2022-05-01"; + var apiVersion = @"2022-11-01-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.ServiceLinker/linkers/(?[^/]+)/validateLinker$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); + var _match = new global::System.Text.RegularExpressions.Regex("^/(?[^/]+)/providers/Microsoft.ServiceLinker/dryruns/(?[^/]+)$", global::System.Text.RegularExpressions.RegexOptions.IgnoreCase).Match(viaIdentity); if (!_match.Success) { - throw new global::System.Exception("Invalid identity for URI '/{resourceUri}/providers/Microsoft.ServiceLinker/linkers/{linkerName}/validateLinker'"); + throw new global::System.Exception("Invalid identity for URI '/{resourceUri}/providers/Microsoft.ServiceLinker/dryruns/{dryrunName}'"); } // replace URI parameters with values from identity var resourceUri = _match.Groups["resourceUri"].Value; - var linkerName = _match.Groups["linkerName"].Value; + var dryrunName = _match.Groups["dryrunName"].Value; // construct URL var pathAndQuery = global::System.Text.RegularExpressions.Regex.Replace( "/" + resourceUri - + "/providers/Microsoft.ServiceLinker/linkers/" - + linkerName - + "/validateLinker" + + "/providers/Microsoft.ServiceLinker/dryruns/" + + dryrunName + "?" + "api-version=" + global::System.Uri.EscapeDataString(apiVersion) ,"\\?&*$|&*$|(\\?)&+|(&)&+","$1$2"); @@ -1394,16 +5540,20 @@ public partial class ServiceLinker // 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.ServiceLinker.Runtime.Method.Post, _url); + var request = new global::System.Net.Http.HttpRequestMessage(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Method.Patch, _url); await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.RequestCreated, request.RequestUri.PathAndQuery); if( eventListener.Token.IsCancellationRequested ) { return; } await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.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.ServiceLinker.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; } // make the call - await this.LinkerValidate_Call(request,onOk,onDefault,eventListener,sender); + await this.LinkersUpdateDryrun_Call(request,onOk,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 default (any response code not handled @@ -1413,7 +5563,7 @@ public partial class ServiceLinker /// /// A that will be complete when handling of the response is completed. /// - internal async global::System.Threading.Tasks.Task LinkerValidate_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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + internal async global::System.Threading.Tasks.Task LinkersUpdateDryrun_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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -1427,7 +5577,6 @@ public partial class ServiceLinker // this operation supports x-ms-long-running-operation var _originalUri = request.RequestUri.AbsoluteUri; // declared final-state-via: azure-async-operation - var _finalUri = _response.GetFirstHeader(@"Azure-AsyncOperation"); var asyncOperation = _response.GetFirstHeader(@"Azure-AsyncOperation"); var location = _response.GetFirstHeader(@"Location"); while (request.Method == System.Net.Http.HttpMethod.Put && _response.StatusCode == global::System.Net.HttpStatusCode.OK || _response.StatusCode == global::System.Net.HttpStatusCode.Created || _response.StatusCode == global::System.Net.HttpStatusCode.Accepted ) @@ -1511,13 +5660,14 @@ public partial class ServiceLinker } // we are done polling, do a request on final target? // create a new request with the final uri - request = request.CloneAndDispose(new global::System.Uri(_finalUri), Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Method.Get); + request = request.CloneAndDispose(new global::System.Uri(_originalUri), Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Method.Get); // drop the old response _response?.Dispose(); // make the final call _response = await sender.SendAsync(request, eventListener); + await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Polling, _response); if( eventListener.Token.IsCancellationRequested ) { return; } break; } var _contentType = _response.Content.Headers.ContentType?.MediaType; @@ -1527,13 +5677,13 @@ public partial class ServiceLinker case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ValidateOperationResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunResource.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } @@ -1549,21 +5699,24 @@ public partial class ServiceLinker } /// - /// Validation method for method. Call this like the actual call, but you will get validation + /// Validation method for method. Call this like the actual call, but you will get validation /// events back. /// /// The fully qualified Azure Resource manager identifier of the resource to be connected. - /// The name Linker resource. + /// The name of dryrun. + /// dryrun 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 LinkerValidate_Validate(string resourceUri, string linkerName, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) + internal async global::System.Threading.Tasks.Task LinkersUpdateDryrun_Validate(string resourceUri, string dryrunName, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatch body, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener eventListener) { using( NoSynchronizationContext ) { await eventListener.AssertNotNull(nameof(resourceUri),resourceUri); - await eventListener.AssertNotNull(nameof(linkerName),linkerName); + await eventListener.AssertNotNull(nameof(dryrunName),dryrunName); + await eventListener.AssertNotNull(nameof(body), body); + await eventListener.AssertObjectIsValid(nameof(body), body); } } @@ -1576,9 +5729,9 @@ public partial class ServiceLinker /// /// 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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + 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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) { - var apiVersion = @"2022-05-01"; + var apiVersion = @"2022-11-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -1612,9 +5765,9 @@ public partial class ServiceLinker /// /// 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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + 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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) { - var apiVersion = @"2022-05-01"; + var apiVersion = @"2022-11-01-preview"; // Constant Parameters using( NoSynchronizationContext ) { @@ -1657,7 +5810,7 @@ public partial class ServiceLinker /// /// 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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) + 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.ServiceLinker.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.ISendAsync sender) { using( NoSynchronizationContext ) { @@ -1675,13 +5828,13 @@ public partial class ServiceLinker case global::System.Net.HttpStatusCode.OK: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.OperationListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onOk(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.OperationListResult.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } default: { await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.BeforeResponseDispatch, _response); if( eventListener.Token.IsCancellationRequested ) { return; } - await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); + await onDefault(_response,_response.Content.ReadAsStringAsync().ContinueWith( body => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.ErrorResponse.FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(body.Result)) )); break; } } diff --git a/src/ServiceLinker/generated/api/Support/AccessKeyPermissions.Completer.cs b/src/ServiceLinker/generated/api/Support/AccessKeyPermissions.Completer.cs new file mode 100644 index 000000000000..1e718ed9ff3f --- /dev/null +++ b/src/ServiceLinker/generated/api/Support/AccessKeyPermissions.Completer.cs @@ -0,0 +1,51 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support +{ + + /// Argument completer implementation for AccessKeyPermissions. + [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AccessKeyPermissionsTypeConverter))] + public partial struct AccessKeyPermissions : + System.Management.Automation.IArgumentCompleter + { + + /// + /// Implementations of this function are called by PowerShell to complete arguments. + /// + /// The name of the command that needs argument completion. + /// The name of the parameter that needs argument completion. + /// The (possibly empty) word being completed. + /// The command ast in case it is needed for completion. + /// This parameter is similar to $PSBoundParameters, except that sometimes PowerShell cannot + /// or will not attempt to evaluate an argument, in which case you may need to use commandAst. + /// + /// A collection of completion results, most like with ResultType set to ParameterValue. + /// + public global::System.Collections.Generic.IEnumerable CompleteArgument(global::System.String commandName, global::System.String parameterName, global::System.String wordToComplete, global::System.Management.Automation.Language.CommandAst commandAst, global::System.Collections.IDictionary fakeBoundParameters) + { + if (global::System.String.IsNullOrEmpty(wordToComplete) || "Read".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("'Read'", "Read", global::System.Management.Automation.CompletionResultType.ParameterValue, "Read"); + } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "Write".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("'Write'", "Write", global::System.Management.Automation.CompletionResultType.ParameterValue, "Write"); + } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "Listen".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("'Listen'", "Listen", global::System.Management.Automation.CompletionResultType.ParameterValue, "Listen"); + } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "Send".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("'Send'", "Send", global::System.Management.Automation.CompletionResultType.ParameterValue, "Send"); + } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "Manage".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("'Manage'", "Manage", global::System.Management.Automation.CompletionResultType.ParameterValue, "Manage"); + } + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Support/AccessKeyPermissions.TypeConverter.cs b/src/ServiceLinker/generated/api/Support/AccessKeyPermissions.TypeConverter.cs new file mode 100644 index 000000000000..2426e694ea93 --- /dev/null +++ b/src/ServiceLinker/generated/api/Support/AccessKeyPermissions.TypeConverter.cs @@ -0,0 +1,59 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support +{ + + /// TypeConverter implementation for AccessKeyPermissions. + public partial class AccessKeyPermissionsTypeConverter : + global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => true; + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => AccessKeyPermissions.CreateFrom(sourceValue); + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Support/AccessKeyPermissions.cs b/src/ServiceLinker/generated/api/Support/AccessKeyPermissions.cs new file mode 100644 index 000000000000..e87f9f76fae8 --- /dev/null +++ b/src/ServiceLinker/generated/api/Support/AccessKeyPermissions.cs @@ -0,0 +1,103 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support +{ + + public partial struct AccessKeyPermissions : + System.IEquatable + { + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AccessKeyPermissions Listen = @"Listen"; + + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AccessKeyPermissions Manage = @"Manage"; + + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AccessKeyPermissions Read = @"Read"; + + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AccessKeyPermissions Send = @"Send"; + + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AccessKeyPermissions Write = @"Write"; + + /// the value for an instance of the Enum. + private string _value { get; set; } + + /// Creates an instance of the Enum class. + /// the value to create an instance for. + private AccessKeyPermissions(string underlyingValue) + { + this._value = underlyingValue; + } + + /// Conversion from arbitrary object to AccessKeyPermissions + /// the value to convert to an instance of . + internal static object CreateFrom(object value) + { + return new AccessKeyPermissions(global::System.Convert.ToString(value)); + } + + /// Compares values of enum type AccessKeyPermissions + /// the value to compare against this instance. + /// true if the two instances are equal to the same value + public bool Equals(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AccessKeyPermissions e) + { + return _value.Equals(e._value); + } + + /// Compares values of enum type AccessKeyPermissions (override for Object) + /// the value to compare against this instance. + /// true if the two instances are equal to the same value + public override bool Equals(object obj) + { + return obj is AccessKeyPermissions && Equals((AccessKeyPermissions)obj); + } + + /// Returns hashCode for enum AccessKeyPermissions + /// The hashCode of the value + public override int GetHashCode() + { + return this._value.GetHashCode(); + } + + /// Returns string representation for AccessKeyPermissions + /// A string for this value. + public override string ToString() + { + return this._value; + } + + /// Implicit operator to convert string to AccessKeyPermissions + /// the value to convert to an instance of . + + public static implicit operator AccessKeyPermissions(string value) + { + return new AccessKeyPermissions(value); + } + + /// Implicit operator to convert AccessKeyPermissions to string + /// the value to convert to an instance of . + + public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AccessKeyPermissions e) + { + return e._value; + } + + /// Overriding != operator for enum AccessKeyPermissions + /// the value to compare against + /// the value to compare against + /// true if the two instances are not equal to the same value + public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AccessKeyPermissions e1, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AccessKeyPermissions e2) + { + return !e2.Equals(e1); + } + + /// Overriding == operator for enum AccessKeyPermissions + /// the value to compare against + /// the value to compare against + /// true if the two instances are equal to the same value + public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AccessKeyPermissions e1, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AccessKeyPermissions e2) + { + return e2.Equals(e1); + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Support/ActionType.Completer.cs b/src/ServiceLinker/generated/api/Support/ActionType.Completer.cs index 4c77add95934..8857f70b68de 100644 --- a/src/ServiceLinker/generated/api/Support/ActionType.Completer.cs +++ b/src/ServiceLinker/generated/api/Support/ActionType.Completer.cs @@ -32,6 +32,14 @@ public partial struct ActionType : { yield return new global::System.Management.Automation.CompletionResult("'Internal'", "Internal", global::System.Management.Automation.CompletionResultType.ParameterValue, "Internal"); } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "enable".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("'enable'", "enable", global::System.Management.Automation.CompletionResultType.ParameterValue, "enable"); + } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "optOut".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("'optOut'", "optOut", global::System.Management.Automation.CompletionResultType.ParameterValue, "optOut"); + } } } } \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Support/ActionType.TypeConverter.cs b/src/ServiceLinker/generated/api/Support/ActionType.TypeConverter.cs index 196054ceba6b..cf23d16f459b 100644 --- a/src/ServiceLinker/generated/api/Support/ActionType.TypeConverter.cs +++ b/src/ServiceLinker/generated/api/Support/ActionType.TypeConverter.cs @@ -14,32 +14,32 @@ public partial class ActionTypeTypeConverter : { /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => true; /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to diff --git a/src/ServiceLinker/generated/api/Support/ActionType.cs b/src/ServiceLinker/generated/api/Support/ActionType.cs index e857b325a39b..4954168ace78 100644 --- a/src/ServiceLinker/generated/api/Support/ActionType.cs +++ b/src/ServiceLinker/generated/api/Support/ActionType.cs @@ -12,8 +12,12 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support public partial struct ActionType : System.IEquatable { + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType Enable = @"enable"; + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType Internal = @"Internal"; + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType OptOut = @"optOut"; + /// the value for an instance of the Enum. private string _value { get; set; } diff --git a/src/ServiceLinker/generated/api/Support/AllowType.Completer.cs b/src/ServiceLinker/generated/api/Support/AllowType.Completer.cs new file mode 100644 index 000000000000..45d50d808cff --- /dev/null +++ b/src/ServiceLinker/generated/api/Support/AllowType.Completer.cs @@ -0,0 +1,39 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support +{ + + /// Whether to allow firewall rules. + [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowTypeTypeConverter))] + public partial struct AllowType : + System.Management.Automation.IArgumentCompleter + { + + /// + /// Implementations of this function are called by PowerShell to complete arguments. + /// + /// The name of the command that needs argument completion. + /// The name of the parameter that needs argument completion. + /// The (possibly empty) word being completed. + /// The command ast in case it is needed for completion. + /// This parameter is similar to $PSBoundParameters, except that sometimes PowerShell cannot + /// or will not attempt to evaluate an argument, in which case you may need to use commandAst. + /// + /// A collection of completion results, most like with ResultType set to ParameterValue. + /// + public global::System.Collections.Generic.IEnumerable CompleteArgument(global::System.String commandName, global::System.String parameterName, global::System.String wordToComplete, global::System.Management.Automation.Language.CommandAst commandAst, global::System.Collections.IDictionary fakeBoundParameters) + { + if (global::System.String.IsNullOrEmpty(wordToComplete) || "true".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("'true'", "true", global::System.Management.Automation.CompletionResultType.ParameterValue, "true"); + } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "false".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("'false'", "false", global::System.Management.Automation.CompletionResultType.ParameterValue, "false"); + } + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Support/AllowType.TypeConverter.cs b/src/ServiceLinker/generated/api/Support/AllowType.TypeConverter.cs new file mode 100644 index 000000000000..ae47f856a60a --- /dev/null +++ b/src/ServiceLinker/generated/api/Support/AllowType.TypeConverter.cs @@ -0,0 +1,59 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support +{ + + /// Whether to allow firewall rules. + public partial class AllowTypeTypeConverter : + global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => true; + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => AllowType.CreateFrom(sourceValue); + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Support/AllowType.cs b/src/ServiceLinker/generated/api/Support/AllowType.cs new file mode 100644 index 000000000000..17206ee283e5 --- /dev/null +++ b/src/ServiceLinker/generated/api/Support/AllowType.cs @@ -0,0 +1,98 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support +{ + + /// Whether to allow firewall rules. + public partial struct AllowType : + System.IEquatable + { + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType False = @"false"; + + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType True = @"true"; + + /// the value for an instance of the Enum. + private string _value { get; set; } + + /// Creates an instance of the Enum class. + /// the value to create an instance for. + private AllowType(string underlyingValue) + { + this._value = underlyingValue; + } + + /// Conversion from arbitrary object to AllowType + /// the value to convert to an instance of . + internal static object CreateFrom(object value) + { + return new AllowType(global::System.Convert.ToString(value)); + } + + /// Compares values of enum type AllowType + /// the value to compare against this instance. + /// true if the two instances are equal to the same value + public bool Equals(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType e) + { + return _value.Equals(e._value); + } + + /// Compares values of enum type AllowType (override for Object) + /// the value to compare against this instance. + /// true if the two instances are equal to the same value + public override bool Equals(object obj) + { + return obj is AllowType && Equals((AllowType)obj); + } + + /// Returns hashCode for enum AllowType + /// The hashCode of the value + public override int GetHashCode() + { + return this._value.GetHashCode(); + } + + /// Returns string representation for AllowType + /// A string for this value. + public override string ToString() + { + return this._value; + } + + /// Implicit operator to convert string to AllowType + /// the value to convert to an instance of . + + public static implicit operator AllowType(string value) + { + return new AllowType(value); + } + + /// Implicit operator to convert AllowType to string + /// the value to convert to an instance of . + + public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType e) + { + return e._value; + } + + /// Overriding != operator for enum AllowType + /// the value to compare against + /// the value to compare against + /// true if the two instances are not equal to the same value + public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType e1, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType e2) + { + return !e2.Equals(e1); + } + + /// Overriding == operator for enum AllowType + /// the value to compare against + /// the value to compare against + /// true if the two instances are equal to the same value + public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType e1, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType e2) + { + return e2.Equals(e1); + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Support/AuthType.Completer.cs b/src/ServiceLinker/generated/api/Support/AuthType.Completer.cs index 191473586f42..c373a3eafd92 100644 --- a/src/ServiceLinker/generated/api/Support/AuthType.Completer.cs +++ b/src/ServiceLinker/generated/api/Support/AuthType.Completer.cs @@ -46,6 +46,14 @@ public partial struct AuthType : { yield return new global::System.Management.Automation.CompletionResult("'secret'", "secret", global::System.Management.Automation.CompletionResultType.ParameterValue, "secret"); } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "accessKey".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("'accessKey'", "accessKey", global::System.Management.Automation.CompletionResultType.ParameterValue, "accessKey"); + } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "userAccount".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("'userAccount'", "userAccount", global::System.Management.Automation.CompletionResultType.ParameterValue, "userAccount"); + } } } } \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Support/AuthType.TypeConverter.cs b/src/ServiceLinker/generated/api/Support/AuthType.TypeConverter.cs index 9e4f51428da3..e737e03ef164 100644 --- a/src/ServiceLinker/generated/api/Support/AuthType.TypeConverter.cs +++ b/src/ServiceLinker/generated/api/Support/AuthType.TypeConverter.cs @@ -12,32 +12,32 @@ public partial class AuthTypeTypeConverter : { /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => true; /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to diff --git a/src/ServiceLinker/generated/api/Support/AuthType.cs b/src/ServiceLinker/generated/api/Support/AuthType.cs index 2f3ceae88538..143e7ba19b87 100644 --- a/src/ServiceLinker/generated/api/Support/AuthType.cs +++ b/src/ServiceLinker/generated/api/Support/AuthType.cs @@ -10,6 +10,8 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support public partial struct AuthType : System.IEquatable { + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType AccessKey = @"accessKey"; + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType Secret = @"secret"; public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType ServicePrincipalCertificate = @"servicePrincipalCertificate"; @@ -18,6 +20,8 @@ public partial struct AuthType : public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType SystemAssignedIdentity = @"systemAssignedIdentity"; + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType UserAccount = @"userAccount"; + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AuthType UserAssignedIdentity = @"userAssignedIdentity"; /// the value for an instance of the Enum. diff --git a/src/ServiceLinker/generated/api/Support/ClientType.Completer.cs b/src/ServiceLinker/generated/api/Support/ClientType.Completer.cs index 880c8da807e2..413a75b1d9bd 100644 --- a/src/ServiceLinker/generated/api/Support/ClientType.Completer.cs +++ b/src/ServiceLinker/generated/api/Support/ClientType.Completer.cs @@ -66,6 +66,10 @@ public partial struct ClientType : { yield return new global::System.Management.Automation.CompletionResult("'springBoot'", "springBoot", global::System.Management.Automation.CompletionResultType.ParameterValue, "springBoot"); } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "kafka-springBoot".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("'kafka-springBoot'", "kafka-springBoot", global::System.Management.Automation.CompletionResultType.ParameterValue, "kafka-springBoot"); + } } } } \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Support/ClientType.TypeConverter.cs b/src/ServiceLinker/generated/api/Support/ClientType.TypeConverter.cs index fb65b861a4b0..157182c89abb 100644 --- a/src/ServiceLinker/generated/api/Support/ClientType.TypeConverter.cs +++ b/src/ServiceLinker/generated/api/Support/ClientType.TypeConverter.cs @@ -12,32 +12,32 @@ public partial class ClientTypeTypeConverter : { /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => true; /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to diff --git a/src/ServiceLinker/generated/api/Support/ClientType.cs b/src/ServiceLinker/generated/api/Support/ClientType.cs index 8fa58a0ed1e5..923fa91eda47 100644 --- a/src/ServiceLinker/generated/api/Support/ClientType.cs +++ b/src/ServiceLinker/generated/api/Support/ClientType.cs @@ -18,6 +18,8 @@ public partial struct ClientType : public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType Java = @"java"; + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType KafkaSpringBoot = @"kafka-springBoot"; + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType Nodejs = @"nodejs"; public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType None = @"none"; diff --git a/src/ServiceLinker/generated/api/Support/CreatedByType.TypeConverter.cs b/src/ServiceLinker/generated/api/Support/CreatedByType.TypeConverter.cs index ada372229654..25f71dea9add 100644 --- a/src/ServiceLinker/generated/api/Support/CreatedByType.TypeConverter.cs +++ b/src/ServiceLinker/generated/api/Support/CreatedByType.TypeConverter.cs @@ -12,32 +12,32 @@ public partial class CreatedByTypeTypeConverter : { /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => true; /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to diff --git a/src/ServiceLinker/generated/api/Support/DeleteOrUpdateBehavior.Completer.cs b/src/ServiceLinker/generated/api/Support/DeleteOrUpdateBehavior.Completer.cs new file mode 100644 index 000000000000..6e8e946e5a25 --- /dev/null +++ b/src/ServiceLinker/generated/api/Support/DeleteOrUpdateBehavior.Completer.cs @@ -0,0 +1,41 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support +{ + + /// + /// The cleanup behavior to indicate whether clean up operation when resource is deleted or updated + /// + [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehaviorTypeConverter))] + public partial struct DeleteOrUpdateBehavior : + System.Management.Automation.IArgumentCompleter + { + + /// + /// Implementations of this function are called by PowerShell to complete arguments. + /// + /// The name of the command that needs argument completion. + /// The name of the parameter that needs argument completion. + /// The (possibly empty) word being completed. + /// The command ast in case it is needed for completion. + /// This parameter is similar to $PSBoundParameters, except that sometimes PowerShell cannot + /// or will not attempt to evaluate an argument, in which case you may need to use commandAst. + /// + /// A collection of completion results, most like with ResultType set to ParameterValue. + /// + public global::System.Collections.Generic.IEnumerable CompleteArgument(global::System.String commandName, global::System.String parameterName, global::System.String wordToComplete, global::System.Management.Automation.Language.CommandAst commandAst, global::System.Collections.IDictionary fakeBoundParameters) + { + if (global::System.String.IsNullOrEmpty(wordToComplete) || "Default".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("'Default'", "Default", global::System.Management.Automation.CompletionResultType.ParameterValue, "Default"); + } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "ForcedCleanup".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("'ForcedCleanup'", "ForcedCleanup", global::System.Management.Automation.CompletionResultType.ParameterValue, "ForcedCleanup"); + } + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Support/DeleteOrUpdateBehavior.TypeConverter.cs b/src/ServiceLinker/generated/api/Support/DeleteOrUpdateBehavior.TypeConverter.cs new file mode 100644 index 000000000000..9ec0b8a0fc2b --- /dev/null +++ b/src/ServiceLinker/generated/api/Support/DeleteOrUpdateBehavior.TypeConverter.cs @@ -0,0 +1,61 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support +{ + + /// + /// The cleanup behavior to indicate whether clean up operation when resource is deleted or updated + /// + public partial class DeleteOrUpdateBehaviorTypeConverter : + global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => true; + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => DeleteOrUpdateBehavior.CreateFrom(sourceValue); + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Support/DeleteOrUpdateBehavior.cs b/src/ServiceLinker/generated/api/Support/DeleteOrUpdateBehavior.cs new file mode 100644 index 000000000000..54aaeac4261d --- /dev/null +++ b/src/ServiceLinker/generated/api/Support/DeleteOrUpdateBehavior.cs @@ -0,0 +1,100 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support +{ + + /// + /// The cleanup behavior to indicate whether clean up operation when resource is deleted or updated + /// + public partial struct DeleteOrUpdateBehavior : + System.IEquatable + { + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior Default = @"Default"; + + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior ForcedCleanup = @"ForcedCleanup"; + + /// the value for an instance of the Enum. + private string _value { get; set; } + + /// Conversion from arbitrary object to DeleteOrUpdateBehavior + /// the value to convert to an instance of . + internal static object CreateFrom(object value) + { + return new DeleteOrUpdateBehavior(global::System.Convert.ToString(value)); + } + + /// Creates an instance of the Enum class. + /// the value to create an instance for. + private DeleteOrUpdateBehavior(string underlyingValue) + { + this._value = underlyingValue; + } + + /// Compares values of enum type DeleteOrUpdateBehavior + /// the value to compare against this instance. + /// true if the two instances are equal to the same value + public bool Equals(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior e) + { + return _value.Equals(e._value); + } + + /// Compares values of enum type DeleteOrUpdateBehavior (override for Object) + /// the value to compare against this instance. + /// true if the two instances are equal to the same value + public override bool Equals(object obj) + { + return obj is DeleteOrUpdateBehavior && Equals((DeleteOrUpdateBehavior)obj); + } + + /// Returns hashCode for enum DeleteOrUpdateBehavior + /// The hashCode of the value + public override int GetHashCode() + { + return this._value.GetHashCode(); + } + + /// Returns string representation for DeleteOrUpdateBehavior + /// A string for this value. + public override string ToString() + { + return this._value; + } + + /// Implicit operator to convert string to DeleteOrUpdateBehavior + /// the value to convert to an instance of . + + public static implicit operator DeleteOrUpdateBehavior(string value) + { + return new DeleteOrUpdateBehavior(value); + } + + /// Implicit operator to convert DeleteOrUpdateBehavior to string + /// the value to convert to an instance of . + + public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior e) + { + return e._value; + } + + /// Overriding != operator for enum DeleteOrUpdateBehavior + /// the value to compare against + /// the value to compare against + /// true if the two instances are not equal to the same value + public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior e1, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior e2) + { + return !e2.Equals(e1); + } + + /// Overriding == operator for enum DeleteOrUpdateBehavior + /// the value to compare against + /// the value to compare against + /// true if the two instances are equal to the same value + public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior e1, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior e2) + { + return e2.Equals(e1); + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Support/DryrunPrerequisiteResultType.Completer.cs b/src/ServiceLinker/generated/api/Support/DryrunPrerequisiteResultType.Completer.cs new file mode 100644 index 000000000000..fedc33f4f6ef --- /dev/null +++ b/src/ServiceLinker/generated/api/Support/DryrunPrerequisiteResultType.Completer.cs @@ -0,0 +1,39 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support +{ + + /// The type of dryrun result. + [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPrerequisiteResultTypeTypeConverter))] + public partial struct DryrunPrerequisiteResultType : + System.Management.Automation.IArgumentCompleter + { + + /// + /// Implementations of this function are called by PowerShell to complete arguments. + /// + /// The name of the command that needs argument completion. + /// The name of the parameter that needs argument completion. + /// The (possibly empty) word being completed. + /// The command ast in case it is needed for completion. + /// This parameter is similar to $PSBoundParameters, except that sometimes PowerShell cannot + /// or will not attempt to evaluate an argument, in which case you may need to use commandAst. + /// + /// A collection of completion results, most like with ResultType set to ParameterValue. + /// + public global::System.Collections.Generic.IEnumerable CompleteArgument(global::System.String commandName, global::System.String parameterName, global::System.String wordToComplete, global::System.Management.Automation.Language.CommandAst commandAst, global::System.Collections.IDictionary fakeBoundParameters) + { + if (global::System.String.IsNullOrEmpty(wordToComplete) || "basicError".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("'basicError'", "basicError", global::System.Management.Automation.CompletionResultType.ParameterValue, "basicError"); + } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "permissionsMissing".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("'permissionsMissing'", "permissionsMissing", global::System.Management.Automation.CompletionResultType.ParameterValue, "permissionsMissing"); + } + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Support/DryrunPrerequisiteResultType.TypeConverter.cs b/src/ServiceLinker/generated/api/Support/DryrunPrerequisiteResultType.TypeConverter.cs new file mode 100644 index 000000000000..6ad22da0fc20 --- /dev/null +++ b/src/ServiceLinker/generated/api/Support/DryrunPrerequisiteResultType.TypeConverter.cs @@ -0,0 +1,59 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support +{ + + /// The type of dryrun result. + public partial class DryrunPrerequisiteResultTypeTypeConverter : + global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => true; + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => DryrunPrerequisiteResultType.CreateFrom(sourceValue); + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Support/DryrunPrerequisiteResultType.cs b/src/ServiceLinker/generated/api/Support/DryrunPrerequisiteResultType.cs new file mode 100644 index 000000000000..4b4b6e5e6f9e --- /dev/null +++ b/src/ServiceLinker/generated/api/Support/DryrunPrerequisiteResultType.cs @@ -0,0 +1,102 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support +{ + + /// The type of dryrun result. + public partial struct DryrunPrerequisiteResultType : + System.IEquatable + { + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPrerequisiteResultType BasicError = @"basicError"; + + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPrerequisiteResultType PermissionsMissing = @"permissionsMissing"; + + /// + /// the value for an instance of the Enum. + /// + private string _value { get; set; } + + /// Conversion from arbitrary object to DryrunPrerequisiteResultType + /// the value to convert to an instance of . + internal static object CreateFrom(object value) + { + return new DryrunPrerequisiteResultType(global::System.Convert.ToString(value)); + } + + /// + /// Creates an instance of the Enum class. + /// + /// the value to create an instance for. + private DryrunPrerequisiteResultType(string underlyingValue) + { + this._value = underlyingValue; + } + + /// Compares values of enum type DryrunPrerequisiteResultType + /// the value to compare against this instance. + /// true if the two instances are equal to the same value + public bool Equals(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPrerequisiteResultType e) + { + return _value.Equals(e._value); + } + + /// Compares values of enum type DryrunPrerequisiteResultType (override for Object) + /// the value to compare against this instance. + /// true if the two instances are equal to the same value + public override bool Equals(object obj) + { + return obj is DryrunPrerequisiteResultType && Equals((DryrunPrerequisiteResultType)obj); + } + + /// Returns hashCode for enum DryrunPrerequisiteResultType + /// The hashCode of the value + public override int GetHashCode() + { + return this._value.GetHashCode(); + } + + /// Returns string representation for DryrunPrerequisiteResultType + /// A string for this value. + public override string ToString() + { + return this._value; + } + + /// Implicit operator to convert string to DryrunPrerequisiteResultType + /// the value to convert to an instance of . + + public static implicit operator DryrunPrerequisiteResultType(string value) + { + return new DryrunPrerequisiteResultType(value); + } + + /// Implicit operator to convert DryrunPrerequisiteResultType to string + /// the value to convert to an instance of . + + public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPrerequisiteResultType e) + { + return e._value; + } + + /// Overriding != operator for enum DryrunPrerequisiteResultType + /// the value to compare against + /// the value to compare against + /// true if the two instances are not equal to the same value + public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPrerequisiteResultType e1, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPrerequisiteResultType e2) + { + return !e2.Equals(e1); + } + + /// Overriding == operator for enum DryrunPrerequisiteResultType + /// the value to compare against + /// the value to compare against + /// true if the two instances are equal to the same value + public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPrerequisiteResultType e1, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPrerequisiteResultType e2) + { + return e2.Equals(e1); + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Support/DryrunPreviewOperationType.Completer.cs b/src/ServiceLinker/generated/api/Support/DryrunPreviewOperationType.Completer.cs new file mode 100644 index 000000000000..cdf0b826c34a --- /dev/null +++ b/src/ServiceLinker/generated/api/Support/DryrunPreviewOperationType.Completer.cs @@ -0,0 +1,43 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support +{ + + /// The operation type + [System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPreviewOperationTypeTypeConverter))] + public partial struct DryrunPreviewOperationType : + System.Management.Automation.IArgumentCompleter + { + + /// + /// Implementations of this function are called by PowerShell to complete arguments. + /// + /// The name of the command that needs argument completion. + /// The name of the parameter that needs argument completion. + /// The (possibly empty) word being completed. + /// The command ast in case it is needed for completion. + /// This parameter is similar to $PSBoundParameters, except that sometimes PowerShell cannot + /// or will not attempt to evaluate an argument, in which case you may need to use commandAst. + /// + /// A collection of completion results, most like with ResultType set to ParameterValue. + /// + public global::System.Collections.Generic.IEnumerable CompleteArgument(global::System.String commandName, global::System.String parameterName, global::System.String wordToComplete, global::System.Management.Automation.Language.CommandAst commandAst, global::System.Collections.IDictionary fakeBoundParameters) + { + if (global::System.String.IsNullOrEmpty(wordToComplete) || "configConnection".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("'configConnection'", "configConnection", global::System.Management.Automation.CompletionResultType.ParameterValue, "configConnection"); + } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "configNetwork".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("'configNetwork'", "configNetwork", global::System.Management.Automation.CompletionResultType.ParameterValue, "configNetwork"); + } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "configAuth".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("'configAuth'", "configAuth", global::System.Management.Automation.CompletionResultType.ParameterValue, "configAuth"); + } + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Support/DryrunPreviewOperationType.TypeConverter.cs b/src/ServiceLinker/generated/api/Support/DryrunPreviewOperationType.TypeConverter.cs new file mode 100644 index 000000000000..03d3d90a49f7 --- /dev/null +++ b/src/ServiceLinker/generated/api/Support/DryrunPreviewOperationType.TypeConverter.cs @@ -0,0 +1,59 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support +{ + + /// The operation type + public partial class DryrunPreviewOperationTypeTypeConverter : + global::System.Management.Automation.PSTypeConverter + { + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => true; + + /// + /// Determines if the converter can convert the parameter to the parameter. + /// + /// the to convert from + /// the to convert to + /// + /// true if the converter can convert the parameter to the parameter, otherwise false. + /// + public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; + + /// + /// Converts the parameter to the parameter using and + /// + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// + /// an instance of , or null if there is no suitable conversion. + /// + public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => DryrunPreviewOperationType.CreateFrom(sourceValue); + + /// NotImplemented -- this will return null + /// the to convert from + /// the to convert to + /// not used by this TypeConverter. + /// when set to true, will ignore the case when converting. + /// will always return null. + public override object ConvertTo(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => null; + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Support/DryrunPreviewOperationType.cs b/src/ServiceLinker/generated/api/Support/DryrunPreviewOperationType.cs new file mode 100644 index 000000000000..04aa732ef609 --- /dev/null +++ b/src/ServiceLinker/generated/api/Support/DryrunPreviewOperationType.cs @@ -0,0 +1,102 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support +{ + + /// The operation type + public partial struct DryrunPreviewOperationType : + System.IEquatable + { + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPreviewOperationType ConfigAuth = @"configAuth"; + + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPreviewOperationType ConfigConnection = @"configConnection"; + + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPreviewOperationType ConfigNetwork = @"configNetwork"; + + /// + /// the value for an instance of the Enum. + /// + private string _value { get; set; } + + /// Conversion from arbitrary object to DryrunPreviewOperationType + /// the value to convert to an instance of . + internal static object CreateFrom(object value) + { + return new DryrunPreviewOperationType(global::System.Convert.ToString(value)); + } + + /// Creates an instance of the Enum class. + /// the value to create an instance for. + private DryrunPreviewOperationType(string underlyingValue) + { + this._value = underlyingValue; + } + + /// Compares values of enum type DryrunPreviewOperationType + /// the value to compare against this instance. + /// true if the two instances are equal to the same value + public bool Equals(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPreviewOperationType e) + { + return _value.Equals(e._value); + } + + /// Compares values of enum type DryrunPreviewOperationType (override for Object) + /// the value to compare against this instance. + /// true if the two instances are equal to the same value + public override bool Equals(object obj) + { + return obj is DryrunPreviewOperationType && Equals((DryrunPreviewOperationType)obj); + } + + /// Returns hashCode for enum DryrunPreviewOperationType + /// The hashCode of the value + public override int GetHashCode() + { + return this._value.GetHashCode(); + } + + /// Returns string representation for DryrunPreviewOperationType + /// A string for this value. + public override string ToString() + { + return this._value; + } + + /// Implicit operator to convert string to DryrunPreviewOperationType + /// the value to convert to an instance of . + + public static implicit operator DryrunPreviewOperationType(string value) + { + return new DryrunPreviewOperationType(value); + } + + /// Implicit operator to convert DryrunPreviewOperationType to string + /// the value to convert to an instance of . + + public static implicit operator string(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPreviewOperationType e) + { + return e._value; + } + + /// Overriding != operator for enum DryrunPreviewOperationType + /// the value to compare against + /// the value to compare against + /// true if the two instances are not equal to the same value + public static bool operator !=(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPreviewOperationType e1, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPreviewOperationType e2) + { + return !e2.Equals(e1); + } + + /// Overriding == operator for enum DryrunPreviewOperationType + /// the value to compare against + /// the value to compare against + /// true if the two instances are equal to the same value + public static bool operator ==(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPreviewOperationType e1, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DryrunPreviewOperationType e2) + { + return e2.Equals(e1); + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Support/Origin.TypeConverter.cs b/src/ServiceLinker/generated/api/Support/Origin.TypeConverter.cs index 15647ad1df1d..55bd9ec1c2e3 100644 --- a/src/ServiceLinker/generated/api/Support/Origin.TypeConverter.cs +++ b/src/ServiceLinker/generated/api/Support/Origin.TypeConverter.cs @@ -15,32 +15,32 @@ public partial class OriginTypeConverter : { /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => true; /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to diff --git a/src/ServiceLinker/generated/api/Support/SecretType.TypeConverter.cs b/src/ServiceLinker/generated/api/Support/SecretType.TypeConverter.cs index 6b8418748218..e5fd49327af5 100644 --- a/src/ServiceLinker/generated/api/Support/SecretType.TypeConverter.cs +++ b/src/ServiceLinker/generated/api/Support/SecretType.TypeConverter.cs @@ -12,32 +12,32 @@ public partial class SecretTypeTypeConverter : { /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => true; /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to diff --git a/src/ServiceLinker/generated/api/Support/TargetServiceType.Completer.cs b/src/ServiceLinker/generated/api/Support/TargetServiceType.Completer.cs index 60a2775391a7..ce836e403f0a 100644 --- a/src/ServiceLinker/generated/api/Support/TargetServiceType.Completer.cs +++ b/src/ServiceLinker/generated/api/Support/TargetServiceType.Completer.cs @@ -38,6 +38,10 @@ public partial struct TargetServiceType : { yield return new global::System.Management.Automation.CompletionResult("'ConfluentSchemaRegistry'", "ConfluentSchemaRegistry", global::System.Management.Automation.CompletionResultType.ParameterValue, "ConfluentSchemaRegistry"); } + if (global::System.String.IsNullOrEmpty(wordToComplete) || "SelfHostedServer".StartsWith(wordToComplete, global::System.StringComparison.InvariantCultureIgnoreCase)) + { + yield return new global::System.Management.Automation.CompletionResult("'SelfHostedServer'", "SelfHostedServer", global::System.Management.Automation.CompletionResultType.ParameterValue, "SelfHostedServer"); + } } } } \ No newline at end of file diff --git a/src/ServiceLinker/generated/api/Support/TargetServiceType.TypeConverter.cs b/src/ServiceLinker/generated/api/Support/TargetServiceType.TypeConverter.cs index fa407bf174e8..0c926650b84d 100644 --- a/src/ServiceLinker/generated/api/Support/TargetServiceType.TypeConverter.cs +++ b/src/ServiceLinker/generated/api/Support/TargetServiceType.TypeConverter.cs @@ -12,32 +12,32 @@ public partial class TargetServiceTypeTypeConverter : { /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => true; /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to diff --git a/src/ServiceLinker/generated/api/Support/TargetServiceType.cs b/src/ServiceLinker/generated/api/Support/TargetServiceType.cs index b807186ca840..b38620d3ab95 100644 --- a/src/ServiceLinker/generated/api/Support/TargetServiceType.cs +++ b/src/ServiceLinker/generated/api/Support/TargetServiceType.cs @@ -16,6 +16,8 @@ public partial struct TargetServiceType : public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType ConfluentSchemaRegistry = @"ConfluentSchemaRegistry"; + public static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.TargetServiceType SelfHostedServer = @"SelfHostedServer"; + /// the value for an instance of the Enum. private string _value { get; set; } diff --git a/src/ServiceLinker/generated/api/Support/VNetSolutionType.TypeConverter.cs b/src/ServiceLinker/generated/api/Support/VNetSolutionType.TypeConverter.cs index 29bb25ac65b8..99c3739aae9a 100644 --- a/src/ServiceLinker/generated/api/Support/VNetSolutionType.TypeConverter.cs +++ b/src/ServiceLinker/generated/api/Support/VNetSolutionType.TypeConverter.cs @@ -12,32 +12,32 @@ public partial class VNetSolutionTypeTypeConverter : { /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => true; /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to diff --git a/src/ServiceLinker/generated/api/Support/ValidationResultStatus.TypeConverter.cs b/src/ServiceLinker/generated/api/Support/ValidationResultStatus.TypeConverter.cs index dec4fbd31134..daefe9748925 100644 --- a/src/ServiceLinker/generated/api/Support/ValidationResultStatus.TypeConverter.cs +++ b/src/ServiceLinker/generated/api/Support/ValidationResultStatus.TypeConverter.cs @@ -12,32 +12,32 @@ public partial class ValidationResultStatusTypeConverter : { /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => true; /// - /// Determines if the converter can convert the parameter to the - /// parameter. + /// Determines if the converter can convert the parameter to the parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the - /// parameter, otherwise false. + /// true if the converter can convert the parameter to the parameter, otherwise false. /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to diff --git a/src/ServiceLinker/generated/cmdlets/GetAzServiceLinkerConfigurationName_List.cs b/src/ServiceLinker/generated/cmdlets/GetAzServiceLinkerConfigurationName_List.cs new file mode 100644 index 000000000000..96f42b7f65a1 --- /dev/null +++ b/src/ServiceLinker/generated/cmdlets/GetAzServiceLinkerConfigurationName_List.cs @@ -0,0 +1,406 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + using System; + + /// + /// Lists the configuration names generated by Service Connector for all target, client types, auth types. + /// + /// + /// [OpenAPI] List=>GET:"/providers/Microsoft.ServiceLinker/configurationNames" + /// + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceLinkerConfigurationName_List")] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItem))] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Description(@"Lists the configuration names generated by Service Connector for all target, client types, auth types.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Generated] + public partial class GetAzServiceLinkerConfigurationName_List : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// A flag to tell whether it is the first onOK call. + private bool _isFirst = true; + + /// Link to retrieve next page. + private string _nextLink; + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ServiceLinker Client => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// Backing field for property. + private string _filter; + + /// OData filter options. + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "OData filter options.")] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"OData filter options.", + SerializedName = @"$filter", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Query)] + public string Filter { get => this._filter; set => this._filter = value; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _skipToken; + + /// OData skipToken option for pagination. + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "OData skipToken option for pagination.")] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"OData skipToken option for pagination.", + SerializedName = @"$skipToken", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Query)] + public string SkipToken { get => this._skipToken; set => this._skipToken = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameResult + /// from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + var telemetryId = Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.GetTelemetryId.Invoke(); + if (telemetryId != "" && telemetryId != "internal") + { + __correlationId = telemetryId; + } + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public GetAzServiceLinkerConfigurationName_List() + { + + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Information: + { + var data = messageData(); + WriteInformation(data.Message, new string[]{}); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token); + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.ConfigurationNamesList(this.InvocationInformation.BoundParameters.ContainsKey("Filter") ? Filter : null, this.InvocationInformation.BoundParameters.ContainsKey("SkipToken") ? SkipToken : null, onOk, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Filter=this.InvocationInformation.BoundParameters.ContainsKey("Filter") ? Filter : null,SkipToken=this.InvocationInformation.BoundParameters.ContainsKey("SkipToken") ? SkipToken : null}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Filter=this.InvocationInformation.BoundParameters.ContainsKey("Filter") ? Filter : null, SkipToken=this.InvocationInformation.BoundParameters.ContainsKey("SkipToken") ? SkipToken : null }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { Filter=this.InvocationInformation.BoundParameters.ContainsKey("Filter") ? Filter : null, SkipToken=this.InvocationInformation.BoundParameters.ContainsKey("SkipToken") ? SkipToken : null }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameResult + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // response should be returning an array of some kind. +Pageable + // pageable / value / nextLink + var result = await response; + WriteObject(result.Value,true); + _nextLink = result.NextLink; + if (_isFirst) + { + _isFirst = false; + while (_nextLink != null) + { + if (responseMessage.RequestMessage is System.Net.Http.HttpRequestMessage requestMessage ) + { + requestMessage = requestMessage.Clone(new global::System.Uri( _nextLink ),Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Method.Get ); + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.FollowingNextLink); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.ConfigurationNamesList_Call(requestMessage, onOk, onDefault, this, Pipeline); + } + } + } + } + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/cmdlets/GetAzServiceLinkerConfiguration_List.cs b/src/ServiceLinker/generated/cmdlets/GetAzServiceLinkerConfiguration_List.cs index b0b6c76b9647..ae1eb9992583 100644 --- a/src/ServiceLinker/generated/cmdlets/GetAzServiceLinkerConfiguration_List.cs +++ b/src/ServiceLinker/generated/cmdlets/GetAzServiceLinkerConfiguration_List.cs @@ -8,14 +8,14 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Cmdlets using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; using System; - /// list source configurations for a linker. + /// list source configurations for a Linker. /// /// [OpenAPI] ListConfigurations=>POST:"/{resourceUri}/providers/Microsoft.ServiceLinker/linkers/{linkerName}/listConfigurations" /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceLinkerConfiguration_List", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfiguration))] - [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Description(@"list source configurations for a linker.")] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration))] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Description(@"list source configurations for a Linker.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Generated] public partial class GetAzServiceLinkerConfiguration_List : global::System.Management.Automation.PSCmdlet, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener @@ -130,24 +130,24 @@ public partial class GetAzServiceLinkerConfiguration_List : global::System.Manag /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a from the remote call + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a from the remote call + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationResult + /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -323,12 +323,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a from the remote call + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -345,7 +345,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceUri=ResourceUri, LinkerName=LinkerName }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -363,12 +363,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a from the remote call + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationResult + /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/ServiceLinker/generated/cmdlets/GetAzServiceLinkerDryrun_Get.cs b/src/ServiceLinker/generated/cmdlets/GetAzServiceLinkerDryrun_Get.cs new file mode 100644 index 000000000000..9e28bff7b8dd --- /dev/null +++ b/src/ServiceLinker/generated/cmdlets/GetAzServiceLinkerDryrun_Get.cs @@ -0,0 +1,385 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + using System; + + /// get a dryrun job + /// + /// [OpenAPI] GetDryrun=>GET:"/{resourceUri}/providers/Microsoft.ServiceLinker/dryruns/{dryrunName}" + /// + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.InternalExport] + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceLinkerDryrun_Get")] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource))] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Description(@"get a dryrun job")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Generated] + public partial class GetAzServiceLinkerDryrun_Get : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ServiceLinker Client => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// Backing field for property. + private string _dryrunName; + + /// The name of dryrun. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of dryrun.")] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of dryrun.", + SerializedName = @"dryrunName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Path)] + public string DryrunName { get => this._dryrunName; set => this._dryrunName = value; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _resourceUri; + + /// + /// The fully qualified Azure Resource manager identifier of the resource to be connected. + /// + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The fully qualified Azure Resource manager identifier of the resource to be connected.")] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The fully qualified Azure Resource manager identifier of the resource to be connected.", + SerializedName = @"resourceUri", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Path)] + public string ResourceUri { get => this._resourceUri; set => this._resourceUri = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource + /// from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + var telemetryId = Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.GetTelemetryId.Invoke(); + if (telemetryId != "" && telemetryId != "internal") + { + __correlationId = telemetryId; + } + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public GetAzServiceLinkerDryrun_Get() + { + + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Information: + { + var data = messageData(); + WriteInformation(data.Message, new string[]{}); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token); + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.LinkersGetDryrun(ResourceUri, DryrunName, onOk, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceUri=ResourceUri,DryrunName=DryrunName}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceUri=ResourceUri, DryrunName=DryrunName }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceUri=ResourceUri, DryrunName=DryrunName }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource + WriteObject((await response)); + } + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/cmdlets/GetAzServiceLinkerDryrun_GetViaIdentity.cs b/src/ServiceLinker/generated/cmdlets/GetAzServiceLinkerDryrun_GetViaIdentity.cs new file mode 100644 index 000000000000..e8ed4cba9075 --- /dev/null +++ b/src/ServiceLinker/generated/cmdlets/GetAzServiceLinkerDryrun_GetViaIdentity.cs @@ -0,0 +1,379 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + using System; + + /// get a dryrun job + /// + /// [OpenAPI] GetDryrun=>GET:"/{resourceUri}/providers/Microsoft.ServiceLinker/dryruns/{dryrunName}" + /// + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.InternalExport] + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceLinkerDryrun_GetViaIdentity")] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource))] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Description(@"get a dryrun job")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Generated] + public partial class GetAzServiceLinkerDryrun_GetViaIdentity : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ServiceLinker Client => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity _inputObject; + + /// Identity Parameter + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Identity Parameter", ValueFromPipeline = true)] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Path)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity InputObject { get => this._inputObject; set => this._inputObject = value; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource + /// from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + var telemetryId = Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.GetTelemetryId.Invoke(); + if (telemetryId != "" && telemetryId != "internal") + { + __correlationId = telemetryId; + } + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public GetAzServiceLinkerDryrun_GetViaIdentity() + { + + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Information: + { + var data = messageData(); + WriteInformation(data.Message, new string[]{}); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token); + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + if (InputObject?.Id != null) + { + await this.Client.LinkersGetDryrunViaIdentity(InputObject.Id, onOk, onDefault, this, Pipeline); + } + else + { + // try to call with PATH parameters from Input Object + if (null == InputObject.ResourceUri) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.ResourceUri"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.DryrunName) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.DryrunName"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + await this.Client.LinkersGetDryrun(InputObject.ResourceUri ?? null, InputObject.DryrunName ?? null, onOk, onDefault, this, Pipeline); + } + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource + WriteObject((await response)); + } + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/cmdlets/GetAzServiceLinkerDryrun_List.cs b/src/ServiceLinker/generated/cmdlets/GetAzServiceLinkerDryrun_List.cs new file mode 100644 index 000000000000..ca9b784c5ea9 --- /dev/null +++ b/src/ServiceLinker/generated/cmdlets/GetAzServiceLinkerDryrun_List.cs @@ -0,0 +1,393 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + using System; + + /// list dryrun jobs + /// + /// [OpenAPI] ListDryrun=>GET:"/{resourceUri}/providers/Microsoft.ServiceLinker/dryruns" + /// + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.InternalExport] + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceLinkerDryrun_List")] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource))] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Description(@"list dryrun jobs")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Generated] + public partial class GetAzServiceLinkerDryrun_List : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// A flag to tell whether it is the first onOK call. + private bool _isFirst = true; + + /// Link to retrieve next page. + private string _nextLink; + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ServiceLinker Client => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _resourceUri; + + /// + /// The fully qualified Azure Resource manager identifier of the resource to be connected. + /// + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The fully qualified Azure Resource manager identifier of the resource to be connected.")] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The fully qualified Azure Resource manager identifier of the resource to be connected.", + SerializedName = @"resourceUri", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Path)] + public string ResourceUri { get => this._resourceUri; set => this._resourceUri = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunList + /// from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + var telemetryId = Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.GetTelemetryId.Invoke(); + if (telemetryId != "" && telemetryId != "internal") + { + __correlationId = telemetryId; + } + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public GetAzServiceLinkerDryrun_List() + { + + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Information: + { + var data = messageData(); + WriteInformation(data.Message, new string[]{}); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token); + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.LinkersListDryrun(ResourceUri, onOk, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceUri=ResourceUri}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceUri=ResourceUri }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceUri=ResourceUri }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunList + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // response should be returning an array of some kind. +Pageable + // pageable / value / nextLink + var result = await response; + WriteObject(result.Value,true); + _nextLink = result.NextLink; + if (_isFirst) + { + _isFirst = false; + while (_nextLink != null) + { + if (responseMessage.RequestMessage is System.Net.Http.HttpRequestMessage requestMessage ) + { + requestMessage = requestMessage.Clone(new global::System.Uri( _nextLink ),Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Method.Get ); + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.FollowingNextLink); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.LinkersListDryrun_Call(requestMessage, onOk, onDefault, this, Pipeline); + } + } + } + } + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/cmdlets/GetAzServiceLinkerOperation_List.cs b/src/ServiceLinker/generated/cmdlets/GetAzServiceLinkerOperation_List.cs index c906cf1f0e10..330383124988 100644 --- a/src/ServiceLinker/generated/cmdlets/GetAzServiceLinkerOperation_List.cs +++ b/src/ServiceLinker/generated/cmdlets/GetAzServiceLinkerOperation_List.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceLinkerOperation_List")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperation))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperation))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Description(@"Lists the available ServiceLinker REST API operations.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Generated] public partial class GetAzServiceLinkerOperation_List : global::System.Management.Automation.PSCmdlet, @@ -106,24 +106,24 @@ public partial class GetAzServiceLinkerOperation_List : global::System.Managemen /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a from the remote call + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a from the remote call + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationListResult + /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -296,12 +296,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a from the remote call + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -318,7 +318,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -336,12 +336,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a from the remote call + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperationListResult + /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/ServiceLinker/generated/cmdlets/GetAzServiceLinker_Get.cs b/src/ServiceLinker/generated/cmdlets/GetAzServiceLinker_Get.cs index e55e7c9447bc..da1b6a47553e 100644 --- a/src/ServiceLinker/generated/cmdlets/GetAzServiceLinker_Get.cs +++ b/src/ServiceLinker/generated/cmdlets/GetAzServiceLinker_Get.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceLinker_Get")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Description(@"Returns Linker resource for a given name.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Generated] public partial class GetAzServiceLinker_Get : global::System.Management.Automation.PSCmdlet, @@ -131,24 +131,24 @@ public partial class GetAzServiceLinker_Get : global::System.Management.Automati /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a from the remote call + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a from the remote call + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource + /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -321,12 +321,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a from the remote call + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -343,7 +343,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceUri=ResourceUri, Name=Name }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -361,12 +361,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a from the remote call + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource + /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -378,7 +378,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource WriteObject((await response)); } } diff --git a/src/ServiceLinker/generated/cmdlets/GetAzServiceLinker_GetViaIdentity.cs b/src/ServiceLinker/generated/cmdlets/GetAzServiceLinker_GetViaIdentity.cs index b3189f586e0d..eac2921917c7 100644 --- a/src/ServiceLinker/generated/cmdlets/GetAzServiceLinker_GetViaIdentity.cs +++ b/src/ServiceLinker/generated/cmdlets/GetAzServiceLinker_GetViaIdentity.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Cmdlets /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceLinker_GetViaIdentity")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource))] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource))] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Description(@"Returns Linker resource for a given name.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Generated] public partial class GetAzServiceLinker_GetViaIdentity : global::System.Management.Automation.PSCmdlet, @@ -108,24 +108,24 @@ public partial class GetAzServiceLinker_GetViaIdentity : global::System.Manageme /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a from the remote call + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a from the remote call + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource + /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -314,12 +314,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a from the remote call + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -336,7 +336,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -354,12 +354,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a from the remote call + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource + /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -371,7 +371,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource WriteObject((await response)); } } diff --git a/src/ServiceLinker/generated/cmdlets/GetAzServiceLinker_List.cs b/src/ServiceLinker/generated/cmdlets/GetAzServiceLinker_List.cs index 03247cffc07e..df750b5162dc 100644 --- a/src/ServiceLinker/generated/cmdlets/GetAzServiceLinker_List.cs +++ b/src/ServiceLinker/generated/cmdlets/GetAzServiceLinker_List.cs @@ -8,14 +8,17 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Cmdlets using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; using System; - /// Returns list of Linkers which connects to the resource. + /// + /// Returns list of Linkers which connects to the resource. which supports to config both application and target service during + /// the resource provision. + /// /// /// [OpenAPI] List=>GET:"/{resourceUri}/providers/Microsoft.ServiceLinker/linkers" /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzServiceLinker_List")] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource))] - [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Description(@"Returns list of Linkers which connects to the resource.")] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource))] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Description(@"Returns list of Linkers which connects to the resource. which supports to config both application and target service during the resource provision.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Generated] public partial class GetAzServiceLinker_List : global::System.Management.Automation.PSCmdlet, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener @@ -122,24 +125,24 @@ public partial class GetAzServiceLinker_List : global::System.Management.Automat /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a from the remote call + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a from the remote call + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IResourceList + /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -312,12 +315,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a from the remote call + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -334,7 +337,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceUri=ResourceUri }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -352,12 +355,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a from the remote call + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IResourceList + /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { diff --git a/src/ServiceLinker/generated/cmdlets/NewAzServiceLinkerConfiguration_Generate.cs b/src/ServiceLinker/generated/cmdlets/NewAzServiceLinkerConfiguration_Generate.cs new file mode 100644 index 000000000000..f87d4e4683a8 --- /dev/null +++ b/src/ServiceLinker/generated/cmdlets/NewAzServiceLinkerConfiguration_Generate.cs @@ -0,0 +1,404 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + using System; + + /// Generate configurations for a Linker. + /// + /// [OpenAPI] GenerateConfigurations=>POST:"/{resourceUri}/providers/Microsoft.ServiceLinker/linkers/{linkerName}/generateConfigurations" + /// + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.InternalExport] + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzServiceLinkerConfiguration_Generate", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration))] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Description(@"Generate configurations for a Linker.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Generated] + public partial class NewAzServiceLinkerConfiguration_Generate : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ServiceLinker Client => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// Backing field for property. + private string _linkerName; + + /// The name Linker resource. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name Linker resource.")] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name Linker resource.", + SerializedName = @"linkerName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Path)] + public string LinkerName { get => this._linkerName; set => this._linkerName = value; } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfo _parameter; + + /// + /// The configuration information, used to generate configurations or save to applications + /// + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The configuration information, used to generate configurations or save to applications", ValueFromPipeline = true)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The configuration information, used to generate configurations or save to applications", + SerializedName = @"parameters", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfo) })] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfo Parameter { get => this._parameter; set => this._parameter = value; } + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _resourceUri; + + /// + /// The fully qualified Azure Resource manager identifier of the resource to be connected. + /// + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The fully qualified Azure Resource manager identifier of the resource to be connected.")] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The fully qualified Azure Resource manager identifier of the resource to be connected.", + SerializedName = @"resourceUri", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Path)] + public string ResourceUri { get => this._resourceUri; set => this._resourceUri = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationResult + /// from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + var telemetryId = Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.GetTelemetryId.Invoke(); + if (telemetryId != "" && telemetryId != "internal") + { + __correlationId = telemetryId; + } + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Information: + { + var data = messageData(); + WriteInformation(data.Message, new string[]{}); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public NewAzServiceLinkerConfiguration_Generate() + { + + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'LinkersGenerateConfigurations' operation")) + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token); + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.LinkersGenerateConfigurations(ResourceUri, LinkerName, Parameter, onOk, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceUri=ResourceUri,LinkerName=LinkerName,body=Parameter}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceUri=ResourceUri, LinkerName=LinkerName, body=Parameter }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceUri=ResourceUri, LinkerName=LinkerName, body=Parameter }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationResult + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // response should be returning an array of some kind. +Pageable + // nested-array / configurations / + WriteObject((await response).Configuration, true); + } + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/cmdlets/NewAzServiceLinkerConfiguration_GenerateExpanded.cs b/src/ServiceLinker/generated/cmdlets/NewAzServiceLinkerConfiguration_GenerateExpanded.cs new file mode 100644 index 000000000000..a9d428ee54f9 --- /dev/null +++ b/src/ServiceLinker/generated/cmdlets/NewAzServiceLinkerConfiguration_GenerateExpanded.cs @@ -0,0 +1,454 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + using System; + + /// Generate configurations for a Linker. + /// + /// [OpenAPI] GenerateConfigurations=>POST:"/{resourceUri}/providers/Microsoft.ServiceLinker/linkers/{linkerName}/generateConfigurations" + /// + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.InternalExport] + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzServiceLinkerConfiguration_GenerateExpanded", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration))] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Description(@"Generate configurations for a Linker.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Generated] + public partial class NewAzServiceLinkerConfiguration_GenerateExpanded : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// + /// The configuration information, used to generate configurations or save to applications + /// + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfo _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationInfo(); + + /// + /// Optional, indicate whether to apply configurations on source application. If enable, generate configurations and applied + /// to the source application. Default is enable. If optOut, no configuration change will be made on source. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Optional, indicate whether to apply configurations on source application. If enable, generate configurations and applied to the source application. Default is enable. If optOut, no configuration change will be made on source.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Optional, indicate whether to apply configurations on source application. If enable, generate configurations and applied to the source application. Default is enable. If optOut, no configuration change will be made on source.", + SerializedName = @"action", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType) })] + [global::System.Management.Automation.ArgumentCompleter(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType))] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType Action { get => _parametersBody.Action ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType)""); set => _parametersBody.Action = value; } + + /// + /// A dictionary of additional configurations to be added. Service will auto generate a set of basic configurations and this + /// property is to full fill more customized configurations + /// + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ExportAs(typeof(global::System.Collections.Hashtable))] + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "A dictionary of additional configurations to be added. Service will auto generate a set of basic configurations and this property is to full fill more customized configurations")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"A dictionary of additional configurations to be added. Service will auto generate a set of basic configurations and this property is to full fill more customized configurations", + SerializedName = @"additionalConfigurations", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations) })] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations AdditionalConfiguration { get => _parametersBody.AdditionalConfiguration ?? null /* object */; set => _parametersBody.AdditionalConfiguration = value; } + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ServiceLinker Client => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.ClientAPI; + + /// + /// Optional. A dictionary of default key name and customized key name mapping. If not specified, default key name will be + /// used for generate configurations + /// + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ExportAs(typeof(global::System.Collections.Hashtable))] + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Optional. A dictionary of default key name and customized key name mapping. If not specified, default key name will be used for generate configurations")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Optional. A dictionary of default key name and customized key name mapping. If not specified, default key name will be used for generate configurations", + SerializedName = @"customizedKeys", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys) })] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys CustomizedKey { get => _parametersBody.CustomizedKey ?? null /* object */; set => _parametersBody.CustomizedKey = value; } + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Indicates whether to clean up previous operation when Linker is updating or deleting")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Indicates whether to clean up previous operation when Linker is updating or deleting", + SerializedName = @"deleteOrUpdateBehavior", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.DoNotExport] + [global::System.Management.Automation.ArgumentCompleter(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior))] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior DeleteOrUpdateBehavior { get => _parametersBody.DeleteOrUpdateBehavior ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior)""); set => _parametersBody.DeleteOrUpdateBehavior = value; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// Backing field for property. + private string _linkerName; + + /// The name Linker resource. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name Linker resource.")] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name Linker resource.", + SerializedName = @"linkerName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Path)] + public string LinkerName { get => this._linkerName; set => this._linkerName = value; } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _resourceUri; + + /// + /// The fully qualified Azure Resource manager identifier of the resource to be connected. + /// + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The fully qualified Azure Resource manager identifier of the resource to be connected.")] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The fully qualified Azure Resource manager identifier of the resource to be connected.", + SerializedName = @"resourceUri", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Path)] + public string ResourceUri { get => this._resourceUri; set => this._resourceUri = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationResult + /// from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + var telemetryId = Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.GetTelemetryId.Invoke(); + if (telemetryId != "" && telemetryId != "internal") + { + __correlationId = telemetryId; + } + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Information: + { + var data = messageData(); + WriteInformation(data.Message, new string[]{}); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public NewAzServiceLinkerConfiguration_GenerateExpanded() + { + + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'LinkersGenerateConfigurations' operation")) + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token); + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.LinkersGenerateConfigurations(ResourceUri, LinkerName, _parametersBody, onOk, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceUri=ResourceUri,LinkerName=LinkerName,body=_parametersBody}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceUri=ResourceUri, LinkerName=LinkerName, body=_parametersBody }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceUri=ResourceUri, LinkerName=LinkerName, body=_parametersBody }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationResult + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // response should be returning an array of some kind. +Pageable + // nested-array / configurations / + WriteObject((await response).Configuration, true); + } + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/cmdlets/NewAzServiceLinkerConfiguration_GenerateViaIdentity.cs b/src/ServiceLinker/generated/cmdlets/NewAzServiceLinkerConfiguration_GenerateViaIdentity.cs new file mode 100644 index 000000000000..3450bcaede86 --- /dev/null +++ b/src/ServiceLinker/generated/cmdlets/NewAzServiceLinkerConfiguration_GenerateViaIdentity.cs @@ -0,0 +1,398 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + using System; + + /// Generate configurations for a Linker. + /// + /// [OpenAPI] GenerateConfigurations=>POST:"/{resourceUri}/providers/Microsoft.ServiceLinker/linkers/{linkerName}/generateConfigurations" + /// + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.InternalExport] + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzServiceLinkerConfiguration_GenerateViaIdentity", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration))] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Description(@"Generate configurations for a Linker.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Generated] + public partial class NewAzServiceLinkerConfiguration_GenerateViaIdentity : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ServiceLinker Client => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity _inputObject; + + /// Identity Parameter + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Identity Parameter", ValueFromPipeline = true)] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Path)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity InputObject { get => this._inputObject; set => this._inputObject = value; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfo _parameter; + + /// + /// The configuration information, used to generate configurations or save to applications + /// + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The configuration information, used to generate configurations or save to applications", ValueFromPipeline = true)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The configuration information, used to generate configurations or save to applications", + SerializedName = @"parameters", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfo) })] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfo Parameter { get => this._parameter; set => this._parameter = value; } + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationResult + /// from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + var telemetryId = Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.GetTelemetryId.Invoke(); + if (telemetryId != "" && telemetryId != "internal") + { + __correlationId = telemetryId; + } + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Information: + { + var data = messageData(); + WriteInformation(data.Message, new string[]{}); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public NewAzServiceLinkerConfiguration_GenerateViaIdentity() + { + + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'LinkersGenerateConfigurations' operation")) + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token); + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + if (InputObject?.Id != null) + { + await this.Client.LinkersGenerateConfigurationsViaIdentity(InputObject.Id, Parameter, onOk, onDefault, this, Pipeline); + } + else + { + // try to call with PATH parameters from Input Object + if (null == InputObject.ResourceUri) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.ResourceUri"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.LinkerName) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.LinkerName"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + await this.Client.LinkersGenerateConfigurations(InputObject.ResourceUri ?? null, InputObject.LinkerName ?? null, Parameter, onOk, onDefault, this, Pipeline); + } + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=Parameter}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=Parameter }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=Parameter }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationResult + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // response should be returning an array of some kind. +Pageable + // nested-array / configurations / + WriteObject((await response).Configuration, true); + } + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/cmdlets/NewAzServiceLinkerConfiguration_GenerateViaIdentityExpanded.cs b/src/ServiceLinker/generated/cmdlets/NewAzServiceLinkerConfiguration_GenerateViaIdentityExpanded.cs new file mode 100644 index 000000000000..f9ce3732af28 --- /dev/null +++ b/src/ServiceLinker/generated/cmdlets/NewAzServiceLinkerConfiguration_GenerateViaIdentityExpanded.cs @@ -0,0 +1,448 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + using System; + + /// Generate configurations for a Linker. + /// + /// [OpenAPI] GenerateConfigurations=>POST:"/{resourceUri}/providers/Microsoft.ServiceLinker/linkers/{linkerName}/generateConfigurations" + /// + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.InternalExport] + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzServiceLinkerConfiguration_GenerateViaIdentityExpanded", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration))] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Description(@"Generate configurations for a Linker.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Generated] + public partial class NewAzServiceLinkerConfiguration_GenerateViaIdentityExpanded : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// + /// The configuration information, used to generate configurations or save to applications + /// + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfo _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfigurationInfo(); + + /// + /// Optional, indicate whether to apply configurations on source application. If enable, generate configurations and applied + /// to the source application. Default is enable. If optOut, no configuration change will be made on source. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Optional, indicate whether to apply configurations on source application. If enable, generate configurations and applied to the source application. Default is enable. If optOut, no configuration change will be made on source.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Optional, indicate whether to apply configurations on source application. If enable, generate configurations and applied to the source application. Default is enable. If optOut, no configuration change will be made on source.", + SerializedName = @"action", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType) })] + [global::System.Management.Automation.ArgumentCompleter(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType))] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType Action { get => _parametersBody.Action ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType)""); set => _parametersBody.Action = value; } + + /// + /// A dictionary of additional configurations to be added. Service will auto generate a set of basic configurations and this + /// property is to full fill more customized configurations + /// + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ExportAs(typeof(global::System.Collections.Hashtable))] + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "A dictionary of additional configurations to be added. Service will auto generate a set of basic configurations and this property is to full fill more customized configurations")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"A dictionary of additional configurations to be added. Service will auto generate a set of basic configurations and this property is to full fill more customized configurations", + SerializedName = @"additionalConfigurations", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations) })] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations AdditionalConfiguration { get => _parametersBody.AdditionalConfiguration ?? null /* object */; set => _parametersBody.AdditionalConfiguration = value; } + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ServiceLinker Client => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.ClientAPI; + + /// + /// Optional. A dictionary of default key name and customized key name mapping. If not specified, default key name will be + /// used for generate configurations + /// + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ExportAs(typeof(global::System.Collections.Hashtable))] + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Optional. A dictionary of default key name and customized key name mapping. If not specified, default key name will be used for generate configurations")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Optional. A dictionary of default key name and customized key name mapping. If not specified, default key name will be used for generate configurations", + SerializedName = @"customizedKeys", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys) })] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys CustomizedKey { get => _parametersBody.CustomizedKey ?? null /* object */; set => _parametersBody.CustomizedKey = value; } + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Indicates whether to clean up previous operation when Linker is updating or deleting")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Indicates whether to clean up previous operation when Linker is updating or deleting", + SerializedName = @"deleteOrUpdateBehavior", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.DoNotExport] + [global::System.Management.Automation.ArgumentCompleter(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior))] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior DeleteOrUpdateBehavior { get => _parametersBody.DeleteOrUpdateBehavior ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior)""); set => _parametersBody.DeleteOrUpdateBehavior = value; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity _inputObject; + + /// Identity Parameter + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Identity Parameter", ValueFromPipeline = true)] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Path)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity InputObject { get => this._inputObject; set => this._inputObject = value; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationResult + /// from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + var telemetryId = Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.GetTelemetryId.Invoke(); + if (telemetryId != "" && telemetryId != "internal") + { + __correlationId = telemetryId; + } + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Information: + { + var data = messageData(); + WriteInformation(data.Message, new string[]{}); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public NewAzServiceLinkerConfiguration_GenerateViaIdentityExpanded() + { + + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'LinkersGenerateConfigurations' operation")) + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token); + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + if (InputObject?.Id != null) + { + await this.Client.LinkersGenerateConfigurationsViaIdentity(InputObject.Id, _parametersBody, onOk, onDefault, this, Pipeline); + } + else + { + // try to call with PATH parameters from Input Object + if (null == InputObject.ResourceUri) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.ResourceUri"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.LinkerName) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.LinkerName"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + await this.Client.LinkersGenerateConfigurations(InputObject.ResourceUri ?? null, InputObject.LinkerName ?? null, _parametersBody, onOk, onDefault, this, Pipeline); + } + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=_parametersBody}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=_parametersBody }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=_parametersBody }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationResult + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // response should be returning an array of some kind. +Pageable + // nested-array / configurations / + WriteObject((await response).Configuration, true); + } + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/cmdlets/NewAzServiceLinkerDryrun_CreateExpanded.cs b/src/ServiceLinker/generated/cmdlets/NewAzServiceLinkerDryrun_CreateExpanded.cs new file mode 100644 index 000000000000..553018cd9453 --- /dev/null +++ b/src/ServiceLinker/generated/cmdlets/NewAzServiceLinkerDryrun_CreateExpanded.cs @@ -0,0 +1,457 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + using System; + + /// create a dryrun job to do necessary check before actual creation + /// + /// [OpenAPI] CreateDryrun=>PUT:"/{resourceUri}/providers/Microsoft.ServiceLinker/dryruns/{dryrunName}" + /// + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.InternalExport] + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzServiceLinkerDryrun_CreateExpanded", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource))] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Description(@"create a dryrun job to do necessary check before actual creation")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Generated] + public partial class NewAzServiceLinkerDryrun_CreateExpanded : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// a dryrun job resource + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunResource(); + + /// when specified, runs this cmdlet as a PowerShell job + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter AsJob { get; set; } + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ServiceLinker Client => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// Backing field for property. + private string _dryrunName; + + /// The name of dryrun. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of dryrun.")] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of dryrun.", + SerializedName = @"dryrunName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Path)] + public string DryrunName { get => this._dryrunName; set => this._dryrunName = value; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// when specified, will make the remote call, and return an AsyncOperationResponse, letting the remote operation continue + /// asynchronously. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command asynchronously")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter NoWait { get; set; } + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _resourceUri; + + /// + /// The fully qualified Azure Resource manager identifier of the resource to be connected. + /// + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The fully qualified Azure Resource manager identifier of the resource to be connected.")] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The fully qualified Azure Resource manager identifier of the resource to be connected.", + SerializedName = @"resourceUri", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Path)] + public string ResourceUri { get => this._resourceUri; set => this._resourceUri = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource + /// from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + var telemetryId = Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.GetTelemetryId.Invoke(); + if (telemetryId != "" && telemetryId != "internal") + { + __correlationId = telemetryId; + } + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Creates a duplicate instance of this cmdlet (via JSON serialization). + /// a duplicate instance of NewAzServiceLinkerDryrun_CreateExpanded + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Cmdlets.NewAzServiceLinkerDryrun_CreateExpanded Clone() + { + var clone = new NewAzServiceLinkerDryrun_CreateExpanded(); + clone.__correlationId = this.__correlationId; + clone.__processRecordId = this.__processRecordId; + clone.DefaultProfile = this.DefaultProfile; + clone.InvocationInformation = this.InvocationInformation; + clone.Proxy = this.Proxy; + clone.Pipeline = this.Pipeline; + clone.AsJob = this.AsJob; + clone.Break = this.Break; + clone.ProxyCredential = this.ProxyCredential; + clone.ProxyUseDefaultCredentials = this.ProxyUseDefaultCredentials; + clone.HttpPipelinePrepend = this.HttpPipelinePrepend; + clone.HttpPipelineAppend = this.HttpPipelineAppend; + clone._parametersBody = this._parametersBody; + clone.ResourceUri = this.ResourceUri; + clone.DryrunName = this.DryrunName; + return clone; + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Information: + { + // When an operation supports asjob, Information messages must go thru verbose. + WriteVerbose($"INFORMATION: {(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.DelayBeforePolling: + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) + { + var data = messageData(); + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = response.GetFirstHeader(@"Location"); + var uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? response.RequestMessage.RequestUri.AbsoluteUri : location : asyncOperation; + WriteObject(new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.AsyncOperationResponse { Target = uri }); + // do nothing more. + data.Cancel(); + return; + } + } + break; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public NewAzServiceLinkerDryrun_CreateExpanded() + { + + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'LinkersCreateDryrun' operation")) + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("AsJob")) + { + var instance = this.Clone(); + var job = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.AsyncJob(instance, this.MyInvocation.Line, this.MyInvocation.MyCommand.Name, this._cancellationTokenSource.Token, this._cancellationTokenSource.Cancel); + JobRepository.Add(job); + var task = instance.ProcessRecordAsync(); + job.Monitor(task); + WriteObject(job); + } + else + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token); + } + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.LinkersCreateDryrun(ResourceUri, DryrunName, _parametersBody, onOk, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceUri=ResourceUri,DryrunName=DryrunName,body=_parametersBody}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceUri=ResourceUri, DryrunName=DryrunName, body=_parametersBody }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceUri=ResourceUri, DryrunName=DryrunName, body=_parametersBody }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource + WriteObject((await response)); + } + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/cmdlets/NewAzServiceLinker_CreateExpanded.cs b/src/ServiceLinker/generated/cmdlets/NewAzServiceLinker_CreateExpanded.cs index e15a44373034..44771ce4c7c0 100644 --- a/src/ServiceLinker/generated/cmdlets/NewAzServiceLinker_CreateExpanded.cs +++ b/src/ServiceLinker/generated/cmdlets/NewAzServiceLinker_CreateExpanded.cs @@ -8,14 +8,14 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Cmdlets using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; using System; - /// Create or update linker resource. + /// Create or update Linker resource. /// /// [OpenAPI] CreateOrUpdate=>PUT:"/{resourceUri}/providers/Microsoft.ServiceLinker/linkers/{linkerName}" /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.New, @"AzServiceLinker_CreateExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource))] - [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Description(@"Create or update linker resource.")] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource))] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Description(@"Create or update Linker resource.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Generated] public partial class NewAzServiceLinker_CreateExpanded : global::System.Management.Automation.PSCmdlet, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener @@ -35,7 +35,7 @@ public partial class NewAzServiceLinker_CreateExpanded : global::System.Manageme private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); /// Linker of source and target resource - private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.LinkerResource(); + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.LinkerResource(); /// when specified, runs this cmdlet as a PowerShell job [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] @@ -50,8 +50,8 @@ public partial class NewAzServiceLinker_CreateExpanded : global::System.Manageme ReadOnly = false, Description = @"The authentication type.", SerializedName = @"authInfo", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase) })] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase AuthInfo { get => _parametersBody.AuthInfo ?? null /* object */; set => _parametersBody.AuthInfo = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase) })] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase AuthInfo { get => _parametersBody.AuthInfo ?? null /* object */; set => _parametersBody.AuthInfo = value; } /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] @@ -77,6 +77,66 @@ public partial class NewAzServiceLinker_CreateExpanded : global::System.Manageme [global::System.Management.Automation.ArgumentCompleter(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType))] public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType ClientType { get => _parametersBody.ClientType ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType)""); set => _parametersBody.ClientType = value; } + /// + /// Optional, indicate whether to apply configurations on source application. If enable, generate configurations and applied + /// to the source application. Default is enable. If optOut, no configuration change will be made on source. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Optional, indicate whether to apply configurations on source application. If enable, generate configurations and applied to the source application. Default is enable. If optOut, no configuration change will be made on source.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Optional, indicate whether to apply configurations on source application. If enable, generate configurations and applied to the source application. Default is enable. If optOut, no configuration change will be made on source.", + SerializedName = @"action", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType) })] + [global::System.Management.Automation.ArgumentCompleter(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType))] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType ConfigurationInfoAction { get => _parametersBody.ConfigurationInfoAction ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType)""); set => _parametersBody.ConfigurationInfoAction = value; } + + /// + /// A dictionary of additional configurations to be added. Service will auto generate a set of basic configurations and this + /// property is to full fill more customized configurations + /// + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ExportAs(typeof(global::System.Collections.Hashtable))] + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "A dictionary of additional configurations to be added. Service will auto generate a set of basic configurations and this property is to full fill more customized configurations")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"A dictionary of additional configurations to be added. Service will auto generate a set of basic configurations and this property is to full fill more customized configurations", + SerializedName = @"additionalConfigurations", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations) })] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations ConfigurationInfoAdditionalConfiguration { get => _parametersBody.ConfigurationInfoAdditionalConfiguration ?? null /* object */; set => _parametersBody.ConfigurationInfoAdditionalConfiguration = value; } + + /// + /// Optional. A dictionary of default key name and customized key name mapping. If not specified, default key name will be + /// used for generate configurations + /// + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ExportAs(typeof(global::System.Collections.Hashtable))] + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Optional. A dictionary of default key name and customized key name mapping. If not specified, default key name will be used for generate configurations")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Optional. A dictionary of default key name and customized key name mapping. If not specified, default key name will be used for generate configurations", + SerializedName = @"customizedKeys", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys) })] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys ConfigurationInfoCustomizedKey { get => _parametersBody.ConfigurationInfoCustomizedKey ?? null /* object */; set => _parametersBody.ConfigurationInfoCustomizedKey = value; } + + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Indicates whether to clean up previous operation when Linker is updating or deleting")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Indicates whether to clean up previous operation when Linker is updating or deleting", + SerializedName = @"deleteOrUpdateBehavior", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.DoNotExport] + [global::System.Management.Automation.ArgumentCompleter(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior))] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior ConfigurationInfoDeleteOrUpdateBehavior { get => _parametersBody.ConfigurationInfoDeleteOrUpdateBehavior ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior)""); set => _parametersBody.ConfigurationInfoDeleteOrUpdateBehavior = value; } + /// /// The credentials, account, tenant, and subscription used for communication with Azure /// @@ -86,6 +146,48 @@ public partial class NewAzServiceLinker_CreateExpanded : global::System.Manageme [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Azure)] public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + /// Allow Azure services to access the target service if true. + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Allow Azure services to access the target service if true.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Allow Azure services to access the target service if true.", + SerializedName = @"azureServices", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType) })] + [global::System.Management.Automation.ArgumentCompleter(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType))] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType FirewallRuleAzureService { get => _parametersBody.FirewallRuleAzureService ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType)""); set => _parametersBody.FirewallRuleAzureService = value; } + + /// + /// Allow caller client IP to access the target service if true. the property is used when connecting local application to + /// target service. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Allow caller client IP to access the target service if true. the property is used when connecting local application to target service.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Allow caller client IP to access the target service if true. the property is used when connecting local application to target service.", + SerializedName = @"callerClientIP", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType) })] + [global::System.Management.Automation.ArgumentCompleter(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType))] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType FirewallRuleCallerClientIP { get => _parametersBody.FirewallRuleCallerClientIP ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType)""); set => _parametersBody.FirewallRuleCallerClientIP = value; } + + /// + /// This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client + /// IPs for a given database account. + /// + [global::System.Management.Automation.AllowEmptyCollection] + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client IPs for a given database account.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client IPs for a given database account.", + SerializedName = @"ipRanges", + PossibleTypes = new [] { typeof(string) })] + public string[] FirewallRuleIPRange { get => _parametersBody.FirewallRuleIPRange ?? null /* arrayOf */; set => _parametersBody.FirewallRuleIPRange = value; } + /// SendAsync Pipeline Steps to be appended to the front of the pipeline [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] [global::System.Management.Automation.ValidateNotNull] @@ -157,6 +259,36 @@ public partial class NewAzServiceLinker_CreateExpanded : global::System.Manageme [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + /// + /// Optional. Indicates public network solution. If enable, enable public network access of target service with best try. + /// Default is enable. If optOut, opt out public network access configuration. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Optional. Indicates public network solution. If enable, enable public network access of target service with best try. Default is enable. If optOut, opt out public network access configuration.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Optional. Indicates public network solution. If enable, enable public network access of target service with best try. Default is enable. If optOut, opt out public network access configuration.", + SerializedName = @"action", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType) })] + [global::System.Management.Automation.ArgumentCompleter(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType))] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType PublicNetworkSolutionAction { get => _parametersBody.PublicNetworkSolutionAction ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType)""); set => _parametersBody.PublicNetworkSolutionAction = value; } + + /// + /// Indicates whether to clean up previous operation(such as firewall rules) when Linker is updating or deleting + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Indicates whether to clean up previous operation(such as firewall rules) when Linker is updating or deleting")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Indicates whether to clean up previous operation(such as firewall rules) when Linker is updating or deleting", + SerializedName = @"deleteOrUpdateBehavior", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.DoNotExport] + [global::System.Management.Automation.ArgumentCompleter(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior))] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior PublicNetworkSolutionDeleteOrUpdateBehavior { get => _parametersBody.PublicNetworkSolutionDeleteOrUpdateBehavior ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior)""); set => _parametersBody.PublicNetworkSolutionDeleteOrUpdateBehavior = value; } + /// Backing field for property. private string _resourceUri; @@ -195,6 +327,17 @@ public partial class NewAzServiceLinker_CreateExpanded : global::System.Manageme PossibleTypes = new [] { typeof(string) })] public string SecretStoreKeyVaultId { get => _parametersBody.SecretStoreKeyVaultId ?? null; set => _parametersBody.SecretStoreKeyVaultId = value; } + /// The key vault secret name to store secret, only valid when storing one secret + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The key vault secret name to store secret, only valid when storing one secret")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The key vault secret name to store secret, only valid when storing one secret", + SerializedName = @"keyVaultSecretName", + PossibleTypes = new [] { typeof(string) })] + public string SecretStoreKeyVaultSecretName { get => _parametersBody.SecretStoreKeyVaultSecretName ?? null; set => _parametersBody.SecretStoreKeyVaultSecretName = value; } + /// The target service properties [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The target service properties")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Body)] @@ -203,8 +346,23 @@ public partial class NewAzServiceLinker_CreateExpanded : global::System.Manageme ReadOnly = false, Description = @"The target service properties", SerializedName = @"targetService", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase) })] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase TargetService { get => _parametersBody.TargetService ?? null /* object */; set => _parametersBody.TargetService = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase) })] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase TargetService { get => _parametersBody.TargetService ?? null /* object */; set => _parametersBody.TargetService = value; } + + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Indicates whether to clean up previous operation when Linker is updating or deleting")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Indicates whether to clean up previous operation when Linker is updating or deleting", + SerializedName = @"deleteOrUpdateBehavior", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.DoNotExport] + [global::System.Management.Automation.ArgumentCompleter(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior))] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior VNetSolutionDeleteOrUpdateBehavior { get => _parametersBody.VNetSolutionDeleteOrUpdateBehavior ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior)""); set => _parametersBody.VNetSolutionDeleteOrUpdateBehavior = value; } /// Type of VNet solution. [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Type of VNet solution.")] @@ -236,24 +394,24 @@ public partial class NewAzServiceLinker_CreateExpanded : global::System.Manageme /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a from the remote call + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a from the remote call + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource + /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -483,12 +641,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a from the remote call + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -505,7 +663,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceUri=ResourceUri, Name=Name, XmsServiceconnectorUserToken=this.InvocationInformation.BoundParameters.ContainsKey("XmsServiceconnectorUserToken") ? XmsServiceconnectorUserToken : null, body=_parametersBody }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -523,12 +681,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a from the remote call + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource + /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -540,7 +698,7 @@ protected override void StopProcessing() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource WriteObject((await response)); } } diff --git a/src/ServiceLinker/generated/cmdlets/RemoveAzServiceLinkerDryrun_Delete.cs b/src/ServiceLinker/generated/cmdlets/RemoveAzServiceLinkerDryrun_Delete.cs new file mode 100644 index 000000000000..f3207fe7a5e6 --- /dev/null +++ b/src/ServiceLinker/generated/cmdlets/RemoveAzServiceLinkerDryrun_Delete.cs @@ -0,0 +1,427 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + using System; + + /// delete a dryrun job + /// + /// [OpenAPI] DeleteDryrun=>DELETE:"/{resourceUri}/providers/Microsoft.ServiceLinker/dryruns/{dryrunName}" + /// + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.InternalExport] + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzServiceLinkerDryrun_Delete", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(bool))] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Description(@"delete a dryrun job")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Generated] + public partial class RemoveAzServiceLinkerDryrun_Delete : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ServiceLinker Client => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// Backing field for property. + private string _dryrunName; + + /// The name of dryrun. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of dryrun.")] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of dryrun.", + SerializedName = @"dryrunName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Path)] + public string DryrunName { get => this._dryrunName; set => this._dryrunName = value; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// When specified, forces the cmdlet return a 'bool' given that there isn't a return type by default. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Returns true when the command succeeds")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter PassThru { get; set; } + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _resourceUri; + + /// + /// The fully qualified Azure Resource manager identifier of the resource to be connected. + /// + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The fully qualified Azure Resource manager identifier of the resource to be connected.")] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The fully qualified Azure Resource manager identifier of the resource to be connected.", + SerializedName = @"resourceUri", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Path)] + public string ResourceUri { get => this._resourceUri; set => this._resourceUri = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of + /// what happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// /// Determines if the rest of the onNoContent method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnNoContent(global::System.Net.Http.HttpResponseMessage responseMessage, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + var telemetryId = Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.GetTelemetryId.Invoke(); + if (telemetryId != "" && telemetryId != "internal") + { + __correlationId = telemetryId; + } + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Information: + { + var data = messageData(); + WriteInformation(data.Message, new string[]{}); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'LinkersDeleteDryrun' operation")) + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token); + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.LinkersDeleteDryrun(ResourceUri, DryrunName, onOk, onNoContent, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceUri=ResourceUri,DryrunName=DryrunName}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public RemoveAzServiceLinkerDryrun_Delete() + { + + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceUri=ResourceUri, DryrunName=DryrunName }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceUri=ResourceUri, DryrunName=DryrunName }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 204 (NoContent). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onNoContent(global::System.Net.Http.HttpResponseMessage responseMessage) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnNoContent(responseMessage, ref _returnNow); + // if overrideOnNoContent has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onNoContent - response for 204 / + if (true == MyInvocation?.BoundParameters?.ContainsKey("PassThru")) + { + WriteObject(true); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / + if (true == MyInvocation?.BoundParameters?.ContainsKey("PassThru")) + { + WriteObject(true); + } + } + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/cmdlets/RemoveAzServiceLinkerDryrun_DeleteViaIdentity.cs b/src/ServiceLinker/generated/cmdlets/RemoveAzServiceLinkerDryrun_DeleteViaIdentity.cs new file mode 100644 index 000000000000..6d19904f4bd7 --- /dev/null +++ b/src/ServiceLinker/generated/cmdlets/RemoveAzServiceLinkerDryrun_DeleteViaIdentity.cs @@ -0,0 +1,421 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + using System; + + /// delete a dryrun job + /// + /// [OpenAPI] DeleteDryrun=>DELETE:"/{resourceUri}/providers/Microsoft.ServiceLinker/dryruns/{dryrunName}" + /// + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.InternalExport] + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzServiceLinkerDryrun_DeleteViaIdentity", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(bool))] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Description(@"delete a dryrun job")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Generated] + public partial class RemoveAzServiceLinkerDryrun_DeleteViaIdentity : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ServiceLinker Client => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity _inputObject; + + /// Identity Parameter + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Identity Parameter", ValueFromPipeline = true)] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Path)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity InputObject { get => this._inputObject; set => this._inputObject = value; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// When specified, forces the cmdlet return a 'bool' given that there isn't a return type by default. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Returns true when the command succeeds")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter PassThru { get; set; } + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of + /// what happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// /// Determines if the rest of the onNoContent method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnNoContent(global::System.Net.Http.HttpResponseMessage responseMessage, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + var telemetryId = Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.GetTelemetryId.Invoke(); + if (telemetryId != "" && telemetryId != "internal") + { + __correlationId = telemetryId; + } + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Information: + { + var data = messageData(); + WriteInformation(data.Message, new string[]{}); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'LinkersDeleteDryrun' operation")) + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token); + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + if (InputObject?.Id != null) + { + await this.Client.LinkersDeleteDryrunViaIdentity(InputObject.Id, onOk, onNoContent, onDefault, this, Pipeline); + } + else + { + // try to call with PATH parameters from Input Object + if (null == InputObject.ResourceUri) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.ResourceUri"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.DryrunName) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.DryrunName"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + await this.Client.LinkersDeleteDryrun(InputObject.ResourceUri ?? null, InputObject.DryrunName ?? null, onOk, onNoContent, onDefault, this, Pipeline); + } + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public RemoveAzServiceLinkerDryrun_DeleteViaIdentity() + { + + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 204 (NoContent). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onNoContent(global::System.Net.Http.HttpResponseMessage responseMessage) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnNoContent(responseMessage, ref _returnNow); + // if overrideOnNoContent has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onNoContent - response for 204 / + if (true == MyInvocation?.BoundParameters?.ContainsKey("PassThru")) + { + WriteObject(true); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / + if (true == MyInvocation?.BoundParameters?.ContainsKey("PassThru")) + { + WriteObject(true); + } + } + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/cmdlets/RemoveAzServiceLinker_Delete.cs b/src/ServiceLinker/generated/cmdlets/RemoveAzServiceLinker_Delete.cs index b41763743d1c..20841d43887f 100644 --- a/src/ServiceLinker/generated/cmdlets/RemoveAzServiceLinker_Delete.cs +++ b/src/ServiceLinker/generated/cmdlets/RemoveAzServiceLinker_Delete.cs @@ -8,14 +8,14 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Cmdlets using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; using System; - /// Delete a link. + /// Delete a Linker. /// /// [OpenAPI] Delete=>DELETE:"/{resourceUri}/providers/Microsoft.ServiceLinker/linkers/{linkerName}" /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzServiceLinker_Delete", SupportsShouldProcess = true)] [global::System.Management.Automation.OutputType(typeof(bool))] - [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Description(@"Delete a link.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Description(@"Delete a Linker.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Generated] public partial class RemoveAzServiceLinker_Delete : global::System.Management.Automation.PSCmdlet, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener @@ -151,12 +151,12 @@ public partial class RemoveAzServiceLinker_Delete : global::System.Management.Au /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a from the remote call + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of @@ -404,12 +404,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a from the remote call + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -426,7 +426,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceUri=ResourceUri, Name=Name }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } diff --git a/src/ServiceLinker/generated/cmdlets/RemoveAzServiceLinker_DeleteViaIdentity.cs b/src/ServiceLinker/generated/cmdlets/RemoveAzServiceLinker_DeleteViaIdentity.cs index 3c16f9a88971..145b947e8ed1 100644 --- a/src/ServiceLinker/generated/cmdlets/RemoveAzServiceLinker_DeleteViaIdentity.cs +++ b/src/ServiceLinker/generated/cmdlets/RemoveAzServiceLinker_DeleteViaIdentity.cs @@ -8,14 +8,14 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Cmdlets using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; using System; - /// Delete a link. + /// Delete a Linker. /// /// [OpenAPI] Delete=>DELETE:"/{resourceUri}/providers/Microsoft.ServiceLinker/linkers/{linkerName}" /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Remove, @"AzServiceLinker_DeleteViaIdentity", SupportsShouldProcess = true)] [global::System.Management.Automation.OutputType(typeof(bool))] - [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Description(@"Delete a link.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Description(@"Delete a Linker.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Generated] public partial class RemoveAzServiceLinker_DeleteViaIdentity : global::System.Management.Automation.PSCmdlet, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener @@ -128,12 +128,12 @@ public partial class RemoveAzServiceLinker_DeleteViaIdentity : global::System.Ma /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a from the remote call + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnNoContent will be called before the regular onNoContent has been processed, allowing customization of @@ -395,12 +395,12 @@ protected override void StopProcessing() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a from the remote call + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -417,7 +417,7 @@ protected override void StopProcessing() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } diff --git a/src/ServiceLinker/generated/cmdlets/TestAzServiceLinker_Validate.cs b/src/ServiceLinker/generated/cmdlets/TestAzServiceLinker_Validate.cs index a358aff36569..bd4053c8fce0 100644 --- a/src/ServiceLinker/generated/cmdlets/TestAzServiceLinker_Validate.cs +++ b/src/ServiceLinker/generated/cmdlets/TestAzServiceLinker_Validate.cs @@ -8,14 +8,14 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Cmdlets using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; using System; - /// Validate a link. + /// Validate a Linker. /// /// [OpenAPI] Validate=>POST:"/{resourceUri}/providers/Microsoft.ServiceLinker/linkers/{linkerName}/validateLinker" /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsDiagnostic.Test, @"AzServiceLinker_Validate", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResult))] - [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Description(@"Validate a link.")] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResult))] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Description(@"Validate a Linker.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Generated] public partial class TestAzServiceLinker_Validate : global::System.Management.Automation.PSCmdlet, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener @@ -144,24 +144,24 @@ public partial class TestAzServiceLinker_Validate : global::System.Management.Au /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a from the remote call + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a from the remote call + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResult + /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -389,12 +389,12 @@ public TestAzServiceLinker_Validate() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a from the remote call + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -411,7 +411,7 @@ public TestAzServiceLinker_Validate() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceUri=ResourceUri, Name=Name }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -429,12 +429,12 @@ public TestAzServiceLinker_Validate() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a from the remote call + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResult + /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -446,7 +446,7 @@ public TestAzServiceLinker_Validate() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResult + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResult WriteObject((await response)); } } diff --git a/src/ServiceLinker/generated/cmdlets/TestAzServiceLinker_ValidateViaIdentity.cs b/src/ServiceLinker/generated/cmdlets/TestAzServiceLinker_ValidateViaIdentity.cs index 393af38e0522..5e3e096a826e 100644 --- a/src/ServiceLinker/generated/cmdlets/TestAzServiceLinker_ValidateViaIdentity.cs +++ b/src/ServiceLinker/generated/cmdlets/TestAzServiceLinker_ValidateViaIdentity.cs @@ -8,14 +8,14 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Cmdlets using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; using System; - /// Validate a link. + /// Validate a Linker. /// /// [OpenAPI] Validate=>POST:"/{resourceUri}/providers/Microsoft.ServiceLinker/linkers/{linkerName}/validateLinker" /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsDiagnostic.Test, @"AzServiceLinker_ValidateViaIdentity", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResult))] - [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Description(@"Validate a link.")] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResult))] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Description(@"Validate a Linker.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Generated] public partial class TestAzServiceLinker_ValidateViaIdentity : global::System.Management.Automation.PSCmdlet, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener @@ -121,24 +121,24 @@ public partial class TestAzServiceLinker_ValidateViaIdentity : global::System.Ma /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a from the remote call + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a from the remote call + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResult + /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -380,12 +380,12 @@ public TestAzServiceLinker_ValidateViaIdentity() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a from the remote call + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -402,7 +402,7 @@ public TestAzServiceLinker_ValidateViaIdentity() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -420,12 +420,12 @@ public TestAzServiceLinker_ValidateViaIdentity() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a from the remote call + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResult + /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -437,7 +437,7 @@ public TestAzServiceLinker_ValidateViaIdentity() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResult + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResult WriteObject((await response)); } } diff --git a/src/ServiceLinker/generated/cmdlets/UpdateAzServiceLinkerDryrun_UpdateExpanded.cs b/src/ServiceLinker/generated/cmdlets/UpdateAzServiceLinkerDryrun_UpdateExpanded.cs new file mode 100644 index 000000000000..6c07d985fcbc --- /dev/null +++ b/src/ServiceLinker/generated/cmdlets/UpdateAzServiceLinkerDryrun_UpdateExpanded.cs @@ -0,0 +1,457 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + using System; + + /// add a dryrun job to do necessary check before actual creation + /// + /// [OpenAPI] UpdateDryrun=>PATCH:"/{resourceUri}/providers/Microsoft.ServiceLinker/dryruns/{dryrunName}" + /// + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.InternalExport] + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzServiceLinkerDryrun_UpdateExpanded", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource))] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Description(@"add a dryrun job to do necessary check before actual creation")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Generated] + public partial class UpdateAzServiceLinkerDryrun_UpdateExpanded : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// a dryrun job to be updated. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatch _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunPatch(); + + /// when specified, runs this cmdlet as a PowerShell job + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter AsJob { get; set; } + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ServiceLinker Client => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// Backing field for property. + private string _dryrunName; + + /// The name of dryrun. + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of dryrun.")] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The name of dryrun.", + SerializedName = @"dryrunName", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Path)] + public string DryrunName { get => this._dryrunName; set => this._dryrunName = value; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// when specified, will make the remote call, and return an AsyncOperationResponse, letting the remote operation continue + /// asynchronously. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command asynchronously")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter NoWait { get; set; } + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// Backing field for property. + private string _resourceUri; + + /// + /// The fully qualified Azure Resource manager identifier of the resource to be connected. + /// + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The fully qualified Azure Resource manager identifier of the resource to be connected.")] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = true, + ReadOnly = false, + Description = @"The fully qualified Azure Resource manager identifier of the resource to be connected.", + SerializedName = @"resourceUri", + PossibleTypes = new [] { typeof(string) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Path)] + public string ResourceUri { get => this._resourceUri; set => this._resourceUri = value; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource + /// from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + var telemetryId = Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.GetTelemetryId.Invoke(); + if (telemetryId != "" && telemetryId != "internal") + { + __correlationId = telemetryId; + } + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Creates a duplicate instance of this cmdlet (via JSON serialization). + /// a duplicate instance of UpdateAzServiceLinkerDryrun_UpdateExpanded + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Cmdlets.UpdateAzServiceLinkerDryrun_UpdateExpanded Clone() + { + var clone = new UpdateAzServiceLinkerDryrun_UpdateExpanded(); + clone.__correlationId = this.__correlationId; + clone.__processRecordId = this.__processRecordId; + clone.DefaultProfile = this.DefaultProfile; + clone.InvocationInformation = this.InvocationInformation; + clone.Proxy = this.Proxy; + clone.Pipeline = this.Pipeline; + clone.AsJob = this.AsJob; + clone.Break = this.Break; + clone.ProxyCredential = this.ProxyCredential; + clone.ProxyUseDefaultCredentials = this.ProxyUseDefaultCredentials; + clone.HttpPipelinePrepend = this.HttpPipelinePrepend; + clone.HttpPipelineAppend = this.HttpPipelineAppend; + clone._parametersBody = this._parametersBody; + clone.ResourceUri = this.ResourceUri; + clone.DryrunName = this.DryrunName; + return clone; + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Information: + { + // When an operation supports asjob, Information messages must go thru verbose. + WriteVerbose($"INFORMATION: {(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.DelayBeforePolling: + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) + { + var data = messageData(); + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = response.GetFirstHeader(@"Location"); + var uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? response.RequestMessage.RequestUri.AbsoluteUri : location : asyncOperation; + WriteObject(new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.AsyncOperationResponse { Target = uri }); + // do nothing more. + data.Cancel(); + return; + } + } + break; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'LinkersUpdateDryrun' operation")) + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("AsJob")) + { + var instance = this.Clone(); + var job = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.AsyncJob(instance, this.MyInvocation.Line, this.MyInvocation.MyCommand.Name, this._cancellationTokenSource.Token, this._cancellationTokenSource.Cancel); + JobRepository.Add(job); + var task = instance.ProcessRecordAsync(); + job.Monitor(task); + WriteObject(job); + } + else + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token); + } + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + await this.Client.LinkersUpdateDryrun(ResourceUri, DryrunName, _parametersBody, onOk, onDefault, this, Pipeline); + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceUri=ResourceUri,DryrunName=DryrunName,body=_parametersBody}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public UpdateAzServiceLinkerDryrun_UpdateExpanded() + { + + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceUri=ResourceUri, DryrunName=DryrunName, body=_parametersBody }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceUri=ResourceUri, DryrunName=DryrunName, body=_parametersBody }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource + WriteObject((await response)); + } + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/cmdlets/UpdateAzServiceLinkerDryrun_UpdateViaIdentityExpanded.cs b/src/ServiceLinker/generated/cmdlets/UpdateAzServiceLinkerDryrun_UpdateViaIdentityExpanded.cs new file mode 100644 index 000000000000..1020729a6cd1 --- /dev/null +++ b/src/ServiceLinker/generated/cmdlets/UpdateAzServiceLinkerDryrun_UpdateViaIdentityExpanded.cs @@ -0,0 +1,449 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Cmdlets +{ + using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; + using System; + + /// add a dryrun job to do necessary check before actual creation + /// + /// [OpenAPI] UpdateDryrun=>PATCH:"/{resourceUri}/providers/Microsoft.ServiceLinker/dryruns/{dryrunName}" + /// + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.InternalExport] + [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzServiceLinkerDryrun_UpdateViaIdentityExpanded", SupportsShouldProcess = true)] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource))] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Description(@"add a dryrun job to do necessary check before actual creation")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Generated] + public partial class UpdateAzServiceLinkerDryrun_UpdateViaIdentityExpanded : global::System.Management.Automation.PSCmdlet, + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener + { + /// A unique id generatd for the this cmdlet when it is instantiated. + private string __correlationId = System.Guid.NewGuid().ToString(); + + /// A copy of the Invocation Info (necessary to allow asJob to clone this cmdlet) + private global::System.Management.Automation.InvocationInfo __invocationInfo; + + /// A unique id generatd for the this cmdlet when ProcessRecord() is called. + private string __processRecordId; + + /// + /// The for this operation. + /// + private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); + + /// a dryrun job to be updated. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunPatch _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.DryrunPatch(); + + /// when specified, runs this cmdlet as a PowerShell job + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter AsJob { get; set; } + + /// Wait for .NET debugger to attach + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter Break { get; set; } + + /// The reference to the client API class. + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ServiceLinker Client => Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.ClientAPI; + + /// + /// The credentials, account, tenant, and subscription used for communication with Azure + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The credentials, account, tenant, and subscription used for communication with Azure.")] + [global::System.Management.Automation.ValidateNotNull] + [global::System.Management.Automation.Alias("AzureRMContext", "AzureCredential")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Azure)] + public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + + /// SendAsync Pipeline Steps to be appended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[] HttpPipelineAppend { get; set; } + + /// SendAsync Pipeline Steps to be prepended to the front of the pipeline + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[] HttpPipelinePrepend { get; set; } + + /// Backing field for property. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity _inputObject; + + /// Identity Parameter + [global::System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "Identity Parameter", ValueFromPipeline = true)] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Path)] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity InputObject { get => this._inputObject; set => this._inputObject = value; } + + /// Accessor for our copy of the InvocationInfo. + public global::System.Management.Automation.InvocationInfo InvocationInformation { get => __invocationInfo = __invocationInfo ?? this.MyInvocation ; set { __invocationInfo = value; } } + + /// + /// cancellation delegate. Stops the cmdlet when called. + /// + global::System.Action Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener.Cancel => _cancellationTokenSource.Cancel; + + /// cancellation token. + global::System.Threading.CancellationToken Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener.Token => _cancellationTokenSource.Token; + + /// + /// when specified, will make the remote call, and return an AsyncOperationResponse, letting the remote operation continue + /// asynchronously. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command asynchronously")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter NoWait { get; set; } + + /// + /// The instance of the that the remote call will use. + /// + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.HttpPipeline Pipeline { get; set; } + + /// The URI for the proxy server to use + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "The URI for the proxy server to use")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Uri Proxy { get; set; } + + /// Credentials for a proxy server to use for the remote call + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Credentials for a proxy server to use for the remote call")] + [global::System.Management.Automation.ValidateNotNull] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.PSCredential ProxyCredential { get; set; } + + /// Use the default credentials for the proxy + [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Use the default credentials for the proxy")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] + public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + + /// + /// overrideOnDefault will be called before the regular onDefault has been processed, allowing customization of what + /// happens on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call + /// /// Determines if the rest of the onDefault method should be processed, or if the method should + /// return immediately (set to true to skip further processing ) + + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens + /// on that response. Implement this method in a partial class to enable this behavior + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource + /// from the remote call + /// /// Determines if the rest of the onOk method should be processed, or if the method should return + /// immediately (set to true to skip further processing ) + + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + + /// + /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) + /// + protected override void BeginProcessing() + { + var telemetryId = Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.GetTelemetryId.Invoke(); + if (telemetryId != "" && telemetryId != "internal") + { + __correlationId = telemetryId; + } + Module.Instance.SetProxyConfiguration(Proxy, ProxyCredential, ProxyUseDefaultCredentials); + if (Break) + { + Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.AttachDebugger.Break(); + } + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletBeginProcessing).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + + /// Creates a duplicate instance of this cmdlet (via JSON serialization). + /// a duplicate instance of UpdateAzServiceLinkerDryrun_UpdateViaIdentityExpanded + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Cmdlets.UpdateAzServiceLinkerDryrun_UpdateViaIdentityExpanded Clone() + { + var clone = new UpdateAzServiceLinkerDryrun_UpdateViaIdentityExpanded(); + clone.__correlationId = this.__correlationId; + clone.__processRecordId = this.__processRecordId; + clone.DefaultProfile = this.DefaultProfile; + clone.InvocationInformation = this.InvocationInformation; + clone.Proxy = this.Proxy; + clone.Pipeline = this.Pipeline; + clone.AsJob = this.AsJob; + clone.Break = this.Break; + clone.ProxyCredential = this.ProxyCredential; + clone.ProxyUseDefaultCredentials = this.ProxyUseDefaultCredentials; + clone.HttpPipelinePrepend = this.HttpPipelinePrepend; + clone.HttpPipelineAppend = this.HttpPipelineAppend; + clone._parametersBody = this._parametersBody; + return clone; + } + + /// Performs clean-up after the command execution + protected override void EndProcessing() + { + + } + + /// Handles/Dispatches events during the call to the REST service. + /// The message id + /// The message cancellation token. When this call is cancelled, this should be true + /// Detailed message data for the message event. + /// + /// A that will be complete when handling of the message is completed. + /// + async global::System.Threading.Tasks.Task Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener.Signal(string id, global::System.Threading.CancellationToken token, global::System.Func messageData) + { + using( NoSynchronizationContext ) + { + if (token.IsCancellationRequested) + { + return ; + } + + switch ( id ) + { + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Verbose: + { + WriteVerbose($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Warning: + { + WriteWarning($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Information: + { + // When an operation supports asjob, Information messages must go thru verbose. + WriteVerbose($"INFORMATION: {(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Debug: + { + WriteDebug($"{(messageData().Message ?? global::System.String.Empty)}"); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.Error: + { + WriteError(new global::System.Management.Automation.ErrorRecord( new global::System.Exception(messageData().Message), string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null ) ); + return ; + } + case Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.DelayBeforePolling: + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("NoWait")) + { + var data = messageData(); + if (data.ResponseMessage is System.Net.Http.HttpResponseMessage response) + { + var asyncOperation = response.GetFirstHeader(@"Azure-AsyncOperation"); + var location = response.GetFirstHeader(@"Location"); + var uri = global::System.String.IsNullOrEmpty(asyncOperation) ? global::System.String.IsNullOrEmpty(location) ? response.RequestMessage.RequestUri.AbsoluteUri : location : asyncOperation; + WriteObject(new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.AsyncOperationResponse { Target = uri }); + // do nothing more. + data.Cancel(); + return; + } + } + break; + } + } + await Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.Signal(id, token, messageData, (i,t,m) => ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(i,t,()=> Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.EventDataConverter.ConvertFrom( m() ) as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.EventData ), InvocationInformation, this.ParameterSetName, __correlationId, __processRecordId, null ); + if (token.IsCancellationRequested) + { + return ; + } + WriteDebug($"{id}: {(messageData().Message ?? global::System.String.Empty)}"); + } + } + + /// Performs execution of the command. + protected override void ProcessRecord() + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletProcessRecordStart).Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + __processRecordId = System.Guid.NewGuid().ToString(); + try + { + // work + if (ShouldProcess($"Call remote 'LinkersUpdateDryrun' operation")) + { + if (true == MyInvocation?.BoundParameters?.ContainsKey("AsJob")) + { + var instance = this.Clone(); + var job = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.AsyncJob(instance, this.MyInvocation.Line, this.MyInvocation.MyCommand.Name, this._cancellationTokenSource.Token, this._cancellationTokenSource.Cancel); + JobRepository.Add(job); + var task = instance.ProcessRecordAsync(); + job.Monitor(task); + WriteObject(job); + } + else + { + using( var asyncCommandRuntime = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.AsyncCommandRuntime(this, ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token) ) + { + asyncCommandRuntime.Wait( ProcessRecordAsync(),((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token); + } + } + } + } + catch (global::System.AggregateException aggregateException) + { + // unroll the inner exceptions to get the root cause + foreach( var innerException in aggregateException.Flatten().InnerExceptions ) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletException, $"{innerException.GetType().Name} - {innerException.Message} : {innerException.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(innerException,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + } + catch (global::System.Exception exception) when ((exception as System.Management.Automation.PipelineStoppedException)== null || (exception as System.Management.Automation.PipelineStoppedException).InnerException != null) + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletException, $"{exception.GetType().Name} - {exception.Message} : {exception.StackTrace}").Wait(); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + // Write exception out to error channel. + WriteError( new global::System.Management.Automation.ErrorRecord(exception,string.Empty, global::System.Management.Automation.ErrorCategory.NotSpecified, null) ); + } + finally + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletProcessRecordEnd).Wait(); + } + } + + /// Performs execution of the command, working asynchronously if required. + /// + /// A that will be complete when handling of the method is completed. + /// + protected async global::System.Threading.Tasks.Task ProcessRecordAsync() + { + using( NoSynchronizationContext ) + { + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletGetPipeline); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + Pipeline = Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Module.Instance.CreatePipeline(InvocationInformation, __correlationId, __processRecordId, this.ParameterSetName); + if (null != HttpPipelinePrepend) + { + Pipeline.Prepend((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelinePrepend) ?? HttpPipelinePrepend); + } + if (null != HttpPipelineAppend) + { + Pipeline.Append((this.CommandRuntime as Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.PowerShell.IAsyncCommandRuntimeExtensions)?.Wrap(HttpPipelineAppend) ?? HttpPipelineAppend); + } + // get the client instance + try + { + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletBeforeAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + if (InputObject?.Id != null) + { + await this.Client.LinkersUpdateDryrunViaIdentity(InputObject.Id, _parametersBody, onOk, onDefault, this, Pipeline); + } + else + { + // try to call with PATH parameters from Input Object + if (null == InputObject.ResourceUri) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.ResourceUri"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + if (null == InputObject.DryrunName) + { + ThrowTerminatingError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception("InputObject has null value for InputObject.DryrunName"),string.Empty, global::System.Management.Automation.ErrorCategory.InvalidArgument, InputObject) ); + } + await this.Client.LinkersUpdateDryrun(InputObject.ResourceUri ?? null, InputObject.DryrunName ?? null, _parametersBody, onOk, onDefault, this, Pipeline); + } + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletAfterAPICall); if( ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Token.IsCancellationRequested ) { return; } + } + catch (Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.UndeclaredResponseException urexception) + { + WriteError(new global::System.Management.Automation.ErrorRecord(urexception, urexception.StatusCode.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=_parametersBody}) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(urexception.Message) { RecommendedAction = urexception.Action } + }); + } + finally + { + await ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Signal(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Events.CmdletProcessRecordAsyncEnd); + } + } + } + + /// Interrupts currently running code within the command. + protected override void StopProcessing() + { + ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener)this).Cancel(); + base.StopProcessing(); + } + + /// + /// Intializes a new instance of the cmdlet class. + /// + public UpdateAzServiceLinkerDryrun_UpdateViaIdentityExpanded() + { + + } + + /// + /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). + /// + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnDefault(responseMessage, response, ref _returnNow); + // if overrideOnDefault has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // Error Response : default + var code = (await response)?.Code; + var message = (await response)?.Message; + if ((null == code || null == message)) + { + // Unrecognized Response. Create an error record based on what we have. + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.RestException(responseMessage, await response); + WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=_parametersBody }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } + }); + } + else + { + WriteError( new global::System.Management.Automation.ErrorRecord(new global::System.Exception($"[{code}] : {message}"), code?.ToString(), global::System.Management.Automation.ErrorCategory.InvalidOperation, new { body=_parametersBody }) + { + ErrorDetails = new global::System.Management.Automation.ErrorDetails(message) { RecommendedAction = global::System.String.Empty } + }); + } + } + } + + /// a delegate that is called when the remote service returns 200 (OK). + /// the raw response message as an global::System.Net.Http.HttpResponseMessage. + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource + /// from the remote call + /// + /// A that will be complete when handling of the method is completed. + /// + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + { + using( NoSynchronizationContext ) + { + var _returnNow = global::System.Threading.Tasks.Task.FromResult(false); + overrideOnOk(responseMessage, response, ref _returnNow); + // if overrideOnOk has returned true, then return right away. + if ((null != _returnNow && await _returnNow)) + { + return ; + } + // onOk - response for 200 / application/json + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource + WriteObject((await response)); + } + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/generated/cmdlets/UpdateAzServiceLinker_UpdateExpanded.cs b/src/ServiceLinker/generated/cmdlets/UpdateAzServiceLinker_UpdateExpanded.cs index 94a296be91cc..8df4e392d60f 100644 --- a/src/ServiceLinker/generated/cmdlets/UpdateAzServiceLinker_UpdateExpanded.cs +++ b/src/ServiceLinker/generated/cmdlets/UpdateAzServiceLinker_UpdateExpanded.cs @@ -8,14 +8,14 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Cmdlets using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; using System; - /// Operation to update an existing link. + /// Operation to update an existing Linker. /// /// [OpenAPI] Update=>PATCH:"/{resourceUri}/providers/Microsoft.ServiceLinker/linkers/{linkerName}" /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzServiceLinker_UpdateExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource))] - [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Description(@"Operation to update an existing link.")] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource))] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Description(@"Operation to update an existing Linker.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Generated] public partial class UpdateAzServiceLinker_UpdateExpanded : global::System.Management.Automation.PSCmdlet, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener @@ -34,8 +34,8 @@ public partial class UpdateAzServiceLinker_UpdateExpanded : global::System.Manag /// private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); - /// A linker to be updated. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatch _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.LinkerPatch(); + /// A Linker to be updated. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatch _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.LinkerPatch(); /// when specified, runs this cmdlet as a PowerShell job [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] @@ -50,8 +50,8 @@ public partial class UpdateAzServiceLinker_UpdateExpanded : global::System.Manag ReadOnly = false, Description = @"The authentication type.", SerializedName = @"authInfo", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase) })] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase AuthInfo { get => _parametersBody.AuthInfo ?? null /* object */; set => _parametersBody.AuthInfo = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase) })] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase AuthInfo { get => _parametersBody.AuthInfo ?? null /* object */; set => _parametersBody.AuthInfo = value; } /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] @@ -73,6 +73,66 @@ public partial class UpdateAzServiceLinker_UpdateExpanded : global::System.Manag [global::System.Management.Automation.ArgumentCompleter(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType))] public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType ClientType { get => _parametersBody.ClientType ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType)""); set => _parametersBody.ClientType = value; } + /// + /// Optional, indicate whether to apply configurations on source application. If enable, generate configurations and applied + /// to the source application. Default is enable. If optOut, no configuration change will be made on source. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Optional, indicate whether to apply configurations on source application. If enable, generate configurations and applied to the source application. Default is enable. If optOut, no configuration change will be made on source.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Optional, indicate whether to apply configurations on source application. If enable, generate configurations and applied to the source application. Default is enable. If optOut, no configuration change will be made on source.", + SerializedName = @"action", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType) })] + [global::System.Management.Automation.ArgumentCompleter(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType))] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType ConfigurationInfoAction { get => _parametersBody.ConfigurationInfoAction ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType)""); set => _parametersBody.ConfigurationInfoAction = value; } + + /// + /// A dictionary of additional configurations to be added. Service will auto generate a set of basic configurations and this + /// property is to full fill more customized configurations + /// + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ExportAs(typeof(global::System.Collections.Hashtable))] + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "A dictionary of additional configurations to be added. Service will auto generate a set of basic configurations and this property is to full fill more customized configurations")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"A dictionary of additional configurations to be added. Service will auto generate a set of basic configurations and this property is to full fill more customized configurations", + SerializedName = @"additionalConfigurations", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations) })] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations ConfigurationInfoAdditionalConfiguration { get => _parametersBody.ConfigurationInfoAdditionalConfiguration ?? null /* object */; set => _parametersBody.ConfigurationInfoAdditionalConfiguration = value; } + + /// + /// Optional. A dictionary of default key name and customized key name mapping. If not specified, default key name will be + /// used for generate configurations + /// + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ExportAs(typeof(global::System.Collections.Hashtable))] + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Optional. A dictionary of default key name and customized key name mapping. If not specified, default key name will be used for generate configurations")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Optional. A dictionary of default key name and customized key name mapping. If not specified, default key name will be used for generate configurations", + SerializedName = @"customizedKeys", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys) })] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys ConfigurationInfoCustomizedKey { get => _parametersBody.ConfigurationInfoCustomizedKey ?? null /* object */; set => _parametersBody.ConfigurationInfoCustomizedKey = value; } + + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Indicates whether to clean up previous operation when Linker is updating or deleting")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Indicates whether to clean up previous operation when Linker is updating or deleting", + SerializedName = @"deleteOrUpdateBehavior", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.DoNotExport] + [global::System.Management.Automation.ArgumentCompleter(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior))] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior ConfigurationInfoDeleteOrUpdateBehavior { get => _parametersBody.ConfigurationInfoDeleteOrUpdateBehavior ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior)""); set => _parametersBody.ConfigurationInfoDeleteOrUpdateBehavior = value; } + /// /// The credentials, account, tenant, and subscription used for communication with Azure /// @@ -82,6 +142,48 @@ public partial class UpdateAzServiceLinker_UpdateExpanded : global::System.Manag [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Azure)] public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + /// Allow Azure services to access the target service if true. + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Allow Azure services to access the target service if true.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Allow Azure services to access the target service if true.", + SerializedName = @"azureServices", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType) })] + [global::System.Management.Automation.ArgumentCompleter(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType))] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType FirewallRuleAzureService { get => _parametersBody.FirewallRuleAzureService ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType)""); set => _parametersBody.FirewallRuleAzureService = value; } + + /// + /// Allow caller client IP to access the target service if true. the property is used when connecting local application to + /// target service. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Allow caller client IP to access the target service if true. the property is used when connecting local application to target service.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Allow caller client IP to access the target service if true. the property is used when connecting local application to target service.", + SerializedName = @"callerClientIP", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType) })] + [global::System.Management.Automation.ArgumentCompleter(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType))] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType FirewallRuleCallerClientIP { get => _parametersBody.FirewallRuleCallerClientIP ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType)""); set => _parametersBody.FirewallRuleCallerClientIP = value; } + + /// + /// This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client + /// IPs for a given database account. + /// + [global::System.Management.Automation.AllowEmptyCollection] + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client IPs for a given database account.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client IPs for a given database account.", + SerializedName = @"ipRanges", + PossibleTypes = new [] { typeof(string) })] + public string[] FirewallRuleIPRange { get => _parametersBody.FirewallRuleIPRange ?? null /* arrayOf */; set => _parametersBody.FirewallRuleIPRange = value; } + /// SendAsync Pipeline Steps to be appended to the front of the pipeline [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] [global::System.Management.Automation.ValidateNotNull] @@ -149,6 +251,36 @@ public partial class UpdateAzServiceLinker_UpdateExpanded : global::System.Manag [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + /// + /// Optional. Indicates public network solution. If enable, enable public network access of target service with best try. + /// Default is enable. If optOut, opt out public network access configuration. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Optional. Indicates public network solution. If enable, enable public network access of target service with best try. Default is enable. If optOut, opt out public network access configuration.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Optional. Indicates public network solution. If enable, enable public network access of target service with best try. Default is enable. If optOut, opt out public network access configuration.", + SerializedName = @"action", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType) })] + [global::System.Management.Automation.ArgumentCompleter(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType))] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType PublicNetworkSolutionAction { get => _parametersBody.PublicNetworkSolutionAction ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType)""); set => _parametersBody.PublicNetworkSolutionAction = value; } + + /// + /// Indicates whether to clean up previous operation(such as firewall rules) when Linker is updating or deleting + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Indicates whether to clean up previous operation(such as firewall rules) when Linker is updating or deleting")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Indicates whether to clean up previous operation(such as firewall rules) when Linker is updating or deleting", + SerializedName = @"deleteOrUpdateBehavior", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.DoNotExport] + [global::System.Management.Automation.ArgumentCompleter(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior))] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior PublicNetworkSolutionDeleteOrUpdateBehavior { get => _parametersBody.PublicNetworkSolutionDeleteOrUpdateBehavior ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior)""); set => _parametersBody.PublicNetworkSolutionDeleteOrUpdateBehavior = value; } + /// Backing field for property. private string _resourceUri; @@ -187,6 +319,17 @@ public partial class UpdateAzServiceLinker_UpdateExpanded : global::System.Manag PossibleTypes = new [] { typeof(string) })] public string SecretStoreKeyVaultId { get => _parametersBody.SecretStoreKeyVaultId ?? null; set => _parametersBody.SecretStoreKeyVaultId = value; } + /// The key vault secret name to store secret, only valid when storing one secret + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The key vault secret name to store secret, only valid when storing one secret")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The key vault secret name to store secret, only valid when storing one secret", + SerializedName = @"keyVaultSecretName", + PossibleTypes = new [] { typeof(string) })] + public string SecretStoreKeyVaultSecretName { get => _parametersBody.SecretStoreKeyVaultSecretName ?? null; set => _parametersBody.SecretStoreKeyVaultSecretName = value; } + /// The target service properties [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The target service properties")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Body)] @@ -195,8 +338,23 @@ public partial class UpdateAzServiceLinker_UpdateExpanded : global::System.Manag ReadOnly = false, Description = @"The target service properties", SerializedName = @"targetService", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase) })] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase TargetService { get => _parametersBody.TargetService ?? null /* object */; set => _parametersBody.TargetService = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase) })] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase TargetService { get => _parametersBody.TargetService ?? null /* object */; set => _parametersBody.TargetService = value; } + + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Indicates whether to clean up previous operation when Linker is updating or deleting")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Indicates whether to clean up previous operation when Linker is updating or deleting", + SerializedName = @"deleteOrUpdateBehavior", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.DoNotExport] + [global::System.Management.Automation.ArgumentCompleter(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior))] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior VNetSolutionDeleteOrUpdateBehavior { get => _parametersBody.VNetSolutionDeleteOrUpdateBehavior ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior)""); set => _parametersBody.VNetSolutionDeleteOrUpdateBehavior = value; } /// Type of VNet solution. [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Type of VNet solution.")] @@ -228,24 +386,24 @@ public partial class UpdateAzServiceLinker_UpdateExpanded : global::System.Manag /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a from the remote call + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a from the remote call + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource + /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -475,12 +633,12 @@ public UpdateAzServiceLinker_UpdateExpanded() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a from the remote call + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -497,7 +655,7 @@ public UpdateAzServiceLinker_UpdateExpanded() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { ResourceUri=ResourceUri, Name=Name, XmsServiceconnectorUserToken=this.InvocationInformation.BoundParameters.ContainsKey("XmsServiceconnectorUserToken") ? XmsServiceconnectorUserToken : null, body=_parametersBody }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -515,12 +673,12 @@ public UpdateAzServiceLinker_UpdateExpanded() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a from the remote call + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource + /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -532,7 +690,7 @@ public UpdateAzServiceLinker_UpdateExpanded() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource WriteObject((await response)); } } diff --git a/src/ServiceLinker/generated/cmdlets/UpdateAzServiceLinker_UpdateViaIdentityExpanded.cs b/src/ServiceLinker/generated/cmdlets/UpdateAzServiceLinker_UpdateViaIdentityExpanded.cs index ef4d243d084c..50e2970e85fc 100644 --- a/src/ServiceLinker/generated/cmdlets/UpdateAzServiceLinker_UpdateViaIdentityExpanded.cs +++ b/src/ServiceLinker/generated/cmdlets/UpdateAzServiceLinker_UpdateViaIdentityExpanded.cs @@ -8,14 +8,14 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Cmdlets using static Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Extensions; using System; - /// Operation to update an existing link. + /// Operation to update an existing Linker. /// /// [OpenAPI] Update=>PATCH:"/{resourceUri}/providers/Microsoft.ServiceLinker/linkers/{linkerName}" /// [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.InternalExport] [global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsData.Update, @"AzServiceLinker_UpdateViaIdentityExpanded", SupportsShouldProcess = true)] - [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource))] - [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Description(@"Operation to update an existing link.")] + [global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource))] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Description(@"Operation to update an existing Linker.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Generated] public partial class UpdateAzServiceLinker_UpdateViaIdentityExpanded : global::System.Management.Automation.PSCmdlet, Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.IEventListener @@ -34,8 +34,8 @@ public partial class UpdateAzServiceLinker_UpdateViaIdentityExpanded : global::S /// private global::System.Threading.CancellationTokenSource _cancellationTokenSource = new global::System.Threading.CancellationTokenSource(); - /// A linker to be updated. - private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerPatch _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.LinkerPatch(); + /// A Linker to be updated. + private Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerPatch _parametersBody = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.LinkerPatch(); /// when specified, runs this cmdlet as a PowerShell job [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Run the command as a job")] @@ -50,8 +50,8 @@ public partial class UpdateAzServiceLinker_UpdateViaIdentityExpanded : global::S ReadOnly = false, Description = @"The authentication type.", SerializedName = @"authInfo", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase) })] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase AuthInfo { get => _parametersBody.AuthInfo ?? null /* object */; set => _parametersBody.AuthInfo = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase) })] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase AuthInfo { get => _parametersBody.AuthInfo ?? null /* object */; set => _parametersBody.AuthInfo = value; } /// Wait for .NET debugger to attach [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "Wait for .NET debugger to attach")] @@ -73,6 +73,66 @@ public partial class UpdateAzServiceLinker_UpdateViaIdentityExpanded : global::S [global::System.Management.Automation.ArgumentCompleter(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType))] public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType ClientType { get => _parametersBody.ClientType ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType)""); set => _parametersBody.ClientType = value; } + /// + /// Optional, indicate whether to apply configurations on source application. If enable, generate configurations and applied + /// to the source application. Default is enable. If optOut, no configuration change will be made on source. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Optional, indicate whether to apply configurations on source application. If enable, generate configurations and applied to the source application. Default is enable. If optOut, no configuration change will be made on source.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Optional, indicate whether to apply configurations on source application. If enable, generate configurations and applied to the source application. Default is enable. If optOut, no configuration change will be made on source.", + SerializedName = @"action", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType) })] + [global::System.Management.Automation.ArgumentCompleter(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType))] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType ConfigurationInfoAction { get => _parametersBody.ConfigurationInfoAction ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType)""); set => _parametersBody.ConfigurationInfoAction = value; } + + /// + /// A dictionary of additional configurations to be added. Service will auto generate a set of basic configurations and this + /// property is to full fill more customized configurations + /// + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ExportAs(typeof(global::System.Collections.Hashtable))] + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "A dictionary of additional configurations to be added. Service will auto generate a set of basic configurations and this property is to full fill more customized configurations")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"A dictionary of additional configurations to be added. Service will auto generate a set of basic configurations and this property is to full fill more customized configurations", + SerializedName = @"additionalConfigurations", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations) })] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations ConfigurationInfoAdditionalConfiguration { get => _parametersBody.ConfigurationInfoAdditionalConfiguration ?? null /* object */; set => _parametersBody.ConfigurationInfoAdditionalConfiguration = value; } + + /// + /// Optional. A dictionary of default key name and customized key name mapping. If not specified, default key name will be + /// used for generate configurations + /// + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ExportAs(typeof(global::System.Collections.Hashtable))] + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Optional. A dictionary of default key name and customized key name mapping. If not specified, default key name will be used for generate configurations")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Optional. A dictionary of default key name and customized key name mapping. If not specified, default key name will be used for generate configurations", + SerializedName = @"customizedKeys", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys) })] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys ConfigurationInfoCustomizedKey { get => _parametersBody.ConfigurationInfoCustomizedKey ?? null /* object */; set => _parametersBody.ConfigurationInfoCustomizedKey = value; } + + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Indicates whether to clean up previous operation when Linker is updating or deleting")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Indicates whether to clean up previous operation when Linker is updating or deleting", + SerializedName = @"deleteOrUpdateBehavior", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.DoNotExport] + [global::System.Management.Automation.ArgumentCompleter(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior))] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior ConfigurationInfoDeleteOrUpdateBehavior { get => _parametersBody.ConfigurationInfoDeleteOrUpdateBehavior ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior)""); set => _parametersBody.ConfigurationInfoDeleteOrUpdateBehavior = value; } + /// /// The credentials, account, tenant, and subscription used for communication with Azure /// @@ -82,6 +142,48 @@ public partial class UpdateAzServiceLinker_UpdateViaIdentityExpanded : global::S [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Azure)] public global::System.Management.Automation.PSObject DefaultProfile { get; set; } + /// Allow Azure services to access the target service if true. + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Allow Azure services to access the target service if true.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Allow Azure services to access the target service if true.", + SerializedName = @"azureServices", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType) })] + [global::System.Management.Automation.ArgumentCompleter(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType))] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType FirewallRuleAzureService { get => _parametersBody.FirewallRuleAzureService ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType)""); set => _parametersBody.FirewallRuleAzureService = value; } + + /// + /// Allow caller client IP to access the target service if true. the property is used when connecting local application to + /// target service. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Allow caller client IP to access the target service if true. the property is used when connecting local application to target service.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Allow caller client IP to access the target service if true. the property is used when connecting local application to target service.", + SerializedName = @"callerClientIP", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType) })] + [global::System.Management.Automation.ArgumentCompleter(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType))] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType FirewallRuleCallerClientIP { get => _parametersBody.FirewallRuleCallerClientIP ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType)""); set => _parametersBody.FirewallRuleCallerClientIP = value; } + + /// + /// This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client + /// IPs for a given database account. + /// + [global::System.Management.Automation.AllowEmptyCollection] + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client IPs for a given database account.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client IPs for a given database account.", + SerializedName = @"ipRanges", + PossibleTypes = new [] { typeof(string) })] + public string[] FirewallRuleIPRange { get => _parametersBody.FirewallRuleIPRange ?? null /* arrayOf */; set => _parametersBody.FirewallRuleIPRange = value; } + /// SendAsync Pipeline Steps to be appended to the front of the pipeline [global::System.Management.Automation.Parameter(Mandatory = false, DontShow = true, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")] [global::System.Management.Automation.ValidateNotNull] @@ -142,6 +244,36 @@ public partial class UpdateAzServiceLinker_UpdateViaIdentityExpanded : global::S [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Runtime)] public global::System.Management.Automation.SwitchParameter ProxyUseDefaultCredentials { get; set; } + /// + /// Optional. Indicates public network solution. If enable, enable public network access of target service with best try. + /// Default is enable. If optOut, opt out public network access configuration. + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Optional. Indicates public network solution. If enable, enable public network access of target service with best try. Default is enable. If optOut, opt out public network access configuration.")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Optional. Indicates public network solution. If enable, enable public network access of target service with best try. Default is enable. If optOut, opt out public network access configuration.", + SerializedName = @"action", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType) })] + [global::System.Management.Automation.ArgumentCompleter(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType))] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType PublicNetworkSolutionAction { get => _parametersBody.PublicNetworkSolutionAction ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType)""); set => _parametersBody.PublicNetworkSolutionAction = value; } + + /// + /// Indicates whether to clean up previous operation(such as firewall rules) when Linker is updating or deleting + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Indicates whether to clean up previous operation(such as firewall rules) when Linker is updating or deleting")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Indicates whether to clean up previous operation(such as firewall rules) when Linker is updating or deleting", + SerializedName = @"deleteOrUpdateBehavior", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.DoNotExport] + [global::System.Management.Automation.ArgumentCompleter(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior))] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior PublicNetworkSolutionDeleteOrUpdateBehavior { get => _parametersBody.PublicNetworkSolutionDeleteOrUpdateBehavior ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior)""); set => _parametersBody.PublicNetworkSolutionDeleteOrUpdateBehavior = value; } + /// connection scope in source service. [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "connection scope in source service.")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Body)] @@ -164,6 +296,17 @@ public partial class UpdateAzServiceLinker_UpdateViaIdentityExpanded : global::S PossibleTypes = new [] { typeof(string) })] public string SecretStoreKeyVaultId { get => _parametersBody.SecretStoreKeyVaultId ?? null; set => _parametersBody.SecretStoreKeyVaultId = value; } + /// The key vault secret name to store secret, only valid when storing one secret + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The key vault secret name to store secret, only valid when storing one secret")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"The key vault secret name to store secret, only valid when storing one secret", + SerializedName = @"keyVaultSecretName", + PossibleTypes = new [] { typeof(string) })] + public string SecretStoreKeyVaultSecretName { get => _parametersBody.SecretStoreKeyVaultSecretName ?? null; set => _parametersBody.SecretStoreKeyVaultSecretName = value; } + /// The target service properties [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "The target service properties")] [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Body)] @@ -172,8 +315,23 @@ public partial class UpdateAzServiceLinker_UpdateViaIdentityExpanded : global::S ReadOnly = false, Description = @"The target service properties", SerializedName = @"targetService", - PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase) })] - public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase TargetService { get => _parametersBody.TargetService ?? null /* object */; set => _parametersBody.TargetService = value; } + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase) })] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase TargetService { get => _parametersBody.TargetService ?? null /* object */; set => _parametersBody.TargetService = value; } + + /// + /// Indicates whether to clean up previous operation when Linker is updating or deleting + /// + [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Indicates whether to clean up previous operation when Linker is updating or deleting")] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category(global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.ParameterCategory.Body)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info( + Required = false, + ReadOnly = false, + Description = @"Indicates whether to clean up previous operation when Linker is updating or deleting", + SerializedName = @"deleteOrUpdateBehavior", + PossibleTypes = new [] { typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior) })] + [global::Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.DoNotExport] + [global::System.Management.Automation.ArgumentCompleter(typeof(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior))] + public Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior VNetSolutionDeleteOrUpdateBehavior { get => _parametersBody.VNetSolutionDeleteOrUpdateBehavior ?? ((Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.DeleteOrUpdateBehavior)""); set => _parametersBody.VNetSolutionDeleteOrUpdateBehavior = value; } /// Type of VNet solution. [global::System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "Type of VNet solution.")] @@ -205,24 +363,24 @@ public partial class UpdateAzServiceLinker_UpdateViaIdentityExpanded : global::S /// happens on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a from the remote call + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call /// /// Determines if the rest of the onDefault method should be processed, or if the method should /// return immediately (set to true to skip further processing ) - partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// overrideOnOk will be called before the regular onOk has been processed, allowing customization of what happens /// on that response. Implement this method in a partial class to enable this behavior /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a from the remote call + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource + /// from the remote call /// /// Determines if the rest of the onOk method should be processed, or if the method should return /// immediately (set to true to skip further processing ) - partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); + partial void overrideOnOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response, ref global::System.Threading.Tasks.Task returnNow); /// /// (overrides the default BeginProcessing method in global::System.Management.Automation.PSCmdlet) @@ -466,12 +624,12 @@ public UpdateAzServiceLinker_UpdateViaIdentityExpanded() /// a delegate that is called when the remote service returns default (any response code not handled elsewhere). /// /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a from the remote call + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IErrorResponse + /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onDefault(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -488,7 +646,7 @@ public UpdateAzServiceLinker_UpdateViaIdentityExpanded() if ((null == code || null == message)) { // Unrecognized Response. Create an error record based on what we have. - var ex = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.RestException(responseMessage, await response); + var ex = new Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.RestException(responseMessage, await response); WriteError( new global::System.Management.Automation.ErrorRecord(ex, ex.Code, global::System.Management.Automation.ErrorCategory.InvalidOperation, new { XmsServiceconnectorUserToken=this.InvocationInformation.BoundParameters.ContainsKey("XmsServiceconnectorUserToken") ? XmsServiceconnectorUserToken : null, body=_parametersBody }) { ErrorDetails = new global::System.Management.Automation.ErrorDetails(ex.Message) { RecommendedAction = ex.Action } @@ -506,12 +664,12 @@ public UpdateAzServiceLinker_UpdateViaIdentityExpanded() /// a delegate that is called when the remote service returns 200 (OK). /// the raw response message as an global::System.Net.Http.HttpResponseMessage. - /// the body result as a from the remote call + /// the body result as a Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource + /// from the remote call /// /// A that will be complete when handling of the method is completed. /// - private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) + private async global::System.Threading.Tasks.Task onOk(global::System.Net.Http.HttpResponseMessage responseMessage, global::System.Threading.Tasks.Task response) { using( NoSynchronizationContext ) { @@ -523,7 +681,7 @@ public UpdateAzServiceLinker_UpdateViaIdentityExpanded() return ; } // onOk - response for 200 / application/json - // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource + // (await response) // should be Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource WriteObject((await response)); } } diff --git a/src/ServiceLinker/generated/runtime/AsyncOperationResponse.cs b/src/ServiceLinker/generated/runtime/AsyncOperationResponse.cs index 51d41a7d25ee..48b6acf64c36 100644 --- a/src/ServiceLinker/generated/runtime/AsyncOperationResponse.cs +++ b/src/ServiceLinker/generated/runtime/AsyncOperationResponse.cs @@ -31,10 +31,10 @@ public static AsyncOperationResponse FromJson(Microsoft.Azure.PowerShell.Cmdlets /// - /// Creates a new instance of , deserializing the content from a json string. + /// Creates a new instance of , deserializing the content from a json string. /// /// a string containing a JSON serialized instance of this model. - /// an instance of the model class. + /// an instance of the model class. public static AsyncOperationResponse FromJsonString(string jsonText) => FromJson(Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Json.JsonNode.Parse(jsonText)); } @@ -43,19 +43,19 @@ public partial class AsyncOperationResponseTypeConverter : System.Management.Aut { /// - /// Determines if the converter can convert the parameter to the + /// Determines if the converter can convert the parameter to the /// parameter. /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the + /// true if the converter can convert the parameter to the /// parameter, otherwise false. /// public override bool CanConvertFrom(object sourceValue, global::System.Type destinationType) => CanConvertFrom(sourceValue); /// - /// Determines if the converter can convert the parameter to the + /// Determines if the converter can convert the parameter to a type /// parameter. /// /// the instance to check if it can be converted to the - /// Determines if the parameter can be converted to the parameter + /// Determines if the parameter can be converted to the parameter /// /// the to convert from /// the to convert to /// - /// true if the converter can convert the parameter to the + /// true if the converter can convert the parameter to the /// parameter, otherwise false /// public override bool CanConvertTo(object sourceValue, global::System.Type destinationType) => false; /// - /// Converts the parameter to the parameter using and + /// Converts the parameter to the parameter using and /// /// the to convert from /// the to convert to @@ -128,8 +128,7 @@ public static bool CanConvertFrom(dynamic sourceValue) public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConvertFrom(sourceValue); /// - /// Converts the parameter to the parameter using and + /// Converts the parameter into an instance of /// /// the value to convert into an instance of . /// diff --git a/src/ServiceLinker/generated/runtime/BuildTime/Cmdlets/ExportPsd1.cs b/src/ServiceLinker/generated/runtime/BuildTime/Cmdlets/ExportPsd1.cs index 623c8dccd883..5b67d8b12167 100644 --- a/src/ServiceLinker/generated/runtime/BuildTime/Cmdlets/ExportPsd1.cs +++ b/src/ServiceLinker/generated/runtime/BuildTime/Cmdlets/ExportPsd1.cs @@ -51,7 +51,7 @@ protected override void ProcessRecord() throw new ArgumentException($"Custom folder '{CustomFolder}' does not exist"); } - string version = Convert.ToString(@"0.1.0"); + string version = Convert.ToString(@"0.1.1"); // Validate the module version should be semantic version // Following regex is official from https://semver.org/ Regex rx = new Regex(@"^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$", RegexOptions.Compiled); @@ -163,7 +163,7 @@ protected override void ProcessRecord() if (previewVersion != null) { - sb.AppendLine($@"{Indent}{Indent}{Indent}Prerelease = {previewVersion}"); + sb.AppendLine($@"{Indent}{Indent}{Indent}Prerelease = '{previewVersion}'"); } sb.AppendLine($@"{Indent}{Indent}{Indent}Tags = {"Azure ResourceManager ARM PSModule ServiceLinker".Split(' ').ToPsList().NullIfEmpty() ?? "''"}"); sb.AppendLine($@"{Indent}{Indent}{Indent}LicenseUri = '{"https://aka.ms/azps-license"}'"); diff --git a/src/ServiceLinker/generated/runtime/BuildTime/Models/PsProxyOutputs.cs b/src/ServiceLinker/generated/runtime/BuildTime/Models/PsProxyOutputs.cs index e958b4fbf03a..2b02a9435490 100644 --- a/src/ServiceLinker/generated/runtime/BuildTime/Models/PsProxyOutputs.cs +++ b/src/ServiceLinker/generated/runtime/BuildTime/Models/PsProxyOutputs.cs @@ -199,7 +199,7 @@ private string GetTelemetry() { return $@" {Indent}{Indent}if ($null -eq [Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion) {{ -{Indent}{Indent}{Indent}[Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Runspace.Version.ToString() +{Indent}{Indent}{Indent}[Microsoft.WindowsAzure.Commands.Utilities.Common.AzurePSCmdlet]::PowerShellVersion = $Host.Version.ToString() {Indent}{Indent}}} {Indent}{Indent}$preTelemetryId = [Microsoft.WindowsAzure.Commands.Common.MetricHelper]::TelemetryId {Indent}{Indent}if ($preTelemetryId -eq '') {{ @@ -604,7 +604,7 @@ string RenderProperty(ComplexInterfaceInfo info, string indent, bool dash, bool return ni.IsComplexInterface ? ni.ToNoteOutput(nestedIndent, includeDashes, includeBackticks, false) : RenderProperty(ni, nestedIndent, includeDashes, includeBackticks); - }).Prepend(RenderProperty(complexInterfaceInfo, currentIndent, !isFirst && includeDashes, !isFirst && includeBackticks)); + }).Prepend(RenderProperty(complexInterfaceInfo, currentIndent, !isFirst && includeDashes, includeBackticks)); return String.Join(Environment.NewLine, nested); } } diff --git a/src/ServiceLinker/generated/runtime/BuildTime/PsHelpers.cs b/src/ServiceLinker/generated/runtime/BuildTime/PsHelpers.cs index fc52b214fd80..d7eba5cb0d0d 100644 --- a/src/ServiceLinker/generated/runtime/BuildTime/PsHelpers.cs +++ b/src/ServiceLinker/generated/runtime/BuildTime/PsHelpers.cs @@ -39,9 +39,10 @@ public static IEnumerable GetModuleCmdlets(params string[] modulePa public static IEnumerable GetScriptCmdlets(PSCmdlet cmdlet, string scriptFolder) { // https://stackoverflow.com/a/40969712/294804 + var wrappedFolder = scriptFolder.Contains("'") ? $@"""{scriptFolder}""" : $@"'{scriptFolder}'"; var getCmdletsCommand = $@" $currentFunctions = Get-ChildItem function: -Get-ChildItem -Path '{scriptFolder}' -Recurse -Include '*.ps1' -File | ForEach-Object {{ . $_.FullName }} +Get-ChildItem -Path {wrappedFolder} -Recurse -Include '*.ps1' -File | ForEach-Object {{ . $_.FullName }} Get-ChildItem function: | Where-Object {{ ($currentFunctions -notcontains $_) -and $_.CmdletBinding }} "; return cmdlet?.RunScript(getCmdletsCommand) ?? RunScript(getCmdletsCommand); diff --git a/src/ServiceLinker/generated/runtime/Customizations/IJsonSerializable.cs b/src/ServiceLinker/generated/runtime/Customizations/IJsonSerializable.cs index 061eabc9f5df..c1f62886d9b7 100644 --- a/src/ServiceLinker/generated/runtime/Customizations/IJsonSerializable.cs +++ b/src/ServiceLinker/generated/runtime/Customizations/IJsonSerializable.cs @@ -129,7 +129,7 @@ private static JsonNode TryToJsonValue(dynamic oValue) /// /// Serialize an object by using a variety of methods. /// - /// the object to be serialized. + /// the object to be serialized. /// the serialized JsonNode (if successful), otherwise, null internal static JsonNode ToJsonValue(object value) { diff --git a/src/ServiceLinker/generated/runtime/EventDataExtensions.cs b/src/ServiceLinker/generated/runtime/EventDataExtensions.cs index 43c2ef504cb9..e74fbe5509d1 100644 --- a/src/ServiceLinker/generated/runtime/EventDataExtensions.cs +++ b/src/ServiceLinker/generated/runtime/EventDataExtensions.cs @@ -7,7 +7,6 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime { using System; - [System.ComponentModel.TypeConverter(typeof(EventDataConverter))] /// /// PowerShell-specific data on top of the llc# EventData /// @@ -16,6 +15,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime /// Obviously, this code would need to be duplcated on both modules. /// This is preferable to sharing a common library, as versioning makes that problematic. /// + [System.ComponentModel.TypeConverter(typeof(EventDataConverter))] public partial class EventData : EventArgs { } diff --git a/src/ServiceLinker/generated/runtime/ISendAsync.cs b/src/ServiceLinker/generated/runtime/ISendAsync.cs index a953397e02aa..d6b451aa43cf 100644 --- a/src/ServiceLinker/generated/runtime/ISendAsync.cs +++ b/src/ServiceLinker/generated/runtime/ISendAsync.cs @@ -238,6 +238,8 @@ internal static Task CloneWithContentAndDispose(this HttpReq /// Clones an HttpRequestMessage (without the content) /// /// Original HttpRequestMessage (Will be diposed before returning) + /// + /// /// A clone of the HttpRequestMessage internal static HttpRequestMessage Clone(this HttpRequestMessage original, System.Uri requestUri = null, System.Net.Http.HttpMethod method = null) { @@ -252,9 +254,9 @@ internal static HttpRequestMessage Clone(this HttpRequestMessage original, Syste { clone.Properties.Add(prop); } - + foreach (KeyValuePair> header in original.Headers) - { + { /* **temporarily skip cloning telemetry related headers** clone.Headers.TryAddWithoutValidation(header.Key, header.Value); @@ -264,7 +266,7 @@ internal static HttpRequestMessage Clone(this HttpRequestMessage original, Syste clone.Headers.TryAddWithoutValidation(header.Key, header.Value); } } - + return clone; } @@ -272,6 +274,8 @@ internal static HttpRequestMessage Clone(this HttpRequestMessage original, Syste /// Clones an HttpRequestMessage (including the content stream and content headers) /// /// Original HttpRequestMessage (Will be diposed before returning) + /// + /// /// A clone of the HttpRequestMessage internal static async Task CloneWithContent(this HttpRequestMessage original, System.Uri requestUri = null, System.Net.Http.HttpMethod method = null) { diff --git a/src/ServiceLinker/generated/runtime/MessageAttribute.cs b/src/ServiceLinker/generated/runtime/MessageAttribute.cs index df3dfdb35bc4..9581dea51103 100644 --- a/src/ServiceLinker/generated/runtime/MessageAttribute.cs +++ b/src/ServiceLinker/generated/runtime/MessageAttribute.cs @@ -276,7 +276,7 @@ protected override string GetAttributeSpecificMessage() /// then the attribbute is applicable /// If the invocationInfo is null we return true /// - /// + /// /// bool public override bool IsApplicableToInvocation(InvocationInfo invocationInfo) { diff --git a/src/ServiceLinker/generated/runtime/PipelineMocking.cs b/src/ServiceLinker/generated/runtime/PipelineMocking.cs index 417dfe9471ab..6bb97f2ec626 100644 --- a/src/ServiceLinker/generated/runtime/PipelineMocking.cs +++ b/src/ServiceLinker/generated/runtime/PipelineMocking.cs @@ -259,4 +259,4 @@ public async Task SendAsync(HttpRequestMessage request, IEv } } } -} \ No newline at end of file +} diff --git a/src/ServiceLinker/help/Az.ServiceLinker.md b/src/ServiceLinker/help/Az.ServiceLinker.md index 45f0d962a1cc..b6729f5539d0 100644 --- a/src/ServiceLinker/help/Az.ServiceLinker.md +++ b/src/ServiceLinker/help/Az.ServiceLinker.md @@ -20,6 +20,9 @@ list source configurations for a linker in spring cloud. ### [Get-AzServiceLinkerConfigurationForWebApp](Get-AzServiceLinkerConfigurationForWebApp.md) list source configurations for a linker in webapp. +### [Get-AzServiceLinkerConfigurationName](Get-AzServiceLinkerConfigurationName.md) +Lists the configuration names generated by Service Connector for all target, client types, auth types. + ### [Get-AzServiceLinkerForContainerApp](Get-AzServiceLinkerForContainerApp.md) Returns Linker resource for a given name in container app. @@ -62,7 +65,7 @@ Create an in-memory object for UserAssignedIdentityAuthInfo. ### [Remove-AzServiceLinkerForContainerApp](Remove-AzServiceLinkerForContainerApp.md) Delete a link. -### [Remove-AzServiceLinkerForSpringcloud](Remove-AzServiceLinkerForSpringcloud.md) +### [Remove-AzServiceLinkerForSpringCloud](Remove-AzServiceLinkerForSpringCloud.md) Delete a link in spring cloud. ### [Remove-AzServiceLinkerForWebApp](Remove-AzServiceLinkerForWebApp.md) diff --git a/src/ServiceLinker/help/Get-AzServiceLinkerConfigurationForContainerApp.md b/src/ServiceLinker/help/Get-AzServiceLinkerConfigurationForContainerApp.md index 8555d2c289ed..614e54780063 100644 --- a/src/ServiceLinker/help/Get-AzServiceLinkerConfigurationForContainerApp.md +++ b/src/ServiceLinker/help/Get-AzServiceLinkerConfigurationForContainerApp.md @@ -168,7 +168,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfiguration +### Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration ## NOTES diff --git a/src/ServiceLinker/help/Get-AzServiceLinkerConfigurationForSpringCloud.md b/src/ServiceLinker/help/Get-AzServiceLinkerConfigurationForSpringCloud.md index c3780c2db56d..8c1a24bf841e 100644 --- a/src/ServiceLinker/help/Get-AzServiceLinkerConfigurationForSpringCloud.md +++ b/src/ServiceLinker/help/Get-AzServiceLinkerConfigurationForSpringCloud.md @@ -198,7 +198,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfiguration +### Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration ## NOTES diff --git a/src/ServiceLinker/help/Get-AzServiceLinkerConfigurationForWebApp.md b/src/ServiceLinker/help/Get-AzServiceLinkerConfigurationForWebApp.md index 648575bcaf8f..d8eeb4128d9a 100644 --- a/src/ServiceLinker/help/Get-AzServiceLinkerConfigurationForWebApp.md +++ b/src/ServiceLinker/help/Get-AzServiceLinkerConfigurationForWebApp.md @@ -168,7 +168,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfiguration +### Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration ## NOTES diff --git a/src/ServiceLinker/help/Get-AzServiceLinkerConfigurationName.md b/src/ServiceLinker/help/Get-AzServiceLinkerConfigurationName.md new file mode 100644 index 000000000000..724fdb998e78 --- /dev/null +++ b/src/ServiceLinker/help/Get-AzServiceLinkerConfigurationName.md @@ -0,0 +1,101 @@ +--- +external help file: +Module Name: Az.ServiceLinker +online version: https://learn.microsoft.com/powershell/module/az.servicelinker/get-azservicelinkerconfigurationname +schema: 2.0.0 +--- + +# Get-AzServiceLinkerConfigurationName + +## SYNOPSIS +Lists the configuration names generated by Service Connector for all target, client types, auth types. + +## SYNTAX + +``` +Get-AzServiceLinkerConfigurationName [-Filter ] [-SkipToken ] [-DefaultProfile ] + [] +``` + +## DESCRIPTION +Lists the configuration names generated by Service Connector for all target, client types, auth types. + +## EXAMPLES + +### Example 1: Get expected configuration names of difference connection +```powershell +Get-AzServiceLinkerConfigurationName +``` + +```output +systemAssignedIdentity none {Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.Config… +userAssignedIdentity none {Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.Config… +servicePrincipalSecret none {Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.Config… +secret none {Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.Config… +accessKey none {Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.Config… +``` + +Get the expected configuration names of connection with each auth type and client type. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Filter +OData filter options. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SkipToken +OData skipToken option for pagination. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationNameItem + +## NOTES + +ALIASES + +## RELATED LINKS + diff --git a/src/ServiceLinker/help/Get-AzServiceLinkerForContainerApp.md b/src/ServiceLinker/help/Get-AzServiceLinkerForContainerApp.md index 438716144ccd..dc41c080d4bd 100644 --- a/src/ServiceLinker/help/Get-AzServiceLinkerForContainerApp.md +++ b/src/ServiceLinker/help/Get-AzServiceLinkerForContainerApp.md @@ -58,7 +58,7 @@ Get-AzServiceLinkerForContainerApp -ContainerApp servicelinker-app -ResourceGrou ```output AuthInfo : Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Model - s.Api20220501.SecretAuthInfo + s.Api20221101Preview.SecretAuthInfo ClientType : dotnet Id : /subscriptions/00000000-0000-0000-0000-000000000000/re sourceGroups/servicelinker-test-group/providers/ @@ -75,7 +75,7 @@ SystemDataLastModifiedAt : SystemDataLastModifiedBy : SystemDataLastModifiedByType : TargetService : Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Model - s.Api20220501.AzureResource + s.Api20221101Preview.AzureResource Type : microsoft.servicelinker/linkers VNetSolutionType : serviceEndpoint @@ -94,7 +94,7 @@ $identity | Get-AzServiceLinkerForContainerApp | Format-List ```output AuthInfo : Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Model - s.Api20220501.SecretAuthInfo + s.Api20221101Preview.SecretAuthInfo ClientType : dotnet Id : /subscriptions/00000000-0000-0000-0000-000000000000/re sourceGroups/servicelinker-test-group/providers/ @@ -111,7 +111,7 @@ SystemDataLastModifiedAt : SystemDataLastModifiedBy : SystemDataLastModifiedByType : TargetService : Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Model - s.Api20220501.AzureResource + s.Api20221101Preview.AzureResource Type : microsoft.servicelinker/linkers VNetSolutionType : serviceEndpoint @@ -237,7 +237,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource +### Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource ## NOTES @@ -248,10 +248,15 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +`INPUTOBJECT `: Identity Parameter + - `[ConnectorName ]`: The name of resource. + - `[DryrunName ]`: The name of dryrun. - `[Id ]`: Resource identity path - `[LinkerName ]`: The name Linker resource. + - `[Location ]`: The name of Azure region. + - `[ResourceGroupName ]`: The name of the resource group. The name is case insensitive. - `[ResourceUri ]`: The fully qualified Azure Resource manager identifier of the resource to be connected. + - `[SubscriptionId ]`: The ID of the target subscription. ## RELATED LINKS diff --git a/src/ServiceLinker/help/Get-AzServiceLinkerForSpringCloud.md b/src/ServiceLinker/help/Get-AzServiceLinkerForSpringCloud.md index 977e0c7d6ce0..8018dcf83217 100644 --- a/src/ServiceLinker/help/Get-AzServiceLinkerForSpringCloud.md +++ b/src/ServiceLinker/help/Get-AzServiceLinkerForSpringCloud.md @@ -60,7 +60,7 @@ Get-AzServiceLinkerForSpringCloud -ServiceName servicelinker-springcloud -AppNam ```output AuthInfo : Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Model - s.Api20220501.SecretAuthInfo + s.Api20221101Preview.SecretAuthInfo ClientType : dotnet Id : /subscriptions/00000000-0000-0000-0000-000000000000/re sourceGroups/servicelinker-test-group/providers/ @@ -77,7 +77,7 @@ SystemDataLastModifiedAt : SystemDataLastModifiedBy : SystemDataLastModifiedByType : TargetService : Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Model - s.Api20220501.AzureResource + s.Api20221101Preview.AzureResource Type : microsoft.servicelinker/linkers VNetSolutionType : serviceEndpoint @@ -96,7 +96,7 @@ $identity | Get-AzServiceLinkerForSpringCloud | Format-List ```output AuthInfo : Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Model - s.Api20220501.SecretAuthInfo + s.Api20221101Preview.SecretAuthInfo ClientType : dotnet Id : /subscriptions/00000000-0000-0000-0000-000000000000/re sourceGroups/servicelinker-test-group/providers/ @@ -113,7 +113,7 @@ SystemDataLastModifiedAt : SystemDataLastModifiedBy : SystemDataLastModifiedByType : TargetService : Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Model - s.Api20220501.AzureResource + s.Api20221101Preview.AzureResource Type : microsoft.servicelinker/linkers VNetSolutionType : serviceEndpoint @@ -269,7 +269,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource +### Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource ## NOTES @@ -280,10 +280,15 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +`INPUTOBJECT `: Identity Parameter + - `[ConnectorName ]`: The name of resource. + - `[DryrunName ]`: The name of dryrun. - `[Id ]`: Resource identity path - `[LinkerName ]`: The name Linker resource. + - `[Location ]`: The name of Azure region. + - `[ResourceGroupName ]`: The name of the resource group. The name is case insensitive. - `[ResourceUri ]`: The fully qualified Azure Resource manager identifier of the resource to be connected. + - `[SubscriptionId ]`: The ID of the target subscription. ## RELATED LINKS diff --git a/src/ServiceLinker/help/Get-AzServiceLinkerForWebApp.md b/src/ServiceLinker/help/Get-AzServiceLinkerForWebApp.md index 416991f0dcd9..9c978d01c422 100644 --- a/src/ServiceLinker/help/Get-AzServiceLinkerForWebApp.md +++ b/src/ServiceLinker/help/Get-AzServiceLinkerForWebApp.md @@ -58,7 +58,7 @@ Get-AzServiceLinkerForWebApp -WebApp servicelinker-webapp -ResourceGroupName ser ```output AuthInfo : Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Model - s.Api20220501.SecretAuthInfo + s.Api20221101Preview.SecretAuthInfo ClientType : dotnet Id : /subscriptions/00000000-0000-0000-0000-000000000000/re sourceGroups/servicelinker-test-group/providers/ @@ -75,7 +75,7 @@ SystemDataLastModifiedAt : SystemDataLastModifiedBy : SystemDataLastModifiedByType : TargetService : Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Model - s.Api20220501.AzureResource + s.Api20221101Preview.AzureResource Type : microsoft.servicelinker/linkers VNetSolutionType : serviceEndpoint @@ -94,7 +94,7 @@ $identity | Get-AzServiceLinkerForWebApp | Format-List ```output AuthInfo : Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Model - s.Api20220501.SecretAuthInfo + s.Api20221101Preview.SecretAuthInfo ClientType : dotnet Id : /subscriptions/00000000-0000-0000-0000-000000000000/re sourceGroups/servicelinker-test-group/providers/ @@ -111,7 +111,7 @@ SystemDataLastModifiedAt : SystemDataLastModifiedBy : SystemDataLastModifiedByType : TargetService : Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Model - s.Api20220501.AzureResource + s.Api20221101Preview.AzureResource Type : microsoft.servicelinker/linkers VNetSolutionType : serviceEndpoint @@ -237,7 +237,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource +### Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource ## NOTES @@ -248,10 +248,15 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +`INPUTOBJECT `: Identity Parameter + - `[ConnectorName ]`: The name of resource. + - `[DryrunName ]`: The name of dryrun. - `[Id ]`: Resource identity path - `[LinkerName ]`: The name Linker resource. + - `[Location ]`: The name of Azure region. + - `[ResourceGroupName ]`: The name of the resource group. The name is case insensitive. - `[ResourceUri ]`: The fully qualified Azure Resource manager identifier of the resource to be connected. + - `[SubscriptionId ]`: The ID of the target subscription. ## RELATED LINKS diff --git a/src/ServiceLinker/help/New-AzServiceLinkerAzureResourceObject.md b/src/ServiceLinker/help/New-AzServiceLinkerAzureResourceObject.md index b81e3a952dfb..32a0bbb4618a 100644 --- a/src/ServiceLinker/help/New-AzServiceLinkerAzureResourceObject.md +++ b/src/ServiceLinker/help/New-AzServiceLinkerAzureResourceObject.md @@ -76,7 +76,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.AzureResource +### Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.AzureResource ## NOTES diff --git a/src/ServiceLinker/help/New-AzServiceLinkerConfluentBootstrapServerObject.md b/src/ServiceLinker/help/New-AzServiceLinkerConfluentBootstrapServerObject.md index 732ec7f6b777..cc90578e4da4 100644 --- a/src/ServiceLinker/help/New-AzServiceLinkerConfluentBootstrapServerObject.md +++ b/src/ServiceLinker/help/New-AzServiceLinkerConfluentBootstrapServerObject.md @@ -58,7 +58,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ConfluentBootstrapServer +### Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfluentBootstrapServer ## NOTES diff --git a/src/ServiceLinker/help/New-AzServiceLinkerConfluentSchemaRegistryObject.md b/src/ServiceLinker/help/New-AzServiceLinkerConfluentSchemaRegistryObject.md index 1ce6218df035..f4694d2e6ce1 100644 --- a/src/ServiceLinker/help/New-AzServiceLinkerConfluentSchemaRegistryObject.md +++ b/src/ServiceLinker/help/New-AzServiceLinkerConfluentSchemaRegistryObject.md @@ -58,7 +58,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ConfluentSchemaRegistry +### Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ConfluentSchemaRegistry ## NOTES diff --git a/src/ServiceLinker/help/New-AzServiceLinkerForContainerApp.md b/src/ServiceLinker/help/New-AzServiceLinkerForContainerApp.md index a31e5efe7e3e..462fa8587ac8 100644 --- a/src/ServiceLinker/help/New-AzServiceLinkerForContainerApp.md +++ b/src/ServiceLinker/help/New-AzServiceLinkerForContainerApp.md @@ -13,9 +13,13 @@ Create or update linker resource in container app. ## SYNTAX ``` -New-AzServiceLinkerForContainerApp -AuthInfo -Scope - -TargetService -ContainerApp -ResourceGroupName [-Name ] - [-ResourceUri ] [-ClientType ] [-SecretStoreKeyVaultId ] +New-AzServiceLinkerForContainerApp -AuthInfo -TargetService + -ContainerApp -ResourceGroupName [-Name ] [-ResourceUri ] + [-ClientType ] [-ConfigurationInfoAction ] + [-ConfigurationInfoAdditionalConfiguration ] [-ConfigurationInfoCustomizedKey ] + [-FirewallRuleAzureService ] [-FirewallRuleCallerClientIP ] + [-FirewallRuleIPRange ] [-PublicNetworkSolutionAction ] [-Scope ] + [-SecretStoreKeyVaultId ] [-SecretStoreKeyVaultSecretName ] [-VNetSolutionType ] [-DefaultProfile ] [-AsJob] [-NoWait] [-SubscriptionId ] [-Confirm] [-WhatIf] [] ``` @@ -64,7 +68,7 @@ The authentication type. To construct, see NOTES section for AUTHINFO properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase +Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase Parameter Sets: (All) Aliases: @@ -90,6 +94,57 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -ConfigurationInfoAction +Optional, indicate whether to apply configurations on source application. +If enable, generate configurations and applied to the source application. +Default is enable. +If optOut, no configuration change will be made on source. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ConfigurationInfoAdditionalConfiguration +A dictionary of additional configurations to be added. +Service will auto generate a set of basic configurations and this property is to full fill more customized configurations + +```yaml +Type: System.Collections.Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ConfigurationInfoCustomizedKey +Optional. +A dictionary of default key name and customized key name mapping. +If not specified, default key name will be used for generate configurations + +```yaml +Type: System.Collections.Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ContainerApp The Name of container app of the resource to be connected. @@ -120,6 +175,52 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -FirewallRuleAzureService +Allow Azure services to access the target service if true. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -FirewallRuleCallerClientIP +Allow caller client IP to access the target service if true. +the property is used when connecting local application to target service. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -FirewallRuleIPRange +This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client IPs for a given database account. + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Name The name Linker resource. @@ -150,6 +251,25 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -PublicNetworkSolutionAction +Optional. +Indicates public network solution. +If enable, enable public network access of target service with best try. +Default is enable. +If optOut, opt out public network access configuration. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ResourceGroupName [ResourceGroupCompleter] The resource group of the resource to be connected. @@ -189,7 +309,7 @@ Type: System.String Parameter Sets: (All) Aliases: -Required: True +Required: False Position: Named Default value: None Accept pipeline input: False @@ -211,6 +331,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -SecretStoreKeyVaultSecretName +The key vault secret name to store secret, only valid when storing one secret + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -SubscriptionId Gets subscription ID which uniquely identify the Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. @@ -232,7 +367,7 @@ The target service properties To construct, see NOTES section for TARGETSERVICE properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase +Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase Parameter Sets: (All) Aliases: @@ -296,7 +431,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource +### Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource ## NOTES @@ -307,10 +442,10 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -AUTHINFO ``: The authentication type. +`AUTHINFO `: The authentication type. - `AuthType `: The authentication type. -TARGETSERVICE ``: The target service properties +`TARGETSERVICE `: The target service properties - `Type `: The target service type. ## RELATED LINKS diff --git a/src/ServiceLinker/help/New-AzServiceLinkerForSpringCloud.md b/src/ServiceLinker/help/New-AzServiceLinkerForSpringCloud.md index cf2f552b42a0..bd209377d7f5 100644 --- a/src/ServiceLinker/help/New-AzServiceLinkerForSpringCloud.md +++ b/src/ServiceLinker/help/New-AzServiceLinkerForSpringCloud.md @@ -15,7 +15,11 @@ Create or update linker resource in spring cloud. ``` New-AzServiceLinkerForSpringCloud -AuthInfo -TargetService -AppName -ResourceGroupName -ServiceName [-Name ] [-ResourceUri ] - [-ClientType ] [-Scope ] [-SecretStoreKeyVaultId ] + [-ClientType ] [-ConfigurationInfoAction ] + [-ConfigurationInfoAdditionalConfiguration ] [-ConfigurationInfoCustomizedKey ] + [-FirewallRuleAzureService ] [-FirewallRuleCallerClientIP ] + [-FirewallRuleIPRange ] [-PublicNetworkSolutionAction ] [-Scope ] + [-SecretStoreKeyVaultId ] [-SecretStoreKeyVaultSecretName ] [-VNetSolutionType ] [-DefaultProfile ] [-AsJob] [-DeploymentName ] [-NoWait] [-SubscriptionId ] [-Confirm] [-WhatIf] [] ``` @@ -81,7 +85,7 @@ The authentication type. To construct, see NOTES section for AUTHINFO properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase +Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase Parameter Sets: (All) Aliases: @@ -107,6 +111,57 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -ConfigurationInfoAction +Optional, indicate whether to apply configurations on source application. +If enable, generate configurations and applied to the source application. +Default is enable. +If optOut, no configuration change will be made on source. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ConfigurationInfoAdditionalConfiguration +A dictionary of additional configurations to be added. +Service will auto generate a set of basic configurations and this property is to full fill more customized configurations + +```yaml +Type: System.Collections.Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ConfigurationInfoCustomizedKey +Optional. +A dictionary of default key name and customized key name mapping. +If not specified, default key name will be used for generate configurations + +```yaml +Type: System.Collections.Hashtable +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. @@ -137,6 +192,52 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -FirewallRuleAzureService +Allow Azure services to access the target service if true. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -FirewallRuleCallerClientIP +Allow caller client IP to access the target service if true. +the property is used when connecting local application to target service. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -FirewallRuleIPRange +This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client IPs for a given database account. + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Name The name Linker resource. @@ -167,6 +268,25 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -PublicNetworkSolutionAction +Optional. +Indicates public network solution. +If enable, enable public network access of target service with best try. +Default is enable. +If optOut, opt out public network access configuration. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ResourceGroupName [ResourceGroupCompleter] The resource group of the resource to be connected. @@ -228,6 +348,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -SecretStoreKeyVaultSecretName +The key vault secret name to store secret, only valid when storing one secret + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ServiceName The Name of spring cloud service to be connected. @@ -264,7 +399,7 @@ The target service properties To construct, see NOTES section for TARGETSERVICE properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase +Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase Parameter Sets: (All) Aliases: @@ -328,7 +463,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource +### Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource ## NOTES @@ -339,10 +474,10 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -AUTHINFO ``: The authentication type. +`AUTHINFO `: The authentication type. - `AuthType `: The authentication type. -TARGETSERVICE ``: The target service properties +`TARGETSERVICE `: The target service properties - `Type `: The target service type. ## RELATED LINKS diff --git a/src/ServiceLinker/help/New-AzServiceLinkerForWebApp.md b/src/ServiceLinker/help/New-AzServiceLinkerForWebApp.md index b94b0a05b205..af435680c0d1 100644 --- a/src/ServiceLinker/help/New-AzServiceLinkerForWebApp.md +++ b/src/ServiceLinker/help/New-AzServiceLinkerForWebApp.md @@ -15,7 +15,11 @@ Create or update linker resource in webapp. ``` New-AzServiceLinkerForWebApp -AuthInfo -TargetService -ResourceGroupName -WebApp [-Name ] [-ResourceUri ] - [-ClientType ] [-Scope ] [-SecretStoreKeyVaultId ] + [-ClientType ] [-ConfigurationInfoAction ] + [-ConfigurationInfoAdditionalConfiguration ] [-ConfigurationInfoCustomizedKey ] + [-FirewallRuleAzureService ] [-FirewallRuleCallerClientIP ] + [-FirewallRuleIPRange ] [-PublicNetworkSolutionAction ] [-Scope ] + [-SecretStoreKeyVaultId ] [-SecretStoreKeyVaultSecretName ] [-VNetSolutionType ] [-DefaultProfile ] [-AsJob] [-NoWait] [-SubscriptionId ] [-Confirm] [-WhatIf] [] ``` @@ -64,7 +68,7 @@ The authentication type. To construct, see NOTES section for AUTHINFO properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase +Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase Parameter Sets: (All) Aliases: @@ -90,6 +94,57 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -ConfigurationInfoAction +Optional, indicate whether to apply configurations on source application. +If enable, generate configurations and applied to the source application. +Default is enable. +If optOut, no configuration change will be made on source. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ConfigurationInfoAdditionalConfiguration +A dictionary of additional configurations to be added. +Service will auto generate a set of basic configurations and this property is to full fill more customized configurations + +```yaml +Type: System.Collections.Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ConfigurationInfoCustomizedKey +Optional. +A dictionary of default key name and customized key name mapping. +If not specified, default key name will be used for generate configurations + +```yaml +Type: System.Collections.Hashtable +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. @@ -105,6 +160,52 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -FirewallRuleAzureService +Allow Azure services to access the target service if true. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -FirewallRuleCallerClientIP +Allow caller client IP to access the target service if true. +the property is used when connecting local application to target service. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -FirewallRuleIPRange +This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client IPs for a given database account. + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Name The name Linker resource. @@ -135,6 +236,25 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -PublicNetworkSolutionAction +Optional. +Indicates public network solution. +If enable, enable public network access of target service with best try. +Default is enable. +If optOut, opt out public network access configuration. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ResourceGroupName [ResourceGroupCompleter] The resource group of the resource to be connected. @@ -196,6 +316,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -SecretStoreKeyVaultSecretName +The key vault secret name to store secret, only valid when storing one secret + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -SubscriptionId Gets subscription ID which uniquely identify the Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. @@ -217,7 +352,7 @@ The target service properties To construct, see NOTES section for TARGETSERVICE properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase +Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase Parameter Sets: (All) Aliases: @@ -297,7 +432,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource +### Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource ## NOTES @@ -308,10 +443,10 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -AUTHINFO ``: The authentication type. +`AUTHINFO `: The authentication type. - `AuthType `: The authentication type. -TARGETSERVICE ``: The target service properties +`TARGETSERVICE `: The target service properties - `Type `: The target service type. ## RELATED LINKS diff --git a/src/ServiceLinker/help/New-AzServiceLinkerSecretAuthInfoObject.md b/src/ServiceLinker/help/New-AzServiceLinkerSecretAuthInfoObject.md index 51c6f9889f8f..51e139188c22 100644 --- a/src/ServiceLinker/help/New-AzServiceLinkerSecretAuthInfoObject.md +++ b/src/ServiceLinker/help/New-AzServiceLinkerSecretAuthInfoObject.md @@ -131,7 +131,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SecretAuthInfo +### Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SecretAuthInfo ## NOTES diff --git a/src/ServiceLinker/help/New-AzServiceLinkerServicePrincipalSecretAuthInfoObject.md b/src/ServiceLinker/help/New-AzServiceLinkerServicePrincipalSecretAuthInfoObject.md index 8055bac895fa..21e2d209c265 100644 --- a/src/ServiceLinker/help/New-AzServiceLinkerServicePrincipalSecretAuthInfoObject.md +++ b/src/ServiceLinker/help/New-AzServiceLinkerServicePrincipalSecretAuthInfoObject.md @@ -91,7 +91,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ServicePrincipalSecretAuthInfo +### Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ServicePrincipalSecretAuthInfo ## NOTES diff --git a/src/ServiceLinker/help/New-AzServiceLinkerSystemAssignedIdentityAuthInfoObject.md b/src/ServiceLinker/help/New-AzServiceLinkerSystemAssignedIdentityAuthInfoObject.md index fe470d86d61b..a73d29f9b582 100644 --- a/src/ServiceLinker/help/New-AzServiceLinkerSystemAssignedIdentityAuthInfoObject.md +++ b/src/ServiceLinker/help/New-AzServiceLinkerSystemAssignedIdentityAuthInfoObject.md @@ -43,7 +43,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.SystemAssignedIdentityAuthInfo +### Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.SystemAssignedIdentityAuthInfo ## NOTES diff --git a/src/ServiceLinker/help/New-AzServiceLinkerUserAssignedIdentityAuthInfoObject.md b/src/ServiceLinker/help/New-AzServiceLinkerUserAssignedIdentityAuthInfoObject.md index 8ce13edf1908..df1cb03c1423 100644 --- a/src/ServiceLinker/help/New-AzServiceLinkerUserAssignedIdentityAuthInfoObject.md +++ b/src/ServiceLinker/help/New-AzServiceLinkerUserAssignedIdentityAuthInfoObject.md @@ -74,7 +74,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.UserAssignedIdentityAuthInfo +### Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.UserAssignedIdentityAuthInfo ## NOTES diff --git a/src/ServiceLinker/help/Remove-AzServiceLinkerForContainerApp.md b/src/ServiceLinker/help/Remove-AzServiceLinkerForContainerApp.md index 84a5f9db97bf..3a9feaa6a17d 100644 --- a/src/ServiceLinker/help/Remove-AzServiceLinkerForContainerApp.md +++ b/src/ServiceLinker/help/Remove-AzServiceLinkerForContainerApp.md @@ -242,10 +242,15 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +`INPUTOBJECT `: Identity Parameter + - `[ConnectorName ]`: The name of resource. + - `[DryrunName ]`: The name of dryrun. - `[Id ]`: Resource identity path - `[LinkerName ]`: The name Linker resource. + - `[Location ]`: The name of Azure region. + - `[ResourceGroupName ]`: The name of the resource group. The name is case insensitive. - `[ResourceUri ]`: The fully qualified Azure Resource manager identifier of the resource to be connected. + - `[SubscriptionId ]`: The ID of the target subscription. ## RELATED LINKS diff --git a/src/ServiceLinker/help/Remove-AzServiceLinkerForSpringcloud.md b/src/ServiceLinker/help/Remove-AzServiceLinkerForSpringcloud.md index d6abf8a54cbb..5fde7755390a 100644 --- a/src/ServiceLinker/help/Remove-AzServiceLinkerForSpringcloud.md +++ b/src/ServiceLinker/help/Remove-AzServiceLinkerForSpringcloud.md @@ -5,7 +5,7 @@ online version: https://learn.microsoft.com/powershell/module/az.servicelinker/r schema: 2.0.0 --- -# Remove-AzServiceLinkerForSpringcloud +# Remove-AzServiceLinkerForSpringCloud ## SYNOPSIS Delete a link in spring cloud. @@ -14,7 +14,7 @@ Delete a link in spring cloud. ### Delete (Default) ``` -Remove-AzServiceLinkerForSpringcloud -Name -AppName -ResourceGroupName +Remove-AzServiceLinkerForSpringCloud -Name -AppName -ResourceGroupName -ServiceName [-ResourceUri ] [-DefaultProfile ] [-AsJob] [-DeploymentName ] [-NoWait] [-PassThru] [-SubscriptionId ] [-Confirm] [-WhatIf] [] @@ -22,7 +22,7 @@ Remove-AzServiceLinkerForSpringcloud -Name -AppName -ResourceG ### DeleteViaIdentity ``` -Remove-AzServiceLinkerForSpringcloud -InputObject [-DefaultProfile ] +Remove-AzServiceLinkerForSpringCloud -InputObject [-DefaultProfile ] [-AsJob] [-NoWait] [-PassThru] [-SubscriptionId ] [-Confirm] [-WhatIf] [] ``` @@ -273,10 +273,15 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +`INPUTOBJECT `: Identity Parameter + - `[ConnectorName ]`: The name of resource. + - `[DryrunName ]`: The name of dryrun. - `[Id ]`: Resource identity path - `[LinkerName ]`: The name Linker resource. + - `[Location ]`: The name of Azure region. + - `[ResourceGroupName ]`: The name of the resource group. The name is case insensitive. - `[ResourceUri ]`: The fully qualified Azure Resource manager identifier of the resource to be connected. + - `[SubscriptionId ]`: The ID of the target subscription. ## RELATED LINKS diff --git a/src/ServiceLinker/help/Remove-AzServiceLinkerForWebApp.md b/src/ServiceLinker/help/Remove-AzServiceLinkerForWebApp.md index 7b4da6072ef8..484aed5145ef 100644 --- a/src/ServiceLinker/help/Remove-AzServiceLinkerForWebApp.md +++ b/src/ServiceLinker/help/Remove-AzServiceLinkerForWebApp.md @@ -242,10 +242,15 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +`INPUTOBJECT `: Identity Parameter + - `[ConnectorName ]`: The name of resource. + - `[DryrunName ]`: The name of dryrun. - `[Id ]`: Resource identity path - `[LinkerName ]`: The name Linker resource. + - `[Location ]`: The name of Azure region. + - `[ResourceGroupName ]`: The name of the resource group. The name is case insensitive. - `[ResourceUri ]`: The fully qualified Azure Resource manager identifier of the resource to be connected. + - `[SubscriptionId ]`: The ID of the target subscription. ## RELATED LINKS diff --git a/src/ServiceLinker/help/Test-AzServiceLinkerForContainerApp.md b/src/ServiceLinker/help/Test-AzServiceLinkerForContainerApp.md index ab6ef9f3c099..8487709b8c04 100644 --- a/src/ServiceLinker/help/Test-AzServiceLinkerForContainerApp.md +++ b/src/ServiceLinker/help/Test-AzServiceLinkerForContainerApp.md @@ -234,7 +234,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResult +### Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResult ## NOTES @@ -245,10 +245,15 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +`INPUTOBJECT `: Identity Parameter + - `[ConnectorName ]`: The name of resource. + - `[DryrunName ]`: The name of dryrun. - `[Id ]`: Resource identity path - `[LinkerName ]`: The name Linker resource. + - `[Location ]`: The name of Azure region. + - `[ResourceGroupName ]`: The name of the resource group. The name is case insensitive. - `[ResourceUri ]`: The fully qualified Azure Resource manager identifier of the resource to be connected. + - `[SubscriptionId ]`: The ID of the target subscription. ## RELATED LINKS diff --git a/src/ServiceLinker/help/Test-AzServiceLinkerForSpringCloud.md b/src/ServiceLinker/help/Test-AzServiceLinkerForSpringCloud.md index b4ea05d4e2e7..a768e5cf2abf 100644 --- a/src/ServiceLinker/help/Test-AzServiceLinkerForSpringCloud.md +++ b/src/ServiceLinker/help/Test-AzServiceLinkerForSpringCloud.md @@ -264,7 +264,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResult +### Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResult ## NOTES @@ -275,10 +275,15 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +`INPUTOBJECT `: Identity Parameter + - `[ConnectorName ]`: The name of resource. + - `[DryrunName ]`: The name of dryrun. - `[Id ]`: Resource identity path - `[LinkerName ]`: The name Linker resource. + - `[Location ]`: The name of Azure region. + - `[ResourceGroupName ]`: The name of the resource group. The name is case insensitive. - `[ResourceUri ]`: The fully qualified Azure Resource manager identifier of the resource to be connected. + - `[SubscriptionId ]`: The ID of the target subscription. ## RELATED LINKS diff --git a/src/ServiceLinker/help/Test-AzServiceLinkerForWebApp.md b/src/ServiceLinker/help/Test-AzServiceLinkerForWebApp.md index d93f66e95dff..ca5a5c33bce1 100644 --- a/src/ServiceLinker/help/Test-AzServiceLinkerForWebApp.md +++ b/src/ServiceLinker/help/Test-AzServiceLinkerForWebApp.md @@ -234,7 +234,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateResult +### Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateResult ## NOTES @@ -245,10 +245,15 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +`INPUTOBJECT `: Identity Parameter + - `[ConnectorName ]`: The name of resource. + - `[DryrunName ]`: The name of dryrun. - `[Id ]`: Resource identity path - `[LinkerName ]`: The name Linker resource. + - `[Location ]`: The name of Azure region. + - `[ResourceGroupName ]`: The name of the resource group. The name is case insensitive. - `[ResourceUri ]`: The fully qualified Azure Resource manager identifier of the resource to be connected. + - `[SubscriptionId ]`: The ID of the target subscription. ## RELATED LINKS diff --git a/src/ServiceLinker/help/Update-AzServiceLinkerForContainerApp.md b/src/ServiceLinker/help/Update-AzServiceLinkerForContainerApp.md index 4c9288b7ca95..1cf1b4540ad9 100644 --- a/src/ServiceLinker/help/Update-AzServiceLinkerForContainerApp.md +++ b/src/ServiceLinker/help/Update-AzServiceLinkerForContainerApp.md @@ -71,7 +71,7 @@ The authentication type. To construct, see NOTES section for AUTHINFO properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase +Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase Parameter Sets: (All) Aliases: @@ -254,7 +254,7 @@ The target service properties To construct, see NOTES section for TARGETSERVICE properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase +Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase Parameter Sets: (All) Aliases: @@ -320,7 +320,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource +### Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource ## NOTES @@ -331,15 +331,20 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -AUTHINFO ``: The authentication type. +`AUTHINFO `: The authentication type. - `AuthType `: The authentication type. -INPUTOBJECT ``: Identity Parameter +`INPUTOBJECT `: Identity Parameter + - `[ConnectorName ]`: The name of resource. + - `[DryrunName ]`: The name of dryrun. - `[Id ]`: Resource identity path - `[LinkerName ]`: The name Linker resource. + - `[Location ]`: The name of Azure region. + - `[ResourceGroupName ]`: The name of the resource group. The name is case insensitive. - `[ResourceUri ]`: The fully qualified Azure Resource manager identifier of the resource to be connected. + - `[SubscriptionId ]`: The ID of the target subscription. -TARGETSERVICE ``: The target service properties +`TARGETSERVICE `: The target service properties - `Type `: The target service type. ## RELATED LINKS diff --git a/src/ServiceLinker/help/Update-AzServiceLinkerForSpringCloud.md b/src/ServiceLinker/help/Update-AzServiceLinkerForSpringCloud.md index 8ce157aa7aa0..df8cc2e5bd97 100644 --- a/src/ServiceLinker/help/Update-AzServiceLinkerForSpringCloud.md +++ b/src/ServiceLinker/help/Update-AzServiceLinkerForSpringCloud.md @@ -86,7 +86,7 @@ The authentication type. To construct, see NOTES section for AUTHINFO properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase +Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase Parameter Sets: (All) Aliases: @@ -284,7 +284,7 @@ The target service properties To construct, see NOTES section for TARGETSERVICE properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase +Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase Parameter Sets: (All) Aliases: @@ -350,7 +350,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource +### Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource ## NOTES @@ -361,15 +361,20 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -AUTHINFO ``: The authentication type. +`AUTHINFO `: The authentication type. - `AuthType `: The authentication type. -INPUTOBJECT ``: Identity Parameter +`INPUTOBJECT `: Identity Parameter + - `[ConnectorName ]`: The name of resource. + - `[DryrunName ]`: The name of dryrun. - `[Id ]`: Resource identity path - `[LinkerName ]`: The name Linker resource. + - `[Location ]`: The name of Azure region. + - `[ResourceGroupName ]`: The name of the resource group. The name is case insensitive. - `[ResourceUri ]`: The fully qualified Azure Resource manager identifier of the resource to be connected. + - `[SubscriptionId ]`: The ID of the target subscription. -TARGETSERVICE ``: The target service properties +`TARGETSERVICE `: The target service properties - `Type `: The target service type. ## RELATED LINKS diff --git a/src/ServiceLinker/help/Update-AzServiceLinkerForWebApp.md b/src/ServiceLinker/help/Update-AzServiceLinkerForWebApp.md index 75336ed54b8e..fa3a5669db88 100644 --- a/src/ServiceLinker/help/Update-AzServiceLinkerForWebApp.md +++ b/src/ServiceLinker/help/Update-AzServiceLinkerForWebApp.md @@ -71,7 +71,7 @@ The authentication type. To construct, see NOTES section for AUTHINFO properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase +Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase Parameter Sets: (All) Aliases: @@ -239,7 +239,7 @@ The target service properties To construct, see NOTES section for TARGETSERVICE properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase +Type: Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase Parameter Sets: (All) Aliases: @@ -320,7 +320,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource +### Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource ## NOTES @@ -331,15 +331,20 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -AUTHINFO ``: The authentication type. +`AUTHINFO `: The authentication type. - `AuthType `: The authentication type. -INPUTOBJECT ``: Identity Parameter +`INPUTOBJECT `: Identity Parameter + - `[ConnectorName ]`: The name of resource. + - `[DryrunName ]`: The name of dryrun. - `[Id ]`: Resource identity path - `[LinkerName ]`: The name Linker resource. + - `[Location ]`: The name of Azure region. + - `[ResourceGroupName ]`: The name of the resource group. The name is case insensitive. - `[ResourceUri ]`: The fully qualified Azure Resource manager identifier of the resource to be connected. + - `[SubscriptionId ]`: The ID of the target subscription. -TARGETSERVICE ``: The target service properties +`TARGETSERVICE `: The target service properties - `Type `: The target service type. ## RELATED LINKS diff --git a/src/ServiceLinker/how-to.md b/src/ServiceLinker/how-to.md index f89b42d9df27..d152b55c58a7 100644 --- a/src/ServiceLinker/how-to.md +++ b/src/ServiceLinker/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.ServiceLinker` -To pack `Az.ServiceLinker` 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.ServiceLinker` 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.ServiceLinker`. diff --git a/src/ServiceLinker/internal/Get-AzServiceLinker.ps1 b/src/ServiceLinker/internal/Get-AzServiceLinker.ps1 index c1f33e6568f1..5bd002c9d949 100644 --- a/src/ServiceLinker/internal/Get-AzServiceLinker.ps1 +++ b/src/ServiceLinker/internal/Get-AzServiceLinker.ps1 @@ -27,21 +27,26 @@ Returns Linker resource for a given name. .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. INPUTOBJECT : Identity Parameter + [ConnectorName ]: The name of resource. + [DryrunName ]: The name of dryrun. [Id ]: Resource identity path [LinkerName ]: The name Linker resource. + [Location ]: The name of Azure region. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. [ResourceUri ]: The fully qualified Azure Resource manager identifier of the resource to be connected. + [SubscriptionId ]: The ID of the target subscription. .Link https://learn.microsoft.com/powershell/module/az.servicelinker/get-azservicelinker #> function Get-AzServiceLinker { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] diff --git a/src/ServiceLinker/internal/Get-AzServiceLinkerConfiguration.ps1 b/src/ServiceLinker/internal/Get-AzServiceLinkerConfiguration.ps1 index a74d48c799d3..62b51506b216 100644 --- a/src/ServiceLinker/internal/Get-AzServiceLinkerConfiguration.ps1 +++ b/src/ServiceLinker/internal/Get-AzServiceLinkerConfiguration.ps1 @@ -16,21 +16,21 @@ <# .Synopsis -list source configurations for a linker. +list source configurations for a Linker. .Description -list source configurations for a linker. +list source configurations for a Linker. .Example {{ Add code here }} .Example {{ Add code here }} .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfiguration +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration .Link https://learn.microsoft.com/powershell/module/az.servicelinker/get-azservicelinkerconfiguration #> function Get-AzServiceLinkerConfiguration { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfiguration])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] diff --git a/src/ServiceLinker/internal/Get-AzServiceLinkerDryrun.ps1 b/src/ServiceLinker/internal/Get-AzServiceLinkerDryrun.ps1 new file mode 100644 index 000000000000..abc6979644ce --- /dev/null +++ b/src/ServiceLinker/internal/Get-AzServiceLinkerDryrun.ps1 @@ -0,0 +1,162 @@ + +# ---------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# Code generated by Microsoft (R) AutoRest Code Generator.Changes may cause incorrect behavior and will be lost if the code +# is regenerated. +# ---------------------------------------------------------------------------------- + +<# +.Synopsis +get a dryrun job +.Description +get a dryrun job +.Example +{{ Add code here }} +.Example +{{ Add code here }} + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConnectorName ]: The name of resource. + [DryrunName ]: The name of dryrun. + [Id ]: Resource identity path + [LinkerName ]: The name Linker resource. + [Location ]: The name of Azure region. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. + [ResourceUri ]: The fully qualified Azure Resource manager identifier of the resource to be connected. + [SubscriptionId ]: The ID of the target subscription. +.Link +https://learn.microsoft.com/powershell/module/az.servicelinker/get-azservicelinkerdryrun +#> +function Get-AzServiceLinkerDryrun { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource])] +[CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] +param( + [Parameter(ParameterSetName='Get', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] + [System.String] + # The name of dryrun. + ${DryrunName}, + + [Parameter(ParameterSetName='Get', Mandatory)] + [Parameter(ParameterSetName='List', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] + [System.String] + # The fully qualified Azure Resource manager identifier of the resource to be connected. + ${ResourceUri}, + + [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + + $mapping = @{ + Get = 'Az.ServiceLinker.private\Get-AzServiceLinkerDryrun_Get'; + GetViaIdentity = 'Az.ServiceLinker.private\Get-AzServiceLinkerDryrun_GetViaIdentity'; + List = 'Az.ServiceLinker.private\Get-AzServiceLinkerDryrun_List'; + } + + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + + throw + } + +} +end { + try { + $steppablePipeline.End() + + } catch { + + throw + } +} +} diff --git a/src/ServiceLinker/internal/Get-AzServiceLinkerOperation.ps1 b/src/ServiceLinker/internal/Get-AzServiceLinkerOperation.ps1 index 5b36525adfa4..aa74762e961b 100644 --- a/src/ServiceLinker/internal/Get-AzServiceLinkerOperation.ps1 +++ b/src/ServiceLinker/internal/Get-AzServiceLinkerOperation.ps1 @@ -25,12 +25,12 @@ Lists the available ServiceLinker REST API operations. {{ Add code here }} .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperation +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperation .Link https://learn.microsoft.com/powershell/module/az.servicelinker/get-azservicelinkeroperation #> function Get-AzServiceLinkerOperation { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperation])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperation])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter()] diff --git a/src/ServiceLinker/internal/New-AzServiceLinker.ps1 b/src/ServiceLinker/internal/New-AzServiceLinker.ps1 index 0a5421b82e1e..b6879e42db15 100644 --- a/src/ServiceLinker/internal/New-AzServiceLinker.ps1 +++ b/src/ServiceLinker/internal/New-AzServiceLinker.ps1 @@ -16,16 +16,16 @@ <# .Synopsis -Create or update linker resource. +Create or update Linker resource. .Description -Create or update linker resource. +Create or update Linker resource. .Example {{ Add code here }} .Example {{ Add code here }} .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource .Notes COMPLEX PARAMETER PROPERTIES @@ -40,7 +40,7 @@ TARGETSERVICE : The target service properties https://learn.microsoft.com/powershell/module/az.servicelinker/new-azservicelinker #> function New-AzServiceLinker { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] @@ -65,7 +65,7 @@ param( [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase] # The authentication type. # To construct, see NOTES section for AUTHINFO properties and create a hash table. ${AuthInfo}, @@ -78,6 +78,66 @@ param( # The application client type ${ClientType}, + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType] + # Optional, indicate whether to apply configurations on source application. + # If enable, generate configurations and applied to the source application. + # Default is enable. + # If optOut, no configuration change will be made on source. + ${ConfigurationInfoAction}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations]))] + [System.Collections.Hashtable] + # A dictionary of additional configurations to be added. + # Service will auto generate a set of basic configurations and this property is to full fill more customized configurations + ${ConfigurationInfoAdditionalConfiguration}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys]))] + [System.Collections.Hashtable] + # Optional. + # A dictionary of default key name and customized key name mapping. + # If not specified, default key name will be used for generate configurations + ${ConfigurationInfoCustomizedKey}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType] + # Allow Azure services to access the target service if true. + ${FirewallRuleAzureService}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType] + # Allow caller client IP to access the target service if true. + # the property is used when connecting local application to target service. + ${FirewallRuleCallerClientIP}, + + [Parameter()] + [AllowEmptyCollection()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [System.String[]] + # This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client IPs for a given database account. + ${FirewallRuleIPRange}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType] + # Optional. + # Indicates public network solution. + # If enable, enable public network access of target service with best try. + # Default is enable. + # If optOut, opt out public network access configuration. + ${PublicNetworkSolutionAction}, + [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] [System.String] @@ -92,7 +152,13 @@ param( [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase] + [System.String] + # The key vault secret name to store secret, only valid when storing one secret + ${SecretStoreKeyVaultSecretName}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase] # The target service properties # To construct, see NOTES section for TARGETSERVICE properties and create a hash table. ${TargetService}, diff --git a/src/ServiceLinker/internal/New-AzServiceLinkerConfiguration.ps1 b/src/ServiceLinker/internal/New-AzServiceLinkerConfiguration.ps1 new file mode 100644 index 000000000000..c716c464bcc5 --- /dev/null +++ b/src/ServiceLinker/internal/New-AzServiceLinkerConfiguration.ps1 @@ -0,0 +1,213 @@ + +# ---------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# Code generated by Microsoft (R) AutoRest Code Generator.Changes may cause incorrect behavior and will be lost if the code +# is regenerated. +# ---------------------------------------------------------------------------------- + +<# +.Synopsis +Generate configurations for a Linker. +.Description +Generate configurations for a Linker. +.Example +{{ Add code here }} +.Example +{{ Add code here }} + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfo +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConnectorName ]: The name of resource. + [DryrunName ]: The name of dryrun. + [Id ]: Resource identity path + [LinkerName ]: The name Linker resource. + [Location ]: The name of Azure region. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. + [ResourceUri ]: The fully qualified Azure Resource manager identifier of the resource to be connected. + [SubscriptionId ]: The ID of the target subscription. + +PARAMETER : The configuration information, used to generate configurations or save to applications + [Action ]: Optional, indicate whether to apply configurations on source application. If enable, generate configurations and applied to the source application. Default is enable. If optOut, no configuration change will be made on source. + [AdditionalConfiguration ]: A dictionary of additional configurations to be added. Service will auto generate a set of basic configurations and this property is to full fill more customized configurations + [(Any) ]: This indicates any property can be added to this object. + [CustomizedKey ]: Optional. A dictionary of default key name and customized key name mapping. If not specified, default key name will be used for generate configurations + [(Any) ]: This indicates any property can be added to this object. + [DeleteOrUpdateBehavior ]: Indicates whether to clean up previous operation when Linker is updating or deleting +.Link +https://learn.microsoft.com/powershell/module/az.servicelinker/new-azservicelinkerconfiguration +#> +function New-AzServiceLinkerConfiguration { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration])] +[CmdletBinding(DefaultParameterSetName='GenerateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(ParameterSetName='Generate', Mandatory)] + [Parameter(ParameterSetName='GenerateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] + [System.String] + # The name Linker resource. + ${LinkerName}, + + [Parameter(ParameterSetName='Generate', Mandatory)] + [Parameter(ParameterSetName='GenerateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] + [System.String] + # The fully qualified Azure Resource manager identifier of the resource to be connected. + ${ResourceUri}, + + [Parameter(ParameterSetName='GenerateViaIdentity', Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName='GenerateViaIdentityExpanded', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter(ParameterSetName='Generate', Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName='GenerateViaIdentity', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfo] + # The configuration information, used to generate configurations or save to applications + # To construct, see NOTES section for PARAMETER properties and create a hash table. + ${Parameter}, + + [Parameter(ParameterSetName='GenerateExpanded')] + [Parameter(ParameterSetName='GenerateViaIdentityExpanded')] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType] + # Optional, indicate whether to apply configurations on source application. + # If enable, generate configurations and applied to the source application. + # Default is enable. + # If optOut, no configuration change will be made on source. + ${Action}, + + [Parameter(ParameterSetName='GenerateExpanded')] + [Parameter(ParameterSetName='GenerateViaIdentityExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations]))] + [System.Collections.Hashtable] + # A dictionary of additional configurations to be added. + # Service will auto generate a set of basic configurations and this property is to full fill more customized configurations + ${AdditionalConfiguration}, + + [Parameter(ParameterSetName='GenerateExpanded')] + [Parameter(ParameterSetName='GenerateViaIdentityExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys]))] + [System.Collections.Hashtable] + # Optional. + # A dictionary of default key name and customized key name mapping. + # If not specified, default key name will be used for generate configurations + ${CustomizedKey}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + + $mapping = @{ + Generate = 'Az.ServiceLinker.private\New-AzServiceLinkerConfiguration_Generate'; + GenerateExpanded = 'Az.ServiceLinker.private\New-AzServiceLinkerConfiguration_GenerateExpanded'; + GenerateViaIdentity = 'Az.ServiceLinker.private\New-AzServiceLinkerConfiguration_GenerateViaIdentity'; + GenerateViaIdentityExpanded = 'Az.ServiceLinker.private\New-AzServiceLinkerConfiguration_GenerateViaIdentityExpanded'; + } + + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + + throw + } + +} +end { + try { + $steppablePipeline.End() + + } catch { + + throw + } +} +} diff --git a/src/ServiceLinker/internal/New-AzServiceLinkerDryrun.ps1 b/src/ServiceLinker/internal/New-AzServiceLinkerDryrun.ps1 new file mode 100644 index 000000000000..caf9076d696d --- /dev/null +++ b/src/ServiceLinker/internal/New-AzServiceLinkerDryrun.ps1 @@ -0,0 +1,148 @@ + +# ---------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# Code generated by Microsoft (R) AutoRest Code Generator.Changes may cause incorrect behavior and will be lost if the code +# is regenerated. +# ---------------------------------------------------------------------------------- + +<# +.Synopsis +create a dryrun job to do necessary check before actual creation +.Description +create a dryrun job to do necessary check before actual creation +.Example +{{ Add code here }} +.Example +{{ Add code here }} + +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource +.Link +https://learn.microsoft.com/powershell/module/az.servicelinker/new-azservicelinkerdryrun +#> +function New-AzServiceLinkerDryrun { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource])] +[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] + [System.String] + # The name of dryrun. + ${DryrunName}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] + [System.String] + # The fully qualified Azure Resource manager identifier of the resource to be connected. + ${ResourceUri}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + + $mapping = @{ + CreateExpanded = 'Az.ServiceLinker.private\New-AzServiceLinkerDryrun_CreateExpanded'; + } + + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + + throw + } + +} +end { + try { + $steppablePipeline.End() + + } catch { + + throw + } +} +} diff --git a/src/ServiceLinker/internal/ProxyCmdletDefinitions.ps1 b/src/ServiceLinker/internal/ProxyCmdletDefinitions.ps1 index 50e6326abd48..48041b027987 100644 --- a/src/ServiceLinker/internal/ProxyCmdletDefinitions.ps1 +++ b/src/ServiceLinker/internal/ProxyCmdletDefinitions.ps1 @@ -16,21 +16,21 @@ <# .Synopsis -list source configurations for a linker. +list source configurations for a Linker. .Description -list source configurations for a linker. +list source configurations for a Linker. .Example {{ Add code here }} .Example {{ Add code here }} .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfiguration +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration .Link https://learn.microsoft.com/powershell/module/az.servicelinker/get-azservicelinkerconfiguration #> function Get-AzServiceLinkerConfiguration { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ISourceConfiguration])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] @@ -135,6 +135,153 @@ end { } } +<# +.Synopsis +get a dryrun job +.Description +get a dryrun job +.Example +{{ Add code here }} +.Example +{{ Add code here }} + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConnectorName ]: The name of resource. + [DryrunName ]: The name of dryrun. + [Id ]: Resource identity path + [LinkerName ]: The name Linker resource. + [Location ]: The name of Azure region. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. + [ResourceUri ]: The fully qualified Azure Resource manager identifier of the resource to be connected. + [SubscriptionId ]: The ID of the target subscription. +.Link +https://learn.microsoft.com/powershell/module/az.servicelinker/get-azservicelinkerdryrun +#> +function Get-AzServiceLinkerDryrun { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource])] +[CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] +param( + [Parameter(ParameterSetName='Get', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] + [System.String] + # The name of dryrun. + ${DryrunName}, + + [Parameter(ParameterSetName='Get', Mandatory)] + [Parameter(ParameterSetName='List', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] + [System.String] + # The fully qualified Azure Resource manager identifier of the resource to be connected. + ${ResourceUri}, + + [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + + $mapping = @{ + Get = 'Az.ServiceLinker.private\Get-AzServiceLinkerDryrun_Get'; + GetViaIdentity = 'Az.ServiceLinker.private\Get-AzServiceLinkerDryrun_GetViaIdentity'; + List = 'Az.ServiceLinker.private\Get-AzServiceLinkerDryrun_List'; + } + + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + + throw + } + +} +end { + try { + $steppablePipeline.End() + + } catch { + + throw + } +} +} + <# .Synopsis Lists the available ServiceLinker REST API operations. @@ -145,15 +292,740 @@ Lists the available ServiceLinker REST API operations. .Example {{ Add code here }} -.Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperation -.Link -https://learn.microsoft.com/powershell/module/az.servicelinker/get-azservicelinkeroperation -#> -function Get-AzServiceLinkerOperation { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20.IOperation])] -[CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] -param( +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperation +.Link +https://learn.microsoft.com/powershell/module/az.servicelinker/get-azservicelinkeroperation +#> +function Get-AzServiceLinkerOperation { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api30.IOperation])] +[CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] +param( + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + + $mapping = @{ + List = 'Az.ServiceLinker.private\Get-AzServiceLinkerOperation_List'; + } + + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + + throw + } + +} +end { + try { + $steppablePipeline.End() + + } catch { + + throw + } +} +} + +<# +.Synopsis +Returns Linker resource for a given name. +.Description +Returns Linker resource for a given name. +.Example +{{ Add code here }} +.Example +{{ Add code here }} + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConnectorName ]: The name of resource. + [DryrunName ]: The name of dryrun. + [Id ]: Resource identity path + [LinkerName ]: The name Linker resource. + [Location ]: The name of Azure region. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. + [ResourceUri ]: The fully qualified Azure Resource manager identifier of the resource to be connected. + [SubscriptionId ]: The ID of the target subscription. +.Link +https://learn.microsoft.com/powershell/module/az.servicelinker/get-azservicelinker +#> +function Get-AzServiceLinker { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource])] +[CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] +param( + [Parameter(ParameterSetName='Get', Mandatory)] + [Alias('LinkerName')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] + [System.String] + # The name Linker resource. + ${Name}, + + [Parameter(ParameterSetName='Get', Mandatory)] + [Parameter(ParameterSetName='List', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] + [System.String] + # The fully qualified Azure Resource manager identifier of the resource to be connected. + ${ResourceUri}, + + [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + + $mapping = @{ + Get = 'Az.ServiceLinker.private\Get-AzServiceLinker_Get'; + GetViaIdentity = 'Az.ServiceLinker.private\Get-AzServiceLinker_GetViaIdentity'; + List = 'Az.ServiceLinker.private\Get-AzServiceLinker_List'; + } + + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + + throw + } + +} +end { + try { + $steppablePipeline.End() + + } catch { + + throw + } +} +} + +<# +.Synopsis +Generate configurations for a Linker. +.Description +Generate configurations for a Linker. +.Example +{{ Add code here }} +.Example +{{ Add code here }} + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfo +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConnectorName ]: The name of resource. + [DryrunName ]: The name of dryrun. + [Id ]: Resource identity path + [LinkerName ]: The name Linker resource. + [Location ]: The name of Azure region. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. + [ResourceUri ]: The fully qualified Azure Resource manager identifier of the resource to be connected. + [SubscriptionId ]: The ID of the target subscription. + +PARAMETER : The configuration information, used to generate configurations or save to applications + [Action ]: Optional, indicate whether to apply configurations on source application. If enable, generate configurations and applied to the source application. Default is enable. If optOut, no configuration change will be made on source. + [AdditionalConfiguration ]: A dictionary of additional configurations to be added. Service will auto generate a set of basic configurations and this property is to full fill more customized configurations + [(Any) ]: This indicates any property can be added to this object. + [CustomizedKey ]: Optional. A dictionary of default key name and customized key name mapping. If not specified, default key name will be used for generate configurations + [(Any) ]: This indicates any property can be added to this object. + [DeleteOrUpdateBehavior ]: Indicates whether to clean up previous operation when Linker is updating or deleting +.Link +https://learn.microsoft.com/powershell/module/az.servicelinker/new-azservicelinkerconfiguration +#> +function New-AzServiceLinkerConfiguration { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ISourceConfiguration])] +[CmdletBinding(DefaultParameterSetName='GenerateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(ParameterSetName='Generate', Mandatory)] + [Parameter(ParameterSetName='GenerateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] + [System.String] + # The name Linker resource. + ${LinkerName}, + + [Parameter(ParameterSetName='Generate', Mandatory)] + [Parameter(ParameterSetName='GenerateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] + [System.String] + # The fully qualified Azure Resource manager identifier of the resource to be connected. + ${ResourceUri}, + + [Parameter(ParameterSetName='GenerateViaIdentity', Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName='GenerateViaIdentityExpanded', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter(ParameterSetName='Generate', Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName='GenerateViaIdentity', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfo] + # The configuration information, used to generate configurations or save to applications + # To construct, see NOTES section for PARAMETER properties and create a hash table. + ${Parameter}, + + [Parameter(ParameterSetName='GenerateExpanded')] + [Parameter(ParameterSetName='GenerateViaIdentityExpanded')] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType] + # Optional, indicate whether to apply configurations on source application. + # If enable, generate configurations and applied to the source application. + # Default is enable. + # If optOut, no configuration change will be made on source. + ${Action}, + + [Parameter(ParameterSetName='GenerateExpanded')] + [Parameter(ParameterSetName='GenerateViaIdentityExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations]))] + [System.Collections.Hashtable] + # A dictionary of additional configurations to be added. + # Service will auto generate a set of basic configurations and this property is to full fill more customized configurations + ${AdditionalConfiguration}, + + [Parameter(ParameterSetName='GenerateExpanded')] + [Parameter(ParameterSetName='GenerateViaIdentityExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys]))] + [System.Collections.Hashtable] + # Optional. + # A dictionary of default key name and customized key name mapping. + # If not specified, default key name will be used for generate configurations + ${CustomizedKey}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + + $mapping = @{ + Generate = 'Az.ServiceLinker.private\New-AzServiceLinkerConfiguration_Generate'; + GenerateExpanded = 'Az.ServiceLinker.private\New-AzServiceLinkerConfiguration_GenerateExpanded'; + GenerateViaIdentity = 'Az.ServiceLinker.private\New-AzServiceLinkerConfiguration_GenerateViaIdentity'; + GenerateViaIdentityExpanded = 'Az.ServiceLinker.private\New-AzServiceLinkerConfiguration_GenerateViaIdentityExpanded'; + } + + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + + throw + } + +} +end { + try { + $steppablePipeline.End() + + } catch { + + throw + } +} +} + +<# +.Synopsis +create a dryrun job to do necessary check before actual creation +.Description +create a dryrun job to do necessary check before actual creation +.Example +{{ Add code here }} +.Example +{{ Add code here }} + +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource +.Link +https://learn.microsoft.com/powershell/module/az.servicelinker/new-azservicelinkerdryrun +#> +function New-AzServiceLinkerDryrun { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource])] +[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] + [System.String] + # The name of dryrun. + ${DryrunName}, + + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] + [System.String] + # The fully qualified Azure Resource manager identifier of the resource to be connected. + ${ResourceUri}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + + $mapping = @{ + CreateExpanded = 'Az.ServiceLinker.private\New-AzServiceLinkerDryrun_CreateExpanded'; + } + + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + + throw + } + +} +end { + try { + $steppablePipeline.End() + + } catch { + + throw + } +} +} + +<# +.Synopsis +Create or update Linker resource. +.Description +Create or update Linker resource. +.Example +{{ Add code here }} +.Example +{{ Add code here }} + +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +AUTHINFO : The authentication type. + AuthType : The authentication type. + +TARGETSERVICE : The target service properties + Type : The target service type. +.Link +https://learn.microsoft.com/powershell/module/az.servicelinker/new-azservicelinker +#> +function New-AzServiceLinker { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource])] +[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] + [System.String] + # The fully qualified Azure Resource manager identifier of the resource to be connected. + ${ResourceUri}, + + [Parameter()] + [Alias('LinkerName')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.DefaultInfo(Script='"connect_"+(-join ((65..90) + (97..122) | Get-Random -Count 5 | % {[char]$_}))')] + [System.String] + # The name Linker resource. + ${Name}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Header')] + [System.String] + # . + ${XmsServiceconnectorUserToken}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase] + # The authentication type. + # To construct, see NOTES section for AUTHINFO properties and create a hash table. + ${AuthInfo}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.DefaultInfo(Script='"none"')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType] + # The application client type + ${ClientType}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType] + # Optional, indicate whether to apply configurations on source application. + # If enable, generate configurations and applied to the source application. + # Default is enable. + # If optOut, no configuration change will be made on source. + ${ConfigurationInfoAction}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations]))] + [System.Collections.Hashtable] + # A dictionary of additional configurations to be added. + # Service will auto generate a set of basic configurations and this property is to full fill more customized configurations + ${ConfigurationInfoAdditionalConfiguration}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys]))] + [System.Collections.Hashtable] + # Optional. + # A dictionary of default key name and customized key name mapping. + # If not specified, default key name will be used for generate configurations + ${ConfigurationInfoCustomizedKey}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType] + # Allow Azure services to access the target service if true. + ${FirewallRuleAzureService}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType] + # Allow caller client IP to access the target service if true. + # the property is used when connecting local application to target service. + ${FirewallRuleCallerClientIP}, + + [Parameter()] + [AllowEmptyCollection()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [System.String[]] + # This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client IPs for a given database account. + ${FirewallRuleIPRange}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType] + # Optional. + # Indicates public network solution. + # If enable, enable public network access of target service with best try. + # Default is enable. + # If optOut, opt out public network access configuration. + ${PublicNetworkSolutionAction}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [System.String] + # connection scope in source service. + ${Scope}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [System.String] + # The key vault id to store secret + ${SecretStoreKeyVaultId}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [System.String] + # The key vault secret name to store secret, only valid when storing one secret + ${SecretStoreKeyVaultSecretName}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase] + # The target service properties + # To construct, see NOTES section for TARGETSERVICE properties and create a hash table. + ${TargetService}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType] + # Type of VNet solution. + ${VNetSolutionType}, + [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] @@ -162,6 +1034,12 @@ param( # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] [System.Management.Automation.SwitchParameter] @@ -182,6 +1060,12 @@ param( # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] [System.Uri] @@ -211,7 +1095,13 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ - List = 'Az.ServiceLinker.private\Get-AzServiceLinkerOperation_List'; + CreateExpanded = 'Az.ServiceLinker.private\New-AzServiceLinker_CreateExpanded'; + } + if (('CreateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('Name')) { + $PSBoundParameters['Name'] = "connect_"+(-join ((65..90) + (97..122) | Get-Random -Count 5 | % {[char]$_})) + } + if (('CreateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('ClientType')) { + $PSBoundParameters['ClientType'] = "none" } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) @@ -246,9 +1136,9 @@ end { <# .Synopsis -Returns Linker resource for a given name. +delete a dryrun job .Description -Returns Linker resource for a given name. +delete a dryrun job .Example {{ Add code here }} .Example @@ -257,38 +1147,41 @@ Returns Linker resource for a given name. .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource +System.Boolean .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. INPUTOBJECT : Identity Parameter + [ConnectorName ]: The name of resource. + [DryrunName ]: The name of dryrun. [Id ]: Resource identity path [LinkerName ]: The name Linker resource. + [Location ]: The name of Azure region. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. [ResourceUri ]: The fully qualified Azure Resource manager identifier of the resource to be connected. + [SubscriptionId ]: The ID of the target subscription. .Link -https://learn.microsoft.com/powershell/module/az.servicelinker/get-azservicelinker +https://learn.microsoft.com/powershell/module/az.servicelinker/remove-azservicelinkerdryrun #> -function Get-AzServiceLinker { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource])] -[CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] +function Remove-AzServiceLinkerDryrun { +[OutputType([System.Boolean])] +[CmdletBinding(DefaultParameterSetName='Delete', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( - [Parameter(ParameterSetName='Get', Mandatory)] - [Alias('LinkerName')] + [Parameter(ParameterSetName='Delete', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] [System.String] - # The name Linker resource. - ${Name}, + # The name of dryrun. + ${DryrunName}, - [Parameter(ParameterSetName='Get', Mandatory)] - [Parameter(ParameterSetName='List', Mandatory)] + [Parameter(ParameterSetName='Delete', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] [System.String] # The fully qualified Azure Resource manager identifier of the resource to be connected. ${ResourceUri}, - [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName='DeleteViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity] # Identity Parameter @@ -323,6 +1216,12 @@ param( # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Returns true when the command succeeds + ${PassThru}, + [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] [System.Uri] @@ -352,9 +1251,8 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ - Get = 'Az.ServiceLinker.private\Get-AzServiceLinker_Get'; - GetViaIdentity = 'Az.ServiceLinker.private\Get-AzServiceLinker_GetViaIdentity'; - List = 'Az.ServiceLinker.private\Get-AzServiceLinker_List'; + Delete = 'Az.ServiceLinker.private\Remove-AzServiceLinkerDryrun_Delete'; + DeleteViaIdentity = 'Az.ServiceLinker.private\Remove-AzServiceLinkerDryrun_DeleteViaIdentity'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) @@ -389,93 +1287,58 @@ end { <# .Synopsis -Create or update linker resource. +Delete a Linker. .Description -Create or update linker resource. +Delete a Linker. .Example {{ Add code here }} .Example {{ Add code here }} +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource +System.Boolean .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -AUTHINFO : The authentication type. - AuthType : The authentication type. - -TARGETSERVICE : The target service properties - Type : The target service type. +INPUTOBJECT : Identity Parameter + [ConnectorName ]: The name of resource. + [DryrunName ]: The name of dryrun. + [Id ]: Resource identity path + [LinkerName ]: The name Linker resource. + [Location ]: The name of Azure region. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. + [ResourceUri ]: The fully qualified Azure Resource manager identifier of the resource to be connected. + [SubscriptionId ]: The ID of the target subscription. .Link -https://learn.microsoft.com/powershell/module/az.servicelinker/new-azservicelinker +https://learn.microsoft.com/powershell/module/az.servicelinker/remove-azservicelinker #> -function New-AzServiceLinker { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource])] -[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +function Remove-AzServiceLinker { +[OutputType([System.Boolean])] +[CmdletBinding(DefaultParameterSetName='Delete', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( - [Parameter(Mandatory)] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] - [System.String] - # The fully qualified Azure Resource manager identifier of the resource to be connected. - ${ResourceUri}, - - [Parameter()] + [Parameter(ParameterSetName='Delete', Mandatory)] [Alias('LinkerName')] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.DefaultInfo(Script='"connect_"+(-join ((65..90) + (97..122) | Get-Random -Count 5 | % {[char]$_}))')] [System.String] # The name Linker resource. ${Name}, - [Parameter()] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Header')] - [System.String] - # . - ${XmsServiceconnectorUserToken}, - - [Parameter()] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase] - # The authentication type. - # To construct, see NOTES section for AUTHINFO properties and create a hash table. - ${AuthInfo}, - - [Parameter()] - [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType])] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.DefaultInfo(Script='"none"')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ClientType] - # The application client type - ${ClientType}, - - [Parameter()] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [System.String] - # connection scope in source service. - ${Scope}, - - [Parameter()] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Parameter(ParameterSetName='Delete', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] [System.String] - # The key vault id to store secret - ${SecretStoreKeyVaultId}, - - [Parameter()] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase] - # The target service properties - # To construct, see NOTES section for TARGETSERVICE properties and create a hash table. - ${TargetService}, + # The fully qualified Azure Resource manager identifier of the resource to be connected. + ${ResourceUri}, - [Parameter()] - [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType])] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.VNetSolutionType] - # Type of VNet solution. - ${VNetSolutionType}, + [Parameter(ParameterSetName='DeleteViaIdentity', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] @@ -517,6 +1380,12 @@ param( # Run the command asynchronously ${NoWait}, + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Returns true when the command succeeds + ${PassThru}, + [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] [System.Uri] @@ -546,13 +1415,8 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ - CreateExpanded = 'Az.ServiceLinker.private\New-AzServiceLinker_CreateExpanded'; - } - if (('CreateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('Name')) { - $PSBoundParameters['Name'] = "connect_"+(-join ((65..90) + (97..122) | Get-Random -Count 5 | % {[char]$_})) - } - if (('CreateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('ClientType')) { - $PSBoundParameters['ClientType'] = "none" + Delete = 'Az.ServiceLinker.private\Remove-AzServiceLinker_Delete'; + DeleteViaIdentity = 'Az.ServiceLinker.private\Remove-AzServiceLinker_DeleteViaIdentity'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) @@ -587,9 +1451,9 @@ end { <# .Synopsis -Delete a link. +Validate a Linker. .Description -Delete a link. +Validate a Linker. .Example {{ Add code here }} .Example @@ -598,37 +1462,42 @@ Delete a link. .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity .Outputs -System.Boolean +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResult .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. INPUTOBJECT : Identity Parameter + [ConnectorName ]: The name of resource. + [DryrunName ]: The name of dryrun. [Id ]: Resource identity path [LinkerName ]: The name Linker resource. + [Location ]: The name of Azure region. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. [ResourceUri ]: The fully qualified Azure Resource manager identifier of the resource to be connected. + [SubscriptionId ]: The ID of the target subscription. .Link -https://learn.microsoft.com/powershell/module/az.servicelinker/remove-azservicelinker +https://learn.microsoft.com/powershell/module/az.servicelinker/test-azservicelinker #> -function Remove-AzServiceLinker { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='Delete', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +function Test-AzServiceLinker { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResult])] +[CmdletBinding(DefaultParameterSetName='Validate', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( - [Parameter(ParameterSetName='Delete', Mandatory)] + [Parameter(ParameterSetName='Validate', Mandatory)] [Alias('LinkerName')] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] [System.String] # The name Linker resource. ${Name}, - [Parameter(ParameterSetName='Delete', Mandatory)] + [Parameter(ParameterSetName='Validate', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] [System.String] # The fully qualified Azure Resource manager identifier of the resource to be connected. ${ResourceUri}, - [Parameter(ParameterSetName='DeleteViaIdentity', Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName='ValidateViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity] # Identity Parameter @@ -675,12 +1544,6 @@ param( # Run the command asynchronously ${NoWait}, - [Parameter()] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] [System.Uri] @@ -710,8 +1573,8 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ - Delete = 'Az.ServiceLinker.private\Remove-AzServiceLinker_Delete'; - DeleteViaIdentity = 'Az.ServiceLinker.private\Remove-AzServiceLinker_DeleteViaIdentity'; + Validate = 'Az.ServiceLinker.private\Test-AzServiceLinker_Validate'; + ValidateViaIdentity = 'Az.ServiceLinker.private\Test-AzServiceLinker_ValidateViaIdentity'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) @@ -746,9 +1609,9 @@ end { <# .Synopsis -Validate a link. +add a dryrun job to do necessary check before actual creation .Description -Validate a link. +add a dryrun job to do necessary check before actual creation .Example {{ Add code here }} .Example @@ -757,37 +1620,41 @@ Validate a link. .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResult +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. INPUTOBJECT : Identity Parameter + [ConnectorName ]: The name of resource. + [DryrunName ]: The name of dryrun. [Id ]: Resource identity path [LinkerName ]: The name Linker resource. + [Location ]: The name of Azure region. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. [ResourceUri ]: The fully qualified Azure Resource manager identifier of the resource to be connected. + [SubscriptionId ]: The ID of the target subscription. .Link -https://learn.microsoft.com/powershell/module/az.servicelinker/test-azservicelinker +https://learn.microsoft.com/powershell/module/az.servicelinker/update-azservicelinkerdryrun #> -function Test-AzServiceLinker { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResult])] -[CmdletBinding(DefaultParameterSetName='Validate', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +function Update-AzServiceLinkerDryrun { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource])] +[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( - [Parameter(ParameterSetName='Validate', Mandatory)] - [Alias('LinkerName')] + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] [System.String] - # The name Linker resource. - ${Name}, + # The name of dryrun. + ${DryrunName}, - [Parameter(ParameterSetName='Validate', Mandatory)] + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] [System.String] # The fully qualified Azure Resource manager identifier of the resource to be connected. ${ResourceUri}, - [Parameter(ParameterSetName='ValidateViaIdentity', Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity] # Identity Parameter @@ -863,8 +1730,8 @@ begin { $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ - Validate = 'Az.ServiceLinker.private\Test-AzServiceLinker_Validate'; - ValidateViaIdentity = 'Az.ServiceLinker.private\Test-AzServiceLinker_ValidateViaIdentity'; + UpdateExpanded = 'Az.ServiceLinker.private\Update-AzServiceLinkerDryrun_UpdateExpanded'; + UpdateViaIdentityExpanded = 'Az.ServiceLinker.private\Update-AzServiceLinkerDryrun_UpdateViaIdentityExpanded'; } $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) @@ -899,9 +1766,9 @@ end { <# .Synopsis -Operation to update an existing link. +Operation to update an existing Linker. .Description -Operation to update an existing link. +Operation to update an existing Linker. .Example {{ Add code here }} .Example @@ -910,7 +1777,7 @@ Operation to update an existing link. .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource .Notes COMPLEX PARAMETER PROPERTIES @@ -920,9 +1787,14 @@ AUTHINFO : The authentication type. AuthType : The authentication type. INPUTOBJECT : Identity Parameter + [ConnectorName ]: The name of resource. + [DryrunName ]: The name of dryrun. [Id ]: Resource identity path [LinkerName ]: The name Linker resource. + [Location ]: The name of Azure region. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. [ResourceUri ]: The fully qualified Azure Resource manager identifier of the resource to be connected. + [SubscriptionId ]: The ID of the target subscription. TARGETSERVICE : The target service properties Type : The target service type. @@ -930,7 +1802,7 @@ TARGETSERVICE : The target service properties https://learn.microsoft.com/powershell/module/az.servicelinker/update-azservicelinker #> function Update-AzServiceLinker { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource])] [CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] @@ -961,7 +1833,7 @@ param( [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase] # The authentication type. # To construct, see NOTES section for AUTHINFO properties and create a hash table. ${AuthInfo}, @@ -973,6 +1845,66 @@ param( # The application client type ${ClientType}, + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType] + # Optional, indicate whether to apply configurations on source application. + # If enable, generate configurations and applied to the source application. + # Default is enable. + # If optOut, no configuration change will be made on source. + ${ConfigurationInfoAction}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations]))] + [System.Collections.Hashtable] + # A dictionary of additional configurations to be added. + # Service will auto generate a set of basic configurations and this property is to full fill more customized configurations + ${ConfigurationInfoAdditionalConfiguration}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys]))] + [System.Collections.Hashtable] + # Optional. + # A dictionary of default key name and customized key name mapping. + # If not specified, default key name will be used for generate configurations + ${ConfigurationInfoCustomizedKey}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType] + # Allow Azure services to access the target service if true. + ${FirewallRuleAzureService}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType] + # Allow caller client IP to access the target service if true. + # the property is used when connecting local application to target service. + ${FirewallRuleCallerClientIP}, + + [Parameter()] + [AllowEmptyCollection()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [System.String[]] + # This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client IPs for a given database account. + ${FirewallRuleIPRange}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType] + # Optional. + # Indicates public network solution. + # If enable, enable public network access of target service with best try. + # Default is enable. + # If optOut, opt out public network access configuration. + ${PublicNetworkSolutionAction}, + [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] [System.String] @@ -987,7 +1919,13 @@ param( [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase] + [System.String] + # The key vault secret name to store secret, only valid when storing one secret + ${SecretStoreKeyVaultSecretName}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase] # The target service properties # To construct, see NOTES section for TARGETSERVICE properties and create a hash table. ${TargetService}, diff --git a/src/ServiceLinker/internal/README.md b/src/ServiceLinker/internal/README.md index de1f090543fe..b248f363b465 100644 --- a/src/ServiceLinker/internal/README.md +++ b/src/ServiceLinker/internal/README.md @@ -8,7 +8,7 @@ This directory contains a module to handle *internal only* cmdlets. Cmdlets that - Packaged: yes ## Details -The `Az.ServiceLinker.internal.psm1` file is generated to this folder. This module file handles the hidden cmdlets. These cmdlets will not be exported by `Az.ServiceLinker`. Instead, this sub-module is imported by the `..\custom\Az.ServiceLinker.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.ServiceLinker.internal\Get-Example` would call an internal cmdlet named `Get-Example`. +The `Az.ServiceLinker.internal.psm1` file is generated to this folder. This module file handles the hidden cmdlets. These cmdlets will not be exported by `Az.ServiceLinker`. Instead, this sub-module is imported by the `..\custom\Az.ServiceLinker.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.ServiceLinker.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.ServiceLinker`. diff --git a/src/ServiceLinker/internal/Remove-AzServiceLinker.ps1 b/src/ServiceLinker/internal/Remove-AzServiceLinker.ps1 index dc107da068fc..1b36a760a7f6 100644 --- a/src/ServiceLinker/internal/Remove-AzServiceLinker.ps1 +++ b/src/ServiceLinker/internal/Remove-AzServiceLinker.ps1 @@ -16,9 +16,9 @@ <# .Synopsis -Delete a link. +Delete a Linker. .Description -Delete a link. +Delete a Linker. .Example {{ Add code here }} .Example @@ -34,9 +34,14 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. INPUTOBJECT : Identity Parameter + [ConnectorName ]: The name of resource. + [DryrunName ]: The name of dryrun. [Id ]: Resource identity path [LinkerName ]: The name Linker resource. + [Location ]: The name of Azure region. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. [ResourceUri ]: The fully qualified Azure Resource manager identifier of the resource to be connected. + [SubscriptionId ]: The ID of the target subscription. .Link https://learn.microsoft.com/powershell/module/az.servicelinker/remove-azservicelinker #> diff --git a/src/ServiceLinker/internal/Remove-AzServiceLinkerDryrun.ps1 b/src/ServiceLinker/internal/Remove-AzServiceLinkerDryrun.ps1 new file mode 100644 index 000000000000..de03642ac6c5 --- /dev/null +++ b/src/ServiceLinker/internal/Remove-AzServiceLinkerDryrun.ps1 @@ -0,0 +1,166 @@ + +# ---------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# Code generated by Microsoft (R) AutoRest Code Generator.Changes may cause incorrect behavior and will be lost if the code +# is regenerated. +# ---------------------------------------------------------------------------------- + +<# +.Synopsis +delete a dryrun job +.Description +delete a dryrun job +.Example +{{ Add code here }} +.Example +{{ Add code here }} + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity +.Outputs +System.Boolean +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConnectorName ]: The name of resource. + [DryrunName ]: The name of dryrun. + [Id ]: Resource identity path + [LinkerName ]: The name Linker resource. + [Location ]: The name of Azure region. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. + [ResourceUri ]: The fully qualified Azure Resource manager identifier of the resource to be connected. + [SubscriptionId ]: The ID of the target subscription. +.Link +https://learn.microsoft.com/powershell/module/az.servicelinker/remove-azservicelinkerdryrun +#> +function Remove-AzServiceLinkerDryrun { +[OutputType([System.Boolean])] +[CmdletBinding(DefaultParameterSetName='Delete', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(ParameterSetName='Delete', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] + [System.String] + # The name of dryrun. + ${DryrunName}, + + [Parameter(ParameterSetName='Delete', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] + [System.String] + # The fully qualified Azure Resource manager identifier of the resource to be connected. + ${ResourceUri}, + + [Parameter(ParameterSetName='DeleteViaIdentity', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Returns true when the command succeeds + ${PassThru}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + + $mapping = @{ + Delete = 'Az.ServiceLinker.private\Remove-AzServiceLinkerDryrun_Delete'; + DeleteViaIdentity = 'Az.ServiceLinker.private\Remove-AzServiceLinkerDryrun_DeleteViaIdentity'; + } + + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + + throw + } + +} +end { + try { + $steppablePipeline.End() + + } catch { + + throw + } +} +} diff --git a/src/ServiceLinker/internal/Test-AzServiceLinker.ps1 b/src/ServiceLinker/internal/Test-AzServiceLinker.ps1 index e3736274b8db..ffb9e928637f 100644 --- a/src/ServiceLinker/internal/Test-AzServiceLinker.ps1 +++ b/src/ServiceLinker/internal/Test-AzServiceLinker.ps1 @@ -16,9 +16,9 @@ <# .Synopsis -Validate a link. +Validate a Linker. .Description -Validate a link. +Validate a Linker. .Example {{ Add code here }} .Example @@ -27,21 +27,26 @@ Validate a link. .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResult +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResult .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. INPUTOBJECT : Identity Parameter + [ConnectorName ]: The name of resource. + [DryrunName ]: The name of dryrun. [Id ]: Resource identity path [LinkerName ]: The name Linker resource. + [Location ]: The name of Azure region. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. [ResourceUri ]: The fully qualified Azure Resource manager identifier of the resource to be connected. + [SubscriptionId ]: The ID of the target subscription. .Link https://learn.microsoft.com/powershell/module/az.servicelinker/test-azservicelinker #> function Test-AzServiceLinker { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IValidateOperationResult])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IValidateOperationResult])] [CmdletBinding(DefaultParameterSetName='Validate', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Validate', Mandatory)] diff --git a/src/ServiceLinker/internal/Update-AzServiceLinker.ps1 b/src/ServiceLinker/internal/Update-AzServiceLinker.ps1 index 5e9146899f13..85176ebfa079 100644 --- a/src/ServiceLinker/internal/Update-AzServiceLinker.ps1 +++ b/src/ServiceLinker/internal/Update-AzServiceLinker.ps1 @@ -16,9 +16,9 @@ <# .Synopsis -Operation to update an existing link. +Operation to update an existing Linker. .Description -Operation to update an existing link. +Operation to update an existing Linker. .Example {{ Add code here }} .Example @@ -27,7 +27,7 @@ Operation to update an existing link. .Inputs Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource .Notes COMPLEX PARAMETER PROPERTIES @@ -37,9 +37,14 @@ AUTHINFO : The authentication type. AuthType : The authentication type. INPUTOBJECT : Identity Parameter + [ConnectorName ]: The name of resource. + [DryrunName ]: The name of dryrun. [Id ]: Resource identity path [LinkerName ]: The name Linker resource. + [Location ]: The name of Azure region. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. [ResourceUri ]: The fully qualified Azure Resource manager identifier of the resource to be connected. + [SubscriptionId ]: The ID of the target subscription. TARGETSERVICE : The target service properties Type : The target service type. @@ -47,7 +52,7 @@ TARGETSERVICE : The target service properties https://learn.microsoft.com/powershell/module/az.servicelinker/update-azservicelinker #> function Update-AzServiceLinker { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ILinkerResource])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ILinkerResource])] [CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] @@ -78,7 +83,7 @@ param( [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.IAuthInfoBase] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IAuthInfoBase] # The authentication type. # To construct, see NOTES section for AUTHINFO properties and create a hash table. ${AuthInfo}, @@ -90,6 +95,66 @@ param( # The application client type ${ClientType}, + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType] + # Optional, indicate whether to apply configurations on source application. + # If enable, generate configurations and applied to the source application. + # Default is enable. + # If optOut, no configuration change will be made on source. + ${ConfigurationInfoAction}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoAdditionalConfigurations]))] + [System.Collections.Hashtable] + # A dictionary of additional configurations to be added. + # Service will auto generate a set of basic configurations and this property is to full fill more customized configurations + ${ConfigurationInfoAdditionalConfiguration}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IConfigurationInfoCustomizedKeys]))] + [System.Collections.Hashtable] + # Optional. + # A dictionary of default key name and customized key name mapping. + # If not specified, default key name will be used for generate configurations + ${ConfigurationInfoCustomizedKey}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType] + # Allow Azure services to access the target service if true. + ${FirewallRuleAzureService}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.AllowType] + # Allow caller client IP to access the target service if true. + # the property is used when connecting local application to target service. + ${FirewallRuleCallerClientIP}, + + [Parameter()] + [AllowEmptyCollection()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [System.String[]] + # This value specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client IPs for a given database account. + ${FirewallRuleIPRange}, + + [Parameter()] + [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType])] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Support.ActionType] + # Optional. + # Indicates public network solution. + # If enable, enable public network access of target service with best try. + # Default is enable. + # If optOut, opt out public network access configuration. + ${PublicNetworkSolutionAction}, + [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] [System.String] @@ -104,7 +169,13 @@ param( [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20220501.ITargetServiceBase] + [System.String] + # The key vault secret name to store secret, only valid when storing one secret + ${SecretStoreKeyVaultSecretName}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.ITargetServiceBase] # The target service properties # To construct, see NOTES section for TARGETSERVICE properties and create a hash table. ${TargetService}, diff --git a/src/ServiceLinker/internal/Update-AzServiceLinkerDryrun.ps1 b/src/ServiceLinker/internal/Update-AzServiceLinkerDryrun.ps1 new file mode 100644 index 000000000000..7576aa9ecd22 --- /dev/null +++ b/src/ServiceLinker/internal/Update-AzServiceLinkerDryrun.ps1 @@ -0,0 +1,172 @@ + +# ---------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# Code generated by Microsoft (R) AutoRest Code Generator.Changes may cause incorrect behavior and will be lost if the code +# is regenerated. +# ---------------------------------------------------------------------------------- + +<# +.Synopsis +add a dryrun job to do necessary check before actual creation +.Description +add a dryrun job to do necessary check before actual creation +.Example +{{ Add code here }} +.Example +{{ Add code here }} + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource +.Notes +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [ConnectorName ]: The name of resource. + [DryrunName ]: The name of dryrun. + [Id ]: Resource identity path + [LinkerName ]: The name Linker resource. + [Location ]: The name of Azure region. + [ResourceGroupName ]: The name of the resource group. The name is case insensitive. + [ResourceUri ]: The fully qualified Azure Resource manager identifier of the resource to be connected. + [SubscriptionId ]: The ID of the target subscription. +.Link +https://learn.microsoft.com/powershell/module/az.servicelinker/update-azservicelinkerdryrun +#> +function Update-AzServiceLinkerDryrun { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.Api20221101Preview.IDryrunResource])] +[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] + [System.String] + # The name of dryrun. + ${DryrunName}, + + [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] + [System.String] + # The fully qualified Azure Resource manager identifier of the resource to be connected. + ${ResourceUri}, + + [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Models.IServiceLinkerIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ServiceLinker.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +begin { + try { + $outBuffer = $null + if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { + $PSBoundParameters['OutBuffer'] = 1 + } + $parameterSet = $PSCmdlet.ParameterSetName + + $mapping = @{ + UpdateExpanded = 'Az.ServiceLinker.private\Update-AzServiceLinkerDryrun_UpdateExpanded'; + UpdateViaIdentityExpanded = 'Az.ServiceLinker.private\Update-AzServiceLinkerDryrun_UpdateViaIdentityExpanded'; + } + + $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + + throw + } +} + +process { + try { + $steppablePipeline.Process($_) + } catch { + + throw + } + +} +end { + try { + $steppablePipeline.End() + + } catch { + + throw + } +} +} diff --git a/src/ServiceLinker/test/Get-AzServiceLinkerConfigurationForContainerApp.Recording.json b/src/ServiceLinker/test/Get-AzServiceLinkerConfigurationForContainerApp.Recording.json index 38ed3d7ec975..b5939c277f49 100644 --- a/src/ServiceLinker/test/Get-AzServiceLinkerConfigurationForContainerApp.Recording.json +++ b/src/ServiceLinker/test/Get-AzServiceLinkerConfigurationForContainerApp.Recording.json @@ -1,12 +1,12 @@ { - "Get-AzServiceLinkerConfigurationForContainerApp+[NoContext]+List+$POST+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker/listConfigurations?api-version=2022-05-01+1": { + "Get-AzServiceLinkerConfigurationForContainerApp+[NoContext]+List+$POST+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker/listConfigurations?api-version=2022-11-01-preview+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker/listConfigurations?api-version=2022-05-01", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker/listConfigurations?api-version=2022-11-01-preview", "Content": null, "Headers": { "x-ms-unique-id": [ "1" ], - "x-ms-client-request-id": [ "c77f0223-bc4a-44b0-ab98-38d5e771e8c5" ], + "x-ms-client-request-id": [ "3b3cd48e-c232-4928-bfcc-340eb9fb1a9c" ], "CommandName": [ "Az.ServiceLinker.internal\\Get-AzServiceLinkerConfiguration" ], "FullCommandName": [ "Get-AzServiceLinkerConfiguration_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,23 +21,22 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "0188fb0c-6eac-451a-a23e-a3d736cb773e" ], + "mise-correlation-id": [ "9da2798d-3ef0-48fc-bbd2-5b587d7a6c38" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "740cb3db-59f0-4fa5-a09d-81ff77ef6a66" ], - "x-ms-correlation-request-id": [ "fd94b62a-ad29-414f-9e9b-695e026603c3" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064256Z:fd94b62a-ad29-414f-9e9b-695e026603c3" ], + "x-ms-request-id": [ "8ea66fcc-a9aa-416d-a0c1-11df05b1651c" ], + "x-ms-correlation-request-id": [ "d56af4ee-399f-4114-99b1-df7ac28fa5bf" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20230130T074100Z:d56af4ee-399f-4114-99b1-df7ac28fa5bf" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:42:56 GMT" ] + "Date": [ "Mon, 30 Jan 2023 07:40:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "78" ], + "Content-Length": [ "125" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"configurations\":[{\"name\":\"AZURE_POSTGRESQL_CONNECTIONSTRING\",\"value\":null}]}" + "Content": "{\"configurations\":[{\"name\":\"AZURE_APPCONFIGURATION_ENDPOINT\",\"value\":\"https://servicelinker-app-configuration.azconfig.io\"}]}" } } } \ No newline at end of file diff --git a/src/ServiceLinker/test/Get-AzServiceLinkerConfigurationForSpringCloud.Recording.json b/src/ServiceLinker/test/Get-AzServiceLinkerConfigurationForSpringCloud.Recording.json index 038aec97c35b..b981fc97dace 100644 --- a/src/ServiceLinker/test/Get-AzServiceLinkerConfigurationForSpringCloud.Recording.json +++ b/src/ServiceLinker/test/Get-AzServiceLinkerConfigurationForSpringCloud.Recording.json @@ -1,12 +1,12 @@ { - "Get-AzServiceLinkerConfigurationForSpringCloud+[NoContext]+Get+$POST+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker/listConfigurations?api-version=2022-05-01+1": { + "Get-AzServiceLinkerConfigurationForSpringCloud+[NoContext]+Get+$POST+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker/listConfigurations?api-version=2022-11-01-preview+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker/listConfigurations?api-version=2022-05-01", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker/listConfigurations?api-version=2022-11-01-preview", "Content": null, "Headers": { "x-ms-unique-id": [ "2" ], - "x-ms-client-request-id": [ "47443aa5-a40c-4940-8f2a-9137a82d7bd4" ], + "x-ms-client-request-id": [ "6ba8b995-041d-4bd7-a0c4-37dbac168f1a" ], "CommandName": [ "Az.ServiceLinker.internal\\Get-AzServiceLinkerConfiguration" ], "FullCommandName": [ "Get-AzServiceLinkerConfiguration_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,16 +21,15 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "a3aa463e-390a-4b07-967e-3bb8f216d107" ], + "mise-correlation-id": [ "0de207aa-f1e3-47aa-adf8-9b4736df4ba8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0013b7e7-825a-4c34-82ba-c09fd92a755f" ], - "x-ms-correlation-request-id": [ "1ef2ecd3-74b9-40f1-b644-6057e1b645d7" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064305Z:1ef2ecd3-74b9-40f1-b644-6057e1b645d7" ], + "x-ms-request-id": [ "45f69441-f2a6-43da-a749-0b2be25527b9" ], + "x-ms-correlation-request-id": [ "6d92dfe5-c8c0-4880-8fc0-c91b976a8060" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20230130T074112Z:6d92dfe5-c8c0-4880-8fc0-c91b976a8060" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:43:04 GMT" ] + "Date": [ "Mon, 30 Jan 2023 07:41:12 GMT" ] }, "ContentHeaders": { "Content-Length": [ "227" ], diff --git a/src/ServiceLinker/test/Get-AzServiceLinkerConfigurationForWebApp.Recording.json b/src/ServiceLinker/test/Get-AzServiceLinkerConfigurationForWebApp.Recording.json index 31b03e8bc62b..635638da06fd 100644 --- a/src/ServiceLinker/test/Get-AzServiceLinkerConfigurationForWebApp.Recording.json +++ b/src/ServiceLinker/test/Get-AzServiceLinkerConfigurationForWebApp.Recording.json @@ -1,12 +1,12 @@ { - "Get-AzServiceLinkerConfigurationForWebApp+[NoContext]+Get+$POST+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker/listConfigurations?api-version=2022-05-01+1": { + "Get-AzServiceLinkerConfigurationForWebApp+[NoContext]+Get+$POST+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker/listConfigurations?api-version=2022-11-01-preview+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker/listConfigurations?api-version=2022-05-01", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker/listConfigurations?api-version=2022-11-01-preview", "Content": null, "Headers": { "x-ms-unique-id": [ "3" ], - "x-ms-client-request-id": [ "8e0d4168-901b-4b8d-a6e3-82ad02b40994" ], + "x-ms-client-request-id": [ "425697d2-6df2-4c61-9e8e-f1f98a1d499c" ], "CommandName": [ "Az.ServiceLinker.internal\\Get-AzServiceLinkerConfiguration" ], "FullCommandName": [ "Get-AzServiceLinkerConfiguration_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,23 +21,22 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "f69c1f96-fe48-49ff-a2f0-a8fdb7d66b9f" ], + "mise-correlation-id": [ "dc91cd06-8937-4c3a-9c20-ff21246f5e80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "df837b82-5b49-442f-b70e-4ff769419e73" ], - "x-ms-correlation-request-id": [ "669dc65e-e639-43a6-8ab5-51850a31fba2" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064313Z:669dc65e-e639-43a6-8ab5-51850a31fba2" ], + "x-ms-request-id": [ "fd7f3303-d09d-4655-8cf3-f58f58188de4" ], + "x-ms-correlation-request-id": [ "12d11d7a-5667-4970-b480-eb8cf025f8b3" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20230130T074124Z:12d11d7a-5667-4970-b480-eb8cf025f8b3" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:43:12 GMT" ] + "Date": [ "Mon, 30 Jan 2023 07:41:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "235" ], + "Content-Length": [ "220" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"configurations\":[{\"name\":\"AZURE_POSTGRESQL_PREPAREDLINKER_CONNECTIONSTRING\",\"value\":\"Server=servicelinker-postgresql.postgres.database.azure.com;Database=pollsdb;Port=5432;Ssl Mode=Require;User Id=xichen@servicelinker-postgresql;\"}]}" + "Content": "{\"configurations\":[{\"name\":\"AZURE_POSTGRESQL_CONNECTIONSTRING\",\"value\":\"Server=servicelinker-postgresql.postgres.database.azure.com;Database=pollsdb;Port=5432;Ssl Mode=Require;User Id=xichen@servicelinker-postgresql;\"}]}" } } } \ No newline at end of file diff --git a/src/ServiceLinker/test/Get-AzServiceLinkerConfigurationName.Recording.json b/src/ServiceLinker/test/Get-AzServiceLinkerConfigurationName.Recording.json new file mode 100644 index 000000000000..26f61ae36831 --- /dev/null +++ b/src/ServiceLinker/test/Get-AzServiceLinkerConfigurationName.Recording.json @@ -0,0 +1,42 @@ +{ + "Get-AzServiceLinkerConfigurationName+[NoContext]+List+$GET+https://management.azure.com/providers/Microsoft.ServiceLinker/configurationNames?api-version=2022-11-01-preview+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/providers/Microsoft.ServiceLinker/configurationNames?api-version=2022-11-01-preview", + "Content": null, + "Headers": { + "x-ms-unique-id": [ "4" ], + "x-ms-client-request-id": [ "8f70f979-b676-4044-a6b6-a4dbe384e83b" ], + "CommandName": [ "Get-AzServiceLinkerConfigurationName" ], + "FullCommandName": [ "Get-AzServiceLinkerConfigurationName_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-tenant-reads": [ "11999" ], + "x-ms-providerhub-traffic": [ "True" ], + "mise-correlation-id": [ "1bef8641-b57e-4399-88e7-ddadbf2b2b8c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "694ddae1-c10e-4bdd-bc41-f60f90f9a8c4" ], + "x-ms-correlation-request-id": [ "18300a16-eafa-4d8c-9983-93df88f701cc" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20230130T074136Z:18300a16-eafa-4d8c-9983-93df88f701cc" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Mon, 30 Jan 2023 07:41:36 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "304528" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"properties\":{\"targetService\":\"MICROSOFT.APPCONFIGURATION/CONFIGURATIONSTORES\",\"clientType\":\"none\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_APPCONFIGURATION_ENDPOINT\",\"description\":\"App Configuration endpoint\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.APPCONFIGURATION/CONFIGURATIONSTORES\",\"clientType\":\"none\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_APPCONFIGURATION_ENDPOINT\",\"description\":\"App Configuration endpoint\"},{\"value\":\"AZURE_APPCONFIGURATION_CLIENTID\",\"description\":\"User Identity client id\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.APPCONFIGURATION/CONFIGURATIONSTORES\",\"clientType\":\"none\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_APPCONFIGURATION_ENDPOINT\",\"description\":\"App Configuration endpoint\"},{\"value\":\"AZURE_APPCONFIGURATION_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_APPCONFIGURATION_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_APPCONFIGURATION_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_APPCONFIGURATION_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.APPCONFIGURATION/CONFIGURATIONSTORES\",\"clientType\":\"none\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_APPCONFIGURATION_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.APPCONFIGURATION/CONFIGURATIONSTORES\",\"clientType\":\"none\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_APPCONFIGURATION_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.APPCONFIGURATION/CONFIGURATIONSTORES\",\"clientType\":\"none\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_APPCONFIGURATION_ENDPOINT\",\"description\":\"App Configuration endpoint\"},{\"value\":\"AZURE_APPCONFIGURATION_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.APPCONFIGURATION/CONFIGURATIONSTORES\",\"clientType\":\"dotnet\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_APPCONFIGURATION_ENDPOINT\",\"description\":\"App Configuration endpoint\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.APPCONFIGURATION/CONFIGURATIONSTORES\",\"clientType\":\"dotnet\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_APPCONFIGURATION_ENDPOINT\",\"description\":\"App Configuration endpoint\"},{\"value\":\"AZURE_APPCONFIGURATION_CLIENTID\",\"description\":\"User Identity client id\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.APPCONFIGURATION/CONFIGURATIONSTORES\",\"clientType\":\"dotnet\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_APPCONFIGURATION_ENDPOINT\",\"description\":\"App Configuration endpoint\"},{\"value\":\"AZURE_APPCONFIGURATION_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_APPCONFIGURATION_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_APPCONFIGURATION_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_APPCONFIGURATION_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.APPCONFIGURATION/CONFIGURATIONSTORES\",\"clientType\":\"dotnet\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_APPCONFIGURATION_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.APPCONFIGURATION/CONFIGURATIONSTORES\",\"clientType\":\"dotnet\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_APPCONFIGURATION_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.APPCONFIGURATION/CONFIGURATIONSTORES\",\"clientType\":\"dotnet\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_APPCONFIGURATION_ENDPOINT\",\"description\":\"App Configuration endpoint\"},{\"value\":\"AZURE_APPCONFIGURATION_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.APPCONFIGURATION/CONFIGURATIONSTORES\",\"clientType\":\"java\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_APPCONFIGURATION_ENDPOINT\",\"description\":\"App Configuration endpoint\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.APPCONFIGURATION/CONFIGURATIONSTORES\",\"clientType\":\"java\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_APPCONFIGURATION_ENDPOINT\",\"description\":\"App Configuration endpoint\"},{\"value\":\"AZURE_APPCONFIGURATION_CLIENTID\",\"description\":\"User Identity client id\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.APPCONFIGURATION/CONFIGURATIONSTORES\",\"clientType\":\"java\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_APPCONFIGURATION_ENDPOINT\",\"description\":\"App Configuration endpoint\"},{\"value\":\"AZURE_APPCONFIGURATION_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_APPCONFIGURATION_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_APPCONFIGURATION_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_APPCONFIGURATION_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.APPCONFIGURATION/CONFIGURATIONSTORES\",\"clientType\":\"java\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_APPCONFIGURATION_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.APPCONFIGURATION/CONFIGURATIONSTORES\",\"clientType\":\"java\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_APPCONFIGURATION_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.APPCONFIGURATION/CONFIGURATIONSTORES\",\"clientType\":\"java\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_APPCONFIGURATION_ENDPOINT\",\"description\":\"App Configuration endpoint\"},{\"value\":\"AZURE_APPCONFIGURATION_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.APPCONFIGURATION/CONFIGURATIONSTORES\",\"clientType\":\"nodejs\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_APPCONFIGURATION_ENDPOINT\",\"description\":\"App Configuration endpoint\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.APPCONFIGURATION/CONFIGURATIONSTORES\",\"clientType\":\"nodejs\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_APPCONFIGURATION_ENDPOINT\",\"description\":\"App Configuration endpoint\"},{\"value\":\"AZURE_APPCONFIGURATION_CLIENTID\",\"description\":\"User Identity client id\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.APPCONFIGURATION/CONFIGURATIONSTORES\",\"clientType\":\"nodejs\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_APPCONFIGURATION_ENDPOINT\",\"description\":\"App Configuration endpoint\"},{\"value\":\"AZURE_APPCONFIGURATION_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_APPCONFIGURATION_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_APPCONFIGURATION_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_APPCONFIGURATION_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.APPCONFIGURATION/CONFIGURATIONSTORES\",\"clientType\":\"nodejs\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_APPCONFIGURATION_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.APPCONFIGURATION/CONFIGURATIONSTORES\",\"clientType\":\"nodejs\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_APPCONFIGURATION_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.APPCONFIGURATION/CONFIGURATIONSTORES\",\"clientType\":\"nodejs\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_APPCONFIGURATION_ENDPOINT\",\"description\":\"App Configuration endpoint\"},{\"value\":\"AZURE_APPCONFIGURATION_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.APPCONFIGURATION/CONFIGURATIONSTORES\",\"clientType\":\"python\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_APPCONFIGURATION_ENDPOINT\",\"description\":\"App Configuration endpoint\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.APPCONFIGURATION/CONFIGURATIONSTORES\",\"clientType\":\"python\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_APPCONFIGURATION_ENDPOINT\",\"description\":\"App Configuration endpoint\"},{\"value\":\"AZURE_APPCONFIGURATION_CLIENTID\",\"description\":\"User Identity client id\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.APPCONFIGURATION/CONFIGURATIONSTORES\",\"clientType\":\"python\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_APPCONFIGURATION_ENDPOINT\",\"description\":\"App Configuration endpoint\"},{\"value\":\"AZURE_APPCONFIGURATION_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_APPCONFIGURATION_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_APPCONFIGURATION_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_APPCONFIGURATION_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.APPCONFIGURATION/CONFIGURATIONSTORES\",\"clientType\":\"python\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_APPCONFIGURATION_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.APPCONFIGURATION/CONFIGURATIONSTORES\",\"clientType\":\"python\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_APPCONFIGURATION_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.APPCONFIGURATION/CONFIGURATIONSTORES\",\"clientType\":\"python\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_APPCONFIGURATION_ENDPOINT\",\"description\":\"App Configuration endpoint\"},{\"value\":\"AZURE_APPCONFIGURATION_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.APPCONFIGURATION/CONFIGURATIONSTORES\",\"clientType\":\"go\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_APPCONFIGURATION_ENDPOINT\",\"description\":\"App Configuration endpoint\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.APPCONFIGURATION/CONFIGURATIONSTORES\",\"clientType\":\"go\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_APPCONFIGURATION_ENDPOINT\",\"description\":\"App Configuration endpoint\"},{\"value\":\"AZURE_APPCONFIGURATION_CLIENTID\",\"description\":\"User Identity client id\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.APPCONFIGURATION/CONFIGURATIONSTORES\",\"clientType\":\"go\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_APPCONFIGURATION_ENDPOINT\",\"description\":\"App Configuration endpoint\"},{\"value\":\"AZURE_APPCONFIGURATION_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_APPCONFIGURATION_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_APPCONFIGURATION_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_APPCONFIGURATION_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.APPCONFIGURATION/CONFIGURATIONSTORES\",\"clientType\":\"go\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_APPCONFIGURATION_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.APPCONFIGURATION/CONFIGURATIONSTORES\",\"clientType\":\"go\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_APPCONFIGURATION_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.APPCONFIGURATION/CONFIGURATIONSTORES\",\"clientType\":\"go\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_APPCONFIGURATION_ENDPOINT\",\"description\":\"App Configuration endpoint\"},{\"value\":\"AZURE_APPCONFIGURATION_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SQL/SERVERS/DATABASES\",\"clientType\":\"none\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_SQL_HOST\",\"description\":\"SQL host\"},{\"value\":\"AZURE_SQL_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_SQL_DATABASE\",\"description\":\"database name\"},{\"value\":\"AZURE_SQL_AUTHENTICATION\",\"description\":\"authentication type\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SQL/SERVERS/DATABASES\",\"clientType\":\"none\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_SQL_HOST\",\"description\":\"SQL host\"},{\"value\":\"AZURE_SQL_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_SQL_DATABASE\",\"description\":\"database name\"},{\"value\":\"AZURE_SQL_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_SQL_AUTHENTICATION\",\"description\":\"authentication type\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SQL/SERVERS/DATABASES\",\"clientType\":\"none\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_SQL_HOST\",\"description\":\"SQL host\"},{\"value\":\"AZURE_SQL_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_SQL_DATABASE\",\"description\":\"database name\"},{\"value\":\"AZURE_SQL_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_SQL_PASSWORD\",\"description\":\"password\"},{\"value\":\"AZURE_SQL_AUTHENTICATION\",\"description\":\"authentication type\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SQL/SERVERS/DATABASES\",\"clientType\":\"none\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_SQL_HOST\",\"description\":\"SQL host\"},{\"value\":\"AZURE_SQL_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_SQL_DATABASE\",\"description\":\"database name\"},{\"value\":\"AZURE_SQL_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_SQL_PASSWORD\",\"description\":\"password\"},{\"value\":\"AZURE_SQL_AUTHENTICATION\",\"description\":\"authentication type\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SQL/SERVERS/DATABASES\",\"clientType\":\"none\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_SQL_HOST\",\"description\":\"SQL host\"},{\"value\":\"AZURE_SQL_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_SQL_DATABASE\",\"description\":\"database name\"},{\"value\":\"AZURE_SQL_AUTHENTICATION\",\"description\":\"authentication type\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SQL/SERVERS/DATABASES\",\"clientType\":\"dotnet\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_SQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SQL/SERVERS/DATABASES\",\"clientType\":\"dotnet\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_SQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SQL/SERVERS/DATABASES\",\"clientType\":\"dotnet\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_SQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SQL/SERVERS/DATABASES\",\"clientType\":\"dotnet\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_SQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SQL/SERVERS/DATABASES\",\"clientType\":\"dotnet\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_SQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SQL/SERVERS/DATABASES\",\"clientType\":\"java\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_SQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SQL/SERVERS/DATABASES\",\"clientType\":\"java\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_SQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SQL/SERVERS/DATABASES\",\"clientType\":\"java\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_SQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SQL/SERVERS/DATABASES\",\"clientType\":\"java\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_SQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SQL/SERVERS/DATABASES\",\"clientType\":\"java\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_SQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SQL/SERVERS/DATABASES\",\"clientType\":\"nodejs\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_SQL_SERVER\",\"description\":\"SQL server\"},{\"value\":\"AZURE_SQL_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_SQL_DATABASE\",\"description\":\"database name\"},{\"value\":\"AZURE_SQL_AUTHENTICATIONTYPE\",\"description\":\"authentication type\"},{\"value\":\"AZURE_SQL_CLIENTID\",\"description\":\"client id\"},{\"value\":\"AZURE_SQL_CLIENTSECRET\",\"description\":\"client secret\"},{\"value\":\"AZURE_SQL_TENANTID\",\"description\":\"tenant id\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SQL/SERVERS/DATABASES\",\"clientType\":\"nodejs\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_SQL_SERVER\",\"description\":\"SQL server\"},{\"value\":\"AZURE_SQL_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_SQL_DATABASE\",\"description\":\"database name\"},{\"value\":\"AZURE_SQL_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_SQL_AUTHENTICATIONTYPE\",\"description\":\"authentication type\"},{\"value\":\"AZURE_SQL_CLIENTID\",\"description\":\"client id\"},{\"value\":\"AZURE_SQL_CLIENTSECRET\",\"description\":\"client secret\"},{\"value\":\"AZURE_SQL_TENANTID\",\"description\":\"tenant id\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SQL/SERVERS/DATABASES\",\"clientType\":\"nodejs\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_SQL_SERVER\",\"description\":\"SQL server\"},{\"value\":\"AZURE_SQL_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_SQL_DATABASE\",\"description\":\"database name\"},{\"value\":\"AZURE_SQL_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_SQL_PASSWORD\",\"description\":\"password\"},{\"value\":\"AZURE_SQL_AUTHENTICATIONTYPE\",\"description\":\"authentication type\"},{\"value\":\"AZURE_SQL_CLIENTID\",\"description\":\"client id\"},{\"value\":\"AZURE_SQL_CLIENTSECRET\",\"description\":\"client secret\"},{\"value\":\"AZURE_SQL_TENANTID\",\"description\":\"tenant id\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SQL/SERVERS/DATABASES\",\"clientType\":\"nodejs\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_SQL_SERVER\",\"description\":\"SQL server\"},{\"value\":\"AZURE_SQL_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_SQL_DATABASE\",\"description\":\"database name\"},{\"value\":\"AZURE_SQL_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_SQL_PASSWORD\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SQL/SERVERS/DATABASES\",\"clientType\":\"nodejs\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_SQL_SERVER\",\"description\":\"SQL server\"},{\"value\":\"AZURE_SQL_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_SQL_DATABASE\",\"description\":\"database name\"},{\"value\":\"AZURE_SQL_AUTHENTICATIONTYPE\",\"description\":\"authentication type\"},{\"value\":\"AZURE_SQL_CLIENTID\",\"description\":\"client id\"},{\"value\":\"AZURE_SQL_CLIENTSECRET\",\"description\":\"client secret\"},{\"value\":\"AZURE_SQL_TENANTID\",\"description\":\"tenant id\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SQL/SERVERS/DATABASES\",\"clientType\":\"python\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_SQL_SERVER\",\"description\":\"SQL server name\"},{\"value\":\"AZURE_SQL_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_SQL_DATABASE\",\"description\":\"database name\"},{\"value\":\"AZURE_SQL_USER\",\"description\":\"user name\"},{\"value\":\"AZURE_SQL_AUTHENTICATION\",\"description\":\"authentication type\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SQL/SERVERS/DATABASES\",\"clientType\":\"python\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_SQL_SERVER\",\"description\":\"SQL server name\"},{\"value\":\"AZURE_SQL_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_SQL_DATABASE\",\"description\":\"database name\"},{\"value\":\"AZURE_SQL_USER\",\"description\":\"user name\"},{\"value\":\"AZURE_SQL_AUTHENTICATION\",\"description\":\"authentication type\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SQL/SERVERS/DATABASES\",\"clientType\":\"python\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_SQL_SERVER\",\"description\":\"SQL server name\"},{\"value\":\"AZURE_SQL_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_SQL_DATABASE\",\"description\":\"database name\"},{\"value\":\"AZURE_SQL_USER\",\"description\":\"user name\"},{\"value\":\"AZURE_SQL_AUTHENTICATION\",\"description\":\"authentication type\"},{\"value\":\"AZURE_SQL_PASSWORD\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SQL/SERVERS/DATABASES\",\"clientType\":\"python\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_SQL_SERVER\",\"description\":\"SQL server name\"},{\"value\":\"AZURE_SQL_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_SQL_DATABASE\",\"description\":\"database name\"},{\"value\":\"AZURE_SQL_USER\",\"description\":\"user name\"},{\"value\":\"AZURE_SQL_AUTHENTICATION\",\"description\":\"authentication type\"},{\"value\":\"AZURE_SQL_PASSWORD\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SQL/SERVERS/DATABASES\",\"clientType\":\"python\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_SQL_SERVER\",\"description\":\"SQL server name\"},{\"value\":\"AZURE_SQL_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_SQL_DATABASE\",\"description\":\"database name\"},{\"value\":\"AZURE_SQL_USER\",\"description\":\"user name\"},{\"value\":\"AZURE_SQL_AUTHENTICATION\",\"description\":\"authentication type\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SQL/SERVERS/DATABASES\",\"clientType\":\"go\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_SQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SQL/SERVERS/DATABASES\",\"clientType\":\"go\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_SQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SQL/SERVERS/DATABASES\",\"clientType\":\"php\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_SQL_SERVERNAME\",\"description\":\"SQL server name\"},{\"value\":\"AZURE_SQL_DATABASE\",\"description\":\"database name\"},{\"value\":\"AZURE_SQL_UID\",\"description\":\"SQL UID\"},{\"value\":\"AZURE_SQL_PWD\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SQL/SERVERS/DATABASES\",\"clientType\":\"php\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_SQL_SERVERNAME\",\"description\":\"SQL server name\"},{\"value\":\"AZURE_SQL_DATABASE\",\"description\":\"database name\"},{\"value\":\"AZURE_SQL_UID\",\"description\":\"SQL UID\"},{\"value\":\"AZURE_SQL_PWD\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SQL/SERVERS/DATABASES\",\"clientType\":\"ruby\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_SQL_HOST\",\"description\":\"SQL host\"},{\"value\":\"AZURE_SQL_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_SQL_DATABASE\",\"description\":\"database name\"},{\"value\":\"AZURE_SQL_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_SQL_PASSWORD\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SQL/SERVERS/DATABASES\",\"clientType\":\"ruby\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_SQL_HOST\",\"description\":\"SQL host\"},{\"value\":\"AZURE_SQL_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_SQL_DATABASE\",\"description\":\"database name\"},{\"value\":\"AZURE_SQL_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_SQL_PASSWORD\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SQL/SERVERS/DATABASES\",\"clientType\":\"django\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_SQL_HOST\",\"description\":\"SQL host\"},{\"value\":\"AZURE_SQL_PORT\",\"description\":\"Database port\"},{\"value\":\"AZURE_SQL_NAME\",\"description\":\"database name\"},{\"value\":\"AZURE_SQL_USER\",\"description\":\"user name\"},{\"value\":\"AZURE_SQL_PASSWORD\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SQL/SERVERS/DATABASES\",\"clientType\":\"django\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_SQL_HOST\",\"description\":\"SQL host\"},{\"value\":\"AZURE_SQL_PORT\",\"description\":\"Database port\"},{\"value\":\"AZURE_SQL_NAME\",\"description\":\"database name\"},{\"value\":\"AZURE_SQL_USER\",\"description\":\"user name\"},{\"value\":\"AZURE_SQL_PASSWORD\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SQL/SERVERS/DATABASES\",\"clientType\":\"springBoot\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"spring.datasource.url\",\"description\":\"database url\"},{\"value\":\"spring.datasource.username\",\"description\":\"user name\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SQL/SERVERS/DATABASES\",\"clientType\":\"springBoot\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"spring.datasource.url\",\"description\":\"database url\"},{\"value\":\"spring.datasource.username\",\"description\":\"user name\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SQL/SERVERS/DATABASES\",\"clientType\":\"springBoot\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"spring.datasource.url\",\"description\":\"database url\"},{\"value\":\"spring.datasource.username\",\"description\":\"user name\"},{\"value\":\"spring.datasource.password\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SQL/SERVERS/DATABASES\",\"clientType\":\"springBoot\",\"authType\":\"secret\",\"names\":[{\"value\":\"spring.datasource.url\",\"description\":\"database url\"},{\"value\":\"spring.datasource.username\",\"description\":\"user name\"},{\"value\":\"spring.datasource.password\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SQL/SERVERS/DATABASES\",\"clientType\":\"springBoot\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"spring.datasource.url\",\"description\":\"database url\"},{\"value\":\"spring.datasource.username\",\"description\":\"user name\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SQL/SERVERS/DATABASES\",\"clientType\":\"dotnet-connectionString\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_SQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SQL/SERVERS/DATABASES\",\"clientType\":\"dotnet-connectionString\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_SQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SQL/SERVERS/DATABASES\",\"clientType\":\"dotnet-connectionString\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_SQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SQL/SERVERS/DATABASES\",\"clientType\":\"dotnet-connectionString\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_SQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SQL/SERVERS/DATABASES\",\"clientType\":\"dotnet-connectionString\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_SQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SIGNALRSERVICE/SIGNALR\",\"clientType\":\"none\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_SIGNALR_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SIGNALRSERVICE/SIGNALR\",\"clientType\":\"none\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_SIGNALR_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SIGNALRSERVICE/SIGNALR\",\"clientType\":\"none\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_SIGNALR_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SIGNALRSERVICE/SIGNALR\",\"clientType\":\"none\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_SIGNALR_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SIGNALRSERVICE/SIGNALR\",\"clientType\":\"none\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_SIGNALR_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SIGNALRSERVICE/SIGNALR\",\"clientType\":\"none\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_SIGNALR_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SIGNALRSERVICE/SIGNALR\",\"clientType\":\"dotnet\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_SIGNALR_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SIGNALRSERVICE/SIGNALR\",\"clientType\":\"dotnet\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_SIGNALR_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SIGNALRSERVICE/SIGNALR\",\"clientType\":\"dotnet\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_SIGNALR_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SIGNALRSERVICE/SIGNALR\",\"clientType\":\"dotnet\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_SIGNALR_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SIGNALRSERVICE/SIGNALR\",\"clientType\":\"dotnet\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_SIGNALR_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SIGNALRSERVICE/SIGNALR\",\"clientType\":\"dotnet\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_SIGNALR_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SIGNALRSERVICE/WEBPUBSUB\",\"clientType\":\"none\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_WEBPUBSUB_HOST\",\"description\":\"Web PubSub host\"},{\"value\":\"AZURE_WEBPUBSUB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SIGNALRSERVICE/WEBPUBSUB\",\"clientType\":\"none\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_WEBPUBSUB_HOST\",\"description\":\"Web PubSub host\"},{\"value\":\"AZURE_WEBPUBSUB_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_WEBPUBSUB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SIGNALRSERVICE/WEBPUBSUB\",\"clientType\":\"none\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_WEBPUBSUB_HOST\",\"description\":\"Web PubSub host\"},{\"value\":\"AZURE_WEBPUBSUB_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_WEBPUBSUB_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_WEBPUBSUB_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_WEBPUBSUB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SIGNALRSERVICE/WEBPUBSUB\",\"clientType\":\"none\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_WEBPUBSUB_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SIGNALRSERVICE/WEBPUBSUB\",\"clientType\":\"none\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_WEBPUBSUB_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SIGNALRSERVICE/WEBPUBSUB\",\"clientType\":\"none\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_WEBPUBSUB_HOST\",\"description\":\"Web PubSub host\"},{\"value\":\"AZURE_WEBPUBSUB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SIGNALRSERVICE/WEBPUBSUB\",\"clientType\":\"dotnet\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_WEBPUBSUB_HOST\",\"description\":\"Web PubSub host\"},{\"value\":\"AZURE_WEBPUBSUB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SIGNALRSERVICE/WEBPUBSUB\",\"clientType\":\"dotnet\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_WEBPUBSUB_HOST\",\"description\":\"Web PubSub host\"},{\"value\":\"AZURE_WEBPUBSUB_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_WEBPUBSUB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SIGNALRSERVICE/WEBPUBSUB\",\"clientType\":\"dotnet\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_WEBPUBSUB_HOST\",\"description\":\"Web PubSub host\"},{\"value\":\"AZURE_WEBPUBSUB_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_WEBPUBSUB_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_WEBPUBSUB_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_WEBPUBSUB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SIGNALRSERVICE/WEBPUBSUB\",\"clientType\":\"dotnet\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_WEBPUBSUB_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SIGNALRSERVICE/WEBPUBSUB\",\"clientType\":\"dotnet\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_WEBPUBSUB_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SIGNALRSERVICE/WEBPUBSUB\",\"clientType\":\"dotnet\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_WEBPUBSUB_HOST\",\"description\":\"Web PubSub host\"},{\"value\":\"AZURE_WEBPUBSUB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SIGNALRSERVICE/WEBPUBSUB\",\"clientType\":\"java\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_WEBPUBSUB_HOST\",\"description\":\"Web PubSub host\"},{\"value\":\"AZURE_WEBPUBSUB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SIGNALRSERVICE/WEBPUBSUB\",\"clientType\":\"java\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_WEBPUBSUB_HOST\",\"description\":\"Web PubSub host\"},{\"value\":\"AZURE_WEBPUBSUB_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_WEBPUBSUB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SIGNALRSERVICE/WEBPUBSUB\",\"clientType\":\"java\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_WEBPUBSUB_HOST\",\"description\":\"Web PubSub host\"},{\"value\":\"AZURE_WEBPUBSUB_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_WEBPUBSUB_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_WEBPUBSUB_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_WEBPUBSUB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SIGNALRSERVICE/WEBPUBSUB\",\"clientType\":\"java\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_WEBPUBSUB_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SIGNALRSERVICE/WEBPUBSUB\",\"clientType\":\"java\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_WEBPUBSUB_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SIGNALRSERVICE/WEBPUBSUB\",\"clientType\":\"java\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_WEBPUBSUB_HOST\",\"description\":\"Web PubSub host\"},{\"value\":\"AZURE_WEBPUBSUB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SIGNALRSERVICE/WEBPUBSUB\",\"clientType\":\"nodejs\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_WEBPUBSUB_HOST\",\"description\":\"Web PubSub host\"},{\"value\":\"AZURE_WEBPUBSUB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SIGNALRSERVICE/WEBPUBSUB\",\"clientType\":\"nodejs\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_WEBPUBSUB_HOST\",\"description\":\"Web PubSub host\"},{\"value\":\"AZURE_WEBPUBSUB_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_WEBPUBSUB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SIGNALRSERVICE/WEBPUBSUB\",\"clientType\":\"nodejs\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_WEBPUBSUB_HOST\",\"description\":\"Web PubSub host\"},{\"value\":\"AZURE_WEBPUBSUB_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_WEBPUBSUB_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_WEBPUBSUB_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_WEBPUBSUB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SIGNALRSERVICE/WEBPUBSUB\",\"clientType\":\"nodejs\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_WEBPUBSUB_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SIGNALRSERVICE/WEBPUBSUB\",\"clientType\":\"nodejs\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_WEBPUBSUB_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SIGNALRSERVICE/WEBPUBSUB\",\"clientType\":\"nodejs\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_WEBPUBSUB_HOST\",\"description\":\"Web PubSub host\"},{\"value\":\"AZURE_WEBPUBSUB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SIGNALRSERVICE/WEBPUBSUB\",\"clientType\":\"python\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_WEBPUBSUB_HOST\",\"description\":\"Web PubSub host\"},{\"value\":\"AZURE_WEBPUBSUB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SIGNALRSERVICE/WEBPUBSUB\",\"clientType\":\"python\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_WEBPUBSUB_HOST\",\"description\":\"Web PubSub host\"},{\"value\":\"AZURE_WEBPUBSUB_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_WEBPUBSUB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SIGNALRSERVICE/WEBPUBSUB\",\"clientType\":\"python\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_WEBPUBSUB_HOST\",\"description\":\"Web PubSub host\"},{\"value\":\"AZURE_WEBPUBSUB_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_WEBPUBSUB_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_WEBPUBSUB_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_WEBPUBSUB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SIGNALRSERVICE/WEBPUBSUB\",\"clientType\":\"python\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_WEBPUBSUB_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SIGNALRSERVICE/WEBPUBSUB\",\"clientType\":\"python\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_WEBPUBSUB_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SIGNALRSERVICE/WEBPUBSUB\",\"clientType\":\"python\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_WEBPUBSUB_HOST\",\"description\":\"Web PubSub host\"},{\"value\":\"AZURE_WEBPUBSUB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/SERVERS/DATABASES\",\"clientType\":\"none\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_MYSQL_HOST\",\"description\":\"MySQL host\"},{\"value\":\"AZURE_MYSQL_PORT\",\"description\":\"Database port\"},{\"value\":\"AZURE_MYSQL_DATABASE\",\"description\":\"Database name\"},{\"value\":\"AZURE_MYSQL_SSL\",\"description\":\"SSL configuration\"},{\"value\":\"AZURE_MYSQL_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_MYSQL_PASSWORD\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/SERVERS/DATABASES\",\"clientType\":\"none\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_MYSQL_HOST\",\"description\":\"MySQL host\"},{\"value\":\"AZURE_MYSQL_PORT\",\"description\":\"Database port\"},{\"value\":\"AZURE_MYSQL_DATABASE\",\"description\":\"Database name\"},{\"value\":\"AZURE_MYSQL_SSL\",\"description\":\"SSL configuration\"},{\"value\":\"AZURE_MYSQL_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_MYSQL_PASSWORD\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/SERVERS/DATABASES\",\"clientType\":\"dotnet\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_MYSQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/SERVERS/DATABASES\",\"clientType\":\"dotnet\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_MYSQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/SERVERS/DATABASES\",\"clientType\":\"java\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_MYSQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/SERVERS/DATABASES\",\"clientType\":\"java\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_MYSQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/SERVERS/DATABASES\",\"clientType\":\"nodejs\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_MYSQL_HOST\",\"description\":\"PostgresQL host\"},{\"value\":\"AZURE_MYSQL_USER\",\"description\":\"user name\"},{\"value\":\"AZURE_MYSQL_PASSWORD\",\"description\":\"password\"},{\"value\":\"AZURE_MYSQL_DATABASE\",\"description\":\"database name\"},{\"value\":\"AZURE_MYSQL_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_MYSQL_SSL\",\"description\":\"SSL configuration\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/SERVERS/DATABASES\",\"clientType\":\"nodejs\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_MYSQL_HOST\",\"description\":\"PostgresQL host\"},{\"value\":\"AZURE_MYSQL_USER\",\"description\":\"user name\"},{\"value\":\"AZURE_MYSQL_PASSWORD\",\"description\":\"password\"},{\"value\":\"AZURE_MYSQL_DATABASE\",\"description\":\"database name\"},{\"value\":\"AZURE_MYSQL_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_MYSQL_SSL\",\"description\":\"SSL configuration\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/SERVERS/DATABASES\",\"clientType\":\"python\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_MYSQL_NAME\",\"description\":\"database name\"},{\"value\":\"AZURE_MYSQL_HOST\",\"description\":\"host\"},{\"value\":\"AZURE_MYSQL_USER\",\"description\":\"user name\"},{\"value\":\"AZURE_MYSQL_PASSWORD\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/SERVERS/DATABASES\",\"clientType\":\"python\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_MYSQL_NAME\",\"description\":\"database name\"},{\"value\":\"AZURE_MYSQL_HOST\",\"description\":\"host\"},{\"value\":\"AZURE_MYSQL_USER\",\"description\":\"user name\"},{\"value\":\"AZURE_MYSQL_PASSWORD\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/SERVERS/DATABASES\",\"clientType\":\"go\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_MYSQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/SERVERS/DATABASES\",\"clientType\":\"go\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_MYSQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/SERVERS/DATABASES\",\"clientType\":\"php\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_MYSQL_DBNAME\",\"description\":\"database name\"},{\"value\":\"AZURE_MYSQL_HOST\",\"description\":\"MySQL host\"},{\"value\":\"AZURE_MYSQL_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_MYSQL_FLAG\",\"description\":\"SSL flag configuration\"},{\"value\":\"AZURE_MYSQL_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_MYSQL_PASSWORD\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/SERVERS/DATABASES\",\"clientType\":\"php\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_MYSQL_DBNAME\",\"description\":\"database name\"},{\"value\":\"AZURE_MYSQL_HOST\",\"description\":\"MySQL host\"},{\"value\":\"AZURE_MYSQL_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_MYSQL_FLAG\",\"description\":\"SSL flag configuration\"},{\"value\":\"AZURE_MYSQL_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_MYSQL_PASSWORD\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/SERVERS/DATABASES\",\"clientType\":\"ruby\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_MYSQL_DATABASE\",\"description\":\"database name\"},{\"value\":\"AZURE_MYSQL_HOST\",\"description\":\"MySQL host\"},{\"value\":\"AZURE_MYSQL_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_MYSQL_PASSWORD\",\"description\":\"password\"},{\"value\":\"AZURE_MYSQL_SSLMODE\",\"description\":\"SSL mode\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/SERVERS/DATABASES\",\"clientType\":\"ruby\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_MYSQL_DATABASE\",\"description\":\"database name\"},{\"value\":\"AZURE_MYSQL_HOST\",\"description\":\"MySQL host\"},{\"value\":\"AZURE_MYSQL_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_MYSQL_PASSWORD\",\"description\":\"password\"},{\"value\":\"AZURE_MYSQL_SSLMODE\",\"description\":\"SSL mode\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/SERVERS/DATABASES\",\"clientType\":\"django\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_MYSQL_NAME\",\"description\":\"database name\"},{\"value\":\"AZURE_MYSQL_HOST\",\"description\":\"host\"},{\"value\":\"AZURE_MYSQL_USER\",\"description\":\"user name\"},{\"value\":\"AZURE_MYSQL_PASSWORD\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/SERVERS/DATABASES\",\"clientType\":\"django\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_MYSQL_NAME\",\"description\":\"database name\"},{\"value\":\"AZURE_MYSQL_HOST\",\"description\":\"host\"},{\"value\":\"AZURE_MYSQL_USER\",\"description\":\"user name\"},{\"value\":\"AZURE_MYSQL_PASSWORD\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/SERVERS/DATABASES\",\"clientType\":\"springBoot\",\"authType\":\"secret\",\"names\":[{\"value\":\"spring.datasource.url\",\"description\":\"database url\"},{\"value\":\"spring.datasource.username\",\"description\":\"user name\"},{\"value\":\"spring.datasource.password\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/SERVERS/DATABASES\",\"clientType\":\"springBoot\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"spring.datasource.azure.passwordless-enabled\",\"description\":\"passwordless flag\"},{\"value\":\"spring.datasource.url\",\"description\":\"database url\"},{\"value\":\"spring.datasource.username\",\"description\":\"user name\"},{\"value\":\"spring.datasource.password\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/SERVERS/DATABASES\",\"clientType\":\"dotnet-connectionString\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_MYSQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/SERVERS/DATABASES\",\"clientType\":\"dotnet-connectionString\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_MYSQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"none\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_MYSQL_HOST\",\"description\":\"MySQL host\"},{\"value\":\"AZURE_MYSQL_PORT\",\"description\":\"Database port\"},{\"value\":\"AZURE_MYSQL_DATABASE\",\"description\":\"Database name\"},{\"value\":\"AZURE_MYSQL_SSL\",\"description\":\"SSL configuration\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"none\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_MYSQL_HOST\",\"description\":\"MySQL host\"},{\"value\":\"AZURE_MYSQL_PORT\",\"description\":\"Database port\"},{\"value\":\"AZURE_MYSQL_DATABASE\",\"description\":\"Database name\"},{\"value\":\"AZURE_MYSQL_SSL\",\"description\":\"SSL configuration\"},{\"value\":\"AZURE_MYSQL_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_MYSQL_PASSWORD\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"none\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_MYSQL_HOST\",\"description\":\"MySQL host\"},{\"value\":\"AZURE_MYSQL_PORT\",\"description\":\"Database port\"},{\"value\":\"AZURE_MYSQL_DATABASE\",\"description\":\"Database name\"},{\"value\":\"AZURE_MYSQL_SSL\",\"description\":\"SSL configuration\"},{\"value\":\"AZURE_MYSQL_USERNAME\",\"description\":\"user name\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"dotnet\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_MYSQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"dotnet\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_MYSQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"dotnet\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_MYSQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"java\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_MYSQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"java\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_MYSQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"java\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_MYSQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"nodejs\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_MYSQL_HOST\",\"description\":\"PostgresQL host\"},{\"value\":\"AZURE_MYSQL_USER\",\"description\":\"user name\"},{\"value\":\"AZURE_MYSQL_DATABASE\",\"description\":\"database name\"},{\"value\":\"AZURE_MYSQL_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_MYSQL_SSL\",\"description\":\"SSL configuration\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"nodejs\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_MYSQL_HOST\",\"description\":\"PostgresQL host\"},{\"value\":\"AZURE_MYSQL_USER\",\"description\":\"user name\"},{\"value\":\"AZURE_MYSQL_PASSWORD\",\"description\":\"password\"},{\"value\":\"AZURE_MYSQL_DATABASE\",\"description\":\"database name\"},{\"value\":\"AZURE_MYSQL_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_MYSQL_SSL\",\"description\":\"SSL configuration\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"nodejs\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_MYSQL_HOST\",\"description\":\"PostgresQL host\"},{\"value\":\"AZURE_MYSQL_USER\",\"description\":\"user name\"},{\"value\":\"AZURE_MYSQL_DATABASE\",\"description\":\"database name\"},{\"value\":\"AZURE_MYSQL_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_MYSQL_SSL\",\"description\":\"SSL configuration\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"python\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_MYSQL_NAME\",\"description\":\"database name\"},{\"value\":\"AZURE_MYSQL_HOST\",\"description\":\"host\"},{\"value\":\"AZURE_MYSQL_USER\",\"description\":\"user name\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"python\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_MYSQL_NAME\",\"description\":\"database name\"},{\"value\":\"AZURE_MYSQL_HOST\",\"description\":\"host\"},{\"value\":\"AZURE_MYSQL_USER\",\"description\":\"user name\"},{\"value\":\"AZURE_MYSQL_PASSWORD\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"python\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_MYSQL_NAME\",\"description\":\"database name\"},{\"value\":\"AZURE_MYSQL_HOST\",\"description\":\"host\"},{\"value\":\"AZURE_MYSQL_USER\",\"description\":\"user name\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"go\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_MYSQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"go\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_MYSQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"go\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_MYSQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"php\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_MYSQL_DBNAME\",\"description\":\"database name\"},{\"value\":\"AZURE_MYSQL_HOST\",\"description\":\"MySQL host\"},{\"value\":\"AZURE_MYSQL_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_MYSQL_FLAG\",\"description\":\"SSL flag configuration\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"php\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_MYSQL_DBNAME\",\"description\":\"database name\"},{\"value\":\"AZURE_MYSQL_HOST\",\"description\":\"MySQL host\"},{\"value\":\"AZURE_MYSQL_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_MYSQL_FLAG\",\"description\":\"SSL flag configuration\"},{\"value\":\"AZURE_MYSQL_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_MYSQL_PASSWORD\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"php\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_MYSQL_DBNAME\",\"description\":\"database name\"},{\"value\":\"AZURE_MYSQL_HOST\",\"description\":\"MySQL host\"},{\"value\":\"AZURE_MYSQL_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_MYSQL_FLAG\",\"description\":\"SSL flag configuration\"},{\"value\":\"AZURE_MYSQL_USERNAME\",\"description\":\"user name\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"ruby\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_MYSQL_DATABASE\",\"description\":\"database name\"},{\"value\":\"AZURE_MYSQL_HOST\",\"description\":\"MySQL host\"},{\"value\":\"AZURE_MYSQL_SSLMODE\",\"description\":\"SSL mode\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"ruby\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_MYSQL_DATABASE\",\"description\":\"database name\"},{\"value\":\"AZURE_MYSQL_HOST\",\"description\":\"MySQL host\"},{\"value\":\"AZURE_MYSQL_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_MYSQL_PASSWORD\",\"description\":\"password\"},{\"value\":\"AZURE_MYSQL_SSLMODE\",\"description\":\"SSL mode\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"ruby\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_MYSQL_DATABASE\",\"description\":\"database name\"},{\"value\":\"AZURE_MYSQL_HOST\",\"description\":\"MySQL host\"},{\"value\":\"AZURE_MYSQL_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_MYSQL_SSLMODE\",\"description\":\"SSL mode\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"django\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_MYSQL_NAME\",\"description\":\"database name\"},{\"value\":\"AZURE_MYSQL_HOST\",\"description\":\"host\"},{\"value\":\"AZURE_MYSQL_USER\",\"description\":\"user name\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"django\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_MYSQL_NAME\",\"description\":\"database name\"},{\"value\":\"AZURE_MYSQL_HOST\",\"description\":\"host\"},{\"value\":\"AZURE_MYSQL_USER\",\"description\":\"user name\"},{\"value\":\"AZURE_MYSQL_PASSWORD\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"django\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_MYSQL_NAME\",\"description\":\"database name\"},{\"value\":\"AZURE_MYSQL_HOST\",\"description\":\"host\"},{\"value\":\"AZURE_MYSQL_USER\",\"description\":\"user name\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"springBoot\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"spring.datasource.azure.passwordless-enabled\",\"description\":\"passwordless flag\"},{\"value\":\"spring.datasource.url\",\"description\":\"database url\"},{\"value\":\"spring.datasource.username\",\"description\":\"user name\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"springBoot\",\"authType\":\"secret\",\"names\":[{\"value\":\"spring.datasource.url\",\"description\":\"database url\"},{\"value\":\"spring.datasource.username\",\"description\":\"user name\"},{\"value\":\"spring.datasource.password\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"springBoot\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"spring.datasource.azure.passwordless-enabled\",\"description\":\"passwordless flag\"},{\"value\":\"spring.datasource.url\",\"description\":\"database url\"},{\"value\":\"spring.datasource.username\",\"description\":\"user name\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"dotnet-connectionString\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_MYSQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"dotnet-connectionString\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_MYSQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORMYSQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"dotnet-connectionString\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_MYSQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.KEYVAULT/VAULTS\",\"clientType\":\"none\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_KEYVAULT_RESOURCEENDPOINT\",\"description\":\"Key Vault endpoint\"},{\"value\":\"AZURE_KEYVAULT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.KEYVAULT/VAULTS\",\"clientType\":\"none\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_KEYVAULT_RESOURCEENDPOINT\",\"description\":\"Key Vault endpoint\"},{\"value\":\"AZURE_KEYVAULT_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_KEYVAULT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.KEYVAULT/VAULTS\",\"clientType\":\"none\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_KEYVAULT_RESOURCEENDPOINT\",\"description\":\"Key Vault endpoint\"},{\"value\":\"AZURE_KEYVAULT_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_KEYVAULT_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_KEYVAULT_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_KEYVAULT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.KEYVAULT/VAULTS\",\"clientType\":\"none\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_KEYVAULT_RESOURCEENDPOINT\",\"description\":\"Key Vault endpoint\"},{\"value\":\"AZURE_KEYVAULT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.KEYVAULT/VAULTS\",\"clientType\":\"dotnet\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_KEYVAULT_RESOURCEENDPOINT\",\"description\":\"Key Vault endpoint\"},{\"value\":\"AZURE_KEYVAULT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.KEYVAULT/VAULTS\",\"clientType\":\"dotnet\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_KEYVAULT_RESOURCEENDPOINT\",\"description\":\"Key Vault endpoint\"},{\"value\":\"AZURE_KEYVAULT_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_KEYVAULT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.KEYVAULT/VAULTS\",\"clientType\":\"dotnet\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_KEYVAULT_RESOURCEENDPOINT\",\"description\":\"Key Vault endpoint\"},{\"value\":\"AZURE_KEYVAULT_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_KEYVAULT_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_KEYVAULT_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_KEYVAULT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.KEYVAULT/VAULTS\",\"clientType\":\"dotnet\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_KEYVAULT_RESOURCEENDPOINT\",\"description\":\"Key Vault endpoint\"},{\"value\":\"AZURE_KEYVAULT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.KEYVAULT/VAULTS\",\"clientType\":\"java\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_KEYVAULT_RESOURCEENDPOINT\",\"description\":\"Key Vault endpoint\"},{\"value\":\"AZURE_KEYVAULT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.KEYVAULT/VAULTS\",\"clientType\":\"java\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_KEYVAULT_RESOURCEENDPOINT\",\"description\":\"Key Vault endpoint\"},{\"value\":\"AZURE_KEYVAULT_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_KEYVAULT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.KEYVAULT/VAULTS\",\"clientType\":\"java\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_KEYVAULT_RESOURCEENDPOINT\",\"description\":\"Key Vault endpoint\"},{\"value\":\"AZURE_KEYVAULT_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_KEYVAULT_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_KEYVAULT_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_KEYVAULT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.KEYVAULT/VAULTS\",\"clientType\":\"java\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_KEYVAULT_RESOURCEENDPOINT\",\"description\":\"Key Vault endpoint\"},{\"value\":\"AZURE_KEYVAULT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.KEYVAULT/VAULTS\",\"clientType\":\"nodejs\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_KEYVAULT_RESOURCEENDPOINT\",\"description\":\"Key Vault endpoint\"},{\"value\":\"AZURE_KEYVAULT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.KEYVAULT/VAULTS\",\"clientType\":\"nodejs\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_KEYVAULT_RESOURCEENDPOINT\",\"description\":\"Key Vault endpoint\"},{\"value\":\"AZURE_KEYVAULT_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_KEYVAULT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.KEYVAULT/VAULTS\",\"clientType\":\"nodejs\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_KEYVAULT_RESOURCEENDPOINT\",\"description\":\"Key Vault endpoint\"},{\"value\":\"AZURE_KEYVAULT_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_KEYVAULT_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_KEYVAULT_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_KEYVAULT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.KEYVAULT/VAULTS\",\"clientType\":\"nodejs\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_KEYVAULT_RESOURCEENDPOINT\",\"description\":\"Key Vault endpoint\"},{\"value\":\"AZURE_KEYVAULT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.KEYVAULT/VAULTS\",\"clientType\":\"python\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_KEYVAULT_RESOURCEENDPOINT\",\"description\":\"Key Vault endpoint\"},{\"value\":\"AZURE_KEYVAULT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.KEYVAULT/VAULTS\",\"clientType\":\"python\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_KEYVAULT_RESOURCEENDPOINT\",\"description\":\"Key Vault endpoint\"},{\"value\":\"AZURE_KEYVAULT_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_KEYVAULT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.KEYVAULT/VAULTS\",\"clientType\":\"python\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_KEYVAULT_RESOURCEENDPOINT\",\"description\":\"Key Vault endpoint\"},{\"value\":\"AZURE_KEYVAULT_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_KEYVAULT_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_KEYVAULT_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_KEYVAULT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.KEYVAULT/VAULTS\",\"clientType\":\"python\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_KEYVAULT_RESOURCEENDPOINT\",\"description\":\"Key Vault endpoint\"},{\"value\":\"AZURE_KEYVAULT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.KEYVAULT/VAULTS\",\"clientType\":\"go\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_KEYVAULT_RESOURCEENDPOINT\",\"description\":\"Key Vault endpoint\"},{\"value\":\"AZURE_KEYVAULT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.KEYVAULT/VAULTS\",\"clientType\":\"go\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_KEYVAULT_RESOURCEENDPOINT\",\"description\":\"Key Vault endpoint\"},{\"value\":\"AZURE_KEYVAULT_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_KEYVAULT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.KEYVAULT/VAULTS\",\"clientType\":\"go\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_KEYVAULT_RESOURCEENDPOINT\",\"description\":\"Key Vault endpoint\"},{\"value\":\"AZURE_KEYVAULT_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_KEYVAULT_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_KEYVAULT_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_KEYVAULT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.KEYVAULT/VAULTS\",\"clientType\":\"go\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_KEYVAULT_RESOURCEENDPOINT\",\"description\":\"Key Vault endpoint\"},{\"value\":\"AZURE_KEYVAULT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.KEYVAULT/VAULTS\",\"clientType\":\"springBoot\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"azure.keyvault.uri\",\"description\":\"Key Vault endpoint\"},{\"value\":\"azure.keyvault.scope\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.KEYVAULT/VAULTS\",\"clientType\":\"springBoot\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"azure.keyvault.uri\",\"description\":\"Key Vault endpoint\"},{\"value\":\"azure.keyvault.client-id\",\"description\":\"User Identity client id\"},{\"value\":\"azure.keyvault.scope\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.KEYVAULT/VAULTS\",\"clientType\":\"springBoot\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"azure.keyvault.uri\",\"description\":\"Key Vault endpoint\"},{\"value\":\"azure.keyvault.client-key\",\"description\":\"Service Principal client secret\"},{\"value\":\"azure.keyvault.client-id\",\"description\":\"Service Principal client id\"},{\"value\":\"azure.keyvault.tenant-id\",\"description\":\"Service Principal tenant id\"},{\"value\":\"azure.keyvault.scope\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.KEYVAULT/VAULTS\",\"clientType\":\"springBoot\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"azure.keyvault.uri\",\"description\":\"Key Vault endpoint\"},{\"value\":\"azure.keyvault.scope\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/SERVERS/DATABASES\",\"clientType\":\"none\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_HOST\",\"description\":\"PostgresQL host\"},{\"value\":\"AZURE_POSTGRESQL_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_POSTGRESQL_DATABASE\",\"description\":\"database name\"},{\"value\":\"AZURE_POSTGRESQL_SSL\",\"description\":\"SSL configuration\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/SERVERS/DATABASES\",\"clientType\":\"none\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_HOST\",\"description\":\"PostgresQL host\"},{\"value\":\"AZURE_POSTGRESQL_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_POSTGRESQL_DATABASE\",\"description\":\"database name\"},{\"value\":\"AZURE_POSTGRESQL_SSL\",\"description\":\"SSL configuration\"},{\"value\":\"AZURE_POSTGRESQL_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_POSTGRESQL_PASSWORD\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/SERVERS/DATABASES\",\"clientType\":\"none\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_HOST\",\"description\":\"PostgresQL host\"},{\"value\":\"AZURE_POSTGRESQL_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_POSTGRESQL_DATABASE\",\"description\":\"database name\"},{\"value\":\"AZURE_POSTGRESQL_SSL\",\"description\":\"SSL configuration\"},{\"value\":\"AZURE_POSTGRESQL_USERNAME\",\"description\":\"user name\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/SERVERS/DATABASES\",\"clientType\":\"dotnet\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/SERVERS/DATABASES\",\"clientType\":\"dotnet\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/SERVERS/DATABASES\",\"clientType\":\"dotnet\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/SERVERS/DATABASES\",\"clientType\":\"java\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/SERVERS/DATABASES\",\"clientType\":\"java\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/SERVERS/DATABASES\",\"clientType\":\"java\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/SERVERS/DATABASES\",\"clientType\":\"nodejs\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_HOST\",\"description\":\"PostgresQL host\"},{\"value\":\"AZURE_POSTGRESQL_USER\",\"description\":\"user name\"},{\"value\":\"AZURE_POSTGRESQL_DATABASE\",\"description\":\"database name\"},{\"value\":\"AZURE_POSTGRESQL_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_POSTGRESQL_SSL\",\"description\":\"SSL configuration\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/SERVERS/DATABASES\",\"clientType\":\"nodejs\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_HOST\",\"description\":\"PostgresQL host\"},{\"value\":\"AZURE_POSTGRESQL_USER\",\"description\":\"user name\"},{\"value\":\"AZURE_POSTGRESQL_PASSWORD\",\"description\":\"password\"},{\"value\":\"AZURE_POSTGRESQL_DATABASE\",\"description\":\"database name\"},{\"value\":\"AZURE_POSTGRESQL_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_POSTGRESQL_SSL\",\"description\":\"SSL configuration\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/SERVERS/DATABASES\",\"clientType\":\"nodejs\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_HOST\",\"description\":\"PostgresQL host\"},{\"value\":\"AZURE_POSTGRESQL_USER\",\"description\":\"user name\"},{\"value\":\"AZURE_POSTGRESQL_DATABASE\",\"description\":\"database name\"},{\"value\":\"AZURE_POSTGRESQL_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_POSTGRESQL_SSL\",\"description\":\"SSL configuration\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/SERVERS/DATABASES\",\"clientType\":\"python\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/SERVERS/DATABASES\",\"clientType\":\"python\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/SERVERS/DATABASES\",\"clientType\":\"python\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/SERVERS/DATABASES\",\"clientType\":\"go\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/SERVERS/DATABASES\",\"clientType\":\"go\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/SERVERS/DATABASES\",\"clientType\":\"go\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/SERVERS/DATABASES\",\"clientType\":\"php\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/SERVERS/DATABASES\",\"clientType\":\"php\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/SERVERS/DATABASES\",\"clientType\":\"php\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/SERVERS/DATABASES\",\"clientType\":\"ruby\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/SERVERS/DATABASES\",\"clientType\":\"ruby\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/SERVERS/DATABASES\",\"clientType\":\"ruby\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/SERVERS/DATABASES\",\"clientType\":\"django\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_NAME\",\"description\":\"database name\"},{\"value\":\"AZURE_POSTGRESQL_HOST\",\"description\":\"host\"},{\"value\":\"AZURE_POSTGRESQL_USER\",\"description\":\"user name\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/SERVERS/DATABASES\",\"clientType\":\"django\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_NAME\",\"description\":\"database name\"},{\"value\":\"AZURE_POSTGRESQL_HOST\",\"description\":\"host\"},{\"value\":\"AZURE_POSTGRESQL_USER\",\"description\":\"user name\"},{\"value\":\"AZURE_POSTGRESQL_PASSWORD\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/SERVERS/DATABASES\",\"clientType\":\"django\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_NAME\",\"description\":\"database name\"},{\"value\":\"AZURE_POSTGRESQL_HOST\",\"description\":\"host\"},{\"value\":\"AZURE_POSTGRESQL_USER\",\"description\":\"user name\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/SERVERS/DATABASES\",\"clientType\":\"springBoot\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"spring.datasource.azure.passwordless-enabled\",\"description\":\"passwordless flag\"},{\"value\":\"spring.datasource.url\",\"description\":\"database url\"},{\"value\":\"spring.datasource.username\",\"description\":\"user name\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/SERVERS/DATABASES\",\"clientType\":\"springBoot\",\"authType\":\"secret\",\"names\":[{\"value\":\"spring.datasource.url\",\"description\":\"database url\"},{\"value\":\"spring.datasource.username\",\"description\":\"user name\"},{\"value\":\"spring.datasource.password\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/SERVERS/DATABASES\",\"clientType\":\"springBoot\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"spring.datasource.azure.passwordless-enabled\",\"description\":\"passwordless flag\"},{\"value\":\"spring.datasource.url\",\"description\":\"database url\"},{\"value\":\"spring.datasource.username\",\"description\":\"user name\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/SERVERS/DATABASES\",\"clientType\":\"dotnet-connectionString\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/SERVERS/DATABASES\",\"clientType\":\"dotnet-connectionString\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/SERVERS/DATABASES\",\"clientType\":\"dotnet-connectionString\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"none\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_HOST\",\"description\":\"PostgresQL host\"},{\"value\":\"AZURE_POSTGRESQL_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_POSTGRESQL_DATABASE\",\"description\":\"database name\"},{\"value\":\"AZURE_POSTGRESQL_SSL\",\"description\":\"SSL configuration\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"none\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_HOST\",\"description\":\"PostgresQL host\"},{\"value\":\"AZURE_POSTGRESQL_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_POSTGRESQL_DATABASE\",\"description\":\"database name\"},{\"value\":\"AZURE_POSTGRESQL_SSL\",\"description\":\"SSL configuration\"},{\"value\":\"AZURE_POSTGRESQL_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_POSTGRESQL_PASSWORD\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"none\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_HOST\",\"description\":\"PostgresQL host\"},{\"value\":\"AZURE_POSTGRESQL_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_POSTGRESQL_DATABASE\",\"description\":\"database name\"},{\"value\":\"AZURE_POSTGRESQL_SSL\",\"description\":\"SSL configuration\"},{\"value\":\"AZURE_POSTGRESQL_USERNAME\",\"description\":\"user name\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"dotnet\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"dotnet\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"dotnet\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"java\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"java\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"java\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"nodejs\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_HOST\",\"description\":\"PostgresQL host\"},{\"value\":\"AZURE_POSTGRESQL_USER\",\"description\":\"user name\"},{\"value\":\"AZURE_POSTGRESQL_DATABASE\",\"description\":\"database name\"},{\"value\":\"AZURE_POSTGRESQL_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_POSTGRESQL_SSL\",\"description\":\"SSL configuration\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"nodejs\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_HOST\",\"description\":\"PostgresQL host\"},{\"value\":\"AZURE_POSTGRESQL_USER\",\"description\":\"user name\"},{\"value\":\"AZURE_POSTGRESQL_PASSWORD\",\"description\":\"password\"},{\"value\":\"AZURE_POSTGRESQL_DATABASE\",\"description\":\"database name\"},{\"value\":\"AZURE_POSTGRESQL_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_POSTGRESQL_SSL\",\"description\":\"SSL configuration\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"nodejs\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_HOST\",\"description\":\"PostgresQL host\"},{\"value\":\"AZURE_POSTGRESQL_USER\",\"description\":\"user name\"},{\"value\":\"AZURE_POSTGRESQL_DATABASE\",\"description\":\"database name\"},{\"value\":\"AZURE_POSTGRESQL_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_POSTGRESQL_SSL\",\"description\":\"SSL configuration\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"python\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"python\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"python\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"go\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"go\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"go\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"php\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"php\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"php\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"ruby\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"ruby\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"ruby\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"django\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_NAME\",\"description\":\"database name\"},{\"value\":\"AZURE_POSTGRESQL_HOST\",\"description\":\"host\"},{\"value\":\"AZURE_POSTGRESQL_USER\",\"description\":\"user name\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"django\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_NAME\",\"description\":\"database name\"},{\"value\":\"AZURE_POSTGRESQL_HOST\",\"description\":\"host\"},{\"value\":\"AZURE_POSTGRESQL_USER\",\"description\":\"user name\"},{\"value\":\"AZURE_POSTGRESQL_PASSWORD\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"django\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_NAME\",\"description\":\"database name\"},{\"value\":\"AZURE_POSTGRESQL_HOST\",\"description\":\"host\"},{\"value\":\"AZURE_POSTGRESQL_USER\",\"description\":\"user name\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"springBoot\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"spring.datasource.azure.passwordless-enabled\",\"description\":\"passwordless flag\"},{\"value\":\"spring.datasource.url\",\"description\":\"database url\"},{\"value\":\"spring.datasource.username\",\"description\":\"user name\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"springBoot\",\"authType\":\"secret\",\"names\":[{\"value\":\"spring.datasource.url\",\"description\":\"database url\"},{\"value\":\"spring.datasource.username\",\"description\":\"user name\"},{\"value\":\"spring.datasource.password\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"springBoot\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"spring.datasource.azure.passwordless-enabled\",\"description\":\"passwordless flag\"},{\"value\":\"spring.datasource.url\",\"description\":\"database url\"},{\"value\":\"spring.datasource.username\",\"description\":\"user name\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"dotnet-connectionString\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"dotnet-connectionString\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DBFORPOSTGRESQL/FLEXIBLESERVERS/DATABASES\",\"clientType\":\"dotnet-connectionString\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_POSTGRESQL_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"none\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_EVENTHUB_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Event Hubs namespace\"},{\"value\":\"AZURE_EVENTHUB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"none\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_EVENTHUB_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Event Hubs namespace\"},{\"value\":\"AZURE_EVENTHUB_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_EVENTHUB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"none\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_EVENTHUB_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Event Hubs namespace\"},{\"value\":\"AZURE_EVENTHUB_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_EVENTHUB_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_EVENTHUB_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_EVENTHUB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"none\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_EVENTHUB_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"none\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_EVENTHUB_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"none\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_EVENTHUB_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Event Hubs namespace\"},{\"value\":\"AZURE_EVENTHUB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"dotnet\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_EVENTHUB_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Event Hubs namespace\"},{\"value\":\"AZURE_EVENTHUB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"dotnet\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_EVENTHUB_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Event Hubs namespace\"},{\"value\":\"AZURE_EVENTHUB_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_EVENTHUB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"dotnet\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_EVENTHUB_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Event Hubs namespace\"},{\"value\":\"AZURE_EVENTHUB_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_EVENTHUB_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_EVENTHUB_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_EVENTHUB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"dotnet\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_EVENTHUB_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"dotnet\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_EVENTHUB_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"dotnet\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_EVENTHUB_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Event Hubs namespace\"},{\"value\":\"AZURE_EVENTHUB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"java\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_EVENTHUB_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Event Hubs namespace\"},{\"value\":\"AZURE_EVENTHUB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"java\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_EVENTHUB_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Event Hubs namespace\"},{\"value\":\"AZURE_EVENTHUB_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_EVENTHUB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"java\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_EVENTHUB_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Event Hubs namespace\"},{\"value\":\"AZURE_EVENTHUB_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_EVENTHUB_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_EVENTHUB_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_EVENTHUB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"java\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_EVENTHUB_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"java\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_EVENTHUB_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"java\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_EVENTHUB_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Event Hubs namespace\"},{\"value\":\"AZURE_EVENTHUB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"nodejs\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_EVENTHUB_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Event Hubs namespace\"},{\"value\":\"AZURE_EVENTHUB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"nodejs\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_EVENTHUB_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Event Hubs namespace\"},{\"value\":\"AZURE_EVENTHUB_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_EVENTHUB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"nodejs\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_EVENTHUB_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Event Hubs namespace\"},{\"value\":\"AZURE_EVENTHUB_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_EVENTHUB_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_EVENTHUB_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_EVENTHUB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"nodejs\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_EVENTHUB_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"nodejs\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_EVENTHUB_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"nodejs\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_EVENTHUB_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Event Hubs namespace\"},{\"value\":\"AZURE_EVENTHUB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"python\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_EVENTHUB_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Event Hubs namespace\"},{\"value\":\"AZURE_EVENTHUB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"python\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_EVENTHUB_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Event Hubs namespace\"},{\"value\":\"AZURE_EVENTHUB_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_EVENTHUB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"python\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_EVENTHUB_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Event Hubs namespace\"},{\"value\":\"AZURE_EVENTHUB_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_EVENTHUB_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_EVENTHUB_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_EVENTHUB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"python\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_EVENTHUB_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"python\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_EVENTHUB_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"python\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_EVENTHUB_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Event Hubs namespace\"},{\"value\":\"AZURE_EVENTHUB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"go\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_EVENTHUB_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Event Hubs namespace\"},{\"value\":\"AZURE_EVENTHUB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"go\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_EVENTHUB_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Event Hubs namespace\"},{\"value\":\"AZURE_EVENTHUB_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_EVENTHUB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"go\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_EVENTHUB_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Event Hubs namespace\"},{\"value\":\"AZURE_EVENTHUB_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_EVENTHUB_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_EVENTHUB_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_EVENTHUB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"go\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_EVENTHUB_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"go\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_EVENTHUB_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"go\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_EVENTHUB_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Event Hubs namespace\"},{\"value\":\"AZURE_EVENTHUB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"springBoot\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"spring.cloud.azure.eventhub.namespace\",\"description\":\"Event Hubs namespace\"},{\"value\":\"spring.cloud.azure.scope\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"springBoot\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"spring.cloud.azure.eventhub.namespace\",\"description\":\"Event Hubs namespace\"},{\"value\":\"spring.cloud.azure.client-id\",\"description\":\"User Identity client id\"},{\"value\":\"spring.cloud.azure.scope\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"springBoot\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"spring.cloud.azure.eventhub.namespace\",\"description\":\"Event Hubs namespace\"},{\"value\":\"spring.cloud.azure.client-secret\",\"description\":\"Service Principal client secret\"},{\"value\":\"spring.cloud.azure.client-id\",\"description\":\"Service Principal client id\"},{\"value\":\"spring.cloud.azure.tenant-id\",\"description\":\"Service Principal tenant id\"},{\"value\":\"spring.cloud.azure.scope\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"springBoot\",\"authType\":\"secret\",\"names\":[{\"value\":\"spring.cloud.azure.eventhub.connection-string\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"springBoot\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"spring.cloud.azure.eventhub.connection-string\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"springBoot\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"spring.cloud.azure.eventhub.namespace\",\"description\":\"Event Hubs namespace\"},{\"value\":\"spring.cloud.azure.scope\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"kafka-springBoot\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"spring.kafka.bootstrap-servers\",\"description\":\"Kafka bootstrap server\"},{\"value\":\"spring.cloud.azure.scope\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"kafka-springBoot\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"spring.kafka.bootstrap-servers\",\"description\":\"Kafka bootstrap server\"},{\"value\":\"spring.kafka.properties.azure.credential.managed-identity-enabled\",\"description\":\"whether manage identity is enabled\"},{\"value\":\"spring.kafka.properties.azure.credential.client-id\",\"description\":\"User Identity client id\"},{\"value\":\"scope\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"kafka-springBoot\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"spring.kafka.bootstrap-servers\",\"description\":\"Kafka bootstrap server\"},{\"value\":\"spring.kafka.properties.azure.credential.client-secret\",\"description\":\"Service Principal client secret\"},{\"value\":\"spring.kafka.properties.azure.credential.client-id\",\"description\":\"Service Principal client id\"},{\"value\":\"spring.kafka.properties.azure.profile.tenant-id\",\"description\":\"Service Principal tenant id\"},{\"value\":\"scope\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"kafka-springBoot\",\"authType\":\"secret\",\"names\":[{\"value\":\"spring.cloud.azure.eventhubs.connection-string\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"kafka-springBoot\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"spring.cloud.azure.eventhubs.connection-string\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.EVENTHUB/NAMESPACES\",\"clientType\":\"kafka-springBoot\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"spring.kafka.bootstrap-servers\",\"description\":\"Kafka bootstrap server\"},{\"value\":\"spring.cloud.azure.scope\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SERVICEBUS/NAMESPACES\",\"clientType\":\"none\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_SERVICEBUS_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Service Bus namespace\"},{\"value\":\"AZURE_SERVICEBUS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SERVICEBUS/NAMESPACES\",\"clientType\":\"none\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_SERVICEBUS_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Service Bus namespace\"},{\"value\":\"AZURE_SERVICEBUS_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_SERVICEBUS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SERVICEBUS/NAMESPACES\",\"clientType\":\"none\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_SERVICEBUS_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Service Bus namespace\"},{\"value\":\"AZURE_SERVICEBUS_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_SERVICEBUS_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_SERVICEBUS_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_SERVICEBUS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SERVICEBUS/NAMESPACES\",\"clientType\":\"none\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_SERVICEBUS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SERVICEBUS/NAMESPACES\",\"clientType\":\"none\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_SERVICEBUS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SERVICEBUS/NAMESPACES\",\"clientType\":\"none\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_SERVICEBUS_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Service Bus namespace\"},{\"value\":\"AZURE_SERVICEBUS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SERVICEBUS/NAMESPACES\",\"clientType\":\"dotnet\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_SERVICEBUS_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Service Bus namespace\"},{\"value\":\"AZURE_SERVICEBUS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SERVICEBUS/NAMESPACES\",\"clientType\":\"dotnet\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_SERVICEBUS_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Service Bus namespace\"},{\"value\":\"AZURE_SERVICEBUS_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_SERVICEBUS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SERVICEBUS/NAMESPACES\",\"clientType\":\"dotnet\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_SERVICEBUS_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Service Bus namespace\"},{\"value\":\"AZURE_SERVICEBUS_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_SERVICEBUS_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_SERVICEBUS_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_SERVICEBUS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SERVICEBUS/NAMESPACES\",\"clientType\":\"dotnet\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_SERVICEBUS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SERVICEBUS/NAMESPACES\",\"clientType\":\"dotnet\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_SERVICEBUS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SERVICEBUS/NAMESPACES\",\"clientType\":\"dotnet\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_SERVICEBUS_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Service Bus namespace\"},{\"value\":\"AZURE_SERVICEBUS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SERVICEBUS/NAMESPACES\",\"clientType\":\"java\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_SERVICEBUS_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Service Bus namespace\"},{\"value\":\"AZURE_SERVICEBUS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SERVICEBUS/NAMESPACES\",\"clientType\":\"java\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_SERVICEBUS_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Service Bus namespace\"},{\"value\":\"AZURE_SERVICEBUS_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_SERVICEBUS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SERVICEBUS/NAMESPACES\",\"clientType\":\"java\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_SERVICEBUS_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Service Bus namespace\"},{\"value\":\"AZURE_SERVICEBUS_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_SERVICEBUS_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_SERVICEBUS_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_SERVICEBUS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SERVICEBUS/NAMESPACES\",\"clientType\":\"java\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_SERVICEBUS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SERVICEBUS/NAMESPACES\",\"clientType\":\"java\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_SERVICEBUS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SERVICEBUS/NAMESPACES\",\"clientType\":\"java\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_SERVICEBUS_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Service Bus namespace\"},{\"value\":\"AZURE_SERVICEBUS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SERVICEBUS/NAMESPACES\",\"clientType\":\"nodejs\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_SERVICEBUS_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Service Bus namespace\"},{\"value\":\"AZURE_SERVICEBUS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SERVICEBUS/NAMESPACES\",\"clientType\":\"nodejs\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_SERVICEBUS_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Service Bus namespace\"},{\"value\":\"AZURE_SERVICEBUS_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_SERVICEBUS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SERVICEBUS/NAMESPACES\",\"clientType\":\"nodejs\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_SERVICEBUS_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Service Bus namespace\"},{\"value\":\"AZURE_SERVICEBUS_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_SERVICEBUS_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_SERVICEBUS_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_SERVICEBUS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SERVICEBUS/NAMESPACES\",\"clientType\":\"nodejs\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_SERVICEBUS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SERVICEBUS/NAMESPACES\",\"clientType\":\"nodejs\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_SERVICEBUS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SERVICEBUS/NAMESPACES\",\"clientType\":\"nodejs\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_SERVICEBUS_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Service Bus namespace\"},{\"value\":\"AZURE_SERVICEBUS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SERVICEBUS/NAMESPACES\",\"clientType\":\"python\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_SERVICEBUS_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Service Bus namespace\"},{\"value\":\"AZURE_SERVICEBUS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SERVICEBUS/NAMESPACES\",\"clientType\":\"python\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_SERVICEBUS_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Service Bus namespace\"},{\"value\":\"AZURE_SERVICEBUS_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_SERVICEBUS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SERVICEBUS/NAMESPACES\",\"clientType\":\"python\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_SERVICEBUS_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Service Bus namespace\"},{\"value\":\"AZURE_SERVICEBUS_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_SERVICEBUS_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_SERVICEBUS_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_SERVICEBUS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SERVICEBUS/NAMESPACES\",\"clientType\":\"python\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_SERVICEBUS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SERVICEBUS/NAMESPACES\",\"clientType\":\"python\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_SERVICEBUS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SERVICEBUS/NAMESPACES\",\"clientType\":\"python\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_SERVICEBUS_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Service Bus namespace\"},{\"value\":\"AZURE_SERVICEBUS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SERVICEBUS/NAMESPACES\",\"clientType\":\"go\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_SERVICEBUS_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Service Bus namespace\"},{\"value\":\"AZURE_SERVICEBUS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SERVICEBUS/NAMESPACES\",\"clientType\":\"go\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_SERVICEBUS_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Service Bus namespace\"},{\"value\":\"AZURE_SERVICEBUS_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_SERVICEBUS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SERVICEBUS/NAMESPACES\",\"clientType\":\"go\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_SERVICEBUS_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Service Bus namespace\"},{\"value\":\"AZURE_SERVICEBUS_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_SERVICEBUS_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_SERVICEBUS_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_SERVICEBUS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SERVICEBUS/NAMESPACES\",\"clientType\":\"go\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_SERVICEBUS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SERVICEBUS/NAMESPACES\",\"clientType\":\"go\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_SERVICEBUS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SERVICEBUS/NAMESPACES\",\"clientType\":\"go\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_SERVICEBUS_FULLYQUALIFIEDNAMESPACE\",\"description\":\"Service Bus namespace\"},{\"value\":\"AZURE_SERVICEBUS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SERVICEBUS/NAMESPACES\",\"clientType\":\"springBoot\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"spring.cloud.azure.servicebus.namespace\",\"description\":\"Service Bus namespace\"},{\"value\":\"spring.cloud.azure.scope\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SERVICEBUS/NAMESPACES\",\"clientType\":\"springBoot\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"spring.cloud.azure.servicebus.namespace\",\"description\":\"Service Bus namespace\"},{\"value\":\"spring.cloud.azure.client-id\",\"description\":\"User Identity client id\"},{\"value\":\"spring.cloud.azure.scope\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SERVICEBUS/NAMESPACES\",\"clientType\":\"springBoot\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"spring.cloud.azure.servicebus.namespace\",\"description\":\"Service Bus namespace\"},{\"value\":\"spring.cloud.azure.client-secret\",\"description\":\"Service Principal client secret\"},{\"value\":\"spring.cloud.azure.client-id\",\"description\":\"Service Principal client id\"},{\"value\":\"spring.cloud.azure.tenant-id\",\"description\":\"Service Principal tenant id\"},{\"value\":\"spring.cloud.azure.scope\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SERVICEBUS/NAMESPACES\",\"clientType\":\"springBoot\",\"authType\":\"secret\",\"names\":[{\"value\":\"spring.cloud.azure.servicebus.connection-string\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SERVICEBUS/NAMESPACES\",\"clientType\":\"springBoot\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"spring.cloud.azure.servicebus.connection-string\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.SERVICEBUS/NAMESPACES\",\"clientType\":\"springBoot\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"spring.cloud.azure.servicebus.namespace\",\"description\":\"Service Bus namespace\"},{\"value\":\"spring.cloud.azure.scope\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"CONFLUENT.CLOUD/KAFKA\",\"clientType\":\"none\",\"authType\":\"secret\",\"names\":[{\"value\":\"CONFLUENTCLOUD_KAFKA_BOOTSTRAPSERVER\",\"description\":\"Kafka bootstrap server\"},{\"value\":\"CONFLUENTCLOUD_KAFKA_SASLUSERNAME\",\"description\":\"SASL user name\"},{\"value\":\"CONFLUENTCLOUD_KAFKA_SASLPASSWORD\",\"description\":\"SASL password\"}]}},{\"properties\":{\"targetService\":\"CONFLUENT.CLOUD/KAFKA\",\"clientType\":\"none\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"CONFLUENTCLOUD_KAFKA_BOOTSTRAPSERVER\",\"description\":\"Kafka bootstrap server\"},{\"value\":\"CONFLUENTCLOUD_KAFKA_SASLUSERNAME\",\"description\":\"SASL user name\"},{\"value\":\"CONFLUENTCLOUD_KAFKA_SASLPASSWORD\",\"description\":\"SASL password\"}]}},{\"properties\":{\"targetService\":\"CONFLUENT.CLOUD/KAFKA\",\"clientType\":\"dotnet\",\"authType\":\"secret\",\"names\":[{\"value\":\"CONFLUENTCLOUD_KAFKA_BOOTSTRAPSERVER\",\"description\":\"Kafka bootstrap server\"},{\"value\":\"CONFLUENTCLOUD_KAFKA_SASLUSERNAME\",\"description\":\"SASL user name\"},{\"value\":\"CONFLUENTCLOUD_KAFKA_SASLPASSWORD\",\"description\":\"SASL password\"}]}},{\"properties\":{\"targetService\":\"CONFLUENT.CLOUD/KAFKA\",\"clientType\":\"dotnet\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"CONFLUENTCLOUD_KAFKA_BOOTSTRAPSERVER\",\"description\":\"Kafka bootstrap server\"},{\"value\":\"CONFLUENTCLOUD_KAFKA_SASLUSERNAME\",\"description\":\"SASL user name\"},{\"value\":\"CONFLUENTCLOUD_KAFKA_SASLPASSWORD\",\"description\":\"SASL password\"}]}},{\"properties\":{\"targetService\":\"CONFLUENT.CLOUD/KAFKA\",\"clientType\":\"java\",\"authType\":\"secret\",\"names\":[{\"value\":\"CONFLUENTCLOUD_KAFKA_BOOTSTRAPSERVER\",\"description\":\"Kafka bootstrap server\"},{\"value\":\"CONFLUENTCLOUD_KAFKA_SASLCONFIG\",\"description\":\"SASL configuration\"}]}},{\"properties\":{\"targetService\":\"CONFLUENT.CLOUD/KAFKA\",\"clientType\":\"java\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"CONFLUENTCLOUD_KAFKA_BOOTSTRAPSERVER\",\"description\":\"Kafka bootstrap server\"},{\"value\":\"CONFLUENTCLOUD_KAFKA_SASLCONFIG\",\"description\":\"SASL configuration\"}]}},{\"properties\":{\"targetService\":\"CONFLUENT.CLOUD/KAFKA\",\"clientType\":\"nodejs\",\"authType\":\"secret\",\"names\":[{\"value\":\"CONFLUENTCLOUD_KAFKA_BOOTSTRAPSERVER\",\"description\":\"Kafka bootstrap server\"},{\"value\":\"CONFLUENTCLOUD_KAFKA_SASLUSERNAME\",\"description\":\"SASL user name\"},{\"value\":\"CONFLUENTCLOUD_KAFKA_SASLPASSWORD\",\"description\":\"SASL password\"}]}},{\"properties\":{\"targetService\":\"CONFLUENT.CLOUD/KAFKA\",\"clientType\":\"nodejs\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"CONFLUENTCLOUD_KAFKA_BOOTSTRAPSERVER\",\"description\":\"Kafka bootstrap server\"},{\"value\":\"CONFLUENTCLOUD_KAFKA_SASLUSERNAME\",\"description\":\"SASL user name\"},{\"value\":\"CONFLUENTCLOUD_KAFKA_SASLPASSWORD\",\"description\":\"SASL password\"}]}},{\"properties\":{\"targetService\":\"CONFLUENT.CLOUD/KAFKA\",\"clientType\":\"python\",\"authType\":\"secret\",\"names\":[{\"value\":\"CONFLUENTCLOUD_KAFKA_BOOTSTRAPSERVER\",\"description\":\"Kafka bootstrap server\"},{\"value\":\"CONFLUENTCLOUD_KAFKA_SASLUSERNAME\",\"description\":\"SASL user name\"},{\"value\":\"CONFLUENTCLOUD_KAFKA_SASLPASSWORD\",\"description\":\"SASL password\"}]}},{\"properties\":{\"targetService\":\"CONFLUENT.CLOUD/KAFKA\",\"clientType\":\"python\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"CONFLUENTCLOUD_KAFKA_BOOTSTRAPSERVER\",\"description\":\"Kafka bootstrap server\"},{\"value\":\"CONFLUENTCLOUD_KAFKA_SASLUSERNAME\",\"description\":\"SASL user name\"},{\"value\":\"CONFLUENTCLOUD_KAFKA_SASLPASSWORD\",\"description\":\"SASL password\"}]}},{\"properties\":{\"targetService\":\"CONFLUENT.CLOUD/KAFKA\",\"clientType\":\"go\",\"authType\":\"secret\",\"names\":[{\"value\":\"CONFLUENTCLOUD_KAFKA_BOOTSTRAPSERVER\",\"description\":\"Kafka bootstrap server\"},{\"value\":\"CONFLUENTCLOUD_KAFKA_SASLUSERNAME\",\"description\":\"SASL user name\"},{\"value\":\"CONFLUENTCLOUD_KAFKA_SASLPASSWORD\",\"description\":\"SASL password\"}]}},{\"properties\":{\"targetService\":\"CONFLUENT.CLOUD/KAFKA\",\"clientType\":\"go\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"CONFLUENTCLOUD_KAFKA_BOOTSTRAPSERVER\",\"description\":\"Kafka bootstrap server\"},{\"value\":\"CONFLUENTCLOUD_KAFKA_SASLUSERNAME\",\"description\":\"SASL user name\"},{\"value\":\"CONFLUENTCLOUD_KAFKA_SASLPASSWORD\",\"description\":\"SASL password\"}]}},{\"properties\":{\"targetService\":\"CONFLUENT.CLOUD/KAFKA\",\"clientType\":\"ruby\",\"authType\":\"secret\",\"names\":[{\"value\":\"CONFLUENTCLOUD_KAFKA_BOOTSTRAPSERVER\",\"description\":\"Kafka bootstrap server\"},{\"value\":\"CONFLUENTCLOUD_KAFKA_SASLUSERNAME\",\"description\":\"SASL user name\"},{\"value\":\"CONFLUENTCLOUD_KAFKA_SASLPASSWORD\",\"description\":\"SASL password\"}]}},{\"properties\":{\"targetService\":\"CONFLUENT.CLOUD/KAFKA\",\"clientType\":\"ruby\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"CONFLUENTCLOUD_KAFKA_BOOTSTRAPSERVER\",\"description\":\"Kafka bootstrap server\"},{\"value\":\"CONFLUENTCLOUD_KAFKA_SASLUSERNAME\",\"description\":\"SASL user name\"},{\"value\":\"CONFLUENTCLOUD_KAFKA_SASLPASSWORD\",\"description\":\"SASL password\"}]}},{\"properties\":{\"targetService\":\"CONFLUENT.CLOUD/KAFKA\",\"clientType\":\"springBoot\",\"authType\":\"secret\",\"names\":[{\"value\":\"spring.kafka.properties.bootstrap.servers\",\"description\":\"Kafka bootstrap server\"},{\"value\":\"spring.kafka.properties.sasl.jaas.config\",\"description\":\"SASL configuration\"}]}},{\"properties\":{\"targetService\":\"CONFLUENT.CLOUD/KAFKA\",\"clientType\":\"springBoot\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"spring.kafka.properties.bootstrap.servers\",\"description\":\"Kafka bootstrap server\"},{\"value\":\"spring.kafka.properties.sasl.jaas.config\",\"description\":\"SASL configuration\"}]}},{\"properties\":{\"targetService\":\"CONFLUENT.CLOUD/SCHEMA/REGISTRY\",\"clientType\":\"none\",\"authType\":\"secret\",\"names\":[{\"value\":\"CONFLUENTCLOUD_SCHEMAREGISTRY_URL\",\"description\":\"Kafka schema registry URL\"},{\"value\":\"CONFLUENTCLOUD_SCHEMAREGISTRY_USERINFO\",\"description\":\"user info including username and password\"}]}},{\"properties\":{\"targetService\":\"CONFLUENT.CLOUD/SCHEMA/REGISTRY\",\"clientType\":\"none\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"CONFLUENTCLOUD_SCHEMAREGISTRY_URL\",\"description\":\"Kafka schema registry URL\"},{\"value\":\"CONFLUENTCLOUD_SCHEMAREGISTRY_USERINFO\",\"description\":\"user info including username and password\"}]}},{\"properties\":{\"targetService\":\"CONFLUENT.CLOUD/SCHEMA/REGISTRY\",\"clientType\":\"java\",\"authType\":\"secret\",\"names\":[{\"value\":\"CONFLUENTCLOUD_SCHEMAREGISTRY_URL\",\"description\":\"Kafka schema registry URL\"},{\"value\":\"CONFLUENTCLOUD_SCHEMAREGISTRY_USERINFO\",\"description\":\"user info including username and password\"}]}},{\"properties\":{\"targetService\":\"CONFLUENT.CLOUD/SCHEMA/REGISTRY\",\"clientType\":\"java\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"CONFLUENTCLOUD_SCHEMAREGISTRY_URL\",\"description\":\"Kafka schema registry URL\"},{\"value\":\"CONFLUENTCLOUD_SCHEMAREGISTRY_USERINFO\",\"description\":\"user info including username and password\"}]}},{\"properties\":{\"targetService\":\"CONFLUENT.CLOUD/SCHEMA/REGISTRY\",\"clientType\":\"python\",\"authType\":\"secret\",\"names\":[{\"value\":\"CONFLUENTCLOUD_SCHEMAREGISTRY_URL\",\"description\":\"Kafka schema registry URL\"},{\"value\":\"CONFLUENTCLOUD_SCHEMAREGISTRY_USERINFO\",\"description\":\"user info including username and password\"}]}},{\"properties\":{\"targetService\":\"CONFLUENT.CLOUD/SCHEMA/REGISTRY\",\"clientType\":\"python\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"CONFLUENTCLOUD_SCHEMAREGISTRY_URL\",\"description\":\"Kafka schema registry URL\"},{\"value\":\"CONFLUENTCLOUD_SCHEMAREGISTRY_USERINFO\",\"description\":\"user info including username and password\"}]}},{\"properties\":{\"targetService\":\"CONFLUENT.CLOUD/SCHEMA/REGISTRY\",\"clientType\":\"springBoot\",\"authType\":\"secret\",\"names\":[{\"value\":\"spring.kafka.properties.schema.registry.url\",\"description\":\"Kafka schema registry URL\"},{\"value\":\"spring.kafka.properties.schema.registry.basic.auth.user.info\",\"description\":\"user info including username and password\"}]}},{\"properties\":{\"targetService\":\"CONFLUENT.CLOUD/SCHEMA/REGISTRY\",\"clientType\":\"springBoot\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"spring.kafka.properties.schema.registry.url\",\"description\":\"Kafka schema registry URL\"},{\"value\":\"spring.kafka.properties.schema.registry.basic.auth.user.info\",\"description\":\"user info including username and password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.CACHE/REDIS/DATABASES\",\"clientType\":\"none\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_REDIS_HOST\",\"description\":\"Redis host\"},{\"value\":\"AZURE_REDIS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_REDIS_DATABASE\",\"description\":\"database name\"},{\"value\":\"AZURE_REDIS_SSL\",\"description\":\"SSL configuration\"},{\"value\":\"AZURE_REDIS_PASSWORD\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.CACHE/REDIS/DATABASES\",\"clientType\":\"none\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_REDIS_HOST\",\"description\":\"Redis host\"},{\"value\":\"AZURE_REDIS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_REDIS_DATABASE\",\"description\":\"database name\"},{\"value\":\"AZURE_REDIS_SSL\",\"description\":\"SSL configuration\"},{\"value\":\"AZURE_REDIS_PASSWORD\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.CACHE/REDIS/DATABASES\",\"clientType\":\"dotnet\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_REDIS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.CACHE/REDIS/DATABASES\",\"clientType\":\"dotnet\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_REDIS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.CACHE/REDIS/DATABASES\",\"clientType\":\"java\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_REDIS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.CACHE/REDIS/DATABASES\",\"clientType\":\"java\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_REDIS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.CACHE/REDIS/DATABASES\",\"clientType\":\"nodejs\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_REDIS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.CACHE/REDIS/DATABASES\",\"clientType\":\"nodejs\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_REDIS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.CACHE/REDIS/DATABASES\",\"clientType\":\"python\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_REDIS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.CACHE/REDIS/DATABASES\",\"clientType\":\"python\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_REDIS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.CACHE/REDIS/DATABASES\",\"clientType\":\"go\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_REDIS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.CACHE/REDIS/DATABASES\",\"clientType\":\"go\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_REDIS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.CACHE/REDIS/DATABASES\",\"clientType\":\"springBoot\",\"authType\":\"secret\",\"names\":[{\"value\":\"spring.redis.host\",\"description\":\"Redis host uri\"},{\"value\":\"spring.redis.port\",\"description\":\"database port\"},{\"value\":\"spring.redis.password\",\"description\":\"password\"},{\"value\":\"spring.redis.database\",\"description\":\"database name\"},{\"value\":\"spring.redis.ssl\",\"description\":\"SSL configuration\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.CACHE/REDIS/DATABASES\",\"clientType\":\"springBoot\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"spring.redis.host\",\"description\":\"Redis host uri\"},{\"value\":\"spring.redis.port\",\"description\":\"database port\"},{\"value\":\"spring.redis.password\",\"description\":\"password\"},{\"value\":\"spring.redis.database\",\"description\":\"database name\"},{\"value\":\"spring.redis.ssl\",\"description\":\"SSL configuration\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.CACHE/REDISENTERPRISE/DATABASES\",\"clientType\":\"none\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_REDIS_HOST\",\"description\":\"Redis host\"},{\"value\":\"AZURE_REDIS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_REDIS_DATABASE\",\"description\":\"database name\"},{\"value\":\"AZURE_REDIS_SSL\",\"description\":\"SSL configuration\"},{\"value\":\"AZURE_REDIS_PASSWORD\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.CACHE/REDISENTERPRISE/DATABASES\",\"clientType\":\"none\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_REDIS_HOST\",\"description\":\"Redis host\"},{\"value\":\"AZURE_REDIS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_REDIS_DATABASE\",\"description\":\"database name\"},{\"value\":\"AZURE_REDIS_SSL\",\"description\":\"SSL configuration\"},{\"value\":\"AZURE_REDIS_PASSWORD\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.CACHE/REDISENTERPRISE/DATABASES\",\"clientType\":\"dotnet\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_REDIS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.CACHE/REDISENTERPRISE/DATABASES\",\"clientType\":\"dotnet\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_REDIS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.CACHE/REDISENTERPRISE/DATABASES\",\"clientType\":\"java\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_REDIS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.CACHE/REDISENTERPRISE/DATABASES\",\"clientType\":\"java\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_REDIS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.CACHE/REDISENTERPRISE/DATABASES\",\"clientType\":\"nodejs\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_REDIS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.CACHE/REDISENTERPRISE/DATABASES\",\"clientType\":\"nodejs\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_REDIS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.CACHE/REDISENTERPRISE/DATABASES\",\"clientType\":\"python\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_REDIS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.CACHE/REDISENTERPRISE/DATABASES\",\"clientType\":\"python\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_REDIS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.CACHE/REDISENTERPRISE/DATABASES\",\"clientType\":\"go\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_REDIS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.CACHE/REDISENTERPRISE/DATABASES\",\"clientType\":\"go\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_REDIS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.CACHE/REDISENTERPRISE/DATABASES\",\"clientType\":\"springBoot\",\"authType\":\"secret\",\"names\":[{\"value\":\"spring.redis.host\",\"description\":\"Redis host uri\"},{\"value\":\"spring.redis.port\",\"description\":\"database port\"},{\"value\":\"spring.redis.password\",\"description\":\"password\"},{\"value\":\"spring.redis.database\",\"description\":\"database name\"},{\"value\":\"spring.redis.ssl\",\"description\":\"SSL configuration\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.CACHE/REDISENTERPRISE/DATABASES\",\"clientType\":\"springBoot\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"spring.redis.host\",\"description\":\"Redis host uri\"},{\"value\":\"spring.redis.port\",\"description\":\"database port\"},{\"value\":\"spring.redis.password\",\"description\":\"password\"},{\"value\":\"spring.redis.database\",\"description\":\"database name\"},{\"value\":\"spring.redis.ssl\",\"description\":\"SSL configuration\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\",\"clientType\":\"none\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\",\"clientType\":\"none\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\",\"clientType\":\"none\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_COSMOS_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\",\"clientType\":\"none\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\",\"clientType\":\"none\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\",\"clientType\":\"none\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\",\"clientType\":\"dotnet\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\",\"clientType\":\"dotnet\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\",\"clientType\":\"dotnet\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_COSMOS_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\",\"clientType\":\"dotnet\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\",\"clientType\":\"dotnet\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\",\"clientType\":\"dotnet\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\",\"clientType\":\"java\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\",\"clientType\":\"java\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\",\"clientType\":\"java\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_COSMOS_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\",\"clientType\":\"java\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\",\"clientType\":\"java\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\",\"clientType\":\"java\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\",\"clientType\":\"nodejs\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\",\"clientType\":\"nodejs\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\",\"clientType\":\"nodejs\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_COSMOS_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\",\"clientType\":\"nodejs\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\",\"clientType\":\"nodejs\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\",\"clientType\":\"nodejs\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\",\"clientType\":\"python\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\",\"clientType\":\"python\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\",\"clientType\":\"python\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_COSMOS_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\",\"clientType\":\"python\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\",\"clientType\":\"python\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\",\"clientType\":\"python\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\",\"clientType\":\"go\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\",\"clientType\":\"go\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\",\"clientType\":\"go\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_COSMOS_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\",\"clientType\":\"go\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\",\"clientType\":\"go\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\",\"clientType\":\"go\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\",\"clientType\":\"php\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\",\"clientType\":\"php\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\",\"clientType\":\"php\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_COSMOS_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\",\"clientType\":\"php\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\",\"clientType\":\"php\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS\",\"clientType\":\"php\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/CASSANDRAKEYSPACES\",\"clientType\":\"none\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_CONTACTPOINT\",\"description\":\"contact point\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_KEYSPACE\",\"description\":\"Cassandra key space\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cassandra endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/CASSANDRAKEYSPACES\",\"clientType\":\"none\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_CONTACTPOINT\",\"description\":\"contact point\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_KEYSPACE\",\"description\":\"Cassandra key space\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cassandra endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/CASSANDRAKEYSPACES\",\"clientType\":\"none\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_CONTACTPOINT\",\"description\":\"contact point\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_KEYSPACE\",\"description\":\"Cassandra key space\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cassandra endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_COSMOS_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/CASSANDRAKEYSPACES\",\"clientType\":\"none\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_PASSWORD\",\"description\":\"password\"},{\"value\":\"AZURE_COSMOS_CONTACTPOINT\",\"description\":\"contact point\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_KEYSPACE\",\"description\":\"Cassandra key space\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/CASSANDRAKEYSPACES\",\"clientType\":\"none\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_PASSWORD\",\"description\":\"password\"},{\"value\":\"AZURE_COSMOS_CONTACTPOINT\",\"description\":\"contact point\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_KEYSPACE\",\"description\":\"Cassandra key space\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/CASSANDRAKEYSPACES\",\"clientType\":\"none\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_CONTACTPOINT\",\"description\":\"contact point\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_KEYSPACE\",\"description\":\"Cassandra key space\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cassandra endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/CASSANDRAKEYSPACES\",\"clientType\":\"dotnet\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_CONTACTPOINT\",\"description\":\"contact point\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_KEYSPACE\",\"description\":\"Cassandra key space\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cassandra endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/CASSANDRAKEYSPACES\",\"clientType\":\"dotnet\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_CONTACTPOINT\",\"description\":\"contact point\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_KEYSPACE\",\"description\":\"Cassandra key space\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cassandra endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/CASSANDRAKEYSPACES\",\"clientType\":\"dotnet\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_CONTACTPOINT\",\"description\":\"contact point\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_KEYSPACE\",\"description\":\"Cassandra key space\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cassandra endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_COSMOS_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/CASSANDRAKEYSPACES\",\"clientType\":\"dotnet\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_PASSWORD\",\"description\":\"password\"},{\"value\":\"AZURE_COSMOS_CONTACTPOINT\",\"description\":\"contact point\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_KEYSPACE\",\"description\":\"Cassandra key space\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/CASSANDRAKEYSPACES\",\"clientType\":\"dotnet\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_PASSWORD\",\"description\":\"password\"},{\"value\":\"AZURE_COSMOS_CONTACTPOINT\",\"description\":\"contact point\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_KEYSPACE\",\"description\":\"Cassandra key space\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/CASSANDRAKEYSPACES\",\"clientType\":\"dotnet\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_CONTACTPOINT\",\"description\":\"contact point\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_KEYSPACE\",\"description\":\"Cassandra key space\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cassandra endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/CASSANDRAKEYSPACES\",\"clientType\":\"java\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_CONTACTPOINT\",\"description\":\"contact point\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_KEYSPACE\",\"description\":\"Cassandra key space\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cassandra endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/CASSANDRAKEYSPACES\",\"clientType\":\"java\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_CONTACTPOINT\",\"description\":\"contact point\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_KEYSPACE\",\"description\":\"Cassandra key space\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cassandra endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/CASSANDRAKEYSPACES\",\"clientType\":\"java\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_CONTACTPOINT\",\"description\":\"contact point\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_KEYSPACE\",\"description\":\"Cassandra key space\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cassandra endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_COSMOS_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/CASSANDRAKEYSPACES\",\"clientType\":\"java\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_PASSWORD\",\"description\":\"password\"},{\"value\":\"AZURE_COSMOS_CONTACTPOINT\",\"description\":\"contact point\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_KEYSPACE\",\"description\":\"Cassandra key space\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/CASSANDRAKEYSPACES\",\"clientType\":\"java\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_PASSWORD\",\"description\":\"password\"},{\"value\":\"AZURE_COSMOS_CONTACTPOINT\",\"description\":\"contact point\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_KEYSPACE\",\"description\":\"Cassandra key space\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/CASSANDRAKEYSPACES\",\"clientType\":\"java\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_CONTACTPOINT\",\"description\":\"contact point\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_KEYSPACE\",\"description\":\"Cassandra key space\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cassandra endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/CASSANDRAKEYSPACES\",\"clientType\":\"nodejs\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_CONTACTPOINT\",\"description\":\"contact point\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_KEYSPACE\",\"description\":\"Cassandra key space\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cassandra endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/CASSANDRAKEYSPACES\",\"clientType\":\"nodejs\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_CONTACTPOINT\",\"description\":\"contact point\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_KEYSPACE\",\"description\":\"Cassandra key space\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cassandra endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/CASSANDRAKEYSPACES\",\"clientType\":\"nodejs\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_CONTACTPOINT\",\"description\":\"contact point\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_KEYSPACE\",\"description\":\"Cassandra key space\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cassandra endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_COSMOS_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/CASSANDRAKEYSPACES\",\"clientType\":\"nodejs\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_PASSWORD\",\"description\":\"password\"},{\"value\":\"AZURE_COSMOS_CONTACTPOINT\",\"description\":\"contact point\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_KEYSPACE\",\"description\":\"Cassandra key space\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/CASSANDRAKEYSPACES\",\"clientType\":\"nodejs\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_PASSWORD\",\"description\":\"password\"},{\"value\":\"AZURE_COSMOS_CONTACTPOINT\",\"description\":\"contact point\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_KEYSPACE\",\"description\":\"Cassandra key space\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/CASSANDRAKEYSPACES\",\"clientType\":\"nodejs\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_CONTACTPOINT\",\"description\":\"contact point\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_KEYSPACE\",\"description\":\"Cassandra key space\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cassandra endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/CASSANDRAKEYSPACES\",\"clientType\":\"python\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_CONTACTPOINT\",\"description\":\"contact point\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_KEYSPACE\",\"description\":\"Cassandra key space\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cassandra endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/CASSANDRAKEYSPACES\",\"clientType\":\"python\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_CONTACTPOINT\",\"description\":\"contact point\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_KEYSPACE\",\"description\":\"Cassandra key space\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cassandra endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/CASSANDRAKEYSPACES\",\"clientType\":\"python\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_CONTACTPOINT\",\"description\":\"contact point\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_KEYSPACE\",\"description\":\"Cassandra key space\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cassandra endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_COSMOS_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/CASSANDRAKEYSPACES\",\"clientType\":\"python\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_PASSWORD\",\"description\":\"password\"},{\"value\":\"AZURE_COSMOS_CONTACTPOINT\",\"description\":\"contact point\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_KEYSPACE\",\"description\":\"Cassandra key space\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/CASSANDRAKEYSPACES\",\"clientType\":\"python\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_PASSWORD\",\"description\":\"password\"},{\"value\":\"AZURE_COSMOS_CONTACTPOINT\",\"description\":\"contact point\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_KEYSPACE\",\"description\":\"Cassandra key space\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/CASSANDRAKEYSPACES\",\"clientType\":\"python\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_CONTACTPOINT\",\"description\":\"contact point\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_KEYSPACE\",\"description\":\"Cassandra key space\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cassandra endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/CASSANDRAKEYSPACES\",\"clientType\":\"go\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_CONTACTPOINT\",\"description\":\"contact point\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_KEYSPACE\",\"description\":\"Cassandra key space\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cassandra endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/CASSANDRAKEYSPACES\",\"clientType\":\"go\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_CONTACTPOINT\",\"description\":\"contact point\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_KEYSPACE\",\"description\":\"Cassandra key space\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cassandra endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/CASSANDRAKEYSPACES\",\"clientType\":\"go\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_CONTACTPOINT\",\"description\":\"contact point\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_KEYSPACE\",\"description\":\"Cassandra key space\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cassandra endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_COSMOS_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/CASSANDRAKEYSPACES\",\"clientType\":\"go\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_PASSWORD\",\"description\":\"password\"},{\"value\":\"AZURE_COSMOS_CONTACTPOINT\",\"description\":\"contact point\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_KEYSPACE\",\"description\":\"Cassandra key space\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/CASSANDRAKEYSPACES\",\"clientType\":\"go\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_PASSWORD\",\"description\":\"password\"},{\"value\":\"AZURE_COSMOS_CONTACTPOINT\",\"description\":\"contact point\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_KEYSPACE\",\"description\":\"Cassandra key space\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/CASSANDRAKEYSPACES\",\"clientType\":\"go\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_CONTACTPOINT\",\"description\":\"contact point\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_KEYSPACE\",\"description\":\"Cassandra key space\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cassandra endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/CASSANDRAKEYSPACES\",\"clientType\":\"springBoot\",\"authType\":\"secret\",\"names\":[{\"value\":\"spring.data.cassandra.contact-points\",\"description\":\"contact points\"},{\"value\":\"spring.data.cassandra.port\",\"description\":\"database port\"},{\"value\":\"spring.data.cassandra.keyspace-name\",\"description\":\"cassandra key space\"},{\"value\":\"spring.data.cassandra.username\",\"description\":\"user name\"},{\"value\":\"spring.data.cassandra.password\",\"description\":\"password\"},{\"value\":\"spring.data.cassandra.local-datacenter\",\"description\":\"local data center\"},{\"value\":\"spring.data.cassandra.ssl\",\"description\":\"Ssl configuration\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/CASSANDRAKEYSPACES\",\"clientType\":\"springBoot\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"spring.data.cassandra.contact-points\",\"description\":\"contact points\"},{\"value\":\"spring.data.cassandra.port\",\"description\":\"database port\"},{\"value\":\"spring.data.cassandra.keyspace-name\",\"description\":\"cassandra key space\"},{\"value\":\"spring.data.cassandra.username\",\"description\":\"user name\"},{\"value\":\"spring.data.cassandra.password\",\"description\":\"password\"},{\"value\":\"spring.data.cassandra.local-datacenter\",\"description\":\"local data center\"},{\"value\":\"spring.data.cassandra.ssl\",\"description\":\"Ssl configuration\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/GREMLINDATABASES/GRAPHS\",\"clientType\":\"none\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_HOSTNAME\",\"description\":\"Gremlin host name\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Gremlin endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/GREMLINDATABASES/GRAPHS\",\"clientType\":\"none\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_HOSTNAME\",\"description\":\"Gremlin host name\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Gremlin endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/GREMLINDATABASES/GRAPHS\",\"clientType\":\"none\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_HOSTNAME\",\"description\":\"Gremlin host name\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Gremlin endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_COSMOS_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/GREMLINDATABASES/GRAPHS\",\"clientType\":\"none\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_COSMOS_HOSTNAME\",\"description\":\"Gremlin host name\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_PASSWORD\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/GREMLINDATABASES/GRAPHS\",\"clientType\":\"none\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_COSMOS_HOSTNAME\",\"description\":\"Gremlin host name\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_PASSWORD\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/GREMLINDATABASES/GRAPHS\",\"clientType\":\"none\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_HOSTNAME\",\"description\":\"Gremlin host name\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Gremlin endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/GREMLINDATABASES/GRAPHS\",\"clientType\":\"dotnet\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_HOSTNAME\",\"description\":\"Gremlin host name\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Gremlin endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/GREMLINDATABASES/GRAPHS\",\"clientType\":\"dotnet\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_HOSTNAME\",\"description\":\"Gremlin host name\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Gremlin endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/GREMLINDATABASES/GRAPHS\",\"clientType\":\"dotnet\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_HOSTNAME\",\"description\":\"Gremlin host name\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Gremlin endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_COSMOS_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/GREMLINDATABASES/GRAPHS\",\"clientType\":\"dotnet\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_COSMOS_HOSTNAME\",\"description\":\"Gremlin host name\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_PASSWORD\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/GREMLINDATABASES/GRAPHS\",\"clientType\":\"dotnet\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_COSMOS_HOSTNAME\",\"description\":\"Gremlin host name\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_PASSWORD\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/GREMLINDATABASES/GRAPHS\",\"clientType\":\"dotnet\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_HOSTNAME\",\"description\":\"Gremlin host name\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Gremlin endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/GREMLINDATABASES/GRAPHS\",\"clientType\":\"java\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_HOSTNAME\",\"description\":\"Gremlin host name\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Gremlin endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/GREMLINDATABASES/GRAPHS\",\"clientType\":\"java\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_HOSTNAME\",\"description\":\"Gremlin host name\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Gremlin endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/GREMLINDATABASES/GRAPHS\",\"clientType\":\"java\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_HOSTNAME\",\"description\":\"Gremlin host name\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Gremlin endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_COSMOS_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/GREMLINDATABASES/GRAPHS\",\"clientType\":\"java\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_COSMOS_HOSTNAME\",\"description\":\"Gremlin host name\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_PASSWORD\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/GREMLINDATABASES/GRAPHS\",\"clientType\":\"java\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_COSMOS_HOSTNAME\",\"description\":\"Gremlin host name\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_PASSWORD\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/GREMLINDATABASES/GRAPHS\",\"clientType\":\"java\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_HOSTNAME\",\"description\":\"Gremlin host name\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Gremlin endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/GREMLINDATABASES/GRAPHS\",\"clientType\":\"nodejs\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_HOSTNAME\",\"description\":\"Gremlin host name\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Gremlin endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/GREMLINDATABASES/GRAPHS\",\"clientType\":\"nodejs\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_HOSTNAME\",\"description\":\"Gremlin host name\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Gremlin endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/GREMLINDATABASES/GRAPHS\",\"clientType\":\"nodejs\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_HOSTNAME\",\"description\":\"Gremlin host name\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Gremlin endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_COSMOS_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/GREMLINDATABASES/GRAPHS\",\"clientType\":\"nodejs\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_COSMOS_HOSTNAME\",\"description\":\"Gremlin host name\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_PASSWORD\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/GREMLINDATABASES/GRAPHS\",\"clientType\":\"nodejs\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_COSMOS_HOSTNAME\",\"description\":\"Gremlin host name\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_PASSWORD\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/GREMLINDATABASES/GRAPHS\",\"clientType\":\"nodejs\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_HOSTNAME\",\"description\":\"Gremlin host name\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Gremlin endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/GREMLINDATABASES/GRAPHS\",\"clientType\":\"python\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_HOSTNAME\",\"description\":\"Gremlin host name\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Gremlin endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/GREMLINDATABASES/GRAPHS\",\"clientType\":\"python\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_HOSTNAME\",\"description\":\"Gremlin host name\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Gremlin endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/GREMLINDATABASES/GRAPHS\",\"clientType\":\"python\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_HOSTNAME\",\"description\":\"Gremlin host name\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Gremlin endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_COSMOS_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/GREMLINDATABASES/GRAPHS\",\"clientType\":\"python\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_COSMOS_HOSTNAME\",\"description\":\"Gremlin host name\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_PASSWORD\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/GREMLINDATABASES/GRAPHS\",\"clientType\":\"python\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_COSMOS_HOSTNAME\",\"description\":\"Gremlin host name\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_PASSWORD\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/GREMLINDATABASES/GRAPHS\",\"clientType\":\"python\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_HOSTNAME\",\"description\":\"Gremlin host name\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Gremlin endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/GREMLINDATABASES/GRAPHS\",\"clientType\":\"go\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_HOSTNAME\",\"description\":\"Gremlin host name\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Gremlin endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/GREMLINDATABASES/GRAPHS\",\"clientType\":\"go\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_HOSTNAME\",\"description\":\"Gremlin host name\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Gremlin endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/GREMLINDATABASES/GRAPHS\",\"clientType\":\"go\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_HOSTNAME\",\"description\":\"Gremlin host name\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Gremlin endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_COSMOS_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/GREMLINDATABASES/GRAPHS\",\"clientType\":\"go\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_COSMOS_HOSTNAME\",\"description\":\"Gremlin host name\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_PASSWORD\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/GREMLINDATABASES/GRAPHS\",\"clientType\":\"go\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_COSMOS_HOSTNAME\",\"description\":\"Gremlin host name\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_PASSWORD\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/GREMLINDATABASES/GRAPHS\",\"clientType\":\"go\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_HOSTNAME\",\"description\":\"Gremlin host name\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Gremlin endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/GREMLINDATABASES/GRAPHS\",\"clientType\":\"php\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_HOSTNAME\",\"description\":\"Gremlin host name\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Gremlin endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/GREMLINDATABASES/GRAPHS\",\"clientType\":\"php\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_HOSTNAME\",\"description\":\"Gremlin host name\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Gremlin endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/GREMLINDATABASES/GRAPHS\",\"clientType\":\"php\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_HOSTNAME\",\"description\":\"Gremlin host name\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Gremlin endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_COSMOS_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/GREMLINDATABASES/GRAPHS\",\"clientType\":\"php\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_COSMOS_HOSTNAME\",\"description\":\"Gremlin host name\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_PASSWORD\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/GREMLINDATABASES/GRAPHS\",\"clientType\":\"php\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_COSMOS_HOSTNAME\",\"description\":\"Gremlin host name\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_PASSWORD\",\"description\":\"password\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/GREMLINDATABASES/GRAPHS\",\"clientType\":\"php\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTKEYURL\",\"description\":\"url to list key\"},{\"value\":\"AZURE_COSMOS_HOSTNAME\",\"description\":\"Gremlin host name\"},{\"value\":\"AZURE_COSMOS_PORT\",\"description\":\"database port\"},{\"value\":\"AZURE_COSMOS_USERNAME\",\"description\":\"user name\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Gremlin endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/MONGODBDATABASES\",\"clientType\":\"none\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/MONGODBDATABASES\",\"clientType\":\"none\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/MONGODBDATABASES\",\"clientType\":\"none\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_COSMOS_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/MONGODBDATABASES\",\"clientType\":\"none\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/MONGODBDATABASES\",\"clientType\":\"none\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/MONGODBDATABASES\",\"clientType\":\"none\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/MONGODBDATABASES\",\"clientType\":\"dotnet\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/MONGODBDATABASES\",\"clientType\":\"dotnet\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/MONGODBDATABASES\",\"clientType\":\"dotnet\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_COSMOS_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/MONGODBDATABASES\",\"clientType\":\"dotnet\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/MONGODBDATABASES\",\"clientType\":\"dotnet\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/MONGODBDATABASES\",\"clientType\":\"dotnet\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/MONGODBDATABASES\",\"clientType\":\"java\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/MONGODBDATABASES\",\"clientType\":\"java\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/MONGODBDATABASES\",\"clientType\":\"java\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_COSMOS_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/MONGODBDATABASES\",\"clientType\":\"java\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/MONGODBDATABASES\",\"clientType\":\"java\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/MONGODBDATABASES\",\"clientType\":\"java\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/MONGODBDATABASES\",\"clientType\":\"nodejs\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/MONGODBDATABASES\",\"clientType\":\"nodejs\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/MONGODBDATABASES\",\"clientType\":\"nodejs\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_COSMOS_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/MONGODBDATABASES\",\"clientType\":\"nodejs\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/MONGODBDATABASES\",\"clientType\":\"nodejs\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/MONGODBDATABASES\",\"clientType\":\"nodejs\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/MONGODBDATABASES\",\"clientType\":\"python\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/MONGODBDATABASES\",\"clientType\":\"python\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/MONGODBDATABASES\",\"clientType\":\"python\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_COSMOS_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/MONGODBDATABASES\",\"clientType\":\"python\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/MONGODBDATABASES\",\"clientType\":\"python\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/MONGODBDATABASES\",\"clientType\":\"python\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/MONGODBDATABASES\",\"clientType\":\"go\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/MONGODBDATABASES\",\"clientType\":\"go\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/MONGODBDATABASES\",\"clientType\":\"go\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_COSMOS_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/MONGODBDATABASES\",\"clientType\":\"go\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/MONGODBDATABASES\",\"clientType\":\"go\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/MONGODBDATABASES\",\"clientType\":\"go\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/MONGODBDATABASES\",\"clientType\":\"springBoot\",\"authType\":\"secret\",\"names\":[{\"value\":\"spring.data.mongodb.uri\",\"description\":\"Mongo host uri\"},{\"value\":\"spring.data.mongodb.database\",\"description\":\"database name\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/MONGODBDATABASES\",\"clientType\":\"springBoot\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"spring.data.mongodb.uri\",\"description\":\"Mongo host uri\"},{\"value\":\"spring.data.mongodb.database\",\"description\":\"database name\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/SQLDATABASES\",\"clientType\":\"none\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/SQLDATABASES\",\"clientType\":\"none\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/SQLDATABASES\",\"clientType\":\"none\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_COSMOS_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/SQLDATABASES\",\"clientType\":\"none\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/SQLDATABASES\",\"clientType\":\"none\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/SQLDATABASES\",\"clientType\":\"none\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/SQLDATABASES\",\"clientType\":\"dotnet\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/SQLDATABASES\",\"clientType\":\"dotnet\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/SQLDATABASES\",\"clientType\":\"dotnet\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_COSMOS_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/SQLDATABASES\",\"clientType\":\"dotnet\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/SQLDATABASES\",\"clientType\":\"dotnet\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/SQLDATABASES\",\"clientType\":\"dotnet\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/SQLDATABASES\",\"clientType\":\"java\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/SQLDATABASES\",\"clientType\":\"java\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/SQLDATABASES\",\"clientType\":\"java\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_COSMOS_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/SQLDATABASES\",\"clientType\":\"java\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/SQLDATABASES\",\"clientType\":\"java\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/SQLDATABASES\",\"clientType\":\"java\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/SQLDATABASES\",\"clientType\":\"nodejs\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/SQLDATABASES\",\"clientType\":\"nodejs\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/SQLDATABASES\",\"clientType\":\"nodejs\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_COSMOS_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/SQLDATABASES\",\"clientType\":\"nodejs\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/SQLDATABASES\",\"clientType\":\"nodejs\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/SQLDATABASES\",\"clientType\":\"nodejs\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/SQLDATABASES\",\"clientType\":\"python\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/SQLDATABASES\",\"clientType\":\"python\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/SQLDATABASES\",\"clientType\":\"python\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_COSMOS_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/SQLDATABASES\",\"clientType\":\"python\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/SQLDATABASES\",\"clientType\":\"python\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/SQLDATABASES\",\"clientType\":\"python\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/SQLDATABASES\",\"clientType\":\"go\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/SQLDATABASES\",\"clientType\":\"go\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/SQLDATABASES\",\"clientType\":\"go\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_COSMOS_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/SQLDATABASES\",\"clientType\":\"go\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/SQLDATABASES\",\"clientType\":\"go\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/SQLDATABASES\",\"clientType\":\"go\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/SQLDATABASES\",\"clientType\":\"springBoot\",\"authType\":\"secret\",\"names\":[{\"value\":\"azure.cosmos.uri\",\"description\":\"uri of Cosmos Sql database\"},{\"value\":\"azure.cosmos.key\",\"description\":\"access key\"},{\"value\":\"azure.cosmos.database\",\"description\":\"database name\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/SQLDATABASES\",\"clientType\":\"springBoot\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"azure.cosmos.uri\",\"description\":\"uri of Cosmos Sql database\"},{\"value\":\"azure.cosmos.key\",\"description\":\"access key\"},{\"value\":\"azure.cosmos.database\",\"description\":\"database name\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/TABLES\",\"clientType\":\"none\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/TABLES\",\"clientType\":\"none\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/TABLES\",\"clientType\":\"none\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_COSMOS_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/TABLES\",\"clientType\":\"none\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/TABLES\",\"clientType\":\"none\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/TABLES\",\"clientType\":\"none\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/TABLES\",\"clientType\":\"dotnet\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/TABLES\",\"clientType\":\"dotnet\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/TABLES\",\"clientType\":\"dotnet\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_COSMOS_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/TABLES\",\"clientType\":\"dotnet\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/TABLES\",\"clientType\":\"dotnet\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/TABLES\",\"clientType\":\"dotnet\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/TABLES\",\"clientType\":\"java\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/TABLES\",\"clientType\":\"java\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/TABLES\",\"clientType\":\"java\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_COSMOS_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/TABLES\",\"clientType\":\"java\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/TABLES\",\"clientType\":\"java\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/TABLES\",\"clientType\":\"java\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/TABLES\",\"clientType\":\"nodejs\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/TABLES\",\"clientType\":\"nodejs\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/TABLES\",\"clientType\":\"nodejs\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_COSMOS_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/TABLES\",\"clientType\":\"nodejs\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/TABLES\",\"clientType\":\"nodejs\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/TABLES\",\"clientType\":\"nodejs\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/TABLES\",\"clientType\":\"python\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/TABLES\",\"clientType\":\"python\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/TABLES\",\"clientType\":\"python\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_COSMOS_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/TABLES\",\"clientType\":\"python\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/TABLES\",\"clientType\":\"python\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/TABLES\",\"clientType\":\"python\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/TABLES\",\"clientType\":\"go\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/TABLES\",\"clientType\":\"go\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/TABLES\",\"clientType\":\"go\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_COSMOS_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_COSMOS_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/TABLES\",\"clientType\":\"go\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/TABLES\",\"clientType\":\"go\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_COSMOS_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.DOCUMENTDB/DATABASEACCOUNTS/TABLES\",\"clientType\":\"go\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_COSMOS_LISTCONNECTIONSTRINGURL\",\"description\":\"url to list connection string\"},{\"value\":\"AZURE_COSMOS_RESOURCEENDPOINT\",\"description\":\"Cosmos DB endpoint\"},{\"value\":\"AZURE_COSMOS_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"clientType\":\"none\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGEACCOUNT_BLOBENDPOINT\",\"description\":\"Storage Blob endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_QUEUEENDPOINT\",\"description\":\"Storage Queue endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_TABLEENDPOINT\",\"description\":\"Storage Table endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_FILEENDPOINT\",\"description\":\"Storage File endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"clientType\":\"none\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGEACCOUNT_BLOBENDPOINT\",\"description\":\"Storage Blob endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_QUEUEENDPOINT\",\"description\":\"Storage Queue endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_TABLEENDPOINT\",\"description\":\"Storage Table endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_FILEENDPOINT\",\"description\":\"Storage File endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_STORAGEACCOUNT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"clientType\":\"none\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_STORAGEACCOUNT_BLOBENDPOINT\",\"description\":\"Storage Blob endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_QUEUEENDPOINT\",\"description\":\"Storage Queue endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_TABLEENDPOINT\",\"description\":\"Storage Table endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_FILEENDPOINT\",\"description\":\"Storage File endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_STORAGEACCOUNT_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_STORAGEACCOUNT_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_STORAGEACCOUNT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"clientType\":\"none\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_STORAGEACCOUNT_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"clientType\":\"none\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_STORAGEACCOUNT_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"clientType\":\"none\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_STORAGEACCOUNT_BLOBENDPOINT\",\"description\":\"Storage Blob endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_QUEUEENDPOINT\",\"description\":\"Storage Queue endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_TABLEENDPOINT\",\"description\":\"Storage Table endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_FILEENDPOINT\",\"description\":\"Storage File endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"clientType\":\"dotnet\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGEACCOUNT_BLOBENDPOINT\",\"description\":\"Storage Blob endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_QUEUEENDPOINT\",\"description\":\"Storage Queue endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_TABLEENDPOINT\",\"description\":\"Storage Table endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_FILEENDPOINT\",\"description\":\"Storage File endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"clientType\":\"dotnet\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGEACCOUNT_BLOBENDPOINT\",\"description\":\"Storage Blob endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_QUEUEENDPOINT\",\"description\":\"Storage Queue endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_TABLEENDPOINT\",\"description\":\"Storage Table endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_FILEENDPOINT\",\"description\":\"Storage File endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_STORAGEACCOUNT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"clientType\":\"dotnet\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_STORAGEACCOUNT_BLOBENDPOINT\",\"description\":\"Storage Blob endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_QUEUEENDPOINT\",\"description\":\"Storage Queue endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_TABLEENDPOINT\",\"description\":\"Storage Table endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_FILEENDPOINT\",\"description\":\"Storage File endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_STORAGEACCOUNT_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_STORAGEACCOUNT_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_STORAGEACCOUNT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"clientType\":\"dotnet\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_STORAGEACCOUNT_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"clientType\":\"dotnet\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_STORAGEACCOUNT_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"clientType\":\"dotnet\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_STORAGEACCOUNT_BLOBENDPOINT\",\"description\":\"Storage Blob endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_QUEUEENDPOINT\",\"description\":\"Storage Queue endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_TABLEENDPOINT\",\"description\":\"Storage Table endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_FILEENDPOINT\",\"description\":\"Storage File endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"clientType\":\"java\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGEACCOUNT_BLOBENDPOINT\",\"description\":\"Storage Blob endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_QUEUEENDPOINT\",\"description\":\"Storage Queue endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_TABLEENDPOINT\",\"description\":\"Storage Table endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_FILEENDPOINT\",\"description\":\"Storage File endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"clientType\":\"java\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGEACCOUNT_BLOBENDPOINT\",\"description\":\"Storage Blob endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_QUEUEENDPOINT\",\"description\":\"Storage Queue endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_TABLEENDPOINT\",\"description\":\"Storage Table endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_FILEENDPOINT\",\"description\":\"Storage File endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_STORAGEACCOUNT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"clientType\":\"java\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_STORAGEACCOUNT_BLOBENDPOINT\",\"description\":\"Storage Blob endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_QUEUEENDPOINT\",\"description\":\"Storage Queue endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_TABLEENDPOINT\",\"description\":\"Storage Table endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_FILEENDPOINT\",\"description\":\"Storage File endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_STORAGEACCOUNT_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_STORAGEACCOUNT_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_STORAGEACCOUNT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"clientType\":\"java\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_STORAGEACCOUNT_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"clientType\":\"java\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_STORAGEACCOUNT_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"clientType\":\"java\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_STORAGEACCOUNT_BLOBENDPOINT\",\"description\":\"Storage Blob endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_QUEUEENDPOINT\",\"description\":\"Storage Queue endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_TABLEENDPOINT\",\"description\":\"Storage Table endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_FILEENDPOINT\",\"description\":\"Storage File endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"clientType\":\"nodejs\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGEACCOUNT_BLOBENDPOINT\",\"description\":\"Storage Blob endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_QUEUEENDPOINT\",\"description\":\"Storage Queue endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_TABLEENDPOINT\",\"description\":\"Storage Table endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_FILEENDPOINT\",\"description\":\"Storage File endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"clientType\":\"nodejs\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGEACCOUNT_BLOBENDPOINT\",\"description\":\"Storage Blob endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_QUEUEENDPOINT\",\"description\":\"Storage Queue endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_TABLEENDPOINT\",\"description\":\"Storage Table endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_FILEENDPOINT\",\"description\":\"Storage File endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_STORAGEACCOUNT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"clientType\":\"nodejs\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_STORAGEACCOUNT_BLOBENDPOINT\",\"description\":\"Storage Blob endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_QUEUEENDPOINT\",\"description\":\"Storage Queue endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_TABLEENDPOINT\",\"description\":\"Storage Table endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_FILEENDPOINT\",\"description\":\"Storage File endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_STORAGEACCOUNT_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_STORAGEACCOUNT_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_STORAGEACCOUNT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"clientType\":\"nodejs\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_STORAGEACCOUNT_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"clientType\":\"nodejs\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_STORAGEACCOUNT_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"clientType\":\"nodejs\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_STORAGEACCOUNT_BLOBENDPOINT\",\"description\":\"Storage Blob endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_QUEUEENDPOINT\",\"description\":\"Storage Queue endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_TABLEENDPOINT\",\"description\":\"Storage Table endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_FILEENDPOINT\",\"description\":\"Storage File endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"clientType\":\"python\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGEACCOUNT_BLOBENDPOINT\",\"description\":\"Storage Blob endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_QUEUEENDPOINT\",\"description\":\"Storage Queue endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_TABLEENDPOINT\",\"description\":\"Storage Table endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_FILEENDPOINT\",\"description\":\"Storage File endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"clientType\":\"python\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGEACCOUNT_BLOBENDPOINT\",\"description\":\"Storage Blob endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_QUEUEENDPOINT\",\"description\":\"Storage Queue endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_TABLEENDPOINT\",\"description\":\"Storage Table endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_FILEENDPOINT\",\"description\":\"Storage File endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_STORAGEACCOUNT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"clientType\":\"python\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_STORAGEACCOUNT_BLOBENDPOINT\",\"description\":\"Storage Blob endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_QUEUEENDPOINT\",\"description\":\"Storage Queue endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_TABLEENDPOINT\",\"description\":\"Storage Table endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_FILEENDPOINT\",\"description\":\"Storage File endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_STORAGEACCOUNT_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_STORAGEACCOUNT_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_STORAGEACCOUNT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"clientType\":\"python\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_STORAGEACCOUNT_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"clientType\":\"python\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_STORAGEACCOUNT_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"clientType\":\"python\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_STORAGEACCOUNT_BLOBENDPOINT\",\"description\":\"Storage Blob endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_QUEUEENDPOINT\",\"description\":\"Storage Queue endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_TABLEENDPOINT\",\"description\":\"Storage Table endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_FILEENDPOINT\",\"description\":\"Storage File endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"clientType\":\"go\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGEACCOUNT_BLOBENDPOINT\",\"description\":\"Storage Blob endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_QUEUEENDPOINT\",\"description\":\"Storage Queue endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_TABLEENDPOINT\",\"description\":\"Storage Table endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_FILEENDPOINT\",\"description\":\"Storage File endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"clientType\":\"go\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGEACCOUNT_BLOBENDPOINT\",\"description\":\"Storage Blob endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_QUEUEENDPOINT\",\"description\":\"Storage Queue endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_TABLEENDPOINT\",\"description\":\"Storage Table endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_FILEENDPOINT\",\"description\":\"Storage File endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_STORAGEACCOUNT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"clientType\":\"go\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_STORAGEACCOUNT_BLOBENDPOINT\",\"description\":\"Storage Blob endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_QUEUEENDPOINT\",\"description\":\"Storage Queue endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_TABLEENDPOINT\",\"description\":\"Storage Table endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_FILEENDPOINT\",\"description\":\"Storage File endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_STORAGEACCOUNT_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_STORAGEACCOUNT_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_STORAGEACCOUNT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"clientType\":\"go\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_STORAGEACCOUNT_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"clientType\":\"go\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_STORAGEACCOUNT_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"clientType\":\"go\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_STORAGEACCOUNT_BLOBENDPOINT\",\"description\":\"Storage Blob endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_QUEUEENDPOINT\",\"description\":\"Storage Queue endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_TABLEENDPOINT\",\"description\":\"Storage Table endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_FILEENDPOINT\",\"description\":\"Storage File endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"clientType\":\"django\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGEACCOUNT_BLOBENDPOINT\",\"description\":\"Storage Blob endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_QUEUEENDPOINT\",\"description\":\"Storage Queue endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_TABLEENDPOINT\",\"description\":\"Storage Table endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_FILEENDPOINT\",\"description\":\"Storage File endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"clientType\":\"django\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGEACCOUNT_BLOBENDPOINT\",\"description\":\"Storage Blob endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_QUEUEENDPOINT\",\"description\":\"Storage Queue endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_TABLEENDPOINT\",\"description\":\"Storage Table endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_FILEENDPOINT\",\"description\":\"Storage File endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_STORAGEACCOUNT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"clientType\":\"django\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_STORAGEACCOUNT_BLOBENDPOINT\",\"description\":\"Storage Blob endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_QUEUEENDPOINT\",\"description\":\"Storage Queue endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_TABLEENDPOINT\",\"description\":\"Storage Table endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_FILEENDPOINT\",\"description\":\"Storage File endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_STORAGEACCOUNT_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_STORAGEACCOUNT_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_STORAGEACCOUNT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"clientType\":\"django\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_STORAGEACCOUNT_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"clientType\":\"django\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_STORAGEACCOUNT_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"clientType\":\"django\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_STORAGEACCOUNT_BLOBENDPOINT\",\"description\":\"Storage Blob endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_QUEUEENDPOINT\",\"description\":\"Storage Queue endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_TABLEENDPOINT\",\"description\":\"Storage Table endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_FILEENDPOINT\",\"description\":\"Storage File endpoint\"},{\"value\":\"AZURE_STORAGEACCOUNT_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"clientType\":\"springBoot\",\"authType\":\"secret\",\"names\":[{\"value\":\"azure.storage.blob-endpoint\",\"description\":\"Storage Blob endpoint\"},{\"value\":\"azure.storage.file-endpoint\",\"description\":\"Storage File endpoint\"},{\"value\":\"azure.storage.account-name\",\"description\":\"Storage account name\"},{\"value\":\"azure.storage.account-key\",\"description\":\"access key\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS\",\"clientType\":\"springBoot\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"azure.storage.blob-endpoint\",\"description\":\"Storage Blob endpoint\"},{\"value\":\"azure.storage.file-endpoint\",\"description\":\"Storage File endpoint\"},{\"value\":\"azure.storage.account-name\",\"description\":\"Storage account name\"},{\"value\":\"azure.storage.account-key\",\"description\":\"access key\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/BLOBSERVICES\",\"clientType\":\"none\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGEBLOB_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEBLOB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/BLOBSERVICES\",\"clientType\":\"none\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGEBLOB_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEBLOB_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_STORAGEBLOB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/BLOBSERVICES\",\"clientType\":\"none\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_STORAGEBLOB_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEBLOB_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_STORAGEBLOB_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_STORAGEBLOB_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_STORAGEBLOB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/BLOBSERVICES\",\"clientType\":\"none\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_STORAGEBLOB_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/BLOBSERVICES\",\"clientType\":\"none\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_STORAGEBLOB_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/BLOBSERVICES\",\"clientType\":\"none\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_STORAGEBLOB_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEBLOB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/BLOBSERVICES\",\"clientType\":\"dotnet\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGEBLOB_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEBLOB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/BLOBSERVICES\",\"clientType\":\"dotnet\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGEBLOB_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEBLOB_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_STORAGEBLOB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/BLOBSERVICES\",\"clientType\":\"dotnet\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_STORAGEBLOB_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEBLOB_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_STORAGEBLOB_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_STORAGEBLOB_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_STORAGEBLOB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/BLOBSERVICES\",\"clientType\":\"dotnet\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_STORAGEBLOB_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/BLOBSERVICES\",\"clientType\":\"dotnet\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_STORAGEBLOB_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/BLOBSERVICES\",\"clientType\":\"dotnet\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_STORAGEBLOB_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEBLOB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/BLOBSERVICES\",\"clientType\":\"java\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGEBLOB_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEBLOB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/BLOBSERVICES\",\"clientType\":\"java\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGEBLOB_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEBLOB_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_STORAGEBLOB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/BLOBSERVICES\",\"clientType\":\"java\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_STORAGEBLOB_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEBLOB_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_STORAGEBLOB_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_STORAGEBLOB_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_STORAGEBLOB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/BLOBSERVICES\",\"clientType\":\"java\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_STORAGEBLOB_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/BLOBSERVICES\",\"clientType\":\"java\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_STORAGEBLOB_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/BLOBSERVICES\",\"clientType\":\"java\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_STORAGEBLOB_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEBLOB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/BLOBSERVICES\",\"clientType\":\"nodejs\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGEBLOB_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEBLOB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/BLOBSERVICES\",\"clientType\":\"nodejs\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGEBLOB_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEBLOB_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_STORAGEBLOB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/BLOBSERVICES\",\"clientType\":\"nodejs\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_STORAGEBLOB_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEBLOB_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_STORAGEBLOB_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_STORAGEBLOB_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_STORAGEBLOB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/BLOBSERVICES\",\"clientType\":\"nodejs\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_STORAGEBLOB_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/BLOBSERVICES\",\"clientType\":\"nodejs\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_STORAGEBLOB_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/BLOBSERVICES\",\"clientType\":\"nodejs\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_STORAGEBLOB_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEBLOB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/BLOBSERVICES\",\"clientType\":\"python\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGEBLOB_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEBLOB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/BLOBSERVICES\",\"clientType\":\"python\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGEBLOB_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEBLOB_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_STORAGEBLOB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/BLOBSERVICES\",\"clientType\":\"python\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_STORAGEBLOB_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEBLOB_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_STORAGEBLOB_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_STORAGEBLOB_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_STORAGEBLOB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/BLOBSERVICES\",\"clientType\":\"python\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_STORAGEBLOB_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/BLOBSERVICES\",\"clientType\":\"python\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_STORAGEBLOB_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/BLOBSERVICES\",\"clientType\":\"python\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_STORAGEBLOB_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEBLOB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/BLOBSERVICES\",\"clientType\":\"go\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGEBLOB_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEBLOB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/BLOBSERVICES\",\"clientType\":\"go\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGEBLOB_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEBLOB_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_STORAGEBLOB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/BLOBSERVICES\",\"clientType\":\"go\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_STORAGEBLOB_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEBLOB_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_STORAGEBLOB_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_STORAGEBLOB_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_STORAGEBLOB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/BLOBSERVICES\",\"clientType\":\"go\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_STORAGEBLOB_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/BLOBSERVICES\",\"clientType\":\"go\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_STORAGEBLOB_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/BLOBSERVICES\",\"clientType\":\"go\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_STORAGEBLOB_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEBLOB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/BLOBSERVICES\",\"clientType\":\"django\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGEBLOB_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEBLOB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/BLOBSERVICES\",\"clientType\":\"django\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGEBLOB_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEBLOB_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_STORAGEBLOB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/BLOBSERVICES\",\"clientType\":\"django\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_STORAGEBLOB_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEBLOB_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_STORAGEBLOB_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_STORAGEBLOB_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_STORAGEBLOB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/BLOBSERVICES\",\"clientType\":\"django\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_STORAGEBLOB_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/BLOBSERVICES\",\"clientType\":\"django\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_STORAGEBLOB_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/BLOBSERVICES\",\"clientType\":\"django\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_STORAGEBLOB_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEBLOB_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/BLOBSERVICES\",\"clientType\":\"springBoot\",\"authType\":\"secret\",\"names\":[{\"value\":\"azure.storage.blob-endpoint\",\"description\":\"Storage Blob endpoint\"},{\"value\":\"azure.storage.file-endpoint\",\"description\":\"Storage File endpoint\"},{\"value\":\"azure.storage.account-name\",\"description\":\"Storage account name\"},{\"value\":\"azure.storage.account-key\",\"description\":\"access key\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/BLOBSERVICES\",\"clientType\":\"springBoot\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"azure.storage.blob-endpoint\",\"description\":\"Storage Blob endpoint\"},{\"value\":\"azure.storage.file-endpoint\",\"description\":\"Storage File endpoint\"},{\"value\":\"azure.storage.account-name\",\"description\":\"Storage account name\"},{\"value\":\"azure.storage.account-key\",\"description\":\"access key\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/FILESERVICES\",\"clientType\":\"none\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_STORAGEFILE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/FILESERVICES\",\"clientType\":\"none\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_STORAGEFILE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/FILESERVICES\",\"clientType\":\"dotnet\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_STORAGEFILE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/FILESERVICES\",\"clientType\":\"dotnet\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_STORAGEFILE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/FILESERVICES\",\"clientType\":\"java\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_STORAGEFILE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/FILESERVICES\",\"clientType\":\"java\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_STORAGEFILE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/FILESERVICES\",\"clientType\":\"nodejs\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_STORAGEFILE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/FILESERVICES\",\"clientType\":\"nodejs\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_STORAGEFILE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/FILESERVICES\",\"clientType\":\"python\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_STORAGEFILE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/FILESERVICES\",\"clientType\":\"python\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_STORAGEFILE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/FILESERVICES\",\"clientType\":\"go\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_STORAGEFILE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/FILESERVICES\",\"clientType\":\"go\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_STORAGEFILE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/FILESERVICES\",\"clientType\":\"php\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_STORAGEFILE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/FILESERVICES\",\"clientType\":\"php\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_STORAGEFILE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/FILESERVICES\",\"clientType\":\"ruby\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_STORAGEFILE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/FILESERVICES\",\"clientType\":\"ruby\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_STORAGEFILE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/FILESERVICES\",\"clientType\":\"springBoot\",\"authType\":\"secret\",\"names\":[{\"value\":\"azure.storage.blob-endpoint\",\"description\":\"Storage Blob endpoint\"},{\"value\":\"azure.storage.file-endpoint\",\"description\":\"Storage File endpoint\"},{\"value\":\"azure.storage.account-name\",\"description\":\"Storage account name\"},{\"value\":\"azure.storage.account-key\",\"description\":\"access key\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/FILESERVICES\",\"clientType\":\"springBoot\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"azure.storage.blob-endpoint\",\"description\":\"Storage Blob endpoint\"},{\"value\":\"azure.storage.file-endpoint\",\"description\":\"Storage File endpoint\"},{\"value\":\"azure.storage.account-name\",\"description\":\"Storage account name\"},{\"value\":\"azure.storage.account-key\",\"description\":\"access key\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/QUEUESERVICES\",\"clientType\":\"none\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGEQUEUE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEQUEUE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/QUEUESERVICES\",\"clientType\":\"none\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGEQUEUE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEQUEUE_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_STORAGEQUEUE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/QUEUESERVICES\",\"clientType\":\"none\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_STORAGEQUEUE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEQUEUE_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_STORAGEQUEUE_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_STORAGEQUEUE_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_STORAGEQUEUE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/QUEUESERVICES\",\"clientType\":\"none\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_STORAGEQUEUE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/QUEUESERVICES\",\"clientType\":\"none\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_STORAGEQUEUE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/QUEUESERVICES\",\"clientType\":\"none\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_STORAGEQUEUE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEQUEUE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/QUEUESERVICES\",\"clientType\":\"dotnet\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGEQUEUE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEQUEUE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/QUEUESERVICES\",\"clientType\":\"dotnet\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGEQUEUE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEQUEUE_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_STORAGEQUEUE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/QUEUESERVICES\",\"clientType\":\"dotnet\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_STORAGEQUEUE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEQUEUE_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_STORAGEQUEUE_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_STORAGEQUEUE_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_STORAGEQUEUE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/QUEUESERVICES\",\"clientType\":\"dotnet\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_STORAGEQUEUE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/QUEUESERVICES\",\"clientType\":\"dotnet\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_STORAGEQUEUE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/QUEUESERVICES\",\"clientType\":\"dotnet\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_STORAGEQUEUE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEQUEUE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/QUEUESERVICES\",\"clientType\":\"java\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGEQUEUE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEQUEUE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/QUEUESERVICES\",\"clientType\":\"java\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGEQUEUE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEQUEUE_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_STORAGEQUEUE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/QUEUESERVICES\",\"clientType\":\"java\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_STORAGEQUEUE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEQUEUE_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_STORAGEQUEUE_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_STORAGEQUEUE_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_STORAGEQUEUE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/QUEUESERVICES\",\"clientType\":\"java\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_STORAGEQUEUE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/QUEUESERVICES\",\"clientType\":\"java\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_STORAGEQUEUE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/QUEUESERVICES\",\"clientType\":\"java\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_STORAGEQUEUE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEQUEUE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/QUEUESERVICES\",\"clientType\":\"nodejs\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGEQUEUE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEQUEUE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/QUEUESERVICES\",\"clientType\":\"nodejs\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGEQUEUE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEQUEUE_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_STORAGEQUEUE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/QUEUESERVICES\",\"clientType\":\"nodejs\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_STORAGEQUEUE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEQUEUE_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_STORAGEQUEUE_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_STORAGEQUEUE_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_STORAGEQUEUE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/QUEUESERVICES\",\"clientType\":\"nodejs\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_STORAGEQUEUE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/QUEUESERVICES\",\"clientType\":\"nodejs\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_STORAGEQUEUE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/QUEUESERVICES\",\"clientType\":\"nodejs\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_STORAGEQUEUE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEQUEUE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/QUEUESERVICES\",\"clientType\":\"python\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGEQUEUE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEQUEUE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/QUEUESERVICES\",\"clientType\":\"python\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGEQUEUE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEQUEUE_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_STORAGEQUEUE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/QUEUESERVICES\",\"clientType\":\"python\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_STORAGEQUEUE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEQUEUE_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_STORAGEQUEUE_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_STORAGEQUEUE_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_STORAGEQUEUE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/QUEUESERVICES\",\"clientType\":\"python\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_STORAGEQUEUE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/QUEUESERVICES\",\"clientType\":\"python\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_STORAGEQUEUE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/QUEUESERVICES\",\"clientType\":\"python\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_STORAGEQUEUE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEQUEUE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/QUEUESERVICES\",\"clientType\":\"go\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGEQUEUE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEQUEUE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/QUEUESERVICES\",\"clientType\":\"go\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGEQUEUE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEQUEUE_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_STORAGEQUEUE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/QUEUESERVICES\",\"clientType\":\"go\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_STORAGEQUEUE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEQUEUE_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_STORAGEQUEUE_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_STORAGEQUEUE_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_STORAGEQUEUE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/QUEUESERVICES\",\"clientType\":\"go\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_STORAGEQUEUE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/QUEUESERVICES\",\"clientType\":\"go\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_STORAGEQUEUE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/QUEUESERVICES\",\"clientType\":\"go\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_STORAGEQUEUE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEQUEUE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/QUEUESERVICES\",\"clientType\":\"django\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGEQUEUE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEQUEUE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/QUEUESERVICES\",\"clientType\":\"django\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGEQUEUE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEQUEUE_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_STORAGEQUEUE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/QUEUESERVICES\",\"clientType\":\"django\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_STORAGEQUEUE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEQUEUE_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_STORAGEQUEUE_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_STORAGEQUEUE_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_STORAGEQUEUE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/QUEUESERVICES\",\"clientType\":\"django\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_STORAGEQUEUE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/QUEUESERVICES\",\"clientType\":\"django\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_STORAGEQUEUE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/QUEUESERVICES\",\"clientType\":\"django\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_STORAGEQUEUE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGEQUEUE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/QUEUESERVICES\",\"clientType\":\"springBoot\",\"authType\":\"secret\",\"names\":[{\"value\":\"spring.cloud.azure.storage.account\",\"description\":\"Storage account name\"},{\"value\":\"spring.cloud.azure.storage.access-key\",\"description\":\"access key\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/QUEUESERVICES\",\"clientType\":\"springBoot\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"spring.cloud.azure.storage.account\",\"description\":\"Storage account name\"},{\"value\":\"spring.cloud.azure.storage.access-key\",\"description\":\"access key\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/TABLESERVICES\",\"clientType\":\"none\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGETABLE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGETABLE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/TABLESERVICES\",\"clientType\":\"none\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGETABLE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGETABLE_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_STORAGETABLE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/TABLESERVICES\",\"clientType\":\"none\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_STORAGETABLE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGETABLE_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_STORAGETABLE_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_STORAGETABLE_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_STORAGETABLE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/TABLESERVICES\",\"clientType\":\"none\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_STORAGETABLE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/TABLESERVICES\",\"clientType\":\"none\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_STORAGETABLE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/TABLESERVICES\",\"clientType\":\"none\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_STORAGETABLE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGETABLE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/TABLESERVICES\",\"clientType\":\"dotnet\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGETABLE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGETABLE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/TABLESERVICES\",\"clientType\":\"dotnet\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGETABLE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGETABLE_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_STORAGETABLE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/TABLESERVICES\",\"clientType\":\"dotnet\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_STORAGETABLE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGETABLE_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_STORAGETABLE_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_STORAGETABLE_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_STORAGETABLE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/TABLESERVICES\",\"clientType\":\"dotnet\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_STORAGETABLE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/TABLESERVICES\",\"clientType\":\"dotnet\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_STORAGETABLE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/TABLESERVICES\",\"clientType\":\"dotnet\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_STORAGETABLE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGETABLE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/TABLESERVICES\",\"clientType\":\"java\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGETABLE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGETABLE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/TABLESERVICES\",\"clientType\":\"java\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGETABLE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGETABLE_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_STORAGETABLE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/TABLESERVICES\",\"clientType\":\"java\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_STORAGETABLE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGETABLE_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_STORAGETABLE_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_STORAGETABLE_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_STORAGETABLE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/TABLESERVICES\",\"clientType\":\"java\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_STORAGETABLE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/TABLESERVICES\",\"clientType\":\"java\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_STORAGETABLE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/TABLESERVICES\",\"clientType\":\"java\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_STORAGETABLE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGETABLE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/TABLESERVICES\",\"clientType\":\"nodejs\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGETABLE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGETABLE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/TABLESERVICES\",\"clientType\":\"nodejs\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGETABLE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGETABLE_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_STORAGETABLE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/TABLESERVICES\",\"clientType\":\"nodejs\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_STORAGETABLE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGETABLE_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_STORAGETABLE_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_STORAGETABLE_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_STORAGETABLE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/TABLESERVICES\",\"clientType\":\"nodejs\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_STORAGETABLE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/TABLESERVICES\",\"clientType\":\"nodejs\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_STORAGETABLE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/TABLESERVICES\",\"clientType\":\"nodejs\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_STORAGETABLE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGETABLE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/TABLESERVICES\",\"clientType\":\"python\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGETABLE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGETABLE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/TABLESERVICES\",\"clientType\":\"python\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGETABLE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGETABLE_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_STORAGETABLE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/TABLESERVICES\",\"clientType\":\"python\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_STORAGETABLE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGETABLE_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_STORAGETABLE_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_STORAGETABLE_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_STORAGETABLE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/TABLESERVICES\",\"clientType\":\"python\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_STORAGETABLE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/TABLESERVICES\",\"clientType\":\"python\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_STORAGETABLE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/TABLESERVICES\",\"clientType\":\"python\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_STORAGETABLE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGETABLE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/TABLESERVICES\",\"clientType\":\"go\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGETABLE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGETABLE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/TABLESERVICES\",\"clientType\":\"go\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGETABLE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGETABLE_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_STORAGETABLE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/TABLESERVICES\",\"clientType\":\"go\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_STORAGETABLE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGETABLE_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_STORAGETABLE_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_STORAGETABLE_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_STORAGETABLE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/TABLESERVICES\",\"clientType\":\"go\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_STORAGETABLE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/TABLESERVICES\",\"clientType\":\"go\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_STORAGETABLE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/TABLESERVICES\",\"clientType\":\"go\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_STORAGETABLE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGETABLE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/TABLESERVICES\",\"clientType\":\"django\",\"authType\":\"systemAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGETABLE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGETABLE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/TABLESERVICES\",\"clientType\":\"django\",\"authType\":\"userAssignedIdentity\",\"names\":[{\"value\":\"AZURE_STORAGETABLE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGETABLE_CLIENTID\",\"description\":\"User Identity client id\"},{\"value\":\"AZURE_STORAGETABLE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/TABLESERVICES\",\"clientType\":\"django\",\"authType\":\"servicePrincipalSecret\",\"names\":[{\"value\":\"AZURE_STORAGETABLE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGETABLE_CLIENTSECRET\",\"description\":\"Service Principal client secret\"},{\"value\":\"AZURE_STORAGETABLE_CLIENTID\",\"description\":\"Service Principal client id\"},{\"value\":\"AZURE_STORAGETABLE_TENANTID\",\"description\":\"Service Principal tenant id\"},{\"value\":\"AZURE_STORAGETABLE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/TABLESERVICES\",\"clientType\":\"django\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_STORAGETABLE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/TABLESERVICES\",\"clientType\":\"django\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_STORAGETABLE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/TABLESERVICES\",\"clientType\":\"django\",\"authType\":\"userAccount\",\"names\":[{\"value\":\"AZURE_STORAGETABLE_RESOURCEENDPOINT\",\"description\":\"Storage endpoint\"},{\"value\":\"AZURE_STORAGETABLE_SCOPE\",\"description\":\"scope for getting token\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/TABLESERVICES\",\"clientType\":\"springBoot\",\"authType\":\"secret\",\"names\":[{\"value\":\"AZURE_STORAGETABLE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}},{\"properties\":{\"targetService\":\"MICROSOFT.STORAGE/STORAGEACCOUNTS/TABLESERVICES\",\"clientType\":\"springBoot\",\"authType\":\"accessKey\",\"names\":[{\"value\":\"AZURE_STORAGETABLE_CONNECTIONSTRING\",\"description\":\"connection string\"}]}}]}" + } + } +} \ No newline at end of file diff --git a/src/ServiceLinker/test/Get-AzServiceLinkerConfigurationName.Tests.ps1 b/src/ServiceLinker/test/Get-AzServiceLinkerConfigurationName.Tests.ps1 new file mode 100644 index 000000000000..ec9bc899fef3 --- /dev/null +++ b/src/ServiceLinker/test/Get-AzServiceLinkerConfigurationName.Tests.ps1 @@ -0,0 +1,22 @@ +if(($null -eq $TestName) -or ($TestName -contains 'Get-AzServiceLinkerConfigurationName')) +{ + $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' + if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + } + . ($loadEnvPath) + $TestRecordingFile = Join-Path $PSScriptRoot 'Get-AzServiceLinkerConfigurationName.Recording.json' + $currentPath = $PSScriptRoot + while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent + } + . ($mockingPath | Select-Object -First 1).FullName +} + +Describe 'Get-AzServiceLinkerConfigurationName' { + It 'List' { + $configs = Get-AzServiceLinkerConfigurationName + $configs.Count | Should -BeGreaterOrEqual 1 + } +} diff --git a/src/ServiceLinker/test/Get-AzServiceLinkerForContainerApp.Recording.json b/src/ServiceLinker/test/Get-AzServiceLinkerForContainerApp.Recording.json index 6f6d8cf77111..f22f0dc5e5e3 100644 --- a/src/ServiceLinker/test/Get-AzServiceLinkerForContainerApp.Recording.json +++ b/src/ServiceLinker/test/Get-AzServiceLinkerForContainerApp.Recording.json @@ -1,12 +1,12 @@ { - "Get-AzServiceLinkerForContainerApp+[NoContext]+List+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers?api-version=2022-05-01+1": { + "Get-AzServiceLinkerForContainerApp+[NoContext]+List+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers?api-version=2022-11-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers?api-version=2022-05-01", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers?api-version=2022-11-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "4" ], - "x-ms-client-request-id": [ "4c36a038-0a8a-4dba-835e-6ea495ca41c9" ], + "x-ms-unique-id": [ "5" ], + "x-ms-client-request-id": [ "5a77874a-5499-40a6-a64c-6ba38a54c4ee" ], "CommandName": [ "Az.ServiceLinker.internal\\Get-AzServiceLinker" ], "FullCommandName": [ "Get-AzServiceLinker_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,33 +21,32 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "823a34ca-55a8-48ae-a83d-59031f97df1a" ], + "mise-correlation-id": [ "063dd37f-a856-4926-b8a3-366a49eabd17" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "46a731c8-636c-4dcb-8acb-4fc459a617e1" ], - "x-ms-correlation-request-id": [ "0faa081e-0240-48ee-ab64-9546dae98e44" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064319Z:0faa081e-0240-48ee-ab64-9546dae98e44" ], + "x-ms-request-id": [ "7e330103-d1cb-4542-919f-fd44ef8ae748" ], + "x-ms-correlation-request-id": [ "0aab616a-2373-4f10-a7cb-7d16b9e9cfea" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20230130T074156Z:0aab616a-2373-4f10-a7cb-7d16b9e9cfea" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:43:19 GMT" ] + "Date": [ "Mon, 30 Jan 2023 07:41:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1639" ], + "Content-Length": [ "14430" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"name\":\"preparedLinker\",\"type\":\"microsoft.servicelinker/linkers\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/xichen-postgresql/databases/testdb\",\"resourceProperties\":{\"connectAsKubernetesCsiDriver\":false,\"type\":\"KeyVault\"},\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"xichen\",\"secretInfo\":{\"value\":null,\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"dotnet\",\"scope\":\"simple-hello-world-container\",\"vNetSolution\":null,\"secretStore\":null}},{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"name\":\"ps_linker\",\"type\":\"microsoft.servicelinker/linkers\",\"properties\":{\"provisioningState\":\"Failed\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/postgres\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"name\":null,\"secretInfo\":{\"value\":null,\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"none\",\"scope\":\"simple-hello-world-container\",\"vNetSolution\":null,\"secretStore\":null}}]}" + "Content": "{\"value\":[{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/storageblob_42dda\",\"name\":\"storageblob_42dda\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"qianwens@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2022-05-10T11:37:01.553663Z\",\"lastModifiedBy\":\"qianwens@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2022-05-10T11:37:01.553663Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Storage/storageAccounts/xichenstorage/blobServices/default\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"roles\":null,\"userName\":null,\"authType\":\"systemAssignedIdentity\",\"deleteOrUpdateBehavior\":null},\"clientType\":\"none\",\"scope\":\"simple-hello-world-container\",\"vNetSolution\":null,\"secretStore\":null}},{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/CT133071819614260455\",\"name\":\"CT133071819614260455\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"d0489f1b-17fd-4924-95a9-9054374b6eff\",\"createdByType\":\"Application\",\"createdAt\":\"2022-09-09T07:26:04.4305254Z\",\"lastModifiedBy\":\"d0489f1b-17fd-4924-95a9-9054374b6eff\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2022-09-09T07:26:04.4305254Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.SignalRService/WebPubSub/servicelinker-webpubsub-canarytest\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"subscriptionId\":\"937bc588-a144-4083-8612-5f9ffbbddb14\",\"clientId\":\"54c572a9-859e-4427-bba1-5b356c0f51da\",\"roles\":null,\"authType\":\"userAssignedIdentity\",\"deleteOrUpdateBehavior\":null},\"clientType\":\"dotnet\",\"scope\":\"simple-hello-world-container\",\"vNetSolution\":null,\"secretStore\":null}},{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/CT133071834490324847\",\"name\":\"CT133071834490324847\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"d0489f1b-17fd-4924-95a9-9054374b6eff\",\"createdByType\":\"Application\",\"createdAt\":\"2022-09-09T07:50:51.7181265Z\",\"lastModifiedBy\":\"d0489f1b-17fd-4924-95a9-9054374b6eff\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2022-09-09T07:50:51.7181265Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.SignalRService/WebPubSub/servicelinker-webpubsub-canarytest\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"subscriptionId\":\"937bc588-a144-4083-8612-5f9ffbbddb14\",\"clientId\":\"54c572a9-859e-4427-bba1-5b356c0f51da\",\"roles\":null,\"authType\":\"userAssignedIdentity\",\"deleteOrUpdateBehavior\":null},\"clientType\":\"dotnet\",\"scope\":\"simple-hello-world-container\",\"vNetSolution\":null,\"secretStore\":null}},{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/CT133075146297572441\",\"name\":\"CT133075146297572441\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"d0489f1b-17fd-4924-95a9-9054374b6eff\",\"createdByType\":\"Application\",\"createdAt\":\"2022-09-13T03:50:32.2444355Z\",\"lastModifiedBy\":\"d0489f1b-17fd-4924-95a9-9054374b6eff\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2022-09-13T03:50:32.2444355Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.SignalRService/WebPubSub/servicelinker-webpubsub-canarytest\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"subscriptionId\":\"937bc588-a144-4083-8612-5f9ffbbddb14\",\"clientId\":\"54c572a9-859e-4427-bba1-5b356c0f51da\",\"roles\":null,\"authType\":\"userAssignedIdentity\",\"deleteOrUpdateBehavior\":null},\"clientType\":\"dotnet\",\"scope\":\"simple-hello-world-container\",\"vNetSolution\":null,\"secretStore\":null}},{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/CT133075261430617046\",\"name\":\"CT133075261430617046\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"d0489f1b-17fd-4924-95a9-9054374b6eff\",\"createdByType\":\"Application\",\"createdAt\":\"2022-09-13T07:02:25.313822Z\",\"lastModifiedBy\":\"d0489f1b-17fd-4924-95a9-9054374b6eff\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2022-09-13T07:02:25.313822Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.SignalRService/WebPubSub/servicelinker-webpubsub-canarytest\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"subscriptionId\":\"937bc588-a144-4083-8612-5f9ffbbddb14\",\"clientId\":\"54c572a9-859e-4427-bba1-5b356c0f51da\",\"roles\":null,\"authType\":\"userAssignedIdentity\",\"deleteOrUpdateBehavior\":null},\"clientType\":\"dotnet\",\"scope\":\"simple-hello-world-container\",\"vNetSolution\":null,\"secretStore\":null}},{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/CT133075265767517502\",\"name\":\"CT133075265767517502\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"d0489f1b-17fd-4924-95a9-9054374b6eff\",\"createdByType\":\"Application\",\"createdAt\":\"2022-09-13T07:09:38.4708422Z\",\"lastModifiedBy\":\"d0489f1b-17fd-4924-95a9-9054374b6eff\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2022-09-13T07:09:38.4708422Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.SignalRService/WebPubSub/servicelinker-webpubsub-canarytest\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"subscriptionId\":\"937bc588-a144-4083-8612-5f9ffbbddb14\",\"clientId\":\"54c572a9-859e-4427-bba1-5b356c0f51da\",\"roles\":null,\"authType\":\"userAssignedIdentity\",\"deleteOrUpdateBehavior\":null},\"clientType\":\"dotnet\",\"scope\":\"simple-hello-world-container\",\"vNetSolution\":null,\"secretStore\":null}},{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/CT133135769978116626\",\"name\":\"CT133135769978116626\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"d0489f1b-17fd-4924-95a9-9054374b6eff\",\"createdByType\":\"Application\",\"createdAt\":\"2022-11-22T07:50:00.1469792Z\",\"lastModifiedBy\":\"d0489f1b-17fd-4924-95a9-9054374b6eff\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2022-11-22T07:50:00.1469792Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Failed\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.SignalRService/WebPubSub/servicelinker-webpubsub-canarytest\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"subscriptionId\":\"937bc588-a144-4083-8612-5f9ffbbddb14\",\"clientId\":\"5e18f16a-0cc9-4eb2-9277-fe7c6700c785\",\"roles\":null,\"authType\":\"userAssignedIdentity\",\"deleteOrUpdateBehavior\":\"Default\"},\"clientType\":\"dotnet\",\"scope\":\"simple-hello-world-container\",\"vNetSolution\":null,\"secretStore\":null}},{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/CT133152984086850559\",\"name\":\"CT133152984086850559\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"d0489f1b-17fd-4924-95a9-9054374b6eff\",\"createdByType\":\"Application\",\"createdAt\":\"2022-12-12T06:00:40.9553357Z\",\"lastModifiedBy\":\"d0489f1b-17fd-4924-95a9-9054374b6eff\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2022-12-12T06:00:40.9553357Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.SignalRService/SignalR/servicelinker-signalr\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"clientId\":\"323f212a-568e-44b5-b296-abaad161b929\",\"principalId\":\"b2ffa9f4-02a3-4cdb-9333-4f494db9693d\",\"roles\":null,\"authType\":\"servicePrincipalSecret\",\"deleteOrUpdateBehavior\":\"Default\"},\"clientType\":\"dotnet\",\"scope\":\"simple-hello-world-container\",\"vNetSolution\":null,\"secretStore\":null}},{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/CT133153789828091558\",\"name\":\"CT133153789828091558\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"d0489f1b-17fd-4924-95a9-9054374b6eff\",\"createdByType\":\"Application\",\"createdAt\":\"2022-12-13T04:23:04.7629589Z\",\"lastModifiedBy\":\"d0489f1b-17fd-4924-95a9-9054374b6eff\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2022-12-13T04:23:04.7629589Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Failed\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.SignalRService/WebPubSub/servicelinker-webpubsub-canarytest\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"subscriptionId\":\"937bc588-a144-4083-8612-5f9ffbbddb14\",\"clientId\":\"5e18f16a-0cc9-4eb2-9277-fe7c6700c785\",\"roles\":null,\"authType\":\"userAssignedIdentity\",\"deleteOrUpdateBehavior\":\"Default\"},\"clientType\":\"dotnet\",\"scope\":\"simple-hello-world-container\",\"vNetSolution\":null,\"secretStore\":null}},{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/CT133154596106083573\",\"name\":\"CT133154596106083573\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"d0489f1b-17fd-4924-95a9-9054374b6eff\",\"createdByType\":\"Application\",\"createdAt\":\"2022-12-14T02:47:22.440963Z\",\"lastModifiedBy\":\"d0489f1b-17fd-4924-95a9-9054374b6eff\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2022-12-14T02:47:22.440963Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourcegroups/servicelinker-test-linux-group/providers/Microsoft.AppConfiguration/configurationStores/servicelinker-app-configuration\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"roles\":null,\"userName\":null,\"authType\":\"systemAssignedIdentity\",\"deleteOrUpdateBehavior\":\"Default\"},\"clientType\":\"dotnet\",\"scope\":\"simple-hello-world-container\",\"vNetSolution\":null,\"secretStore\":null}},{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/CT133154639039154615\",\"name\":\"CT133154639039154615\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"d0489f1b-17fd-4924-95a9-9054374b6eff\",\"createdByType\":\"Application\",\"createdAt\":\"2022-12-14T03:59:05.4239822Z\",\"lastModifiedBy\":\"d0489f1b-17fd-4924-95a9-9054374b6eff\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2022-12-14T03:59:05.4239822Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourcegroups/servicelinker-test-linux-group/providers/Microsoft.AppConfiguration/configurationStores/servicelinker-app-configuration\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"roles\":null,\"userName\":null,\"authType\":\"systemAssignedIdentity\",\"deleteOrUpdateBehavior\":\"Default\"},\"clientType\":\"dotnet\",\"scope\":\"simple-hello-world-container\",\"vNetSolution\":null,\"secretStore\":null}},{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"name\":\"preparedLinker\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"xiaofanzhou@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-01-30T03:37:04.9479159Z\",\"lastModifiedBy\":\"xiaofanzhou@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-01-30T05:24:32.2335746Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppConfiguration/configurationStores/servicelinker-app-configuration\",\"resourceProperties\":{\"connectAsKubernetesCsiDriver\":false,\"type\":\"KeyVault\"},\"type\":\"AzureResource\"},\"authInfo\":{\"roles\":[],\"userName\":null,\"authType\":\"systemAssignedIdentity\",\"deleteOrUpdateBehavior\":null},\"clientType\":\"dotnet\",\"scope\":\"simple-hello-world-container\",\"vNetSolution\":null,\"secretStore\":null}}]}" } }, - "Get-AzServiceLinkerForContainerApp+[NoContext]+Get+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-05-01+1": { + "Get-AzServiceLinkerForContainerApp+[NoContext]+Get+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-11-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-05-01", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-11-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "5" ], - "x-ms-client-request-id": [ "ee62df00-dd14-49e4-a5a1-b739eee661fe" ], + "x-ms-unique-id": [ "6" ], + "x-ms-client-request-id": [ "12d48b48-0b40-4164-9e59-37012d83e8b0" ], "CommandName": [ "Az.ServiceLinker.internal\\Get-AzServiceLinker" ], "FullCommandName": [ "Get-AzServiceLinker_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -62,34 +61,33 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"3a00fc6d-0000-0100-0000-627614090000\"" ], - "Vary": [ "Accept-Encoding" ], + "ETag": [ "\"ea0077d3-0000-0100-0000-63d754a10000\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "bc6f4c84-5fcc-4b78-aedf-63022bbff616" ], + "mise-correlation-id": [ "ff15b238-9a46-4fa2-8870-4bf3b7fbd476" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3f456bc3-8746-4e1b-bb98-7e6509030515" ], - "x-ms-correlation-request-id": [ "7c58bdeb-06ca-47a8-ab0a-e84edce9c762" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064320Z:7c58bdeb-06ca-47a8-ab0a-e84edce9c762" ], + "x-ms-request-id": [ "f38e2d99-2a4e-4de1-ae35-f9bd7c6c972d" ], + "x-ms-correlation-request-id": [ "85d1012e-1a91-4f44-af73-c440fbc3b921" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20230130T074157Z:85d1012e-1a91-4f44-af73-c440fbc3b921" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:43:20 GMT" ] + "Date": [ "Mon, 30 Jan 2023 07:41:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "844" ], + "Content-Length": [ "1155" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"name\":\"preparedLinker\",\"type\":\"microsoft.servicelinker/linkers\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/xichen-postgresql/databases/testdb\",\"resourceProperties\":{\"connectAsKubernetesCsiDriver\":false,\"type\":\"KeyVault\"},\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"xichen\",\"secretInfo\":{\"value\":null,\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"dotnet\",\"scope\":\"simple-hello-world-container\",\"vNetSolution\":null,\"secretStore\":null}}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"name\":\"preparedLinker\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"xiaofanzhou@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-01-30T03:37:04.9479159Z\",\"lastModifiedBy\":\"xiaofanzhou@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-01-30T05:24:32.2335746Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppConfiguration/configurationStores/servicelinker-app-configuration\",\"resourceProperties\":{\"connectAsKubernetesCsiDriver\":false,\"type\":\"KeyVault\"},\"type\":\"AzureResource\"},\"authInfo\":{\"roles\":[],\"userName\":null,\"authType\":\"systemAssignedIdentity\",\"deleteOrUpdateBehavior\":null},\"clientType\":\"dotnet\",\"scope\":\"simple-hello-world-container\",\"vNetSolution\":null,\"secretStore\":null}}" } }, - "Get-AzServiceLinkerForContainerApp+[NoContext]+GetViaIdentity+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-05-01+1": { + "Get-AzServiceLinkerForContainerApp+[NoContext]+GetViaIdentity+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-11-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-05-01", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-11-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "6" ], - "x-ms-client-request-id": [ "b3f85fae-05bc-41e8-9edc-20fadbeaf995" ], + "x-ms-unique-id": [ "7" ], + "x-ms-client-request-id": [ "b089d659-8b44-4a3a-aa45-369b0dc92914" ], "CommandName": [ "Az.ServiceLinker.internal\\Get-AzServiceLinker" ], "FullCommandName": [ "Get-AzServiceLinker_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -104,24 +102,23 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"3a00fc6d-0000-0100-0000-627614090000\"" ], - "Vary": [ "Accept-Encoding" ], + "ETag": [ "\"ea0077d3-0000-0100-0000-63d754a10000\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "a7a2e5d5-170b-4320-bc2d-c23a9beaf8f2" ], + "mise-correlation-id": [ "11eec008-fe24-4a10-a1c0-1ef1983353bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9e3acb14-f428-403e-8e93-715b10440e94" ], - "x-ms-correlation-request-id": [ "39de76f2-7c83-4ed9-b7ac-a6364140f3a6" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064321Z:39de76f2-7c83-4ed9-b7ac-a6364140f3a6" ], + "x-ms-request-id": [ "228a2997-62b0-4e0e-b0e4-525dd88c8511" ], + "x-ms-correlation-request-id": [ "70fad052-9a58-4274-9dae-aaaa3c65f4bc" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20230130T074157Z:70fad052-9a58-4274-9dae-aaaa3c65f4bc" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:43:21 GMT" ] + "Date": [ "Mon, 30 Jan 2023 07:41:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "844" ], + "Content-Length": [ "1155" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"name\":\"preparedLinker\",\"type\":\"microsoft.servicelinker/linkers\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/xichen-postgresql/databases/testdb\",\"resourceProperties\":{\"connectAsKubernetesCsiDriver\":false,\"type\":\"KeyVault\"},\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"xichen\",\"secretInfo\":{\"value\":null,\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"dotnet\",\"scope\":\"simple-hello-world-container\",\"vNetSolution\":null,\"secretStore\":null}}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"name\":\"preparedLinker\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"xiaofanzhou@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-01-30T03:37:04.9479159Z\",\"lastModifiedBy\":\"xiaofanzhou@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-01-30T05:24:32.2335746Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppConfiguration/configurationStores/servicelinker-app-configuration\",\"resourceProperties\":{\"connectAsKubernetesCsiDriver\":false,\"type\":\"KeyVault\"},\"type\":\"AzureResource\"},\"authInfo\":{\"roles\":[],\"userName\":null,\"authType\":\"systemAssignedIdentity\",\"deleteOrUpdateBehavior\":null},\"clientType\":\"dotnet\",\"scope\":\"simple-hello-world-container\",\"vNetSolution\":null,\"secretStore\":null}}" } } } \ No newline at end of file diff --git a/src/ServiceLinker/test/Get-AzServiceLinkerForSpringCloud.Recording.json b/src/ServiceLinker/test/Get-AzServiceLinkerForSpringCloud.Recording.json index a3e4860eda17..24deb03e5cd8 100644 --- a/src/ServiceLinker/test/Get-AzServiceLinkerForSpringCloud.Recording.json +++ b/src/ServiceLinker/test/Get-AzServiceLinkerForSpringCloud.Recording.json @@ -1,12 +1,12 @@ { - "Get-AzServiceLinkerForSpringCloud+[NoContext]+List+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers?api-version=2022-05-01+1": { + "Get-AzServiceLinkerForSpringCloud+[NoContext]+List+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers?api-version=2022-11-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers?api-version=2022-05-01", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers?api-version=2022-11-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "7" ], - "x-ms-client-request-id": [ "4d9c0757-34f6-4744-b95f-12f851972972" ], + "x-ms-unique-id": [ "8" ], + "x-ms-client-request-id": [ "d1de5be8-5189-4b0b-994f-5617db2456cc" ], "CommandName": [ "Az.ServiceLinker.internal\\Get-AzServiceLinker" ], "FullCommandName": [ "Get-AzServiceLinker_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,33 +21,32 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "a152a7a6-5093-4c5f-9ce8-e12005c24546" ], + "mise-correlation-id": [ "80709e67-ff0d-4a7b-8600-6a329767ea9e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a0fff68d-cd10-4223-9feb-c2752a1393b8" ], - "x-ms-correlation-request-id": [ "69d25428-8a74-489c-ac8d-e49db121f852" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064328Z:69d25428-8a74-489c-ac8d-e49db121f852" ], + "x-ms-request-id": [ "773d4f89-e1fd-4738-90a4-e8c3714e0d19" ], + "x-ms-correlation-request-id": [ "da59e4fd-e9af-4c57-ab28-4129a801ad1d" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20230130T074209Z:da59e4fd-e9af-4c57-ab28-4129a801ad1d" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:43:27 GMT" ] + "Date": [ "Mon, 30 Jan 2023 07:42:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "878" ], + "Content-Length": [ "1161" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"name\":\"preparedLinker\",\"type\":\"microsoft.servicelinker/linkers\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/pollsdb\",\"resourceProperties\":{\"connectAsKubernetesCsiDriver\":false,\"type\":\"KeyVault\"},\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"servicelinker\",\"secretInfo\":{\"value\":null,\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"dotnet\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}}]}" + "Content": "{\"value\":[{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"name\":\"preparedLinker\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"xiaofanzhou@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2022-05-06T06:50:44.4314626Z\",\"lastModifiedBy\":\"xiaofanzhou@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-01-30T05:25:13.5779094Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/pollsdb\",\"resourceProperties\":{\"connectAsKubernetesCsiDriver\":false,\"type\":\"KeyVault\"},\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"servicelinker\",\"secretInfo\":{\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"dotnet\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}}]}" } }, - "Get-AzServiceLinkerForSpringCloud+[NoContext]+Get+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-05-01+1": { + "Get-AzServiceLinkerForSpringCloud+[NoContext]+Get+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-11-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-05-01", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-11-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "8" ], - "x-ms-client-request-id": [ "5f88608f-4d7c-4fa6-8926-0af115a5c691" ], + "x-ms-unique-id": [ "9" ], + "x-ms-client-request-id": [ "8c1fac40-f60a-4d75-9165-24ef90ea9c34" ], "CommandName": [ "Az.ServiceLinker.internal\\Get-AzServiceLinker" ], "FullCommandName": [ "Get-AzServiceLinker_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -62,34 +61,33 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"3a003b6e-0000-0100-0000-627614220000\"" ], - "Vary": [ "Accept-Encoding" ], + "ETag": [ "\"ea00bdd3-0000-0100-0000-63d754c00000\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "72d5d4b7-ed80-48a7-9305-daeea2cfb3f5" ], + "mise-correlation-id": [ "ba3e5e02-750f-463c-9f5c-bc54baaab6a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3ac1c530-c80a-4dcb-9f48-32a9c445840c" ], - "x-ms-correlation-request-id": [ "52195856-2084-4d6f-a9ff-947be8f48ea8" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064328Z:52195856-2084-4d6f-a9ff-947be8f48ea8" ], + "x-ms-request-id": [ "8f88ca3f-92fa-4498-8338-a6959d966ed8" ], + "x-ms-correlation-request-id": [ "9b515d50-06e6-47b6-9ecd-290b90a91701" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20230130T074209Z:9b515d50-06e6-47b6-9ecd-290b90a91701" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:43:28 GMT" ] + "Date": [ "Mon, 30 Jan 2023 07:42:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "866" ], + "Content-Length": [ "1149" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"name\":\"preparedLinker\",\"type\":\"microsoft.servicelinker/linkers\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/pollsdb\",\"resourceProperties\":{\"connectAsKubernetesCsiDriver\":false,\"type\":\"KeyVault\"},\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"servicelinker\",\"secretInfo\":{\"value\":null,\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"dotnet\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"name\":\"preparedLinker\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"xiaofanzhou@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2022-05-06T06:50:44.4314626Z\",\"lastModifiedBy\":\"xiaofanzhou@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-01-30T05:25:13.5779094Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/pollsdb\",\"resourceProperties\":{\"connectAsKubernetesCsiDriver\":false,\"type\":\"KeyVault\"},\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"servicelinker\",\"secretInfo\":{\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"dotnet\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}}" } }, - "Get-AzServiceLinkerForSpringCloud+[NoContext]+GetViaIdentity+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-05-01+1": { + "Get-AzServiceLinkerForSpringCloud+[NoContext]+GetViaIdentity+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-11-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-05-01", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-11-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "9" ], - "x-ms-client-request-id": [ "946415bf-4498-439d-ab6c-36712674a92b" ], + "x-ms-unique-id": [ "10" ], + "x-ms-client-request-id": [ "8890167a-5087-4722-9763-1518515e79a1" ], "CommandName": [ "Az.ServiceLinker.internal\\Get-AzServiceLinker" ], "FullCommandName": [ "Get-AzServiceLinker_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -104,24 +102,23 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"3a003b6e-0000-0100-0000-627614220000\"" ], - "Vary": [ "Accept-Encoding" ], + "ETag": [ "\"ea00bdd3-0000-0100-0000-63d754c00000\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "7f8afa27-ea2f-460d-bdbe-d7d75ef6b29b" ], + "mise-correlation-id": [ "66a16523-8b21-4a5e-9dc1-0e9c7f7e427c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5c4abde3-22f7-4908-b294-c302506f209f" ], - "x-ms-correlation-request-id": [ "2b327683-4a10-4029-8542-b112db5fa1bc" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064329Z:2b327683-4a10-4029-8542-b112db5fa1bc" ], + "x-ms-request-id": [ "b13a67c8-8e48-4ada-96ef-35bd496ffcef" ], + "x-ms-correlation-request-id": [ "70b47497-9cf2-44f4-89f2-832ac36e6a2e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20230130T074210Z:70b47497-9cf2-44f4-89f2-832ac36e6a2e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:43:28 GMT" ] + "Date": [ "Mon, 30 Jan 2023 07:42:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "866" ], + "Content-Length": [ "1149" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"name\":\"preparedLinker\",\"type\":\"microsoft.servicelinker/linkers\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/pollsdb\",\"resourceProperties\":{\"connectAsKubernetesCsiDriver\":false,\"type\":\"KeyVault\"},\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"servicelinker\",\"secretInfo\":{\"value\":null,\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"dotnet\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"name\":\"preparedLinker\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"xiaofanzhou@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2022-05-06T06:50:44.4314626Z\",\"lastModifiedBy\":\"xiaofanzhou@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-01-30T05:25:13.5779094Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/pollsdb\",\"resourceProperties\":{\"connectAsKubernetesCsiDriver\":false,\"type\":\"KeyVault\"},\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"servicelinker\",\"secretInfo\":{\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"dotnet\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}}" } } } \ No newline at end of file diff --git a/src/ServiceLinker/test/Get-AzServiceLinkerForWebApp.Recording.json b/src/ServiceLinker/test/Get-AzServiceLinkerForWebApp.Recording.json index 7d4949094456..86636cbe3c03 100644 --- a/src/ServiceLinker/test/Get-AzServiceLinkerForWebApp.Recording.json +++ b/src/ServiceLinker/test/Get-AzServiceLinkerForWebApp.Recording.json @@ -1,12 +1,12 @@ { - "Get-AzServiceLinkerForWebApp+[NoContext]+List+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers?api-version=2022-05-01+1": { + "Get-AzServiceLinkerForWebApp+[NoContext]+List+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers?api-version=2022-11-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers?api-version=2022-05-01", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers?api-version=2022-11-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "10" ], - "x-ms-client-request-id": [ "07c1e995-12fa-4b76-8b67-c40abf57c2bb" ], + "x-ms-unique-id": [ "11" ], + "x-ms-client-request-id": [ "4253f0c8-9293-41bd-80b1-a5d0edb5b062" ], "CommandName": [ "Az.ServiceLinker.internal\\Get-AzServiceLinker" ], "FullCommandName": [ "Get-AzServiceLinker_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,33 +21,32 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "41ea0cea-7523-4cd9-ba46-06774e78495e" ], + "mise-correlation-id": [ "b1ca5359-9dd5-4451-8fe3-8b438a8cb858" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c7a0981b-20af-408c-989c-791794d71dea" ], - "x-ms-correlation-request-id": [ "d9eb2333-db9b-4f32-bba9-819e9c59f70f" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064336Z:d9eb2333-db9b-4f32-bba9-819e9c59f70f" ], + "x-ms-request-id": [ "d0175638-db1e-4b50-bedd-53d9b4a6b435" ], + "x-ms-correlation-request-id": [ "18ad5d2d-0deb-4c2f-b278-d3e3b18b86f7" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20230130T074223Z:18ad5d2d-0deb-4c2f-b278-d3e3b18b86f7" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:43:36 GMT" ] + "Date": [ "Mon, 30 Jan 2023 07:42:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7363" ], + "Content-Length": [ "8714" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"name\":\"preparedLinker\",\"type\":\"microsoft.servicelinker/linkers\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/pollsdb\",\"resourceProperties\":{\"connectAsKubernetesCsiDriver\":false,\"type\":\"KeyVault\"},\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"xichen\",\"secretInfo\":{\"value\":null,\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"dotnet\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}},{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/webapp_mysql_47a91\",\"name\":\"webapp_mysql_47a91\",\"type\":\"microsoft.servicelinker/linkers\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforMySQL/servers/servicelinker-mysql/databases/demo\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"servicelinker\",\"secretInfo\":{\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"python\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}},{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/ct132791830883225198\",\"name\":\"ct132791830883225198\",\"type\":\"microsoft.servicelinker/linkers\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql-canary-test/databases/postgres\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"servicelinker\",\"secretInfo\":{\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"django\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}},{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/ct132791833166638462\",\"name\":\"ct132791833166638462\",\"type\":\"microsoft.servicelinker/linkers\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql-canary-test/databases/postgres\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"servicelinker\",\"secretInfo\":{\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"django\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}},{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/ct132792584341667637\",\"name\":\"ct132792584341667637\",\"type\":\"microsoft.servicelinker/linkers\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql-canary-test/databases/postgres\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"servicelinker\",\"secretInfo\":{\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"django\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}},{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/confluentkafka_ac706\",\"name\":\"confluentkafka_ac706\",\"type\":\"microsoft.servicelinker/linkers\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetService\":{\"endpoint\":\"pkc-xxxx.eastus.azure.confluent.cloud:9092\",\"type\":\"ConfluentBootstrapServer\"},\"authInfo\":{\"name\":\"USERNAME\",\"secretInfo\":{\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"python\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}},{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/confluentkafka_ac706_schema\",\"name\":\"confluentkafka_ac706_schema\",\"type\":\"microsoft.servicelinker/linkers\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetService\":{\"endpoint\":\"https://psrc-xxxx.westus2.azure.confluent.cloud\",\"type\":\"ConfluentSchemaRegistry\"},\"authInfo\":{\"name\":\"SRKEY\",\"secretInfo\":{\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"python\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}},{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/linker2\",\"name\":\"linker2\",\"type\":\"microsoft.servicelinker/linkers\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql-canary-test/databases/postgres\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"servicelinker\",\"secretInfo\":{\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"django\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}},{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/linker\",\"name\":\"linker\",\"type\":\"microsoft.servicelinker/linkers\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/pollsdb\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"xichen\",\"secretInfo\":{\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"django\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}},{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/appconfig_ef162\",\"name\":\"appconfig_ef162\",\"type\":\"microsoft.servicelinker/linkers\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppConfiguration/configurationStores/app-config-servicelinker\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"authType\":\"systemAssignedIdentity\"},\"clientType\":\"python\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}}]}" + "Content": "{\"value\":[{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"name\":\"preparedLinker\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"naji@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-20T02:10:21.6542229Z\",\"lastModifiedBy\":\"xiaofanzhou@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-01-30T05:25:55.6334752Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/pollsdb\",\"resourceProperties\":{\"connectAsKubernetesCsiDriver\":false,\"type\":\"KeyVault\"},\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"xichen\",\"secretInfo\":{\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"dotnet\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}},{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/webapp_mysql_47a91\",\"name\":\"webapp_mysql_47a91\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"xiaofanzhou@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-20T02:10:44.4860581Z\",\"lastModifiedBy\":\"c4288165-6698-45ba-98a5-48ea7791fed3\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-20T02:10:47.7850193Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforMySQL/servers/servicelinker-mysql/databases/demo\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"servicelinker\",\"secretInfo\":{\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"python\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}},{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/ct132791830883225198\",\"name\":\"ct132791830883225198\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"d0489f1b-17fd-4924-95a9-9054374b6eff\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-20T05:58:14.1703052Z\",\"lastModifiedBy\":\"c4288165-6698-45ba-98a5-48ea7791fed3\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-20T05:58:21.9116826Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql-canary-test/databases/postgres\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"servicelinker\",\"secretInfo\":{\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"django\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}},{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/ct132791833166638462\",\"name\":\"ct132791833166638462\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"d0489f1b-17fd-4924-95a9-9054374b6eff\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-20T06:02:11.57185Z\",\"lastModifiedBy\":\"c4288165-6698-45ba-98a5-48ea7791fed3\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-20T06:02:19.9209961Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql-canary-test/databases/postgres\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"servicelinker\",\"secretInfo\":{\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"django\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}},{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/ct132792584341667637\",\"name\":\"ct132792584341667637\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"d0489f1b-17fd-4924-95a9-9054374b6eff\",\"createdByType\":\"Application\",\"createdAt\":\"2021-10-21T02:54:10.6450409Z\",\"lastModifiedBy\":\"c4288165-6698-45ba-98a5-48ea7791fed3\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2021-10-21T02:54:19.2804674Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql-canary-test/databases/postgres\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"servicelinker\",\"secretInfo\":{\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"django\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}},{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/linker2\",\"name\":\"linker2\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"d0489f1b-17fd-4924-95a9-9054374b6eff\",\"createdByType\":\"Application\",\"createdAt\":\"2022-05-07T02:22:26.974156Z\",\"lastModifiedBy\":\"c4288165-6698-45ba-98a5-48ea7791fed3\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2023-01-29T21:32:14.1994995Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql-canary-test/databases/postgres\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"servicelinker\",\"secretInfo\":{\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"django\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}},{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/linker\",\"name\":\"linker\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"naji@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-26T02:42:14.0108535Z\",\"lastModifiedBy\":\"c4288165-6698-45ba-98a5-48ea7791fed3\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2023-01-29T21:32:25.5617996Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Storage/storageAccounts/servicelinkerlocktaske2e/blobServices/default\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"name\":null,\"secretInfo\":{\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"none\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}},{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/appconfig_ef162\",\"name\":\"appconfig_ef162\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"xiaofanzhou@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2022-02-10T02:03:40.2591718Z\",\"lastModifiedBy\":\"c4288165-6698-45ba-98a5-48ea7791fed3\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2022-02-10T02:03:53.6206433Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppConfiguration/configurationStores/app-config-servicelinker\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"roles\":null,\"userName\":null,\"authType\":\"systemAssignedIdentity\",\"deleteOrUpdateBehavior\":null},\"clientType\":\"python\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}}]}" } }, - "Get-AzServiceLinkerForWebApp+[NoContext]+Get+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-05-01+1": { + "Get-AzServiceLinkerForWebApp+[NoContext]+Get+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-11-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-05-01", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-11-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "11" ], - "x-ms-client-request-id": [ "5f6665c0-2308-4d76-be4e-84f3936b8fb0" ], + "x-ms-unique-id": [ "12" ], + "x-ms-client-request-id": [ "3f23bfb6-31c2-4da3-8c1d-cd071cbb48fc" ], "CommandName": [ "Az.ServiceLinker.internal\\Get-AzServiceLinker" ], "FullCommandName": [ "Get-AzServiceLinker_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -62,34 +61,33 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"3a00dd6e-0000-0100-0000-6276145e0000\"" ], - "Vary": [ "Accept-Encoding" ], + "ETag": [ "\"ea0035d4-0000-0100-0000-63d754ea0000\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "7e8d6ad7-f138-460f-8244-49eecef0e3d1" ], + "mise-correlation-id": [ "9e45ab0c-d164-4fd2-b4e1-bed083fb2b51" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f3618801-ea96-4d31-939e-b1ec826ac006" ], - "x-ms-correlation-request-id": [ "abd00a53-dbe6-4768-abb7-4070e515c9f5" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064337Z:abd00a53-dbe6-4768-abb7-4070e515c9f5" ], + "x-ms-request-id": [ "a6bd207c-e07d-45db-a3c7-d2947066a440" ], + "x-ms-correlation-request-id": [ "9ebea682-6e37-491c-a47e-cea97cafe4e4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20230130T074224Z:9ebea682-6e37-491c-a47e-cea97cafe4e4" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:43:36 GMT" ] + "Date": [ "Mon, 30 Jan 2023 07:42:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "814" ], + "Content-Length": [ "1090" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"name\":\"preparedLinker\",\"type\":\"microsoft.servicelinker/linkers\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/pollsdb\",\"resourceProperties\":{\"connectAsKubernetesCsiDriver\":false,\"type\":\"KeyVault\"},\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"xichen\",\"secretInfo\":{\"value\":null,\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"dotnet\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"name\":\"preparedLinker\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"naji@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-20T02:10:21.6542229Z\",\"lastModifiedBy\":\"xiaofanzhou@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-01-30T05:25:55.6334752Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/pollsdb\",\"resourceProperties\":{\"connectAsKubernetesCsiDriver\":false,\"type\":\"KeyVault\"},\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"xichen\",\"secretInfo\":{\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"dotnet\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}}" } }, - "Get-AzServiceLinkerForWebApp+[NoContext]+GetViaIdentity+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-05-01+1": { + "Get-AzServiceLinkerForWebApp+[NoContext]+GetViaIdentity+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-11-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-05-01", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-11-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "12" ], - "x-ms-client-request-id": [ "7690787a-8c36-4380-a058-f93bf9c7db0b" ], + "x-ms-unique-id": [ "13" ], + "x-ms-client-request-id": [ "a2e4ea01-5659-4842-b47c-f29d2876fded" ], "CommandName": [ "Az.ServiceLinker.internal\\Get-AzServiceLinker" ], "FullCommandName": [ "Get-AzServiceLinker_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -104,24 +102,23 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"3a00dd6e-0000-0100-0000-6276145e0000\"" ], - "Vary": [ "Accept-Encoding" ], + "ETag": [ "\"ea0035d4-0000-0100-0000-63d754ea0000\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "5a454291-96c6-458b-985b-11e1f591f352" ], + "mise-correlation-id": [ "348cee33-1dfe-4dc4-a0e3-e9f9cb2a27f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cd0c4a12-fff0-4657-a3ea-421ab859182b" ], - "x-ms-correlation-request-id": [ "0528b328-4ecb-4fa4-8bf0-72a8d268eff7" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064338Z:0528b328-4ecb-4fa4-8bf0-72a8d268eff7" ], + "x-ms-request-id": [ "c2ec160b-b970-459e-9106-80daffc3924a" ], + "x-ms-correlation-request-id": [ "178089f3-2b58-4902-85ca-91c0343a34de" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20230130T074225Z:178089f3-2b58-4902-85ca-91c0343a34de" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:43:37 GMT" ] + "Date": [ "Mon, 30 Jan 2023 07:42:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "814" ], + "Content-Length": [ "1090" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"name\":\"preparedLinker\",\"type\":\"microsoft.servicelinker/linkers\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/pollsdb\",\"resourceProperties\":{\"connectAsKubernetesCsiDriver\":false,\"type\":\"KeyVault\"},\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"xichen\",\"secretInfo\":{\"value\":null,\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"dotnet\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"name\":\"preparedLinker\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"naji@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-20T02:10:21.6542229Z\",\"lastModifiedBy\":\"xiaofanzhou@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-01-30T05:25:55.6334752Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/pollsdb\",\"resourceProperties\":{\"connectAsKubernetesCsiDriver\":false,\"type\":\"KeyVault\"},\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"xichen\",\"secretInfo\":{\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"dotnet\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}}" } } } \ No newline at end of file diff --git a/src/ServiceLinker/test/New-AzServiceLinkerForContainerApp.Recording.json b/src/ServiceLinker/test/New-AzServiceLinkerForContainerApp.Recording.json index 52b5d44d16b5..054525582027 100644 --- a/src/ServiceLinker/test/New-AzServiceLinkerForContainerApp.Recording.json +++ b/src/ServiceLinker/test/New-AzServiceLinkerForContainerApp.Recording.json @@ -1,8 +1,8 @@ { - "New-AzServiceLinkerForContainerApp+[NoContext]+New storage connection+$PUT+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-05-01+1": { + "New-AzServiceLinkerForContainerApp+[NoContext]+New storage connection+$PUT+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-11-01-preview+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-05-01", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-11-01-preview", "Content": "{\n \"properties\": {\n \"targetService\": {\n \"type\": \"AzureResource\",\n \"id\": \"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/postgres\"\n },\n \"authInfo\": {\n \"authType\": \"secret\",\n \"secretInfo\": {\n \"secretType\": \"rawValue\"\n }\n },\n \"clientType\": \"none\",\n \"scope\": \"simple-hello-world-container\"\n }\n}", "Headers": { }, @@ -16,35 +16,35 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"f50007bc-0000-0200-0000-627615330000\"" ], + "ETag": [ "\"eb007842-0000-0100-0000-63d7752e0000\"" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "a5ed8284-2458-41f3-a6e7-8a9f020ed43a" ], + "mise-correlation-id": [ "77bdcbcf-044a-4dc9-aa14-22a85d6b5654" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/73fd2bbd-0dbb-4940-a5b0-31d1133ae26e*F3A831441F9BE538449AB2D6D310A20402B5E61A46EA88958FD088AC94F01F64?api-version=2022-05-01" ], - "x-ms-request-id": [ "73fd2bbd-0dbb-4940-a5b0-31d1133ae26e" ], - "x-ms-correlation-request-id": [ "7fda5147-5bba-4b28-8e81-5152f75d972d" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064404Z:7fda5147-5bba-4b28-8e81-5152f75d972d" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/dcce5c2b-d925-42ff-877f-cc79198812c1*F3A831441F9BE538449AB2D6D310A20402B5E61A46EA88958FD088AC94F01F64?api-version=2021-01-01-privatepreview" ], + "x-ms-request-id": [ "dcce5c2b-d925-42ff-877f-cc79198812c1" ], + "x-ms-correlation-request-id": [ "cc0b8227-7687-43e9-a856-c63772cb3ba3" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20230130T074342Z:cc0b8227-7687-43e9-a856-c63772cb3ba3" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:44:03 GMT" ] + "Date": [ "Mon, 30 Jan 2023 07:43:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1026" ], + "Content-Length": [ "1067" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"name\":\"ps_linker\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"xiaofanzhou@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2022-05-07T03:22:30.2928748Z\",\"lastModifiedBy\":\"xiaofanzhou@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2022-05-07T06:44:03.2367149Z\"},\"properties\":{\"provisioningState\":\"Accepted\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/postgres\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"name\":null,\"secretInfo\":{\"value\":null,\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"vNetSolution\":null,\"clientType\":\"none\",\"secretStore\":null,\"scope\":\"simple-hello-world-container\"}}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"name\":\"ps_linker\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"xiaofanzhou@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-01-30T07:43:40.9723171Z\",\"lastModifiedBy\":\"xiaofanzhou@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-01-30T07:43:40.9723171Z\"},\"properties\":{\"provisioningState\":\"Accepted\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/postgres\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"name\":null,\"secretInfo\":{\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"vNetSolution\":null,\"clientType\":\"none\",\"secretStore\":null,\"scope\":\"simple-hello-world-container\",\"publicNetworkSolution\":null,\"configurationInfo\":null}}" } }, - "New-AzServiceLinkerForContainerApp+[NoContext]+New storage connection+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/73fd2bbd-0dbb-4940-a5b0-31d1133ae26e*F3A831441F9BE538449AB2D6D310A20402B5E61A46EA88958FD088AC94F01F64?api-version=2022-05-01+2": { + "New-AzServiceLinkerForContainerApp+[NoContext]+New storage connection+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/dcce5c2b-d925-42ff-877f-cc79198812c1*F3A831441F9BE538449AB2D6D310A20402B5E61A46EA88958FD088AC94F01F64?api-version=2021-01-01-privatepreview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/73fd2bbd-0dbb-4940-a5b0-31d1133ae26e*F3A831441F9BE538449AB2D6D310A20402B5E61A46EA88958FD088AC94F01F64?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/dcce5c2b-d925-42ff-877f-cc79198812c1*F3A831441F9BE538449AB2D6D310A20402B5E61A46EA88958FD088AC94F01F64?api-version=2021-01-01-privatepreview", "Content": null, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "14" ], - "x-ms-client-request-id": [ "9fa6839c-c87b-4512-9cf1-a640242c92cd" ], + "x-ms-unique-id": [ "15" ], + "x-ms-client-request-id": [ "7d71c78e-f4a0-496d-8c94-7ab407fd607a" ], "CommandName": [ "Az.ServiceLinker.internal\\New-AzServiceLinker" ], "FullCommandName": [ "New-AzServiceLinker_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -58,32 +58,32 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"03008513-0000-0100-0000-627615420000\"" ], + "ETag": [ "\"b204c1a4-0000-0100-0000-63d775400000\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], - "x-ms-request-id": [ "a43e34c6-b705-48b7-985a-845eebc23fc1" ], - "x-ms-correlation-request-id": [ "30233233-e46f-4cc8-98bd-a436d259348b" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064434Z:30233233-e46f-4cc8-98bd-a436d259348b" ], + "x-ms-request-id": [ "d10f9c24-246b-4d14-b6bb-f01c97b6b028" ], + "x-ms-correlation-request-id": [ "7a615e89-e2e7-4cfd-b0af-f866627f1166" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20230130T074413Z:7a615e89-e2e7-4cfd-b0af-f866627f1166" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:44:34 GMT" ] + "Date": [ "Mon, 30 Jan 2023 07:44:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "830" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/73fd2bbd-0dbb-4940-a5b0-31d1133ae26e*F3A831441F9BE538449AB2D6D310A20402B5E61A46EA88958FD088AC94F01F64\",\"name\":\"73fd2bbd-0dbb-4940-a5b0-31d1133ae26e*F3A831441F9BE538449AB2D6D310A20402B5E61A46EA88958FD088AC94F01F64\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"status\":\"Succeeded\",\"startTime\":\"2022-05-07T06:44:03.7329314Z\",\"endTime\":\"2022-05-07T06:44:18.2775472Z\",\"properties\":{\"message\":\"Deny public network access is set to yes. Please confirm you are using private endpoint connection to access target resource.\"}}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/dcce5c2b-d925-42ff-877f-cc79198812c1*F3A831441F9BE538449AB2D6D310A20402B5E61A46EA88958FD088AC94F01F64\",\"name\":\"dcce5c2b-d925-42ff-877f-cc79198812c1*F3A831441F9BE538449AB2D6D310A20402B5E61A46EA88958FD088AC94F01F64\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"status\":\"Succeeded\",\"startTime\":\"2023-01-30T07:43:42.1523561Z\",\"endTime\":\"2023-01-30T07:44:00.8291778Z\",\"properties\":{\"Message\":\"Deny public network access is set to yes. Please confirm you are using private endpoint connection to access target resource.\"}}" } }, - "New-AzServiceLinkerForContainerApp+[NoContext]+New storage connection+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-05-01+3": { + "New-AzServiceLinkerForContainerApp+[NoContext]+New storage connection+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-11-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-05-01", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-11-01-preview", "Content": null, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "15" ], - "x-ms-client-request-id": [ "9fa6839c-c87b-4512-9cf1-a640242c92cd" ], + "x-ms-unique-id": [ "16" ], + "x-ms-client-request-id": [ "7d71c78e-f4a0-496d-8c94-7ab407fd607a" ], "CommandName": [ "Az.ServiceLinker.internal\\New-AzServiceLinker" ], "FullCommandName": [ "New-AzServiceLinker_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -97,34 +97,33 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"3a00c471-0000-0100-0000-627615420000\"" ], - "Vary": [ "Accept-Encoding" ], + "ETag": [ "\"eb000b43-0000-0100-0000-63d775400000\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "e52f3b93-3125-4497-bd63-cd1a5dedf15c" ], + "mise-correlation-id": [ "bb686ff6-6396-4780-9bce-4cd1b7f9474f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9ddb8e20-88b1-48e0-9eec-51eedf47ab85" ], - "x-ms-correlation-request-id": [ "033c2dc0-4fd4-48f7-ab8c-46d6a7fe6017" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064435Z:033c2dc0-4fd4-48f7-ab8c-46d6a7fe6017" ], + "x-ms-request-id": [ "0df54728-acf6-4a00-ae06-a9232a22b474" ], + "x-ms-correlation-request-id": [ "637b390a-bb44-4d95-a50d-bdab91523e1f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20230130T074414Z:637b390a-bb44-4d95-a50d-bdab91523e1f" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:44:34 GMT" ] + "Date": [ "Mon, 30 Jan 2023 07:44:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "785" ], + "Content-Length": [ "1068" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"name\":\"ps_linker\",\"type\":\"microsoft.servicelinker/linkers\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/postgres\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"name\":null,\"secretInfo\":{\"value\":null,\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"none\",\"scope\":\"simple-hello-world-container\",\"vNetSolution\":null,\"secretStore\":null}}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"name\":\"ps_linker\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"xiaofanzhou@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-01-30T07:43:40.9723171Z\",\"lastModifiedBy\":\"xiaofanzhou@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-01-30T07:43:40.9723171Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/postgres\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"name\":null,\"secretInfo\":{\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"none\",\"scope\":\"simple-hello-world-container\",\"vNetSolution\":null,\"secretStore\":null}}" } }, - "New-AzServiceLinkerForContainerApp+[NoContext]+New storage connection+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers?api-version=2022-05-01+4": { + "New-AzServiceLinkerForContainerApp+[NoContext]+New storage connection+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers?api-version=2022-11-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers?api-version=2022-05-01", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers?api-version=2022-11-01-preview", "Content": null, "Headers": { - "x-ms-unique-id": [ "16" ], - "x-ms-client-request-id": [ "aa86b17b-5717-48f2-b0e3-412382a1e180" ], + "x-ms-unique-id": [ "17" ], + "x-ms-client-request-id": [ "a6465aa2-04a4-4060-aa06-0f8654b246b5" ], "CommandName": [ "Az.ServiceLinker.internal\\Get-AzServiceLinker" ], "FullCommandName": [ "Get-AzServiceLinker_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -139,23 +138,22 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "96881402-6a9e-4bfe-8681-9b392da770eb" ], + "mise-correlation-id": [ "942b2cb1-f57c-48bc-a78e-747c5a31cb03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0af39d0c-d7c9-4edc-a0a1-af633d87bf52" ], - "x-ms-correlation-request-id": [ "4249a53f-fde3-45bf-b02f-c9da3b2010ef" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064435Z:4249a53f-fde3-45bf-b02f-c9da3b2010ef" ], + "x-ms-request-id": [ "992ca6fe-6112-4c53-85c9-0af126398488" ], + "x-ms-correlation-request-id": [ "1cde2567-041a-46aa-8b08-a5b8129cd615" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20230130T074415Z:1cde2567-041a-46aa-8b08-a5b8129cd615" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:44:35 GMT" ] + "Date": [ "Mon, 30 Jan 2023 07:44:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1642" ], + "Content-Length": [ "15499" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"name\":\"preparedLinker\",\"type\":\"microsoft.servicelinker/linkers\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/xichen-postgresql/databases/testdb\",\"resourceProperties\":{\"connectAsKubernetesCsiDriver\":false,\"type\":\"KeyVault\"},\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"xichen\",\"secretInfo\":{\"value\":null,\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"dotnet\",\"scope\":\"simple-hello-world-container\",\"vNetSolution\":null,\"secretStore\":null}},{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"name\":\"ps_linker\",\"type\":\"microsoft.servicelinker/linkers\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/postgres\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"name\":null,\"secretInfo\":{\"value\":null,\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"none\",\"scope\":\"simple-hello-world-container\",\"vNetSolution\":null,\"secretStore\":null}}]}" + "Content": "{\"value\":[{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/storageblob_42dda\",\"name\":\"storageblob_42dda\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"qianwens@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2022-05-10T11:37:01.553663Z\",\"lastModifiedBy\":\"qianwens@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2022-05-10T11:37:01.553663Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Storage/storageAccounts/xichenstorage/blobServices/default\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"roles\":null,\"userName\":null,\"authType\":\"systemAssignedIdentity\",\"deleteOrUpdateBehavior\":null},\"clientType\":\"none\",\"scope\":\"simple-hello-world-container\",\"vNetSolution\":null,\"secretStore\":null}},{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/CT133071819614260455\",\"name\":\"CT133071819614260455\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"d0489f1b-17fd-4924-95a9-9054374b6eff\",\"createdByType\":\"Application\",\"createdAt\":\"2022-09-09T07:26:04.4305254Z\",\"lastModifiedBy\":\"d0489f1b-17fd-4924-95a9-9054374b6eff\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2022-09-09T07:26:04.4305254Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.SignalRService/WebPubSub/servicelinker-webpubsub-canarytest\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"subscriptionId\":\"937bc588-a144-4083-8612-5f9ffbbddb14\",\"clientId\":\"54c572a9-859e-4427-bba1-5b356c0f51da\",\"roles\":null,\"authType\":\"userAssignedIdentity\",\"deleteOrUpdateBehavior\":null},\"clientType\":\"dotnet\",\"scope\":\"simple-hello-world-container\",\"vNetSolution\":null,\"secretStore\":null}},{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/CT133071834490324847\",\"name\":\"CT133071834490324847\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"d0489f1b-17fd-4924-95a9-9054374b6eff\",\"createdByType\":\"Application\",\"createdAt\":\"2022-09-09T07:50:51.7181265Z\",\"lastModifiedBy\":\"d0489f1b-17fd-4924-95a9-9054374b6eff\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2022-09-09T07:50:51.7181265Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.SignalRService/WebPubSub/servicelinker-webpubsub-canarytest\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"subscriptionId\":\"937bc588-a144-4083-8612-5f9ffbbddb14\",\"clientId\":\"54c572a9-859e-4427-bba1-5b356c0f51da\",\"roles\":null,\"authType\":\"userAssignedIdentity\",\"deleteOrUpdateBehavior\":null},\"clientType\":\"dotnet\",\"scope\":\"simple-hello-world-container\",\"vNetSolution\":null,\"secretStore\":null}},{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/CT133075146297572441\",\"name\":\"CT133075146297572441\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"d0489f1b-17fd-4924-95a9-9054374b6eff\",\"createdByType\":\"Application\",\"createdAt\":\"2022-09-13T03:50:32.2444355Z\",\"lastModifiedBy\":\"d0489f1b-17fd-4924-95a9-9054374b6eff\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2022-09-13T03:50:32.2444355Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.SignalRService/WebPubSub/servicelinker-webpubsub-canarytest\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"subscriptionId\":\"937bc588-a144-4083-8612-5f9ffbbddb14\",\"clientId\":\"54c572a9-859e-4427-bba1-5b356c0f51da\",\"roles\":null,\"authType\":\"userAssignedIdentity\",\"deleteOrUpdateBehavior\":null},\"clientType\":\"dotnet\",\"scope\":\"simple-hello-world-container\",\"vNetSolution\":null,\"secretStore\":null}},{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/CT133075261430617046\",\"name\":\"CT133075261430617046\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"d0489f1b-17fd-4924-95a9-9054374b6eff\",\"createdByType\":\"Application\",\"createdAt\":\"2022-09-13T07:02:25.313822Z\",\"lastModifiedBy\":\"d0489f1b-17fd-4924-95a9-9054374b6eff\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2022-09-13T07:02:25.313822Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.SignalRService/WebPubSub/servicelinker-webpubsub-canarytest\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"subscriptionId\":\"937bc588-a144-4083-8612-5f9ffbbddb14\",\"clientId\":\"54c572a9-859e-4427-bba1-5b356c0f51da\",\"roles\":null,\"authType\":\"userAssignedIdentity\",\"deleteOrUpdateBehavior\":null},\"clientType\":\"dotnet\",\"scope\":\"simple-hello-world-container\",\"vNetSolution\":null,\"secretStore\":null}},{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/CT133075265767517502\",\"name\":\"CT133075265767517502\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"d0489f1b-17fd-4924-95a9-9054374b6eff\",\"createdByType\":\"Application\",\"createdAt\":\"2022-09-13T07:09:38.4708422Z\",\"lastModifiedBy\":\"d0489f1b-17fd-4924-95a9-9054374b6eff\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2022-09-13T07:09:38.4708422Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.SignalRService/WebPubSub/servicelinker-webpubsub-canarytest\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"subscriptionId\":\"937bc588-a144-4083-8612-5f9ffbbddb14\",\"clientId\":\"54c572a9-859e-4427-bba1-5b356c0f51da\",\"roles\":null,\"authType\":\"userAssignedIdentity\",\"deleteOrUpdateBehavior\":null},\"clientType\":\"dotnet\",\"scope\":\"simple-hello-world-container\",\"vNetSolution\":null,\"secretStore\":null}},{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/CT133135769978116626\",\"name\":\"CT133135769978116626\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"d0489f1b-17fd-4924-95a9-9054374b6eff\",\"createdByType\":\"Application\",\"createdAt\":\"2022-11-22T07:50:00.1469792Z\",\"lastModifiedBy\":\"d0489f1b-17fd-4924-95a9-9054374b6eff\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2022-11-22T07:50:00.1469792Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Failed\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.SignalRService/WebPubSub/servicelinker-webpubsub-canarytest\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"subscriptionId\":\"937bc588-a144-4083-8612-5f9ffbbddb14\",\"clientId\":\"5e18f16a-0cc9-4eb2-9277-fe7c6700c785\",\"roles\":null,\"authType\":\"userAssignedIdentity\",\"deleteOrUpdateBehavior\":\"Default\"},\"clientType\":\"dotnet\",\"scope\":\"simple-hello-world-container\",\"vNetSolution\":null,\"secretStore\":null}},{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/CT133152984086850559\",\"name\":\"CT133152984086850559\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"d0489f1b-17fd-4924-95a9-9054374b6eff\",\"createdByType\":\"Application\",\"createdAt\":\"2022-12-12T06:00:40.9553357Z\",\"lastModifiedBy\":\"d0489f1b-17fd-4924-95a9-9054374b6eff\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2022-12-12T06:00:40.9553357Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.SignalRService/SignalR/servicelinker-signalr\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"clientId\":\"323f212a-568e-44b5-b296-abaad161b929\",\"principalId\":\"b2ffa9f4-02a3-4cdb-9333-4f494db9693d\",\"roles\":null,\"authType\":\"servicePrincipalSecret\",\"deleteOrUpdateBehavior\":\"Default\"},\"clientType\":\"dotnet\",\"scope\":\"simple-hello-world-container\",\"vNetSolution\":null,\"secretStore\":null}},{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/CT133153789828091558\",\"name\":\"CT133153789828091558\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"d0489f1b-17fd-4924-95a9-9054374b6eff\",\"createdByType\":\"Application\",\"createdAt\":\"2022-12-13T04:23:04.7629589Z\",\"lastModifiedBy\":\"d0489f1b-17fd-4924-95a9-9054374b6eff\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2022-12-13T04:23:04.7629589Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Failed\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.SignalRService/WebPubSub/servicelinker-webpubsub-canarytest\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"subscriptionId\":\"937bc588-a144-4083-8612-5f9ffbbddb14\",\"clientId\":\"5e18f16a-0cc9-4eb2-9277-fe7c6700c785\",\"roles\":null,\"authType\":\"userAssignedIdentity\",\"deleteOrUpdateBehavior\":\"Default\"},\"clientType\":\"dotnet\",\"scope\":\"simple-hello-world-container\",\"vNetSolution\":null,\"secretStore\":null}},{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/CT133154596106083573\",\"name\":\"CT133154596106083573\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"d0489f1b-17fd-4924-95a9-9054374b6eff\",\"createdByType\":\"Application\",\"createdAt\":\"2022-12-14T02:47:22.440963Z\",\"lastModifiedBy\":\"d0489f1b-17fd-4924-95a9-9054374b6eff\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2022-12-14T02:47:22.440963Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourcegroups/servicelinker-test-linux-group/providers/Microsoft.AppConfiguration/configurationStores/servicelinker-app-configuration\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"roles\":null,\"userName\":null,\"authType\":\"systemAssignedIdentity\",\"deleteOrUpdateBehavior\":\"Default\"},\"clientType\":\"dotnet\",\"scope\":\"simple-hello-world-container\",\"vNetSolution\":null,\"secretStore\":null}},{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/CT133154639039154615\",\"name\":\"CT133154639039154615\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"d0489f1b-17fd-4924-95a9-9054374b6eff\",\"createdByType\":\"Application\",\"createdAt\":\"2022-12-14T03:59:05.4239822Z\",\"lastModifiedBy\":\"d0489f1b-17fd-4924-95a9-9054374b6eff\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2022-12-14T03:59:05.4239822Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourcegroups/servicelinker-test-linux-group/providers/Microsoft.AppConfiguration/configurationStores/servicelinker-app-configuration\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"roles\":null,\"userName\":null,\"authType\":\"systemAssignedIdentity\",\"deleteOrUpdateBehavior\":\"Default\"},\"clientType\":\"dotnet\",\"scope\":\"simple-hello-world-container\",\"vNetSolution\":null,\"secretStore\":null}},{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"name\":\"preparedLinker\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"xiaofanzhou@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-01-30T03:37:04.9479159Z\",\"lastModifiedBy\":\"xiaofanzhou@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-01-30T05:24:32.2335746Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppConfiguration/configurationStores/servicelinker-app-configuration\",\"resourceProperties\":{\"connectAsKubernetesCsiDriver\":false,\"type\":\"KeyVault\"},\"type\":\"AzureResource\"},\"authInfo\":{\"roles\":[],\"userName\":null,\"authType\":\"systemAssignedIdentity\",\"deleteOrUpdateBehavior\":null},\"clientType\":\"dotnet\",\"scope\":\"simple-hello-world-container\",\"vNetSolution\":null,\"secretStore\":null}},{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"name\":\"ps_linker\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"xiaofanzhou@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-01-30T07:43:40.9723171Z\",\"lastModifiedBy\":\"xiaofanzhou@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-01-30T07:43:40.9723171Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/postgres\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"name\":null,\"secretInfo\":{\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"none\",\"scope\":\"simple-hello-world-container\",\"vNetSolution\":null,\"secretStore\":null}}]}" } } } \ No newline at end of file diff --git a/src/ServiceLinker/test/New-AzServiceLinkerForSpringCloud.Recording.json b/src/ServiceLinker/test/New-AzServiceLinkerForSpringCloud.Recording.json deleted file mode 100644 index 32b62b49d677..000000000000 --- a/src/ServiceLinker/test/New-AzServiceLinkerForSpringCloud.Recording.json +++ /dev/null @@ -1,164 +0,0 @@ -{ - "New-AzServiceLinkerForSpringCloud+[NoContext]+CreateExpanded+$PUT+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-05-01+1": { - "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-05-01", - "Content": "{\n \"properties\": {\n \"targetService\": {\n \"type\": \"AzureResource\",\n \"id\": \"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.KeyVault/vaults/servicelinker-test-kv\"\n },\n \"authInfo\": {\n \"authType\": \"systemAssignedIdentity\"\n },\n \"clientType\": \"none\"\n }\n}", - "Headers": { - "x-ms-serviceconnector-user-token": [ "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImpTMVhvMU9XRGpfNTJ2YndHTmd2UU8yVnpNYyIsImtpZCI6ImpTMVhvMU9XRGpfNTJ2YndHTmd2UU8yVnpNYyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNjUxOTAyNDY5LCJuYmYiOjE2NTE5MDI0NjksImV4cCI6MTY1MTkwNzYyMSwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzL2IwYTlkM2M2LTMzODctNDA2Ny05ZjAzLTM5ODA4ZTcyOTFmZi9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVZRQXEvOFRBQUFBY3dtVlJNQlJ2ektLbEdQR2hDWFJOc3ptUCthYzRCNHlGSnVjRE9RWmZFQ3YwWXovRXNNS3BGRzRmakUwU3NLSEsyZXA5WmxFNXAvYktUdmJHaWRtTEg3alkzRzN4a3JQcGphTm5kYTY3Rjg9IiwiYW1yIjpbInB3ZCIsInJzYSIsIm1mYSJdLCJhcHBpZCI6IjE5NTBhMjU4LTIyN2ItNGUzMS1hOWNmLTcxNzQ5NTk0NWZjMiIsImFwcGlkYWNyIjoiMCIsImZhbWlseV9uYW1lIjoiWmhvdSIsImdpdmVuX25hbWUiOiJYaWFvZmFuIiwiaXBhZGRyIjoiMTY3LjIyMC4yNTUuNzkiLCJuYW1lIjoiWGlhb2ZhbiBaaG91Iiwib2lkIjoiYjBhOWQzYzYtMzM4Ny00MDY3LTlmMDMtMzk4MDhlNzI5MWZmIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxNDY3NzMwODUtOTAzMzYzMjg1LTcxOTM0NDcwNy0yNzEyMTMzIiwicHVpZCI6IjEwMDMyMDAxMjZBMzAwMkIiLCJyaCI6IjAuQVFFQXY0ajVjdkdHcjBHUnF5MTgwQkhiUjBaSWYza0F1dGRQdWtQYXdmajJNQk1hQUhRLiIsInNjcCI6InVzZXJfaW1wZXJzb25hdGlvbiIsInN1YiI6ImladElGXzE1MWZNTHowUVQ5dHhrSk9LR2ZLZENpcWtuaWNQdlh6M202MmciLCJ0aWQiOiI3MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDciLCJ1bmlxdWVfbmFtZSI6InhpYW9mYW56aG91QG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJ4aWFvZmFuemhvdUBtaWNyb3NvZnQuY29tIiwidXRpIjoiY1ZaQ1NNeHlqRWV1MTZ4U0I3Z0VBQSIsInZlciI6IjEuMCIsIndpZHMiOlsiYjc5ZmJmNGQtM2VmOS00Njg5LTgxNDMtNzZiMTk0ZTg1NTA5Il0sInhtc190Y2R0IjoxMjg5MjQxNTQ3fQ.jpMZv8CkO1jf6a9MHZTW94Uynz7Uuhiudrv0ozgQtAnI7Q_gDv_NaiFMpNiqveez2QPQQ7R-T6ldxoycFxkZUCcOu73OTTKsigXEe79osCdcMVqaKPFpHKgmVRtL6e-cBOOhACUDw0MxNcd9hg1DV1mEWQhZHlhEVB5DZo7kMesKsOgUyobIVSB07rz6pRBLj3MYo7sqB7qjnaM6ys732UyuuPhQzez2N96EW6f9vEc-2nsihklEDEhj2BhKWZy5DbXIOeXM7QM2-oaXHKpDxTViI3eEESN7VKFfdUgKbYyLyt6Fqvjbv5PEi7whkt1JXUcDxfb00ve4PNNzM2Vd8g" ] - }, - "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "349" ] - } - }, - "Response": { - "StatusCode": 201, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"f500fdbd-0000-0200-0000-6276155b0000\"" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "1d5579d0-1cf2-4159-bb4e-f01503136b77" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/afcafe99-5ef9-4709-951d-940c07bcaed6*FF9853222A32BCC2A8434BCA00837B5104E7175F34B3F417895F59A43CD06D0C?api-version=2022-05-01" ], - "x-ms-request-id": [ "afcafe99-5ef9-4709-951d-940c07bcaed6" ], - "x-ms-correlation-request-id": [ "1f4772e3-080a-4dfd-b19e-fd9198236023" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064443Z:1f4772e3-080a-4dfd-b19e-fd9198236023" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:44:43 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "955" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"name\":\"ps_linker\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"xiaofanzhou@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2022-05-07T06:44:43.1586943Z\",\"lastModifiedBy\":\"xiaofanzhou@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2022-05-07T06:44:43.1586943Z\"},\"properties\":{\"provisioningState\":\"Accepted\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.KeyVault/vaults/servicelinker-test-kv\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"authType\":\"systemAssignedIdentity\"},\"vNetSolution\":null,\"clientType\":\"none\",\"secretStore\":null,\"scope\":null}}" - } - }, - "New-AzServiceLinkerForSpringCloud+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/afcafe99-5ef9-4709-951d-940c07bcaed6*FF9853222A32BCC2A8434BCA00837B5104E7175F34B3F417895F59A43CD06D0C?api-version=2022-05-01+2": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/afcafe99-5ef9-4709-951d-940c07bcaed6*FF9853222A32BCC2A8434BCA00837B5104E7175F34B3F417895F59A43CD06D0C?api-version=2022-05-01", - "Content": null, - "Headers": { - "x-ms-serviceconnector-user-token": [ "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImpTMVhvMU9XRGpfNTJ2YndHTmd2UU8yVnpNYyIsImtpZCI6ImpTMVhvMU9XRGpfNTJ2YndHTmd2UU8yVnpNYyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNjUxOTAyNDY5LCJuYmYiOjE2NTE5MDI0NjksImV4cCI6MTY1MTkwNzYyMSwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzL2IwYTlkM2M2LTMzODctNDA2Ny05ZjAzLTM5ODA4ZTcyOTFmZi9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVZRQXEvOFRBQUFBY3dtVlJNQlJ2ektLbEdQR2hDWFJOc3ptUCthYzRCNHlGSnVjRE9RWmZFQ3YwWXovRXNNS3BGRzRmakUwU3NLSEsyZXA5WmxFNXAvYktUdmJHaWRtTEg3alkzRzN4a3JQcGphTm5kYTY3Rjg9IiwiYW1yIjpbInB3ZCIsInJzYSIsIm1mYSJdLCJhcHBpZCI6IjE5NTBhMjU4LTIyN2ItNGUzMS1hOWNmLTcxNzQ5NTk0NWZjMiIsImFwcGlkYWNyIjoiMCIsImZhbWlseV9uYW1lIjoiWmhvdSIsImdpdmVuX25hbWUiOiJYaWFvZmFuIiwiaXBhZGRyIjoiMTY3LjIyMC4yNTUuNzkiLCJuYW1lIjoiWGlhb2ZhbiBaaG91Iiwib2lkIjoiYjBhOWQzYzYtMzM4Ny00MDY3LTlmMDMtMzk4MDhlNzI5MWZmIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxNDY3NzMwODUtOTAzMzYzMjg1LTcxOTM0NDcwNy0yNzEyMTMzIiwicHVpZCI6IjEwMDMyMDAxMjZBMzAwMkIiLCJyaCI6IjAuQVFFQXY0ajVjdkdHcjBHUnF5MTgwQkhiUjBaSWYza0F1dGRQdWtQYXdmajJNQk1hQUhRLiIsInNjcCI6InVzZXJfaW1wZXJzb25hdGlvbiIsInN1YiI6ImladElGXzE1MWZNTHowUVQ5dHhrSk9LR2ZLZENpcWtuaWNQdlh6M202MmciLCJ0aWQiOiI3MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDciLCJ1bmlxdWVfbmFtZSI6InhpYW9mYW56aG91QG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJ4aWFvZmFuemhvdUBtaWNyb3NvZnQuY29tIiwidXRpIjoiY1ZaQ1NNeHlqRWV1MTZ4U0I3Z0VBQSIsInZlciI6IjEuMCIsIndpZHMiOlsiYjc5ZmJmNGQtM2VmOS00Njg5LTgxNDMtNzZiMTk0ZTg1NTA5Il0sInhtc190Y2R0IjoxMjg5MjQxNTQ3fQ.jpMZv8CkO1jf6a9MHZTW94Uynz7Uuhiudrv0ozgQtAnI7Q_gDv_NaiFMpNiqveez2QPQQ7R-T6ldxoycFxkZUCcOu73OTTKsigXEe79osCdcMVqaKPFpHKgmVRtL6e-cBOOhACUDw0MxNcd9hg1DV1mEWQhZHlhEVB5DZo7kMesKsOgUyobIVSB07rz6pRBLj3MYo7sqB7qjnaM6ys732UyuuPhQzez2N96EW6f9vEc-2nsihklEDEhj2BhKWZy5DbXIOeXM7QM2-oaXHKpDxTViI3eEESN7VKFfdUgKbYyLyt6Fqvjbv5PEi7whkt1JXUcDxfb00ve4PNNzM2Vd8g" ], - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "18" ], - "x-ms-client-request-id": [ "708a6e0d-1d0f-4143-8c48-c8d9a4a71288" ], - "CommandName": [ "Az.ServiceLinker.internal\\New-AzServiceLinker" ], - "FullCommandName": [ "New-AzServiceLinker_CreateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"03008b13-0000-0100-0000-627615630000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], - "x-ms-request-id": [ "0efd4b1b-caa2-4140-8d24-9f4b6c0224c3" ], - "x-ms-correlation-request-id": [ "ecabfeaa-a1bb-4d7e-b3ab-7987cd91ee15" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064514Z:ecabfeaa-a1bb-4d7e-b3ab-7987cd91ee15" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:45:13 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "726" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/afcafe99-5ef9-4709-951d-940c07bcaed6*FF9853222A32BCC2A8434BCA00837B5104E7175F34B3F417895F59A43CD06D0C\",\"name\":\"afcafe99-5ef9-4709-951d-940c07bcaed6*FF9853222A32BCC2A8434BCA00837B5104E7175F34B3F417895F59A43CD06D0C\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"status\":\"Succeeded\",\"startTime\":\"2022-05-07T06:44:43.5535107Z\",\"endTime\":\"2022-05-07T06:44:51.2635751Z\",\"properties\":{}}" - } - }, - "New-AzServiceLinkerForSpringCloud+[NoContext]+CreateExpanded+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-05-01+3": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-05-01", - "Content": null, - "Headers": { - "x-ms-serviceconnector-user-token": [ "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImpTMVhvMU9XRGpfNTJ2YndHTmd2UU8yVnpNYyIsImtpZCI6ImpTMVhvMU9XRGpfNTJ2YndHTmd2UU8yVnpNYyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNjUxOTAyNDY5LCJuYmYiOjE2NTE5MDI0NjksImV4cCI6MTY1MTkwNzYyMSwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzL2IwYTlkM2M2LTMzODctNDA2Ny05ZjAzLTM5ODA4ZTcyOTFmZi9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVZRQXEvOFRBQUFBY3dtVlJNQlJ2ektLbEdQR2hDWFJOc3ptUCthYzRCNHlGSnVjRE9RWmZFQ3YwWXovRXNNS3BGRzRmakUwU3NLSEsyZXA5WmxFNXAvYktUdmJHaWRtTEg3alkzRzN4a3JQcGphTm5kYTY3Rjg9IiwiYW1yIjpbInB3ZCIsInJzYSIsIm1mYSJdLCJhcHBpZCI6IjE5NTBhMjU4LTIyN2ItNGUzMS1hOWNmLTcxNzQ5NTk0NWZjMiIsImFwcGlkYWNyIjoiMCIsImZhbWlseV9uYW1lIjoiWmhvdSIsImdpdmVuX25hbWUiOiJYaWFvZmFuIiwiaXBhZGRyIjoiMTY3LjIyMC4yNTUuNzkiLCJuYW1lIjoiWGlhb2ZhbiBaaG91Iiwib2lkIjoiYjBhOWQzYzYtMzM4Ny00MDY3LTlmMDMtMzk4MDhlNzI5MWZmIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxNDY3NzMwODUtOTAzMzYzMjg1LTcxOTM0NDcwNy0yNzEyMTMzIiwicHVpZCI6IjEwMDMyMDAxMjZBMzAwMkIiLCJyaCI6IjAuQVFFQXY0ajVjdkdHcjBHUnF5MTgwQkhiUjBaSWYza0F1dGRQdWtQYXdmajJNQk1hQUhRLiIsInNjcCI6InVzZXJfaW1wZXJzb25hdGlvbiIsInN1YiI6ImladElGXzE1MWZNTHowUVQ5dHhrSk9LR2ZLZENpcWtuaWNQdlh6M202MmciLCJ0aWQiOiI3MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDciLCJ1bmlxdWVfbmFtZSI6InhpYW9mYW56aG91QG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJ4aWFvZmFuemhvdUBtaWNyb3NvZnQuY29tIiwidXRpIjoiY1ZaQ1NNeHlqRWV1MTZ4U0I3Z0VBQSIsInZlciI6IjEuMCIsIndpZHMiOlsiYjc5ZmJmNGQtM2VmOS00Njg5LTgxNDMtNzZiMTk0ZTg1NTA5Il0sInhtc190Y2R0IjoxMjg5MjQxNTQ3fQ.jpMZv8CkO1jf6a9MHZTW94Uynz7Uuhiudrv0ozgQtAnI7Q_gDv_NaiFMpNiqveez2QPQQ7R-T6ldxoycFxkZUCcOu73OTTKsigXEe79osCdcMVqaKPFpHKgmVRtL6e-cBOOhACUDw0MxNcd9hg1DV1mEWQhZHlhEVB5DZo7kMesKsOgUyobIVSB07rz6pRBLj3MYo7sqB7qjnaM6ys732UyuuPhQzez2N96EW6f9vEc-2nsihklEDEhj2BhKWZy5DbXIOeXM7QM2-oaXHKpDxTViI3eEESN7VKFfdUgKbYyLyt6Fqvjbv5PEi7whkt1JXUcDxfb00ve4PNNzM2Vd8g" ], - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "19" ], - "x-ms-client-request-id": [ "708a6e0d-1d0f-4143-8c48-c8d9a4a71288" ], - "CommandName": [ "Az.ServiceLinker.internal\\New-AzServiceLinker" ], - "FullCommandName": [ "New-AzServiceLinker_CreateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"3a003b72-0000-0100-0000-627615630000\"" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11986" ], - "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "acb91e5e-c2cc-417d-8ec3-7ff1d210a3f3" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2c7bae3f-d33c-4e20-a30e-c2de9b6966c3" ], - "x-ms-correlation-request-id": [ "37aafcdc-46b6-4adc-ae7f-0758a2ab5eb0" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064514Z:37aafcdc-46b6-4adc-ae7f-0758a2ab5eb0" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:45:14 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "714" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"name\":\"ps_linker\",\"type\":\"microsoft.servicelinker/linkers\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.KeyVault/vaults/servicelinker-test-kv\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"authType\":\"systemAssignedIdentity\"},\"clientType\":\"none\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}}" - } - }, - "New-AzServiceLinkerForSpringCloud+[NoContext]+CreateExpanded+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers?api-version=2022-05-01+4": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers?api-version=2022-05-01", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "20" ], - "x-ms-client-request-id": [ "041c6203-a7af-4c3d-bbec-a68b985f5100" ], - "CommandName": [ "Az.ServiceLinker.internal\\Get-AzServiceLinker" ], - "FullCommandName": [ "Get-AzServiceLinker_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11985" ], - "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "735440f9-ecd7-4f5a-a1b4-479a378894f2" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5ff81433-5a55-418f-b863-fe35a3bf447f" ], - "x-ms-correlation-request-id": [ "52300af9-d35d-4857-b608-fdadd95e782d" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064515Z:52300af9-d35d-4857-b608-fdadd95e782d" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:45:15 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1593" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"name\":\"preparedLinker\",\"type\":\"microsoft.servicelinker/linkers\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/pollsdb\",\"resourceProperties\":{\"connectAsKubernetesCsiDriver\":false,\"type\":\"KeyVault\"},\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"servicelinker\",\"secretInfo\":{\"value\":null,\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"dotnet\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}},{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"name\":\"ps_linker\",\"type\":\"microsoft.servicelinker/linkers\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.KeyVault/vaults/servicelinker-test-kv\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"authType\":\"systemAssignedIdentity\"},\"clientType\":\"none\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}}]}" - } - } -} \ No newline at end of file diff --git a/src/ServiceLinker/test/New-AzServiceLinkerForWebApp.Recording.json b/src/ServiceLinker/test/New-AzServiceLinkerForWebApp.Recording.json index a67a9e3a327e..97fe7a39e34a 100644 --- a/src/ServiceLinker/test/New-AzServiceLinkerForWebApp.Recording.json +++ b/src/ServiceLinker/test/New-AzServiceLinkerForWebApp.Recording.json @@ -1,15 +1,15 @@ { - "New-AzServiceLinkerForWebApp+[NoContext]+New Key Vault connection+$PUT+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-05-01+1": { + "New-AzServiceLinkerForWebApp+[NoContext]+New postgresql connection+$PUT+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-11-01-preview+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-05-01", - "Content": "{\n \"properties\": {\n \"targetService\": {\n \"type\": \"AzureResource\",\n \"id\": \"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.KeyVault/vaults/servicelinker-test-kv\"\n },\n \"authInfo\": {\n \"authType\": \"systemAssignedIdentity\"\n },\n \"clientType\": \"none\"\n }\n}", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-11-01-preview", + "Content": "{\r\n \"properties\": {\r\n \"targetService\": {\r\n \"type\": \"AzureResource\",\r\n \"id\": \"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/postgres\"\r\n },\r\n \"authInfo\": {\r\n \"authType\": \"secret\",\r\n \"name\": \"servicelinker\",\r\n \"secretInfo\": {\r\n \"secretType\": \"keyVaultSecretUri\",\r\n \"value\": \"https://servicelinker-kv-ref.vault.azure.net/secrets/azure-mysql-host-28449/cc5d8095a54f4755b342f4e7884b5c84\"\r\n }\r\n },\r\n \"clientType\": \"none\"\r\n }\r\n}", + "isContentBase64": false, "Headers": { - "x-ms-serviceconnector-user-token": [ "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImpTMVhvMU9XRGpfNTJ2YndHTmd2UU8yVnpNYyIsImtpZCI6ImpTMVhvMU9XRGpfNTJ2YndHTmd2UU8yVnpNYyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNjUxOTAyNDY5LCJuYmYiOjE2NTE5MDI0NjksImV4cCI6MTY1MTkwNzYyMSwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzL2IwYTlkM2M2LTMzODctNDA2Ny05ZjAzLTM5ODA4ZTcyOTFmZi9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVZRQXEvOFRBQUFBY3dtVlJNQlJ2ektLbEdQR2hDWFJOc3ptUCthYzRCNHlGSnVjRE9RWmZFQ3YwWXovRXNNS3BGRzRmakUwU3NLSEsyZXA5WmxFNXAvYktUdmJHaWRtTEg3alkzRzN4a3JQcGphTm5kYTY3Rjg9IiwiYW1yIjpbInB3ZCIsInJzYSIsIm1mYSJdLCJhcHBpZCI6IjE5NTBhMjU4LTIyN2ItNGUzMS1hOWNmLTcxNzQ5NTk0NWZjMiIsImFwcGlkYWNyIjoiMCIsImZhbWlseV9uYW1lIjoiWmhvdSIsImdpdmVuX25hbWUiOiJYaWFvZmFuIiwiaXBhZGRyIjoiMTY3LjIyMC4yNTUuNzkiLCJuYW1lIjoiWGlhb2ZhbiBaaG91Iiwib2lkIjoiYjBhOWQzYzYtMzM4Ny00MDY3LTlmMDMtMzk4MDhlNzI5MWZmIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxNDY3NzMwODUtOTAzMzYzMjg1LTcxOTM0NDcwNy0yNzEyMTMzIiwicHVpZCI6IjEwMDMyMDAxMjZBMzAwMkIiLCJyaCI6IjAuQVFFQXY0ajVjdkdHcjBHUnF5MTgwQkhiUjBaSWYza0F1dGRQdWtQYXdmajJNQk1hQUhRLiIsInNjcCI6InVzZXJfaW1wZXJzb25hdGlvbiIsInN1YiI6ImladElGXzE1MWZNTHowUVQ5dHhrSk9LR2ZLZENpcWtuaWNQdlh6M202MmciLCJ0aWQiOiI3MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDciLCJ1bmlxdWVfbmFtZSI6InhpYW9mYW56aG91QG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJ4aWFvZmFuemhvdUBtaWNyb3NvZnQuY29tIiwidXRpIjoiY1ZaQ1NNeHlqRWV1MTZ4U0I3Z0VBQSIsInZlciI6IjEuMCIsIndpZHMiOlsiYjc5ZmJmNGQtM2VmOS00Njg5LTgxNDMtNzZiMTk0ZTg1NTA5Il0sInhtc190Y2R0IjoxMjg5MjQxNTQ3fQ.jpMZv8CkO1jf6a9MHZTW94Uynz7Uuhiudrv0ozgQtAnI7Q_gDv_NaiFMpNiqveez2QPQQ7R-T6ldxoycFxkZUCcOu73OTTKsigXEe79osCdcMVqaKPFpHKgmVRtL6e-cBOOhACUDw0MxNcd9hg1DV1mEWQhZHlhEVB5DZo7kMesKsOgUyobIVSB07rz6pRBLj3MYo7sqB7qjnaM6ys732UyuuPhQzez2N96EW6f9vEc-2nsihklEDEhj2BhKWZy5DbXIOeXM7QM2-oaXHKpDxTViI3eEESN7VKFfdUgKbYyLyt6Fqvjbv5PEi7whkt1JXUcDxfb00ve4PNNzM2Vd8g" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "349" ] + "Content-Length": [ "612" ] } }, "Response": { @@ -17,40 +17,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"f500afc1-0000-0200-0000-627615830000\"" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], + "ETag": [ "\"ec007412-0000-0100-0000-63d794e40000\"" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "cf95142b-c56c-4115-8b97-f919e1c41a4b" ], + "mise-correlation-id": [ "380aab3b-7d30-4488-a783-7774891a54f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/81328b9d-3ca8-476d-946d-95873dc6f45f*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2022-05-01" ], - "x-ms-request-id": [ "81328b9d-3ca8-476d-946d-95873dc6f45f" ], - "x-ms-correlation-request-id": [ "6282532b-a052-497e-9a8c-0a98cb265158" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064523Z:6282532b-a052-497e-9a8c-0a98cb265158" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/9c1a2078-45be-49e6-97a2-c98d669e1211*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2021-01-01-privatepreview" ], + "x-ms-request-id": [ "9c1a2078-45be-49e6-97a2-c98d669e1211" ], + "x-ms-correlation-request-id": [ "908fcb45-549b-4214-820c-7c3f69e486cc" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20230130T095900Z:908fcb45-549b-4214-820c-7c3f69e486cc" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:45:23 GMT" ] + "Date": [ "Mon, 30 Jan 2023 09:59:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "910" ], + "Content-Length": [ "1170" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"name\":\"ps_linker\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"xiaofanzhou@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2022-05-07T06:45:22.893172Z\",\"lastModifiedBy\":\"xiaofanzhou@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2022-05-07T06:45:22.893172Z\"},\"properties\":{\"provisioningState\":\"Accepted\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.KeyVault/vaults/servicelinker-test-kv\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"authType\":\"systemAssignedIdentity\"},\"vNetSolution\":null,\"clientType\":\"none\",\"secretStore\":null,\"scope\":null}}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"name\":\"ps_linker\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"xiaofanzhou@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-01-30T09:58:55.9421158Z\",\"lastModifiedBy\":\"xiaofanzhou@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-01-30T09:58:55.9421158Z\"},\"properties\":{\"provisioningState\":\"Accepted\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/postgres\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"servicelinker\",\"secretInfo\":{\"value\":\"https://servicelinker-kv-ref.vault.azure.net/secrets/azure-mysql-host-28449/cc5d8095a54f4755b342f4e7884b5c84\",\"secretType\":\"keyVaultSecretUri\"},\"authType\":\"secret\"},\"vNetSolution\":null,\"clientType\":\"none\",\"secretStore\":null,\"scope\":null,\"publicNetworkSolution\":null,\"configurationInfo\":null}}", + "isContentBase64": false } }, - "New-AzServiceLinkerForWebApp+[NoContext]+New Key Vault connection+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/81328b9d-3ca8-476d-946d-95873dc6f45f*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2022-05-01+2": { + "New-AzServiceLinkerForWebApp+[NoContext]+New postgresql connection+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/9c1a2078-45be-49e6-97a2-c98d669e1211*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2021-01-01-privatepreview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/81328b9d-3ca8-476d-946d-95873dc6f45f*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/9c1a2078-45be-49e6-97a2-c98d669e1211*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2021-01-01-privatepreview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-serviceconnector-user-token": [ "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImpTMVhvMU9XRGpfNTJ2YndHTmd2UU8yVnpNYyIsImtpZCI6ImpTMVhvMU9XRGpfNTJ2YndHTmd2UU8yVnpNYyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNjUxOTAyNDY5LCJuYmYiOjE2NTE5MDI0NjksImV4cCI6MTY1MTkwNzYyMSwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzL2IwYTlkM2M2LTMzODctNDA2Ny05ZjAzLTM5ODA4ZTcyOTFmZi9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVZRQXEvOFRBQUFBY3dtVlJNQlJ2ektLbEdQR2hDWFJOc3ptUCthYzRCNHlGSnVjRE9RWmZFQ3YwWXovRXNNS3BGRzRmakUwU3NLSEsyZXA5WmxFNXAvYktUdmJHaWRtTEg3alkzRzN4a3JQcGphTm5kYTY3Rjg9IiwiYW1yIjpbInB3ZCIsInJzYSIsIm1mYSJdLCJhcHBpZCI6IjE5NTBhMjU4LTIyN2ItNGUzMS1hOWNmLTcxNzQ5NTk0NWZjMiIsImFwcGlkYWNyIjoiMCIsImZhbWlseV9uYW1lIjoiWmhvdSIsImdpdmVuX25hbWUiOiJYaWFvZmFuIiwiaXBhZGRyIjoiMTY3LjIyMC4yNTUuNzkiLCJuYW1lIjoiWGlhb2ZhbiBaaG91Iiwib2lkIjoiYjBhOWQzYzYtMzM4Ny00MDY3LTlmMDMtMzk4MDhlNzI5MWZmIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxNDY3NzMwODUtOTAzMzYzMjg1LTcxOTM0NDcwNy0yNzEyMTMzIiwicHVpZCI6IjEwMDMyMDAxMjZBMzAwMkIiLCJyaCI6IjAuQVFFQXY0ajVjdkdHcjBHUnF5MTgwQkhiUjBaSWYza0F1dGRQdWtQYXdmajJNQk1hQUhRLiIsInNjcCI6InVzZXJfaW1wZXJzb25hdGlvbiIsInN1YiI6ImladElGXzE1MWZNTHowUVQ5dHhrSk9LR2ZLZENpcWtuaWNQdlh6M202MmciLCJ0aWQiOiI3MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDciLCJ1bmlxdWVfbmFtZSI6InhpYW9mYW56aG91QG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJ4aWFvZmFuemhvdUBtaWNyb3NvZnQuY29tIiwidXRpIjoiY1ZaQ1NNeHlqRWV1MTZ4U0I3Z0VBQSIsInZlciI6IjEuMCIsIndpZHMiOlsiYjc5ZmJmNGQtM2VmOS00Njg5LTgxNDMtNzZiMTk0ZTg1NTA5Il0sInhtc190Y2R0IjoxMjg5MjQxNTQ3fQ.jpMZv8CkO1jf6a9MHZTW94Uynz7Uuhiudrv0ozgQtAnI7Q_gDv_NaiFMpNiqveez2QPQQ7R-T6ldxoycFxkZUCcOu73OTTKsigXEe79osCdcMVqaKPFpHKgmVRtL6e-cBOOhACUDw0MxNcd9hg1DV1mEWQhZHlhEVB5DZo7kMesKsOgUyobIVSB07rz6pRBLj3MYo7sqB7qjnaM6ys732UyuuPhQzez2N96EW6f9vEc-2nsihklEDEhj2BhKWZy5DbXIOeXM7QM2-oaXHKpDxTViI3eEESN7VKFfdUgKbYyLyt6Fqvjbv5PEi7whkt1JXUcDxfb00ve4PNNzM2Vd8g" ], "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "22" ], - "x-ms-client-request-id": [ "fd89e3db-48fb-477d-be30-27e549e06876" ], + "x-ms-unique-id": [ "2" ], + "x-ms-client-request-id": [ "e48d7ba5-c872-4fc2-850a-805a894b0a81" ], "CommandName": [ "Az.ServiceLinker.internal\\New-AzServiceLinker" ], "FullCommandName": [ "New-AzServiceLinker_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.0.3", "Az.ServiceLinker/0.1.1" ] }, "ContentHeaders": { } @@ -60,37 +61,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"03009713-0000-0100-0000-6276158c0000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11984" ], - "x-ms-request-id": [ "4bcfa1a4-a873-4dd0-81d0-5e496efbd2ba" ], - "x-ms-correlation-request-id": [ "257287a1-c6bb-46b1-a377-46a6901ab101" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064553Z:257287a1-c6bb-46b1-a377-46a6901ab101" ], + "ETag": [ "\"b20484b0-0000-0100-0000-63d794e90000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], + "x-ms-request-id": [ "908dfbaf-1f80-43ac-8240-0a88ccbc006d" ], + "x-ms-correlation-request-id": [ "1a078f5b-3f8a-4006-81db-39862777103e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20230130T095931Z:1a078f5b-3f8a-4006-81db-39862777103e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:45:53 GMT" ] + "Date": [ "Mon, 30 Jan 2023 09:59:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "683" ], + "Content-Length": [ "820" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/81328b9d-3ca8-476d-946d-95873dc6f45f*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38\",\"name\":\"81328b9d-3ca8-476d-946d-95873dc6f45f*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"status\":\"Succeeded\",\"startTime\":\"2022-05-07T06:45:23.3284369Z\",\"endTime\":\"2022-05-07T06:45:32.7375162Z\",\"properties\":{}}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/9c1a2078-45be-49e6-97a2-c98d669e1211*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38\",\"name\":\"9c1a2078-45be-49e6-97a2-c98d669e1211*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"status\":\"Succeeded\",\"startTime\":\"2023-01-30T09:59:00.5449962Z\",\"endTime\":\"2023-01-30T09:59:05.9321125Z\",\"properties\":{\"Message\":\"Deny public network access is set to yes. Please confirm you are using private endpoint connection to access target resource.\"}}", + "isContentBase64": false } }, - "New-AzServiceLinkerForWebApp+[NoContext]+New Key Vault connection+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-05-01+3": { + "New-AzServiceLinkerForWebApp+[NoContext]+New postgresql connection+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-11-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-05-01", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-11-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-serviceconnector-user-token": [ "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImpTMVhvMU9XRGpfNTJ2YndHTmd2UU8yVnpNYyIsImtpZCI6ImpTMVhvMU9XRGpfNTJ2YndHTmd2UU8yVnpNYyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNjUxOTAyNDY5LCJuYmYiOjE2NTE5MDI0NjksImV4cCI6MTY1MTkwNzYyMSwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzL2IwYTlkM2M2LTMzODctNDA2Ny05ZjAzLTM5ODA4ZTcyOTFmZi9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVZRQXEvOFRBQUFBY3dtVlJNQlJ2ektLbEdQR2hDWFJOc3ptUCthYzRCNHlGSnVjRE9RWmZFQ3YwWXovRXNNS3BGRzRmakUwU3NLSEsyZXA5WmxFNXAvYktUdmJHaWRtTEg3alkzRzN4a3JQcGphTm5kYTY3Rjg9IiwiYW1yIjpbInB3ZCIsInJzYSIsIm1mYSJdLCJhcHBpZCI6IjE5NTBhMjU4LTIyN2ItNGUzMS1hOWNmLTcxNzQ5NTk0NWZjMiIsImFwcGlkYWNyIjoiMCIsImZhbWlseV9uYW1lIjoiWmhvdSIsImdpdmVuX25hbWUiOiJYaWFvZmFuIiwiaXBhZGRyIjoiMTY3LjIyMC4yNTUuNzkiLCJuYW1lIjoiWGlhb2ZhbiBaaG91Iiwib2lkIjoiYjBhOWQzYzYtMzM4Ny00MDY3LTlmMDMtMzk4MDhlNzI5MWZmIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxNDY3NzMwODUtOTAzMzYzMjg1LTcxOTM0NDcwNy0yNzEyMTMzIiwicHVpZCI6IjEwMDMyMDAxMjZBMzAwMkIiLCJyaCI6IjAuQVFFQXY0ajVjdkdHcjBHUnF5MTgwQkhiUjBaSWYza0F1dGRQdWtQYXdmajJNQk1hQUhRLiIsInNjcCI6InVzZXJfaW1wZXJzb25hdGlvbiIsInN1YiI6ImladElGXzE1MWZNTHowUVQ5dHhrSk9LR2ZLZENpcWtuaWNQdlh6M202MmciLCJ0aWQiOiI3MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDciLCJ1bmlxdWVfbmFtZSI6InhpYW9mYW56aG91QG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJ4aWFvZmFuemhvdUBtaWNyb3NvZnQuY29tIiwidXRpIjoiY1ZaQ1NNeHlqRWV1MTZ4U0I3Z0VBQSIsInZlciI6IjEuMCIsIndpZHMiOlsiYjc5ZmJmNGQtM2VmOS00Njg5LTgxNDMtNzZiMTk0ZTg1NTA5Il0sInhtc190Y2R0IjoxMjg5MjQxNTQ3fQ.jpMZv8CkO1jf6a9MHZTW94Uynz7Uuhiudrv0ozgQtAnI7Q_gDv_NaiFMpNiqveez2QPQQ7R-T6ldxoycFxkZUCcOu73OTTKsigXEe79osCdcMVqaKPFpHKgmVRtL6e-cBOOhACUDw0MxNcd9hg1DV1mEWQhZHlhEVB5DZo7kMesKsOgUyobIVSB07rz6pRBLj3MYo7sqB7qjnaM6ys732UyuuPhQzez2N96EW6f9vEc-2nsihklEDEhj2BhKWZy5DbXIOeXM7QM2-oaXHKpDxTViI3eEESN7VKFfdUgKbYyLyt6Fqvjbv5PEi7whkt1JXUcDxfb00ve4PNNzM2Vd8g" ], "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "23" ], - "x-ms-client-request-id": [ "fd89e3db-48fb-477d-be30-27e549e06876" ], + "x-ms-unique-id": [ "3" ], + "x-ms-client-request-id": [ "e48d7ba5-c872-4fc2-850a-805a894b0a81" ], "CommandName": [ "Az.ServiceLinker.internal\\New-AzServiceLinker" ], "FullCommandName": [ "New-AzServiceLinker_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.0.3", "Az.ServiceLinker/0.1.1" ] }, "ContentHeaders": { } @@ -100,38 +102,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"3a00c072-0000-0100-0000-6276158c0000\"" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11983" ], + "ETag": [ "\"ec008012-0000-0100-0000-63d794e90000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "053abf74-cfb6-4ffb-b083-15343fc05b6b" ], + "mise-correlation-id": [ "d60c81d2-83e3-4efe-8a57-b9f829c3d1d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fc3c2a17-4644-49ff-8771-c164b13f55e7" ], - "x-ms-correlation-request-id": [ "75cabe30-73a2-4bb9-8793-225a27908a05" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064554Z:75cabe30-73a2-4bb9-8793-225a27908a05" ], + "x-ms-request-id": [ "8322061d-e0e5-48b4-9ae7-5db32645606e" ], + "x-ms-correlation-request-id": [ "93c29d94-b870-4d2a-a339-b9425ad5be15" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20230130T095932Z:93c29d94-b870-4d2a-a339-b9425ad5be15" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:45:54 GMT" ] + "Date": [ "Mon, 30 Jan 2023 09:59:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "671" ], + "Content-Length": [ "1171" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"name\":\"ps_linker\",\"type\":\"microsoft.servicelinker/linkers\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.KeyVault/vaults/servicelinker-test-kv\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"authType\":\"systemAssignedIdentity\"},\"clientType\":\"none\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"name\":\"ps_linker\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"xiaofanzhou@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-01-30T09:58:55.9421158Z\",\"lastModifiedBy\":\"xiaofanzhou@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-01-30T09:58:55.9421158Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/postgres\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"servicelinker\",\"secretInfo\":{\"value\":\"https://servicelinker-kv-ref.vault.azure.net/secrets/azure-mysql-host-28449/cc5d8095a54f4755b342f4e7884b5c84\",\"secretType\":\"keyVaultSecretUri\"},\"authType\":\"secret\"},\"clientType\":\"none\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}}", + "isContentBase64": false } }, - "New-AzServiceLinkerForWebApp+[NoContext]+New Key Vault connection+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers?api-version=2022-05-01+4": { + "New-AzServiceLinkerForWebApp+[NoContext]+New postgresql connection+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers?api-version=2022-11-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers?api-version=2022-05-01", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers?api-version=2022-11-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "24" ], - "x-ms-client-request-id": [ "a55a862e-2ebd-43dc-8f46-5b752dd0be19" ], + "x-ms-unique-id": [ "4" ], + "x-ms-client-request-id": [ "8d3daecf-d691-41b9-ad10-a6174feb87dc" ], "CommandName": [ "Az.ServiceLinker.internal\\Get-AzServiceLinker" ], "FullCommandName": [ "Get-AzServiceLinker_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.0.3", "Az.ServiceLinker/0.1.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -142,36 +145,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11982" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "15d9d6c2-6803-451c-980a-62803e84a87b" ], + "mise-correlation-id": [ "e385a60e-e28b-46ea-9b64-dd82d1a771e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "13cf07f4-cf1d-417e-a0b8-6c3d088f9e12" ], - "x-ms-correlation-request-id": [ "b0fa101c-11dc-412d-a1e9-6bcd5d5312b0" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064555Z:b0fa101c-11dc-412d-a1e9-6bcd5d5312b0" ], + "x-ms-request-id": [ "5ff464df-878d-450c-bd90-4886f6e1b23c" ], + "x-ms-correlation-request-id": [ "e8b7e467-3736-49a2-8ca2-e8c525f242e7" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20230130T095933Z:e8b7e467-3736-49a2-8ca2-e8c525f242e7" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:45:55 GMT" ] + "Date": [ "Mon, 30 Jan 2023 09:59:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "683" ], + "Content-Length": [ "1183" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"name\":\"ps_linker\",\"type\":\"microsoft.servicelinker/linkers\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.KeyVault/vaults/servicelinker-test-kv\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"authType\":\"systemAssignedIdentity\"},\"clientType\":\"none\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}}]}" + "Content": "{\"value\":[{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"name\":\"ps_linker\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"xiaofanzhou@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-01-30T09:58:55.9421158Z\",\"lastModifiedBy\":\"xiaofanzhou@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-01-30T09:58:55.9421158Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/postgres\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"servicelinker\",\"secretInfo\":{\"value\":\"https://servicelinker-kv-ref.vault.azure.net/secrets/azure-mysql-host-28449/cc5d8095a54f4755b342f4e7884b5c84\",\"secretType\":\"keyVaultSecretUri\"},\"authType\":\"secret\"},\"clientType\":\"none\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}}]}", + "isContentBase64": false } }, - "New-AzServiceLinkerForWebApp+[NoContext]+New Key Vault connection+$PUT+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-05-01+5": { + "New-AzServiceLinkerForWebApp+[NoContext]+New postgresql connection+$PUT+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-11-01-preview+5": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-05-01", - "Content": "{\n \"properties\": {\n \"targetService\": {\n \"type\": \"AzureResource\",\n \"id\": \"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.KeyVault/vaults/servicelinker-test-kv\"\n },\n \"authInfo\": {\n \"authType\": \"systemAssignedIdentity\"\n },\n \"clientType\": \"dotnet\"\n }\n}", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-11-01-preview", + "Content": "{\r\n \"properties\": {\r\n \"targetService\": {\r\n \"type\": \"AzureResource\",\r\n \"id\": \"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/postgres\"\r\n },\r\n \"authInfo\": {\r\n \"authType\": \"secret\",\r\n \"name\": \"servicelinker\",\r\n \"secretInfo\": {\r\n \"secretType\": \"keyVaultSecretUri\",\r\n \"value\": \"https://servicelinker-kv-ref.vault.azure.net/secrets/azure-mysql-host-28449/cc5d8095a54f4755b342f4e7884b5c84\"\r\n }\r\n },\r\n \"clientType\": \"dotnet\"\r\n }\r\n}", + "isContentBase64": false, "Headers": { - "x-ms-serviceconnector-user-token": [ "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImpTMVhvMU9XRGpfNTJ2YndHTmd2UU8yVnpNYyIsImtpZCI6ImpTMVhvMU9XRGpfNTJ2YndHTmd2UU8yVnpNYyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNjUxOTAyNDY5LCJuYmYiOjE2NTE5MDI0NjksImV4cCI6MTY1MTkwNzYyMSwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzL2IwYTlkM2M2LTMzODctNDA2Ny05ZjAzLTM5ODA4ZTcyOTFmZi9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVZRQXEvOFRBQUFBY3dtVlJNQlJ2ektLbEdQR2hDWFJOc3ptUCthYzRCNHlGSnVjRE9RWmZFQ3YwWXovRXNNS3BGRzRmakUwU3NLSEsyZXA5WmxFNXAvYktUdmJHaWRtTEg3alkzRzN4a3JQcGphTm5kYTY3Rjg9IiwiYW1yIjpbInB3ZCIsInJzYSIsIm1mYSJdLCJhcHBpZCI6IjE5NTBhMjU4LTIyN2ItNGUzMS1hOWNmLTcxNzQ5NTk0NWZjMiIsImFwcGlkYWNyIjoiMCIsImZhbWlseV9uYW1lIjoiWmhvdSIsImdpdmVuX25hbWUiOiJYaWFvZmFuIiwiaXBhZGRyIjoiMTY3LjIyMC4yNTUuNzkiLCJuYW1lIjoiWGlhb2ZhbiBaaG91Iiwib2lkIjoiYjBhOWQzYzYtMzM4Ny00MDY3LTlmMDMtMzk4MDhlNzI5MWZmIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxNDY3NzMwODUtOTAzMzYzMjg1LTcxOTM0NDcwNy0yNzEyMTMzIiwicHVpZCI6IjEwMDMyMDAxMjZBMzAwMkIiLCJyaCI6IjAuQVFFQXY0ajVjdkdHcjBHUnF5MTgwQkhiUjBaSWYza0F1dGRQdWtQYXdmajJNQk1hQUhRLiIsInNjcCI6InVzZXJfaW1wZXJzb25hdGlvbiIsInN1YiI6ImladElGXzE1MWZNTHowUVQ5dHhrSk9LR2ZLZENpcWtuaWNQdlh6M202MmciLCJ0aWQiOiI3MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDciLCJ1bmlxdWVfbmFtZSI6InhpYW9mYW56aG91QG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJ4aWFvZmFuemhvdUBtaWNyb3NvZnQuY29tIiwidXRpIjoiY1ZaQ1NNeHlqRWV1MTZ4U0I3Z0VBQSIsInZlciI6IjEuMCIsIndpZHMiOlsiYjc5ZmJmNGQtM2VmOS00Njg5LTgxNDMtNzZiMTk0ZTg1NTA5Il0sInhtc190Y2R0IjoxMjg5MjQxNTQ3fQ.jpMZv8CkO1jf6a9MHZTW94Uynz7Uuhiudrv0ozgQtAnI7Q_gDv_NaiFMpNiqveez2QPQQ7R-T6ldxoycFxkZUCcOu73OTTKsigXEe79osCdcMVqaKPFpHKgmVRtL6e-cBOOhACUDw0MxNcd9hg1DV1mEWQhZHlhEVB5DZo7kMesKsOgUyobIVSB07rz6pRBLj3MYo7sqB7qjnaM6ys732UyuuPhQzez2N96EW6f9vEc-2nsihklEDEhj2BhKWZy5DbXIOeXM7QM2-oaXHKpDxTViI3eEESN7VKFfdUgKbYyLyt6Fqvjbv5PEi7whkt1JXUcDxfb00ve4PNNzM2Vd8g" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "351" ] + "Content-Length": [ "614" ] } }, "Response": { @@ -179,40 +182,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"f500b0c3-0000-0200-0000-627615a40000\"" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], + "ETag": [ "\"ec00cb12-0000-0100-0000-63d795060000\"" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "ecb4f79a-ab07-4744-b085-44bf0610900d" ], + "mise-correlation-id": [ "b0071482-ce6f-4150-96d2-f59f081d1d96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/d1b3c809-9d97-4637-91a5-fd536605ec8b*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2022-05-01" ], - "x-ms-request-id": [ "d1b3c809-9d97-4637-91a5-fd536605ec8b" ], - "x-ms-correlation-request-id": [ "19e578cd-2762-4356-8d04-d3ebcbb53023" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064557Z:19e578cd-2762-4356-8d04-d3ebcbb53023" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/92301ed4-b88f-4c1e-ae82-57fedb60e50f*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2021-01-01-privatepreview" ], + "x-ms-request-id": [ "92301ed4-b88f-4c1e-ae82-57fedb60e50f" ], + "x-ms-correlation-request-id": [ "febbdb90-6fca-418e-b312-3b0d5da58663" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20230130T095934Z:febbdb90-6fca-418e-b312-3b0d5da58663" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:45:56 GMT" ] + "Date": [ "Mon, 30 Jan 2023 09:59:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "913" ], + "Content-Length": [ "1172" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"name\":\"ps_linker\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"xiaofanzhou@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2022-05-07T06:45:22.893172Z\",\"lastModifiedBy\":\"xiaofanzhou@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2022-05-07T06:45:56.3151656Z\"},\"properties\":{\"provisioningState\":\"Accepted\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.KeyVault/vaults/servicelinker-test-kv\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"authType\":\"systemAssignedIdentity\"},\"vNetSolution\":null,\"clientType\":\"dotnet\",\"secretStore\":null,\"scope\":null}}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"name\":\"ps_linker\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"xiaofanzhou@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-01-30T09:58:55.9421158Z\",\"lastModifiedBy\":\"xiaofanzhou@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-01-30T09:59:33.9442647Z\"},\"properties\":{\"provisioningState\":\"Accepted\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/postgres\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"servicelinker\",\"secretInfo\":{\"value\":\"https://servicelinker-kv-ref.vault.azure.net/secrets/azure-mysql-host-28449/cc5d8095a54f4755b342f4e7884b5c84\",\"secretType\":\"keyVaultSecretUri\"},\"authType\":\"secret\"},\"vNetSolution\":null,\"clientType\":\"dotnet\",\"secretStore\":null,\"scope\":null,\"publicNetworkSolution\":null,\"configurationInfo\":null}}", + "isContentBase64": false } }, - "New-AzServiceLinkerForWebApp+[NoContext]+New Key Vault connection+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/d1b3c809-9d97-4637-91a5-fd536605ec8b*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2022-05-01+6": { + "New-AzServiceLinkerForWebApp+[NoContext]+New postgresql connection+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/92301ed4-b88f-4c1e-ae82-57fedb60e50f*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2021-01-01-privatepreview+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/d1b3c809-9d97-4637-91a5-fd536605ec8b*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/92301ed4-b88f-4c1e-ae82-57fedb60e50f*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2021-01-01-privatepreview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-serviceconnector-user-token": [ "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImpTMVhvMU9XRGpfNTJ2YndHTmd2UU8yVnpNYyIsImtpZCI6ImpTMVhvMU9XRGpfNTJ2YndHTmd2UU8yVnpNYyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNjUxOTAyNDY5LCJuYmYiOjE2NTE5MDI0NjksImV4cCI6MTY1MTkwNzYyMSwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzL2IwYTlkM2M2LTMzODctNDA2Ny05ZjAzLTM5ODA4ZTcyOTFmZi9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVZRQXEvOFRBQUFBY3dtVlJNQlJ2ektLbEdQR2hDWFJOc3ptUCthYzRCNHlGSnVjRE9RWmZFQ3YwWXovRXNNS3BGRzRmakUwU3NLSEsyZXA5WmxFNXAvYktUdmJHaWRtTEg3alkzRzN4a3JQcGphTm5kYTY3Rjg9IiwiYW1yIjpbInB3ZCIsInJzYSIsIm1mYSJdLCJhcHBpZCI6IjE5NTBhMjU4LTIyN2ItNGUzMS1hOWNmLTcxNzQ5NTk0NWZjMiIsImFwcGlkYWNyIjoiMCIsImZhbWlseV9uYW1lIjoiWmhvdSIsImdpdmVuX25hbWUiOiJYaWFvZmFuIiwiaXBhZGRyIjoiMTY3LjIyMC4yNTUuNzkiLCJuYW1lIjoiWGlhb2ZhbiBaaG91Iiwib2lkIjoiYjBhOWQzYzYtMzM4Ny00MDY3LTlmMDMtMzk4MDhlNzI5MWZmIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxNDY3NzMwODUtOTAzMzYzMjg1LTcxOTM0NDcwNy0yNzEyMTMzIiwicHVpZCI6IjEwMDMyMDAxMjZBMzAwMkIiLCJyaCI6IjAuQVFFQXY0ajVjdkdHcjBHUnF5MTgwQkhiUjBaSWYza0F1dGRQdWtQYXdmajJNQk1hQUhRLiIsInNjcCI6InVzZXJfaW1wZXJzb25hdGlvbiIsInN1YiI6ImladElGXzE1MWZNTHowUVQ5dHhrSk9LR2ZLZENpcWtuaWNQdlh6M202MmciLCJ0aWQiOiI3MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDciLCJ1bmlxdWVfbmFtZSI6InhpYW9mYW56aG91QG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJ4aWFvZmFuemhvdUBtaWNyb3NvZnQuY29tIiwidXRpIjoiY1ZaQ1NNeHlqRWV1MTZ4U0I3Z0VBQSIsInZlciI6IjEuMCIsIndpZHMiOlsiYjc5ZmJmNGQtM2VmOS00Njg5LTgxNDMtNzZiMTk0ZTg1NTA5Il0sInhtc190Y2R0IjoxMjg5MjQxNTQ3fQ.jpMZv8CkO1jf6a9MHZTW94Uynz7Uuhiudrv0ozgQtAnI7Q_gDv_NaiFMpNiqveez2QPQQ7R-T6ldxoycFxkZUCcOu73OTTKsigXEe79osCdcMVqaKPFpHKgmVRtL6e-cBOOhACUDw0MxNcd9hg1DV1mEWQhZHlhEVB5DZo7kMesKsOgUyobIVSB07rz6pRBLj3MYo7sqB7qjnaM6ys732UyuuPhQzez2N96EW6f9vEc-2nsihklEDEhj2BhKWZy5DbXIOeXM7QM2-oaXHKpDxTViI3eEESN7VKFfdUgKbYyLyt6Fqvjbv5PEi7whkt1JXUcDxfb00ve4PNNzM2Vd8g" ], "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "26" ], - "x-ms-client-request-id": [ "d0e756d1-4801-4b37-8b29-7dea6371fa69" ], + "x-ms-unique-id": [ "6" ], + "x-ms-client-request-id": [ "dd45d1bc-5af4-4dba-8ae0-6e818a42156d" ], "CommandName": [ "Az.ServiceLinker.internal\\New-AzServiceLinker" ], "FullCommandName": [ "New-AzServiceLinker_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.0.3", "Az.ServiceLinker/0.1.1" ] }, "ContentHeaders": { } @@ -222,37 +226,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0300a513-0000-0100-0000-627615ac0000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11981" ], - "x-ms-request-id": [ "c0a48fc1-3871-4c1b-b78b-3cf7027d8132" ], - "x-ms-correlation-request-id": [ "e7072a47-63d5-4a56-b6c4-ed770e2ec265" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064627Z:e7072a47-63d5-4a56-b6c4-ed770e2ec265" ], + "ETag": [ "\"b2048cb0-0000-0100-0000-63d7950c0000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], + "x-ms-request-id": [ "a8a035cf-b97d-4bea-9461-7264c1377dab" ], + "x-ms-correlation-request-id": [ "642ec49d-00c4-44d7-b86c-15ebcd205fbf" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20230130T100005Z:642ec49d-00c4-44d7-b86c-15ebcd205fbf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:46:26 GMT" ] + "Date": [ "Mon, 30 Jan 2023 10:00:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "681" ], + "Content-Length": [ "820" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/d1b3c809-9d97-4637-91a5-fd536605ec8b*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38\",\"name\":\"d1b3c809-9d97-4637-91a5-fd536605ec8b*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"status\":\"Succeeded\",\"startTime\":\"2022-05-07T06:45:56.7339874Z\",\"endTime\":\"2022-05-07T06:46:04.32181Z\",\"properties\":{}}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/92301ed4-b88f-4c1e-ae82-57fedb60e50f*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38\",\"name\":\"92301ed4-b88f-4c1e-ae82-57fedb60e50f*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"status\":\"Succeeded\",\"startTime\":\"2023-01-30T09:59:34.3482094Z\",\"endTime\":\"2023-01-30T09:59:40.2617379Z\",\"properties\":{\"Message\":\"Deny public network access is set to yes. Please confirm you are using private endpoint connection to access target resource.\"}}", + "isContentBase64": false } }, - "New-AzServiceLinkerForWebApp+[NoContext]+New Key Vault connection+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-05-01+7": { + "New-AzServiceLinkerForWebApp+[NoContext]+New postgresql connection+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-11-01-preview+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-05-01", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-11-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-serviceconnector-user-token": [ "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6ImpTMVhvMU9XRGpfNTJ2YndHTmd2UU8yVnpNYyIsImtpZCI6ImpTMVhvMU9XRGpfNTJ2YndHTmd2UU8yVnpNYyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuY29yZS53aW5kb3dzLm5ldC8iLCJpc3MiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC83MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcvIiwiaWF0IjoxNjUxOTAyNDY5LCJuYmYiOjE2NTE5MDI0NjksImV4cCI6MTY1MTkwNzYyMSwiX2NsYWltX25hbWVzIjp7Imdyb3VwcyI6InNyYzEifSwiX2NsYWltX3NvdXJjZXMiOnsic3JjMSI6eyJlbmRwb2ludCI6Imh0dHBzOi8vZ3JhcGgud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3L3VzZXJzL2IwYTlkM2M2LTMzODctNDA2Ny05ZjAzLTM5ODA4ZTcyOTFmZi9nZXRNZW1iZXJPYmplY3RzIn19LCJhY3IiOiIxIiwiYWlvIjoiQVZRQXEvOFRBQUFBY3dtVlJNQlJ2ektLbEdQR2hDWFJOc3ptUCthYzRCNHlGSnVjRE9RWmZFQ3YwWXovRXNNS3BGRzRmakUwU3NLSEsyZXA5WmxFNXAvYktUdmJHaWRtTEg3alkzRzN4a3JQcGphTm5kYTY3Rjg9IiwiYW1yIjpbInB3ZCIsInJzYSIsIm1mYSJdLCJhcHBpZCI6IjE5NTBhMjU4LTIyN2ItNGUzMS1hOWNmLTcxNzQ5NTk0NWZjMiIsImFwcGlkYWNyIjoiMCIsImZhbWlseV9uYW1lIjoiWmhvdSIsImdpdmVuX25hbWUiOiJYaWFvZmFuIiwiaXBhZGRyIjoiMTY3LjIyMC4yNTUuNzkiLCJuYW1lIjoiWGlhb2ZhbiBaaG91Iiwib2lkIjoiYjBhOWQzYzYtMzM4Ny00MDY3LTlmMDMtMzk4MDhlNzI5MWZmIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxNDY3NzMwODUtOTAzMzYzMjg1LTcxOTM0NDcwNy0yNzEyMTMzIiwicHVpZCI6IjEwMDMyMDAxMjZBMzAwMkIiLCJyaCI6IjAuQVFFQXY0ajVjdkdHcjBHUnF5MTgwQkhiUjBaSWYza0F1dGRQdWtQYXdmajJNQk1hQUhRLiIsInNjcCI6InVzZXJfaW1wZXJzb25hdGlvbiIsInN1YiI6ImladElGXzE1MWZNTHowUVQ5dHhrSk9LR2ZLZENpcWtuaWNQdlh6M202MmciLCJ0aWQiOiI3MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDciLCJ1bmlxdWVfbmFtZSI6InhpYW9mYW56aG91QG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJ4aWFvZmFuemhvdUBtaWNyb3NvZnQuY29tIiwidXRpIjoiY1ZaQ1NNeHlqRWV1MTZ4U0I3Z0VBQSIsInZlciI6IjEuMCIsIndpZHMiOlsiYjc5ZmJmNGQtM2VmOS00Njg5LTgxNDMtNzZiMTk0ZTg1NTA5Il0sInhtc190Y2R0IjoxMjg5MjQxNTQ3fQ.jpMZv8CkO1jf6a9MHZTW94Uynz7Uuhiudrv0ozgQtAnI7Q_gDv_NaiFMpNiqveez2QPQQ7R-T6ldxoycFxkZUCcOu73OTTKsigXEe79osCdcMVqaKPFpHKgmVRtL6e-cBOOhACUDw0MxNcd9hg1DV1mEWQhZHlhEVB5DZo7kMesKsOgUyobIVSB07rz6pRBLj3MYo7sqB7qjnaM6ys732UyuuPhQzez2N96EW6f9vEc-2nsihklEDEhj2BhKWZy5DbXIOeXM7QM2-oaXHKpDxTViI3eEESN7VKFfdUgKbYyLyt6Fqvjbv5PEi7whkt1JXUcDxfb00ve4PNNzM2Vd8g" ], "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "27" ], - "x-ms-client-request-id": [ "d0e756d1-4801-4b37-8b29-7dea6371fa69" ], + "x-ms-unique-id": [ "7" ], + "x-ms-client-request-id": [ "dd45d1bc-5af4-4dba-8ae0-6e818a42156d" ], "CommandName": [ "Az.ServiceLinker.internal\\New-AzServiceLinker" ], "FullCommandName": [ "New-AzServiceLinker_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.0.3", "Az.ServiceLinker/0.1.1" ] }, "ContentHeaders": { } @@ -262,38 +267,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"3a001573-0000-0100-0000-627615ac0000\"" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11980" ], + "ETag": [ "\"ec00d912-0000-0100-0000-63d7950c0000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "6fc15686-95bf-4e95-9979-96df127ac884" ], + "mise-correlation-id": [ "c3b2dd1b-bf99-40a6-9aa0-f4b8f8786150" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d5051dc8-8919-41da-9fcc-225cece07605" ], - "x-ms-correlation-request-id": [ "8c0eb776-d94a-4f3d-b692-37c1e24c2cfc" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064628Z:8c0eb776-d94a-4f3d-b692-37c1e24c2cfc" ], + "x-ms-request-id": [ "8b5bed95-9f75-47a8-930a-9346f6117a71" ], + "x-ms-correlation-request-id": [ "d67d9333-9c2d-4cde-bb6a-1a9c3c22fa47" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20230130T100005Z:d67d9333-9c2d-4cde-bb6a-1a9c3c22fa47" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:46:27 GMT" ] + "Date": [ "Mon, 30 Jan 2023 10:00:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "673" ], + "Content-Length": [ "1173" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"name\":\"ps_linker\",\"type\":\"microsoft.servicelinker/linkers\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.KeyVault/vaults/servicelinker-test-kv\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"authType\":\"systemAssignedIdentity\"},\"clientType\":\"dotnet\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"name\":\"ps_linker\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"xiaofanzhou@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-01-30T09:58:55.9421158Z\",\"lastModifiedBy\":\"xiaofanzhou@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-01-30T09:59:33.9442647Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/postgres\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"servicelinker\",\"secretInfo\":{\"value\":\"https://servicelinker-kv-ref.vault.azure.net/secrets/azure-mysql-host-28449/cc5d8095a54f4755b342f4e7884b5c84\",\"secretType\":\"keyVaultSecretUri\"},\"authType\":\"secret\"},\"clientType\":\"dotnet\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}}", + "isContentBase64": false } }, - "New-AzServiceLinkerForWebApp+[NoContext]+New Key Vault connection+$DELETE+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-05-01+8": { + "New-AzServiceLinkerForWebApp+[NoContext]+New postgresql connection+$DELETE+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-11-01-preview+8": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-05-01", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-11-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "28" ], - "x-ms-client-request-id": [ "e2771f23-6e53-426b-b7e8-046f64c9d34f" ], + "x-ms-unique-id": [ "8" ], + "x-ms-client-request-id": [ "ad9d0fd7-3782-434e-91e0-000dfa3ee2dc" ], "CommandName": [ "Az.ServiceLinker.internal\\Remove-AzServiceLinker" ], "FullCommandName": [ "Remove-AzServiceLinker_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.0.3", "Az.ServiceLinker/0.1.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -304,436 +310,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"f5003dc6-0000-0200-0000-627615c50000\"" ], - "Location": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/55221d15-d4ea-4d36-9854-81d2a5666416*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2022-05-01" ], + "ETag": [ "\"ec001713-0000-0100-0000-63d795260000\"" ], + "Location": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/761fb192-b2db-4ac9-8ba1-a6d6c81b0259*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2021-01-01-privatepreview" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "577dff70-e806-4db0-bba0-2c1c5139c580" ], + "mise-correlation-id": [ "84436bac-70e6-4519-b8c2-395e76fb903e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/55221d15-d4ea-4d36-9854-81d2a5666416*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2022-05-01" ], - "x-ms-request-id": [ "55221d15-d4ea-4d36-9854-81d2a5666416" ], - "x-ms-correlation-request-id": [ "21c09214-dea4-432f-83e1-65683aaa829e" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064629Z:21c09214-dea4-432f-83e1-65683aaa829e" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/761fb192-b2db-4ac9-8ba1-a6d6c81b0259*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2021-01-01-privatepreview" ], + "x-ms-request-id": [ "761fb192-b2db-4ac9-8ba1-a6d6c81b0259" ], + "x-ms-correlation-request-id": [ "2cc71b90-5ffb-4ea7-8f2d-9f6f0fa035d2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20230130T100007Z:2cc71b90-5ffb-4ea7-8f2d-9f6f0fa035d2" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:46:28 GMT" ] + "Date": [ "Mon, 30 Jan 2023 10:00:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "bnVsbA==" + "Content": "bnVsbA==", + "isContentBase64": false } }, - "New-AzServiceLinkerForWebApp+[NoContext]+New Key Vault connection+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/55221d15-d4ea-4d36-9854-81d2a5666416*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2022-05-01+9": { + "New-AzServiceLinkerForWebApp+[NoContext]+New postgresql connection+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/761fb192-b2db-4ac9-8ba1-a6d6c81b0259*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2021-01-01-privatepreview+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/55221d15-d4ea-4d36-9854-81d2a5666416*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/761fb192-b2db-4ac9-8ba1-a6d6c81b0259*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2021-01-01-privatepreview", "Content": null, + "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "29" ], - "x-ms-client-request-id": [ "e2771f23-6e53-426b-b7e8-046f64c9d34f" ], + "x-ms-unique-id": [ "9" ], + "x-ms-client-request-id": [ "ad9d0fd7-3782-434e-91e0-000dfa3ee2dc" ], "CommandName": [ "Az.ServiceLinker.internal\\Remove-AzServiceLinker" ], "FullCommandName": [ "Remove-AzServiceLinker_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"0300ab13-0000-0100-0000-627615c80000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11979" ], - "x-ms-request-id": [ "58934df7-e6c5-4572-90e5-65a1cc879375" ], - "x-ms-correlation-request-id": [ "a6ac2c4d-97e6-49e7-8510-9f8d69163e18" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064659Z:a6ac2c4d-97e6-49e7-8510-9f8d69163e18" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:46:58 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "685" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/55221d15-d4ea-4d36-9854-81d2a5666416*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38\",\"name\":\"55221d15-d4ea-4d36-9854-81d2a5666416*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"status\":\"Succeeded\",\"startTime\":\"2022-05-07T06:46:28.9779827Z\",\"endTime\":\"2022-05-07T06:46:32.3053213Z\",\"properties\":null}" - } - }, - "New-AzServiceLinkerForWebApp+[NoContext]+New Key Vault connection+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/55221d15-d4ea-4d36-9854-81d2a5666416*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2022-05-01+10": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/55221d15-d4ea-4d36-9854-81d2a5666416*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2022-05-01", - "Content": null, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "30" ], - "x-ms-client-request-id": [ "e2771f23-6e53-426b-b7e8-046f64c9d34f" ], - "CommandName": [ "Az.ServiceLinker.internal\\Remove-AzServiceLinker" ], - "FullCommandName": [ "Remove-AzServiceLinker_Delete" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"0300ab13-0000-0100-0000-627615c80000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11978" ], - "x-ms-request-id": [ "431ca249-5322-4ef8-a2ba-50675c9819c3" ], - "x-ms-correlation-request-id": [ "2ce0aa6d-625b-4320-99cb-d0fd62eaa9bc" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064659Z:2ce0aa6d-625b-4320-99cb-d0fd62eaa9bc" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:46:59 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "685" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/55221d15-d4ea-4d36-9854-81d2a5666416*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38\",\"name\":\"55221d15-d4ea-4d36-9854-81d2a5666416*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"status\":\"Succeeded\",\"startTime\":\"2022-05-07T06:46:28.9779827Z\",\"endTime\":\"2022-05-07T06:46:32.3053213Z\",\"properties\":null}" - } - }, - "New-AzServiceLinkerForWebApp+[NoContext]+New Key Vault connection+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers?api-version=2022-05-01+11": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers?api-version=2022-05-01", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "31" ], - "x-ms-client-request-id": [ "b0566190-6adf-4dc1-934e-85745520ae9a" ], - "CommandName": [ "Az.ServiceLinker.internal\\Get-AzServiceLinker" ], - "FullCommandName": [ "Get-AzServiceLinker_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11977" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064700Z:97b62fbe-36ad-4704-8ac7-8b7e477ec6fa" ], - "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "f89f5e56-7b45-4e81-9155-79bc968efaab" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e2541152-23ef-4449-9e2a-c6bffda3b63e" ], - "x-ms-correlation-request-id": [ "97b62fbe-36ad-4704-8ac7-8b7e477ec6fa" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:46:59 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "12" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"value\":[]}" - } - }, - "New-AzServiceLinkerForWebApp+[NoContext]+New postgresql connection+$PUT+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-05-01+1": { - "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-05-01", - "Content": "{\n \"properties\": {\n \"targetService\": {\n \"type\": \"AzureResource\",\n \"id\": \"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/postgres\"\n },\n \"authInfo\": {\n \"authType\": \"secret\",\n \"name\": \"servicelinker\",\n \"secretInfo\": {\n \"secretType\": \"keyVaultSecretUri\",\n \"value\": \"https://servicelinker-kv-ref.vault.azure.net/secrets/azure-mysql-host-28449/cc5d8095a54f4755b342f4e7884b5c84\"\n }\n },\n \"clientType\": \"none\"\n }\n}", - "Headers": { - }, - "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "596" ] - } - }, - "Response": { - "StatusCode": 201, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"f50081c8-0000-0200-0000-627615e60000\"" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], - "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "d6b2a538-9d7d-4eca-a664-052f2f73d521" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/c13c2a86-4378-4ae5-8b16-e41a0577bd07*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2022-05-01" ], - "x-ms-request-id": [ "c13c2a86-4378-4ae5-8b16-e41a0577bd07" ], - "x-ms-correlation-request-id": [ "2898422a-81e3-4b69-9fee-d0f98c505f06" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064702Z:2898422a-81e3-4b69-9fee-d0f98c505f06" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:47:01 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1116" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"name\":\"ps_linker\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"xiaofanzhou@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2022-05-07T06:47:00.8777739Z\",\"lastModifiedBy\":\"xiaofanzhou@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2022-05-07T06:47:00.8777739Z\"},\"properties\":{\"provisioningState\":\"Accepted\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/postgres\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"servicelinker\",\"secretInfo\":{\"value\":\"https://servicelinker-kv-ref.vault.azure.net/secrets/azure-mysql-host-28449/cc5d8095a54f4755b342f4e7884b5c84\",\"secretType\":\"keyVaultSecretUri\"},\"authType\":\"secret\"},\"vNetSolution\":null,\"clientType\":\"none\",\"secretStore\":null,\"scope\":null}}" - } - }, - "New-AzServiceLinkerForWebApp+[NoContext]+New postgresql connection+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/c13c2a86-4378-4ae5-8b16-e41a0577bd07*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2022-05-01+2": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/c13c2a86-4378-4ae5-8b16-e41a0577bd07*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2022-05-01", - "Content": null, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "33" ], - "x-ms-client-request-id": [ "dc8fb32d-9a20-4ba2-951e-b4114ca0c93d" ], - "CommandName": [ "Az.ServiceLinker.internal\\New-AzServiceLinker" ], - "FullCommandName": [ "New-AzServiceLinker_CreateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"0300bd13-0000-0100-0000-627615e90000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11976" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064732Z:272d17ae-7db0-4496-aec2-9cd3e42942ea" ], - "x-ms-request-id": [ "247ad34f-eec3-4ca3-b1fd-1bf95183f046" ], - "x-ms-correlation-request-id": [ "272d17ae-7db0-4496-aec2-9cd3e42942ea" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:47:32 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "820" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/c13c2a86-4378-4ae5-8b16-e41a0577bd07*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38\",\"name\":\"c13c2a86-4378-4ae5-8b16-e41a0577bd07*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"status\":\"Succeeded\",\"startTime\":\"2022-05-07T06:47:02.0769524Z\",\"endTime\":\"2022-05-07T06:47:05.2483279Z\",\"properties\":{\"message\":\"Deny public network access is set to yes. Please confirm you are using private endpoint connection to access target resource.\"}}" - } - }, - "New-AzServiceLinkerForWebApp+[NoContext]+New postgresql connection+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-05-01+3": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-05-01", - "Content": null, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "34" ], - "x-ms-client-request-id": [ "dc8fb32d-9a20-4ba2-951e-b4114ca0c93d" ], - "CommandName": [ "Az.ServiceLinker.internal\\New-AzServiceLinker" ], - "FullCommandName": [ "New-AzServiceLinker_CreateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"3a00c473-0000-0100-0000-627615e90000\"" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11975" ], - "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "d715979b-e3c9-4e89-a029-a86bb53859c5" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1f9e6074-aa22-43dc-b855-cd5751a9410a" ], - "x-ms-correlation-request-id": [ "76a39316-dc77-4c62-8be2-cbd338d84562" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064733Z:76a39316-dc77-4c62-8be2-cbd338d84562" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:47:33 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "875" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"name\":\"ps_linker\",\"type\":\"microsoft.servicelinker/linkers\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/postgres\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"servicelinker\",\"secretInfo\":{\"value\":\"https://servicelinker-kv-ref.vault.azure.net/secrets/azure-mysql-host-28449/cc5d8095a54f4755b342f4e7884b5c84\",\"secretType\":\"keyVaultSecretUri\"},\"authType\":\"secret\"},\"clientType\":\"none\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}}" - } - }, - "New-AzServiceLinkerForWebApp+[NoContext]+New postgresql connection+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers?api-version=2022-05-01+4": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers?api-version=2022-05-01", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "35" ], - "x-ms-client-request-id": [ "7922edbf-fd11-4ab5-b919-7ecabf08958b" ], - "CommandName": [ "Az.ServiceLinker.internal\\Get-AzServiceLinker" ], - "FullCommandName": [ "Get-AzServiceLinker_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11974" ], - "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "f908b852-e6bd-4b2d-9b92-61956aa2c84a" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9afa9c6b-b089-4577-80b1-9ce362ea8177" ], - "x-ms-correlation-request-id": [ "9b4f2eba-2713-4e6d-8949-d9122da909f3" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064734Z:9b4f2eba-2713-4e6d-8949-d9122da909f3" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:47:33 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "887" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"name\":\"ps_linker\",\"type\":\"microsoft.servicelinker/linkers\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/postgres\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"servicelinker\",\"secretInfo\":{\"value\":\"https://servicelinker-kv-ref.vault.azure.net/secrets/azure-mysql-host-28449/cc5d8095a54f4755b342f4e7884b5c84\",\"secretType\":\"keyVaultSecretUri\"},\"authType\":\"secret\"},\"clientType\":\"none\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}}]}" - } - }, - "New-AzServiceLinkerForWebApp+[NoContext]+New postgresql connection+$PUT+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-05-01+5": { - "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-05-01", - "Content": "{\n \"properties\": {\n \"targetService\": {\n \"type\": \"AzureResource\",\n \"id\": \"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/postgres\"\n },\n \"authInfo\": {\n \"authType\": \"secret\",\n \"name\": \"servicelinker\",\n \"secretInfo\": {\n \"secretType\": \"keyVaultSecretUri\",\n \"value\": \"https://servicelinker-kv-ref.vault.azure.net/secrets/azure-mysql-host-28449/cc5d8095a54f4755b342f4e7884b5c84\"\n }\n },\n \"clientType\": \"dotnet\"\n }\n}", - "Headers": { - }, - "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "598" ] - } - }, - "Response": { - "StatusCode": 201, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"f500beca-0000-0200-0000-627616070000\"" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1194" ], - "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "46e3c797-ab5c-411c-b61c-3f6876b62676" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/e41cf216-1ff2-4dde-9c58-95f99b986b75*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2022-05-01" ], - "x-ms-request-id": [ "e41cf216-1ff2-4dde-9c58-95f99b986b75" ], - "x-ms-correlation-request-id": [ "f89b4590-696f-4c65-a16a-950cd6c2a9d8" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064735Z:f89b4590-696f-4c65-a16a-950cd6c2a9d8" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:47:34 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1118" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"name\":\"ps_linker\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"xiaofanzhou@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2022-05-07T06:47:00.8777739Z\",\"lastModifiedBy\":\"xiaofanzhou@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2022-05-07T06:47:34.4559856Z\"},\"properties\":{\"provisioningState\":\"Accepted\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/postgres\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"servicelinker\",\"secretInfo\":{\"value\":\"https://servicelinker-kv-ref.vault.azure.net/secrets/azure-mysql-host-28449/cc5d8095a54f4755b342f4e7884b5c84\",\"secretType\":\"keyVaultSecretUri\"},\"authType\":\"secret\"},\"vNetSolution\":null,\"clientType\":\"dotnet\",\"secretStore\":null,\"scope\":null}}" - } - }, - "New-AzServiceLinkerForWebApp+[NoContext]+New postgresql connection+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/e41cf216-1ff2-4dde-9c58-95f99b986b75*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2022-05-01+6": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/e41cf216-1ff2-4dde-9c58-95f99b986b75*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2022-05-01", - "Content": null, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "37" ], - "x-ms-client-request-id": [ "6369ba27-3e2f-4332-9490-9dcd91b7163f" ], - "CommandName": [ "Az.ServiceLinker.internal\\New-AzServiceLinker" ], - "FullCommandName": [ "New-AzServiceLinker_CreateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"0300ce13-0000-0100-0000-6276160a0000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11973" ], - "x-ms-request-id": [ "301d6c3c-2b7a-470f-bd97-792280721b5c" ], - "x-ms-correlation-request-id": [ "06b6d618-97fb-4f84-b708-b296c73bc1f6" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064805Z:06b6d618-97fb-4f84-b708-b296c73bc1f6" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:48:04 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "820" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/e41cf216-1ff2-4dde-9c58-95f99b986b75*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38\",\"name\":\"e41cf216-1ff2-4dde-9c58-95f99b986b75*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"status\":\"Succeeded\",\"startTime\":\"2022-05-07T06:47:34.8806247Z\",\"endTime\":\"2022-05-07T06:47:38.2948597Z\",\"properties\":{\"message\":\"Deny public network access is set to yes. Please confirm you are using private endpoint connection to access target resource.\"}}" - } - }, - "New-AzServiceLinkerForWebApp+[NoContext]+New postgresql connection+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-05-01+7": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-05-01", - "Content": null, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "38" ], - "x-ms-client-request-id": [ "6369ba27-3e2f-4332-9490-9dcd91b7163f" ], - "CommandName": [ "Az.ServiceLinker.internal\\New-AzServiceLinker" ], - "FullCommandName": [ "New-AzServiceLinker_CreateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"3a002a74-0000-0100-0000-6276160a0000\"" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11972" ], - "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "30bc6a4e-2bc0-471c-a650-2a89f4144901" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "16e26f94-74d8-4c67-ac9b-8afc7c693f06" ], - "x-ms-correlation-request-id": [ "8f7ab0c1-c341-4463-9b9e-4eb4607a3888" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064806Z:8f7ab0c1-c341-4463-9b9e-4eb4607a3888" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:48:05 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "877" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"name\":\"ps_linker\",\"type\":\"microsoft.servicelinker/linkers\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/postgres\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"servicelinker\",\"secretInfo\":{\"value\":\"https://servicelinker-kv-ref.vault.azure.net/secrets/azure-mysql-host-28449/cc5d8095a54f4755b342f4e7884b5c84\",\"secretType\":\"keyVaultSecretUri\"},\"authType\":\"secret\"},\"clientType\":\"dotnet\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}}" - } - }, - "New-AzServiceLinkerForWebApp+[NoContext]+New postgresql connection+$DELETE+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-05-01+8": { - "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-05-01", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "39" ], - "x-ms-client-request-id": [ "53d86d31-d699-4efb-b0f4-6fb20ca1a1e2" ], - "CommandName": [ "Az.ServiceLinker.internal\\Remove-AzServiceLinker" ], - "FullCommandName": [ "Remove-AzServiceLinker_Delete" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.0.3", "Az.ServiceLinker/0.1.1" ] }, "ContentHeaders": { } @@ -743,40 +355,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"f50027cd-0000-0200-0000-627616260000\"" ], - "Location": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/9c4846a9-a395-47a5-b53f-c712eee8c0f2*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2022-05-01" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], - "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "e9276827-c9c7-4e8d-8c23-7922d86566af" ], + "ETag": [ "\"b20497b0-0000-0100-0000-63d795260000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], + "x-ms-request-id": [ "920dd332-10ec-46e7-9f5c-e8b7a57c3632" ], + "x-ms-correlation-request-id": [ "51eedb8a-f6aa-4f1c-8402-e19a4a2ee9f2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20230130T100037Z:51eedb8a-f6aa-4f1c-8402-e19a4a2ee9f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/9c4846a9-a395-47a5-b53f-c712eee8c0f2*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2022-05-01" ], - "x-ms-request-id": [ "9c4846a9-a395-47a5-b53f-c712eee8c0f2" ], - "x-ms-correlation-request-id": [ "4c9b3bb7-f438-4076-bddf-e8246b9b50c3" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064807Z:4c9b3bb7-f438-4076-bddf-e8246b9b50c3" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:48:06 GMT" ] + "Date": [ "Mon, 30 Jan 2023 10:00:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4" ], + "Content-Length": [ "625" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "bnVsbA==" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/761fb192-b2db-4ac9-8ba1-a6d6c81b0259*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38\",\"name\":\"761fb192-b2db-4ac9-8ba1-a6d6c81b0259*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"status\":\"Deleting\",\"startTime\":\"2023-01-30T10:00:06.7150179Z\"}", + "isContentBase64": false } }, - "New-AzServiceLinkerForWebApp+[NoContext]+New postgresql connection+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/9c4846a9-a395-47a5-b53f-c712eee8c0f2*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2022-05-01+9": { + "New-AzServiceLinkerForWebApp+[NoContext]+New postgresql connection+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/761fb192-b2db-4ac9-8ba1-a6d6c81b0259*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2021-01-01-privatepreview+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/9c4846a9-a395-47a5-b53f-c712eee8c0f2*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/761fb192-b2db-4ac9-8ba1-a6d6c81b0259*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2021-01-01-privatepreview", "Content": null, + "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "40" ], - "x-ms-client-request-id": [ "53d86d31-d699-4efb-b0f4-6fb20ca1a1e2" ], + "x-ms-unique-id": [ "10" ], + "x-ms-client-request-id": [ "ad9d0fd7-3782-434e-91e0-000dfa3ee2dc" ], "CommandName": [ "Az.ServiceLinker.internal\\Remove-AzServiceLinker" ], "FullCommandName": [ "Remove-AzServiceLinker_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.0.3", "Az.ServiceLinker/0.1.1" ] }, "ContentHeaders": { } @@ -786,36 +396,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0605f34d-0000-0200-0000-627616290000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11971" ], - "x-ms-request-id": [ "18a023f6-c982-4312-b326-0208c4cdf7a8" ], - "x-ms-correlation-request-id": [ "6162f543-d7e4-4b6e-b3a9-c941dc363dd6" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064837Z:6162f543-d7e4-4b6e-b3a9-c941dc363dd6" ], + "ETag": [ "\"b204a7b0-0000-0100-0000-63d795460000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], + "x-ms-request-id": [ "ad63ec45-4b75-49a4-b8ae-4ad386604d92" ], + "x-ms-correlation-request-id": [ "1bfa994a-c31d-4e34-a84c-a1599cc6667a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20230130T100107Z:1bfa994a-c31d-4e34-a84c-a1599cc6667a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:48:37 GMT" ] + "Date": [ "Mon, 30 Jan 2023 10:01:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "685" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/9c4846a9-a395-47a5-b53f-c712eee8c0f2*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38\",\"name\":\"9c4846a9-a395-47a5-b53f-c712eee8c0f2*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"status\":\"Succeeded\",\"startTime\":\"2022-05-07T06:48:06.8524053Z\",\"endTime\":\"2022-05-07T06:48:09.9042823Z\",\"properties\":null}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/761fb192-b2db-4ac9-8ba1-a6d6c81b0259*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38\",\"name\":\"761fb192-b2db-4ac9-8ba1-a6d6c81b0259*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"status\":\"Succeeded\",\"startTime\":\"2023-01-30T10:00:06.7150179Z\",\"endTime\":\"2023-01-30T10:00:38.0211534Z\",\"properties\":null}", + "isContentBase64": false } }, - "New-AzServiceLinkerForWebApp+[NoContext]+New postgresql connection+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/9c4846a9-a395-47a5-b53f-c712eee8c0f2*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2022-05-01+10": { + "New-AzServiceLinkerForWebApp+[NoContext]+New postgresql connection+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/761fb192-b2db-4ac9-8ba1-a6d6c81b0259*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2021-01-01-privatepreview+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/9c4846a9-a395-47a5-b53f-c712eee8c0f2*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/761fb192-b2db-4ac9-8ba1-a6d6c81b0259*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2021-01-01-privatepreview", "Content": null, + "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "41" ], - "x-ms-client-request-id": [ "53d86d31-d699-4efb-b0f4-6fb20ca1a1e2" ], + "x-ms-unique-id": [ "11" ], + "x-ms-client-request-id": [ "ad9d0fd7-3782-434e-91e0-000dfa3ee2dc" ], "CommandName": [ "Az.ServiceLinker.internal\\Remove-AzServiceLinker" ], "FullCommandName": [ "Remove-AzServiceLinker_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.0.3", "Az.ServiceLinker/0.1.1" ] }, "ContentHeaders": { } @@ -825,35 +437,37 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0605f34d-0000-0200-0000-627616290000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11970" ], - "x-ms-request-id": [ "201eeb40-798d-4775-9b2e-e807da182b7a" ], - "x-ms-correlation-request-id": [ "8114cba7-b022-410f-83f3-dd5b023d7984" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064838Z:8114cba7-b022-410f-83f3-dd5b023d7984" ], + "ETag": [ "\"b204a7b0-0000-0100-0000-63d795460000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], + "x-ms-request-id": [ "34a14c94-a9bc-4f3d-949c-b8e9a28e380a" ], + "x-ms-correlation-request-id": [ "5accc321-b68a-43eb-8d39-6aec5489bece" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20230130T100108Z:5accc321-b68a-43eb-8d39-6aec5489bece" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:48:37 GMT" ] + "Date": [ "Mon, 30 Jan 2023 10:01:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "685" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/9c4846a9-a395-47a5-b53f-c712eee8c0f2*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38\",\"name\":\"9c4846a9-a395-47a5-b53f-c712eee8c0f2*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"status\":\"Succeeded\",\"startTime\":\"2022-05-07T06:48:06.8524053Z\",\"endTime\":\"2022-05-07T06:48:09.9042823Z\",\"properties\":null}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/761fb192-b2db-4ac9-8ba1-a6d6c81b0259*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38\",\"name\":\"761fb192-b2db-4ac9-8ba1-a6d6c81b0259*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"status\":\"Succeeded\",\"startTime\":\"2023-01-30T10:00:06.7150179Z\",\"endTime\":\"2023-01-30T10:00:38.0211534Z\",\"properties\":null}", + "isContentBase64": false } }, - "New-AzServiceLinkerForWebApp+[NoContext]+New postgresql connection+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers?api-version=2022-05-01+11": { + "New-AzServiceLinkerForWebApp+[NoContext]+New postgresql connection+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers?api-version=2022-11-01-preview+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers?api-version=2022-05-01", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers?api-version=2022-11-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "42" ], - "x-ms-client-request-id": [ "2f767ff8-11bf-4562-a7d0-7bec7b325890" ], + "x-ms-unique-id": [ "12" ], + "x-ms-client-request-id": [ "f13cfbb1-fffd-4a1e-b63d-9482bbcbd36a" ], "CommandName": [ "Az.ServiceLinker.internal\\Get-AzServiceLinker" ], "FullCommandName": [ "Get-AzServiceLinker_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.0.3", "Az.ServiceLinker/0.1.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -864,35 +478,36 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11969" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "447abcca-b511-4e0d-9cdf-98c6448fc8e7" ], + "mise-correlation-id": [ "73f5c0d7-158f-4a83-b5a8-4e90fea38195" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7d959197-5128-4bad-b62f-1de5b22dcc63" ], - "x-ms-correlation-request-id": [ "1675a05c-8922-49c9-bacb-7daeaa6246d9" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064838Z:1675a05c-8922-49c9-bacb-7daeaa6246d9" ], + "x-ms-request-id": [ "06aba49b-98c3-4d2b-ba4d-db9e0bfd58ff" ], + "x-ms-correlation-request-id": [ "93fcf8aa-1442-4223-a1ee-86fc03a75b44" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20230130T100110Z:93fcf8aa-1442-4223-a1ee-86fc03a75b44" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:48:38 GMT" ] + "Date": [ "Mon, 30 Jan 2023 10:01:09 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[]}" + "Content": "{\"value\":[]}", + "isContentBase64": false } }, - "New-AzServiceLinkerForWebApp+[NoContext]+New storage connection+$PUT+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-05-01+1": { + "New-AzServiceLinkerForWebApp+[NoContext]+New storage connection+$PUT+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-11-01-preview+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-05-01", - "Content": "{\n \"properties\": {\n \"targetService\": {\n \"type\": \"AzureResource\",\n \"id\": \"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Storage/storageAccounts/servicelinkerteststorage/blobServices/default\"\n },\n \"authInfo\": {\n \"authType\": \"secret\",\n \"secretInfo\": {\n \"secretType\": \"rawValue\"\n }\n },\n \"clientType\": \"none\"\n }\n}", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-11-01-preview", + "Content": "{\r\n \"properties\": {\r\n \"targetService\": {\r\n \"type\": \"AzureResource\",\r\n \"id\": \"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Storage/storageAccounts/servicelinkerteststorage/blobServices/default\"\r\n },\r\n \"authInfo\": {\r\n \"authType\": \"secret\",\r\n \"secretInfo\": {\r\n \"secretType\": \"rawValue\"\r\n }\r\n },\r\n \"clientType\": \"none\"\r\n }\r\n}", + "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "429" ] + "Content-Length": [ "443" ] } }, "Response": { @@ -900,39 +515,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"f50061cf-0000-0200-0000-627616470000\"" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1193" ], + "ETag": [ "\"ec00b213-0000-0100-0000-63d795670000\"" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "54e2c8e2-ada0-491f-9ca1-b47159f22f5f" ], + "mise-correlation-id": [ "47364f49-4f49-4521-b2de-60efbcb0a0b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/86088970-d255-44bc-9f86-d28870f9df1d*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2022-05-01" ], - "x-ms-request-id": [ "86088970-d255-44bc-9f86-d28870f9df1d" ], - "x-ms-correlation-request-id": [ "26717051-9e0d-4771-9634-6c0a953cfd31" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064839Z:26717051-9e0d-4771-9634-6c0a953cfd31" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/66b349c7-7060-45c1-ab48-ecb866ec4db2*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2021-01-01-privatepreview" ], + "x-ms-request-id": [ "66b349c7-7060-45c1-ab48-ecb866ec4db2" ], + "x-ms-correlation-request-id": [ "a52e187c-938a-4902-a8b9-08456b36e2d5" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20230130T100111Z:a52e187c-938a-4902-a8b9-08456b36e2d5" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:48:39 GMT" ] + "Date": [ "Mon, 30 Jan 2023 10:01:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "990" ], + "Content-Length": [ "1033" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"name\":\"ps_linker\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"xiaofanzhou@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2022-05-07T06:48:38.909081Z\",\"lastModifiedBy\":\"xiaofanzhou@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2022-05-07T06:48:38.909081Z\"},\"properties\":{\"provisioningState\":\"Accepted\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Storage/storageAccounts/servicelinkerteststorage/blobServices/default\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"name\":null,\"secretInfo\":{\"value\":null,\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"vNetSolution\":null,\"clientType\":\"none\",\"secretStore\":null,\"scope\":null}}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"name\":\"ps_linker\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"xiaofanzhou@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-01-30T10:01:11.2193137Z\",\"lastModifiedBy\":\"xiaofanzhou@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-01-30T10:01:11.2193137Z\"},\"properties\":{\"provisioningState\":\"Accepted\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Storage/storageAccounts/servicelinkerteststorage/blobServices/default\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"name\":null,\"secretInfo\":{\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"vNetSolution\":null,\"clientType\":\"none\",\"secretStore\":null,\"scope\":null,\"publicNetworkSolution\":null,\"configurationInfo\":null}}", + "isContentBase64": false } }, - "New-AzServiceLinkerForWebApp+[NoContext]+New storage connection+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/86088970-d255-44bc-9f86-d28870f9df1d*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2022-05-01+2": { + "New-AzServiceLinkerForWebApp+[NoContext]+New storage connection+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/66b349c7-7060-45c1-ab48-ecb866ec4db2*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2021-01-01-privatepreview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/86088970-d255-44bc-9f86-d28870f9df1d*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/66b349c7-7060-45c1-ab48-ecb866ec4db2*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2021-01-01-privatepreview", "Content": null, + "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "44" ], - "x-ms-client-request-id": [ "85c0e897-263e-4229-9588-c513de53b609" ], + "x-ms-unique-id": [ "14" ], + "x-ms-client-request-id": [ "92096782-031d-4f84-9825-2667d6c456dd" ], "CommandName": [ "Az.ServiceLinker.internal\\New-AzServiceLinker" ], "FullCommandName": [ "New-AzServiceLinker_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.0.3", "Az.ServiceLinker/0.1.1" ] }, "ContentHeaders": { } @@ -942,36 +559,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0605fb4e-0000-0200-0000-6276164c0000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11968" ], - "x-ms-request-id": [ "5a1f7362-c0c7-48bd-8cce-061392cf2309" ], - "x-ms-correlation-request-id": [ "d6e6d940-0fd0-4b04-8e91-0834022547b9" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064909Z:d6e6d940-0fd0-4b04-8e91-0834022547b9" ], + "ETag": [ "\"b204b9b0-0000-0100-0000-63d7956e0000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], + "x-ms-request-id": [ "ecd8d2e9-93b1-4cd1-a0fe-40d5228478e5" ], + "x-ms-correlation-request-id": [ "7a899f41-26ce-4d88-8be6-2dba5335f48f" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20230130T100142Z:7a899f41-26ce-4d88-8be6-2dba5335f48f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:49:09 GMT" ] + "Date": [ "Mon, 30 Jan 2023 10:01:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "683" ], + "Content-Length": [ "697" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/86088970-d255-44bc-9f86-d28870f9df1d*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38\",\"name\":\"86088970-d255-44bc-9f86-d28870f9df1d*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"status\":\"Succeeded\",\"startTime\":\"2022-05-07T06:48:39.3264986Z\",\"endTime\":\"2022-05-07T06:48:44.3362365Z\",\"properties\":{}}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/66b349c7-7060-45c1-ab48-ecb866ec4db2*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38\",\"name\":\"66b349c7-7060-45c1-ab48-ecb866ec4db2*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"status\":\"Succeeded\",\"startTime\":\"2023-01-30T10:01:11.6121743Z\",\"endTime\":\"2023-01-30T10:01:18.3135945Z\",\"properties\":{\"Message\":null}}", + "isContentBase64": false } }, - "New-AzServiceLinkerForWebApp+[NoContext]+New storage connection+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-05-01+3": { + "New-AzServiceLinkerForWebApp+[NoContext]+New storage connection+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-11-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-05-01", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-11-01-preview", "Content": null, + "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "45" ], - "x-ms-client-request-id": [ "85c0e897-263e-4229-9588-c513de53b609" ], + "x-ms-unique-id": [ "15" ], + "x-ms-client-request-id": [ "92096782-031d-4f84-9825-2667d6c456dd" ], "CommandName": [ "Az.ServiceLinker.internal\\New-AzServiceLinker" ], "FullCommandName": [ "New-AzServiceLinker_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.0.3", "Az.ServiceLinker/0.1.1" ] }, "ContentHeaders": { } @@ -981,38 +600,39 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"f500b6cf-0000-0200-0000-6276164c0000\"" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11967" ], + "ETag": [ "\"ec00c613-0000-0100-0000-63d7956e0000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "8a92c71b-a0dd-430a-bdef-eaa5f55c51d2" ], + "mise-correlation-id": [ "19a1a7b8-4620-44b0-8bc8-3009da83448a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "48f71e0c-42c5-49b9-aa50-3d2ddafff0b1" ], - "x-ms-correlation-request-id": [ "1f76ff48-f69a-42ec-a33a-3297e4b7ec25" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064910Z:1f76ff48-f69a-42ec-a33a-3297e4b7ec25" ], + "x-ms-request-id": [ "a5dac0c0-0a04-4084-8502-66b986760552" ], + "x-ms-correlation-request-id": [ "272c7129-5594-4084-9150-9cf7131bef43" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20230130T100143Z:272c7129-5594-4084-9150-9cf7131bef43" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:49:10 GMT" ] + "Date": [ "Mon, 30 Jan 2023 10:01:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "751" ], + "Content-Length": [ "1034" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"name\":\"ps_linker\",\"type\":\"microsoft.servicelinker/linkers\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Storage/storageAccounts/servicelinkerteststorage/blobServices/default\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"name\":null,\"secretInfo\":{\"value\":null,\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"none\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"name\":\"ps_linker\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"xiaofanzhou@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-01-30T10:01:11.2193137Z\",\"lastModifiedBy\":\"xiaofanzhou@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-01-30T10:01:11.2193137Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Storage/storageAccounts/servicelinkerteststorage/blobServices/default\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"name\":null,\"secretInfo\":{\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"none\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}}", + "isContentBase64": false } }, - "New-AzServiceLinkerForWebApp+[NoContext]+New storage connection+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers?api-version=2022-05-01+4": { + "New-AzServiceLinkerForWebApp+[NoContext]+New storage connection+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers?api-version=2022-11-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers?api-version=2022-05-01", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers?api-version=2022-11-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "46" ], - "x-ms-client-request-id": [ "1f0cc32a-bc40-4278-b1bf-f5ed6a6f15e1" ], + "x-ms-unique-id": [ "16" ], + "x-ms-client-request-id": [ "b33aca51-9229-42ce-8361-bc823e35857a" ], "CommandName": [ "Az.ServiceLinker.internal\\Get-AzServiceLinker" ], "FullCommandName": [ "Get-AzServiceLinker_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.0.3", "Az.ServiceLinker/0.1.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1023,37 +643,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11966" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "c9d0ea97-8042-4355-98e0-1e498651bddd" ], + "mise-correlation-id": [ "597af7ef-4c32-4465-ad4d-2ec8f93604c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1fa0c429-e6f5-47e4-b235-33a331e7cc50" ], - "x-ms-correlation-request-id": [ "3c7f88ad-0835-45b7-b56d-1410f8323cd1" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064911Z:3c7f88ad-0835-45b7-b56d-1410f8323cd1" ], + "x-ms-request-id": [ "b18b6004-f4b8-4c80-8dee-0874008252c1" ], + "x-ms-correlation-request-id": [ "75273ccd-8c84-4dd7-a0bb-0abe772d1615" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20230130T100144Z:75273ccd-8c84-4dd7-a0bb-0abe772d1615" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:49:10 GMT" ] + "Date": [ "Mon, 30 Jan 2023 10:01:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "763" ], + "Content-Length": [ "1046" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"name\":\"ps_linker\",\"type\":\"microsoft.servicelinker/linkers\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Storage/storageAccounts/servicelinkerteststorage/blobServices/default\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"name\":null,\"secretInfo\":{\"value\":null,\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"none\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}}]}" + "Content": "{\"value\":[{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"name\":\"ps_linker\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"xiaofanzhou@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-01-30T10:01:11.2193137Z\",\"lastModifiedBy\":\"xiaofanzhou@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-01-30T10:01:11.2193137Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Storage/storageAccounts/servicelinkerteststorage/blobServices/default\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"name\":null,\"secretInfo\":{\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"none\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}}]}", + "isContentBase64": false } }, - "New-AzServiceLinkerForWebApp+[NoContext]+New storage connection+$DELETE+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-05-01+5": { + "New-AzServiceLinkerForWebApp+[NoContext]+New storage connection+$DELETE+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-11-01-preview+5": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-05-01", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-11-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "47" ], - "x-ms-client-request-id": [ "ab8f385f-4f8c-4f64-a84a-9372f4ea7a3f" ], + "x-ms-unique-id": [ "17" ], + "x-ms-client-request-id": [ "d5878ed0-c828-4fb5-a71b-c6bfd365f957" ], "CommandName": [ "Az.ServiceLinker.internal\\Remove-AzServiceLinker" ], "FullCommandName": [ "Remove-AzServiceLinker_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.0.3", "Az.ServiceLinker/0.1.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1064,40 +685,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"f50055d2-0000-0200-0000-627616680000\"" ], - "Location": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/d1b6eb60-e28f-41f8-9c40-31d54e768f59*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2022-05-01" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], + "ETag": [ "\"ec00f813-0000-0100-0000-63d795890000\"" ], + "Location": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/9b214d31-4983-4367-80e1-2f4e37461ae8*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2021-01-01-privatepreview" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "a7b5ac36-774c-44f9-b80c-7143301429ab" ], + "mise-correlation-id": [ "4729066f-ca25-453a-ac5d-a4b71228a838" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/d1b6eb60-e28f-41f8-9c40-31d54e768f59*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2022-05-01" ], - "x-ms-request-id": [ "d1b6eb60-e28f-41f8-9c40-31d54e768f59" ], - "x-ms-correlation-request-id": [ "84103be0-39b5-4ef3-ad45-0dbfc14f24d0" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064912Z:84103be0-39b5-4ef3-ad45-0dbfc14f24d0" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/9b214d31-4983-4367-80e1-2f4e37461ae8*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2021-01-01-privatepreview" ], + "x-ms-request-id": [ "9b214d31-4983-4367-80e1-2f4e37461ae8" ], + "x-ms-correlation-request-id": [ "5e69cc4e-65ff-4c11-824b-a9051d4b16a0" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20230130T100145Z:5e69cc4e-65ff-4c11-824b-a9051d4b16a0" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:49:11 GMT" ] + "Date": [ "Mon, 30 Jan 2023 10:01:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "bnVsbA==" + "Content": "bnVsbA==", + "isContentBase64": false } }, - "New-AzServiceLinkerForWebApp+[NoContext]+New storage connection+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/d1b6eb60-e28f-41f8-9c40-31d54e768f59*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2022-05-01+6": { + "New-AzServiceLinkerForWebApp+[NoContext]+New storage connection+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/9b214d31-4983-4367-80e1-2f4e37461ae8*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2021-01-01-privatepreview+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/d1b6eb60-e28f-41f8-9c40-31d54e768f59*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/9b214d31-4983-4367-80e1-2f4e37461ae8*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2021-01-01-privatepreview", "Content": null, + "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "48" ], - "x-ms-client-request-id": [ "ab8f385f-4f8c-4f64-a84a-9372f4ea7a3f" ], + "x-ms-unique-id": [ "18" ], + "x-ms-client-request-id": [ "d5878ed0-c828-4fb5-a71b-c6bfd365f957" ], "CommandName": [ "Az.ServiceLinker.internal\\Remove-AzServiceLinker" ], "FullCommandName": [ "Remove-AzServiceLinker_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.0.3", "Az.ServiceLinker/0.1.1" ] }, "ContentHeaders": { } @@ -1107,36 +730,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0300df13-0000-0100-0000-6276166b0000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11965" ], - "x-ms-request-id": [ "e8e86d5e-26f5-46c7-9e1e-8c323967983a" ], - "x-ms-correlation-request-id": [ "88bef90e-6c26-465d-88e9-a070076b2aa8" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064942Z:88bef90e-6c26-465d-88e9-a070076b2aa8" ], + "ETag": [ "\"b204bfb0-0000-0100-0000-63d7958d0000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], + "x-ms-request-id": [ "6be7f65e-4b94-42b1-a703-1ce37ac1832d" ], + "x-ms-correlation-request-id": [ "0098570e-ce81-4a0e-9719-0b5c855e2571" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20230130T100216Z:0098570e-ce81-4a0e-9719-0b5c855e2571" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:49:42 GMT" ] + "Date": [ "Mon, 30 Jan 2023 10:02:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "684" ], + "Content-Length": [ "685" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/d1b6eb60-e28f-41f8-9c40-31d54e768f59*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38\",\"name\":\"d1b6eb60-e28f-41f8-9c40-31d54e768f59*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"status\":\"Succeeded\",\"startTime\":\"2022-05-07T06:49:12.1876463Z\",\"endTime\":\"2022-05-07T06:49:15.940549Z\",\"properties\":null}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/9b214d31-4983-4367-80e1-2f4e37461ae8*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38\",\"name\":\"9b214d31-4983-4367-80e1-2f4e37461ae8*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"status\":\"Succeeded\",\"startTime\":\"2023-01-30T10:01:45.1647405Z\",\"endTime\":\"2023-01-30T10:01:49.8982901Z\",\"properties\":null}", + "isContentBase64": false } }, - "New-AzServiceLinkerForWebApp+[NoContext]+New storage connection+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/d1b6eb60-e28f-41f8-9c40-31d54e768f59*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2022-05-01+7": { + "New-AzServiceLinkerForWebApp+[NoContext]+New storage connection+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/9b214d31-4983-4367-80e1-2f4e37461ae8*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2021-01-01-privatepreview+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/d1b6eb60-e28f-41f8-9c40-31d54e768f59*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/9b214d31-4983-4367-80e1-2f4e37461ae8*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38?api-version=2021-01-01-privatepreview", "Content": null, + "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "49" ], - "x-ms-client-request-id": [ "ab8f385f-4f8c-4f64-a84a-9372f4ea7a3f" ], + "x-ms-unique-id": [ "19" ], + "x-ms-client-request-id": [ "d5878ed0-c828-4fb5-a71b-c6bfd365f957" ], "CommandName": [ "Az.ServiceLinker.internal\\Remove-AzServiceLinker" ], "FullCommandName": [ "Remove-AzServiceLinker_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.0.3", "Az.ServiceLinker/0.1.1" ] }, "ContentHeaders": { } @@ -1146,35 +771,37 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0300df13-0000-0100-0000-6276166b0000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11964" ], - "x-ms-request-id": [ "78606c6c-aa15-422f-a59e-a2f9486dcb55" ], - "x-ms-correlation-request-id": [ "a56e4160-aa51-403d-881f-1fde1a925ffd" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064943Z:a56e4160-aa51-403d-881f-1fde1a925ffd" ], + "ETag": [ "\"b204bfb0-0000-0100-0000-63d7958d0000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11986" ], + "x-ms-request-id": [ "86dcb750-861d-4cd4-8cdf-29d0aa8b3e93" ], + "x-ms-correlation-request-id": [ "6e1b0811-c881-468c-8214-9c025134b2ac" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20230130T100216Z:6e1b0811-c881-468c-8214-9c025134b2ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:49:43 GMT" ] + "Date": [ "Mon, 30 Jan 2023 10:02:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "684" ], + "Content-Length": [ "685" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/d1b6eb60-e28f-41f8-9c40-31d54e768f59*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38\",\"name\":\"d1b6eb60-e28f-41f8-9c40-31d54e768f59*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"status\":\"Succeeded\",\"startTime\":\"2022-05-07T06:49:12.1876463Z\",\"endTime\":\"2022-05-07T06:49:15.940549Z\",\"properties\":null}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/9b214d31-4983-4367-80e1-2f4e37461ae8*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38\",\"name\":\"9b214d31-4983-4367-80e1-2f4e37461ae8*1DBA0E39B422ED3F2F61DD3B4A9FF51C1FA136EBEE12A84D4CBF1569EFDA5F38\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"status\":\"Succeeded\",\"startTime\":\"2023-01-30T10:01:45.1647405Z\",\"endTime\":\"2023-01-30T10:01:49.8982901Z\",\"properties\":null}", + "isContentBase64": false } }, - "New-AzServiceLinkerForWebApp+[NoContext]+New storage connection+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers?api-version=2022-05-01+8": { + "New-AzServiceLinkerForWebApp+[NoContext]+New storage connection+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers?api-version=2022-11-01-preview+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers?api-version=2022-05-01", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers?api-version=2022-11-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "50" ], - "x-ms-client-request-id": [ "fe2541ed-b0f6-4405-9a5e-08810db75ca3" ], + "x-ms-unique-id": [ "20" ], + "x-ms-client-request-id": [ "8bdbf8ee-c23a-4557-b904-c151839bff0b" ], "CommandName": [ "Az.ServiceLinker.internal\\Get-AzServiceLinker" ], "FullCommandName": [ "Get-AzServiceLinker_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.0.3", "Az.ServiceLinker/0.1.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1185,23 +812,23 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11963" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11985" ], "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "6bd723f1-27f8-45ee-9d3c-229db39644cf" ], + "mise-correlation-id": [ "581c3012-2da1-4c03-8111-81e0cb336951" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d61ad838-754b-47e7-b865-4b80d2ed442e" ], - "x-ms-correlation-request-id": [ "e62c7c23-eca4-420a-a0d8-452881c5552c" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T064944Z:e62c7c23-eca4-420a-a0d8-452881c5552c" ], + "x-ms-request-id": [ "5af0d8ae-2e30-4cf9-aacb-9878c944b59c" ], + "x-ms-correlation-request-id": [ "e4e3dd93-c2e1-4091-a75d-18ccfd7ae25e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20230130T100217Z:e4e3dd93-c2e1-4091-a75d-18ccfd7ae25e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:49:44 GMT" ] + "Date": [ "Mon, 30 Jan 2023 10:02:16 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[]}" + "Content": "{\"value\":[]}", + "isContentBase64": false } } } \ No newline at end of file diff --git a/src/ServiceLinker/test/Remove-AzServiceLinkerForSpringCloud.Recording.json b/src/ServiceLinker/test/Remove-AzServiceLinkerForSpringCloud.Recording.json index b5fa9ef89afd..11281345baef 100644 --- a/src/ServiceLinker/test/Remove-AzServiceLinkerForSpringCloud.Recording.json +++ b/src/ServiceLinker/test/Remove-AzServiceLinkerForSpringCloud.Recording.json @@ -1,137 +1,56 @@ { - "Remove-AzServiceLinkerForSpringCloud+[NoContext]+Delete+$DELETE+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-05-01+1": { + "Remove-AzServiceLinkerForSpringCloud+[NoContext]+Delete+$DELETE+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-11-01-preview+1": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-05-01", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-11-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "51" ], - "x-ms-client-request-id": [ "4d14a9fc-1122-464f-9ec7-e0098c35f9d6" ], + "x-ms-unique-id": [ "38" ], + "x-ms-client-request-id": [ "9728fdaf-7de8-41da-941f-7ce13a996f7d" ], "CommandName": [ "Az.ServiceLinker.internal\\Remove-AzServiceLinker" ], "FullCommandName": [ "Remove-AzServiceLinker_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceLinker/0.1.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 202, + "StatusCode": 204, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"f5006fd6-0000-0200-0000-627616b10000\"" ], - "Location": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/aac76862-44fc-41c0-b9cd-c191c5c2e733*FF9853222A32BCC2A8434BCA00837B5104E7175F34B3F417895F59A43CD06D0C?api-version=2022-05-01" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14996" ], "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "33d577d5-6432-40fb-beec-10563de19caf" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/aac76862-44fc-41c0-b9cd-c191c5c2e733*FF9853222A32BCC2A8434BCA00837B5104E7175F34B3F417895F59A43CD06D0C?api-version=2022-05-01" ], - "x-ms-request-id": [ "aac76862-44fc-41c0-b9cd-c191c5c2e733" ], - "x-ms-correlation-request-id": [ "9b58290b-06cb-424d-b363-54493c2463a6" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T065025Z:9b58290b-06cb-424d-b363-54493c2463a6" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:50:25 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "4" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "bnVsbA==" - } - }, - "Remove-AzServiceLinkerForSpringCloud+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/aac76862-44fc-41c0-b9cd-c191c5c2e733*FF9853222A32BCC2A8434BCA00837B5104E7175F34B3F417895F59A43CD06D0C?api-version=2022-05-01+2": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/aac76862-44fc-41c0-b9cd-c191c5c2e733*FF9853222A32BCC2A8434BCA00837B5104E7175F34B3F417895F59A43CD06D0C?api-version=2022-05-01", - "Content": null, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "52" ], - "x-ms-client-request-id": [ "4d14a9fc-1122-464f-9ec7-e0098c35f9d6" ], - "CommandName": [ "Az.ServiceLinker.internal\\Remove-AzServiceLinker" ], - "FullCommandName": [ "Remove-AzServiceLinker_Delete" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"0300e913-0000-0100-0000-627616b30000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11962" ], - "x-ms-request-id": [ "0a0e4643-baac-4121-bc9b-f2ce6d9e0c19" ], - "x-ms-correlation-request-id": [ "ee09d7fe-fe52-4f33-b31b-ddda5e279a9b" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T065055Z:ee09d7fe-fe52-4f33-b31b-ddda5e279a9b" ], + "x-ms-request-id": [ "00000000-0000-0000-0000-000000000000" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], + "x-ms-correlation-request-id": [ "c3f9d362-69c1-4113-8a4b-2b0df10751a0" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20230130T051940Z:c3f9d362-69c1-4113-8a4b-2b0df10751a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:50:54 GMT" ] + "Date": [ "Mon, 30 Jan 2023 05:19:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "728" ], - "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/aac76862-44fc-41c0-b9cd-c191c5c2e733*FF9853222A32BCC2A8434BCA00837B5104E7175F34B3F417895F59A43CD06D0C\",\"name\":\"aac76862-44fc-41c0-b9cd-c191c5c2e733*FF9853222A32BCC2A8434BCA00837B5104E7175F34B3F417895F59A43CD06D0C\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"status\":\"Succeeded\",\"startTime\":\"2022-05-07T06:50:24.9822529Z\",\"endTime\":\"2022-05-07T06:50:27.7001969Z\",\"properties\":null}" - } - }, - "Remove-AzServiceLinkerForSpringCloud+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/aac76862-44fc-41c0-b9cd-c191c5c2e733*FF9853222A32BCC2A8434BCA00837B5104E7175F34B3F417895F59A43CD06D0C?api-version=2022-05-01+3": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/aac76862-44fc-41c0-b9cd-c191c5c2e733*FF9853222A32BCC2A8434BCA00837B5104E7175F34B3F417895F59A43CD06D0C?api-version=2022-05-01", "Content": null, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "53" ], - "x-ms-client-request-id": [ "4d14a9fc-1122-464f-9ec7-e0098c35f9d6" ], - "CommandName": [ "Az.ServiceLinker.internal\\Remove-AzServiceLinker" ], - "FullCommandName": [ "Remove-AzServiceLinker_Delete" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"0300e913-0000-0100-0000-627616b30000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11961" ], - "x-ms-request-id": [ "6419afc2-12db-4754-ab70-b6575f610017" ], - "x-ms-correlation-request-id": [ "c5da3490-5ced-4c93-ae61-ffc29e966db4" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T065056Z:c5da3490-5ced-4c93-ae61-ffc29e966db4" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:50:55 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "728" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/aac76862-44fc-41c0-b9cd-c191c5c2e733*FF9853222A32BCC2A8434BCA00837B5104E7175F34B3F417895F59A43CD06D0C\",\"name\":\"aac76862-44fc-41c0-b9cd-c191c5c2e733*FF9853222A32BCC2A8434BCA00837B5104E7175F34B3F417895F59A43CD06D0C\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/ps_linker\",\"status\":\"Succeeded\",\"startTime\":\"2022-05-07T06:50:24.9822529Z\",\"endTime\":\"2022-05-07T06:50:27.7001969Z\",\"properties\":null}" + "isContentBase64": false } }, - "Remove-AzServiceLinkerForSpringCloud+[NoContext]+DeleteViaIdentity+$DELETE+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-05-01+1": { + "Remove-AzServiceLinkerForSpringCloud+[NoContext]+DeleteViaIdentity+$DELETE+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-11-01-preview+1": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-05-01", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-11-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "54" ], - "x-ms-client-request-id": [ "57d81ece-3fd3-41ae-8360-adbb3182a692" ], + "x-ms-unique-id": [ "39" ], + "x-ms-client-request-id": [ "304b2f8a-af8f-4ff0-9330-f1931b656cd9" ], "CommandName": [ "Az.ServiceLinker.internal\\Remove-AzServiceLinker" ], "FullCommandName": [ "Remove-AzServiceLinker_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceLinker/0.1.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -144,17 +63,18 @@ "Pragma": [ "no-cache" ], "x-ms-providerhub-traffic": [ "True" ], "x-ms-request-id": [ "00000000-0000-0000-0000-000000000000" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14995" ], - "x-ms-correlation-request-id": [ "8df934ba-55af-4b7e-b3c3-d09190a8a7f6" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T065056Z:8df934ba-55af-4b7e-b3c3-d09190a8a7f6" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14996" ], + "x-ms-correlation-request-id": [ "fe9424f5-b2c1-4ef7-993d-05ee9f842ec2" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20230130T051941Z:fe9424f5-b2c1-4ef7-993d-05ee9f842ec2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:50:56 GMT" ] + "Date": [ "Mon, 30 Jan 2023 05:19:41 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ] }, - "Content": null + "Content": null, + "isContentBase64": false } } } \ No newline at end of file diff --git a/src/ServiceLinker/test/Remove-AzServiceLinkerForWebApp.Recording.json b/src/ServiceLinker/test/Remove-AzServiceLinkerForWebApp.Recording.json index 63944bac926a..e2bb05394cd9 100644 --- a/src/ServiceLinker/test/Remove-AzServiceLinkerForWebApp.Recording.json +++ b/src/ServiceLinker/test/Remove-AzServiceLinkerForWebApp.Recording.json @@ -1,16 +1,17 @@ { - "Remove-AzServiceLinkerForWebApp+[NoContext]+Delete+$DELETE+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-05-01+1": { + "Remove-AzServiceLinkerForWebApp+[NoContext]+Delete+$DELETE+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-11-01-preview+1": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-05-01", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-11-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "55" ], - "x-ms-client-request-id": [ "ee80ccbe-2acc-444d-8391-4c1f20380ccb" ], + "x-ms-unique-id": [ "40" ], + "x-ms-client-request-id": [ "e591337b-d5ab-4a2d-9740-96c5455e9b5a" ], "CommandName": [ "Az.ServiceLinker.internal\\Remove-AzServiceLinker" ], "FullCommandName": [ "Remove-AzServiceLinker_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceLinker/0.1.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -23,31 +24,33 @@ "Pragma": [ "no-cache" ], "x-ms-providerhub-traffic": [ "True" ], "x-ms-request-id": [ "00000000-0000-0000-0000-000000000000" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14994" ], - "x-ms-correlation-request-id": [ "23adc7f4-c93f-4340-9e41-1232106d6933" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T065104Z:23adc7f4-c93f-4340-9e41-1232106d6933" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14995" ], + "x-ms-correlation-request-id": [ "abf1fbc0-afc4-4722-bde4-c33c15f1f342" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20230130T051950Z:abf1fbc0-afc4-4722-bde4-c33c15f1f342" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:51:03 GMT" ] + "Date": [ "Mon, 30 Jan 2023 05:19:50 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ] }, - "Content": null + "Content": null, + "isContentBase64": false } }, - "Remove-AzServiceLinkerForWebApp+[NoContext]+DeleteViaIdentity+$DELETE+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-05-01+1": { + "Remove-AzServiceLinkerForWebApp+[NoContext]+DeleteViaIdentity+$DELETE+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-11-01-preview+1": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-05-01", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-powershell/providers/Microsoft.ServiceLinker/linkers/ps_linker?api-version=2022-11-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "56" ], - "x-ms-client-request-id": [ "73d051a1-9ef5-498f-a9a8-cfa21540762e" ], + "x-ms-unique-id": [ "41" ], + "x-ms-client-request-id": [ "e30a5015-c37d-4c3e-913a-10d40d5010a9" ], "CommandName": [ "Az.ServiceLinker.internal\\Remove-AzServiceLinker" ], "FullCommandName": [ "Remove-AzServiceLinker_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceLinker/0.1.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -60,17 +63,18 @@ "Pragma": [ "no-cache" ], "x-ms-providerhub-traffic": [ "True" ], "x-ms-request-id": [ "00000000-0000-0000-0000-000000000000" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14993" ], - "x-ms-correlation-request-id": [ "7d151bea-239a-45de-9699-191405568fb2" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T065104Z:7d151bea-239a-45de-9699-191405568fb2" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14994" ], + "x-ms-correlation-request-id": [ "be6e9b13-a811-42c1-bb76-7db773eec151" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20230130T051951Z:be6e9b13-a811-42c1-bb76-7db773eec151" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:51:04 GMT" ] + "Date": [ "Mon, 30 Jan 2023 05:19:51 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ] }, - "Content": null + "Content": null, + "isContentBase64": false } } } \ No newline at end of file diff --git a/src/ServiceLinker/test/Test-AzServiceLinkerForContainerApp.Recording.json b/src/ServiceLinker/test/Test-AzServiceLinkerForContainerApp.Recording.json index 2399812f7086..a84e9a34e444 100644 --- a/src/ServiceLinker/test/Test-AzServiceLinkerForContainerApp.Recording.json +++ b/src/ServiceLinker/test/Test-AzServiceLinkerForContainerApp.Recording.json @@ -1,16 +1,17 @@ { - "Test-AzServiceLinkerForContainerApp+[NoContext]+Validate+$POST+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker/validateLinker?api-version=2022-05-01+1": { + "Test-AzServiceLinkerForContainerApp+[NoContext]+Validate+$POST+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker/validateLinker?api-version=2022-11-01-preview+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker/validateLinker?api-version=2022-05-01", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker/validateLinker?api-version=2022-11-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "57" ], - "x-ms-client-request-id": [ "3bad78bf-434e-4419-be22-471ab2f19015" ], + "x-ms-unique-id": [ "42" ], + "x-ms-client-request-id": [ "e38802c9-2429-4e13-a318-3f6898d92dab" ], "CommandName": [ "Az.ServiceLinker.internal\\Test-AzServiceLinker" ], "FullCommandName": [ "Test-AzServiceLinker_Validate" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceLinker/0.1.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -21,39 +22,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/9902f9ea-fff9-442e-8406-9252226f93df*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C?api-version=2022-05-01" ], + "Location": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/b8c131ad-0614-411d-b109-1a6336cd041d*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C?api-version=2021-01-01-privatepreview" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "51edde27-f139-4b80-b3f4-de21d0fcd928" ], + "mise-correlation-id": [ "54aac67b-32fc-476b-916f-d67a1481ec41" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/9902f9ea-fff9-442e-8406-9252226f93df*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C?api-version=2022-05-01" ], - "x-ms-request-id": [ "9902f9ea-fff9-442e-8406-9252226f93df" ], - "x-ms-correlation-request-id": [ "b193cb57-fd03-4d77-8598-e08549852a28" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T065111Z:b193cb57-fd03-4d77-8598-e08549852a28" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/b8c131ad-0614-411d-b109-1a6336cd041d*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C?api-version=2021-01-01-privatepreview" ], + "x-ms-request-id": [ "b8c131ad-0614-411d-b109-1a6336cd041d" ], + "x-ms-correlation-request-id": [ "8a820216-62c1-40f2-91a4-fce0a9ecbc67" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20230130T052010Z:8a820216-62c1-40f2-91a4-fce0a9ecbc67" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:51:10 GMT" ] + "Date": [ "Mon, 30 Jan 2023 05:20:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "bnVsbA==" + "Content": "bnVsbA==", + "isContentBase64": false } }, - "Test-AzServiceLinkerForContainerApp+[NoContext]+Validate+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/9902f9ea-fff9-442e-8406-9252226f93df*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C?api-version=2022-05-01+2": { + "Test-AzServiceLinkerForContainerApp+[NoContext]+Validate+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/b8c131ad-0614-411d-b109-1a6336cd041d*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C?api-version=2021-01-01-privatepreview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/9902f9ea-fff9-442e-8406-9252226f93df*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/b8c131ad-0614-411d-b109-1a6336cd041d*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C?api-version=2021-01-01-privatepreview", "Content": null, + "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "58" ], - "x-ms-client-request-id": [ "3bad78bf-434e-4419-be22-471ab2f19015" ], + "x-ms-unique-id": [ "43" ], + "x-ms-client-request-id": [ "e38802c9-2429-4e13-a318-3f6898d92dab" ], "CommandName": [ "Az.ServiceLinker.internal\\Test-AzServiceLinker" ], "FullCommandName": [ "Test-AzServiceLinker_Validate" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceLinker/0.1.0" ] }, "ContentHeaders": { } @@ -63,36 +66,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0300ff13-0000-0100-0000-627616e50000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11960" ], - "x-ms-request-id": [ "465f10c1-dbed-4f77-bf03-9046d2169ae1" ], - "x-ms-correlation-request-id": [ "6bdeec3c-e11f-4ee7-a836-f3111098f711" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T065142Z:6bdeec3c-e11f-4ee7-a836-f3111098f711" ], + "ETag": [ "\"b204f29d-0000-0100-0000-63d7538f0000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11972" ], + "x-ms-request-id": [ "8ca6f77d-0b32-4c4d-b20b-518d14cd8aa4" ], + "x-ms-correlation-request-id": [ "3356b8d8-5445-4bad-b0cc-799716bda261" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20230130T052041Z:3356b8d8-5445-4bad-b0cc-799716bda261" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:51:41 GMT" ] + "Date": [ "Mon, 30 Jan 2023 05:20:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1441" ], + "Content-Length": [ "2070" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/9902f9ea-fff9-442e-8406-9252226f93df*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C\",\"name\":\"9902f9ea-fff9-442e-8406-9252226f93df*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"status\":\"Succeeded\",\"startTime\":\"2022-05-07T06:51:11.6041863Z\",\"endTime\":\"2022-05-07T06:51:17.7639085Z\",\"properties\":{\"message\":\"{\\\"ConnectionName\\\":\\\"preparedLinker\\\",\\\"IsConnectionAvailable\\\":false,\\\"ValidationDetail\\\":[{\\\"Name\\\":\\\"The target existence is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0},{\\\"Name\\\":\\\"The target service firewall is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0},{\\\"Name\\\":\\\"The configured values is validated\\\",\\\"Description\\\":\\\"connectionString of connection is incorrect\\\",\\\"Result\\\":1}],\\\"ReportStartTimeUtc\\\":\\\"2022-05-07T06:51:12.8642071Z\\\",\\\"ReportEndTimeUtc\\\":\\\"2022-05-07T06:51:17.6358226Z\\\",\\\"SourceId\\\":null,\\\"TargetId\\\":\\\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/xichen-postgresql/databases/testdb\\\",\\\"AuthType\\\":4}\"}}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/b8c131ad-0614-411d-b109-1a6336cd041d*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C\",\"name\":\"b8c131ad-0614-411d-b109-1a6336cd041d*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"status\":\"Succeeded\",\"startTime\":\"2023-01-30T05:20:09.8446588Z\",\"endTime\":\"2023-01-30T05:20:15.0987634Z\",\"properties\":{\"Message\":\"{\\\"ConnectionName\\\":\\\"preparedLinker\\\",\\\"IsConnectionAvailable\\\":true,\\\"ValidationDetail\\\":[{\\\"Name\\\":\\\"The target existence is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0},{\\\"Name\\\":\\\"The target\u0027s network access is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0},{\\\"Name\\\":\\\"The configured values is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0},{\\\"Name\\\":\\\"The identity existence is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0},{\\\"Name\\\":\\\"The identity permission is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0}],\\\"ReportStartTimeUtc\\\":\\\"2023-01-30T05:20:11.5780331Z\\\",\\\"ReportEndTimeUtc\\\":\\\"2023-01-30T05:20:13.9648093Z\\\",\\\"SourceId\\\":null,\\\"TargetId\\\":null,\\\"AuthType\\\":0}\",\"linkerName\":\"preparedLinker\",\"isConnectionAvailable\":true,\"validationDetail\":[{\"name\":\"The target existence is validated\",\"description\":null,\"result\":\"success\"},{\"name\":\"The target\u0027s network access is validated\",\"description\":null,\"result\":\"success\"},{\"name\":\"The configured values is validated\",\"description\":null,\"result\":\"success\"},{\"name\":\"The identity existence is validated\",\"description\":null,\"result\":\"success\"},{\"name\":\"The identity permission is validated\",\"description\":null,\"result\":\"success\"}],\"reportStartTimeUtc\":\"2023-01-30T05:20:11.5780331Z\",\"reportEndTimeUtc\":\"2023-01-30T05:20:13.9648093Z\",\"sourceId\":null,\"targetId\":null,\"authType\":\"systemAssignedIdentity\"}}", + "isContentBase64": false } }, - "Test-AzServiceLinkerForContainerApp+[NoContext]+Validate+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/9902f9ea-fff9-442e-8406-9252226f93df*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C?api-version=2022-05-01+3": { + "Test-AzServiceLinkerForContainerApp+[NoContext]+Validate+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/b8c131ad-0614-411d-b109-1a6336cd041d*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C?api-version=2021-01-01-privatepreview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/9902f9ea-fff9-442e-8406-9252226f93df*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/b8c131ad-0614-411d-b109-1a6336cd041d*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C?api-version=2021-01-01-privatepreview", "Content": null, + "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "59" ], - "x-ms-client-request-id": [ "3bad78bf-434e-4419-be22-471ab2f19015" ], + "x-ms-unique-id": [ "44" ], + "x-ms-client-request-id": [ "e38802c9-2429-4e13-a318-3f6898d92dab" ], "CommandName": [ "Az.ServiceLinker.internal\\Test-AzServiceLinker" ], "FullCommandName": [ "Test-AzServiceLinker_Validate" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceLinker/0.1.0" ] }, "ContentHeaders": { } @@ -102,35 +107,37 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0300ff13-0000-0100-0000-627616e50000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11959" ], - "x-ms-request-id": [ "954ab2fc-231b-4cd1-97f6-d9e87bb2c4b7" ], - "x-ms-correlation-request-id": [ "645612f2-d34c-4871-8af4-5c609ae966fb" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T065142Z:645612f2-d34c-4871-8af4-5c609ae966fb" ], + "ETag": [ "\"b204f29d-0000-0100-0000-63d7538f0000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11971" ], + "x-ms-request-id": [ "766393b9-105d-4547-b9a2-6abe1bb6d3a2" ], + "x-ms-correlation-request-id": [ "adf8b83e-d3e2-4a46-9e48-dd0fc872d579" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20230130T052041Z:adf8b83e-d3e2-4a46-9e48-dd0fc872d579" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:51:42 GMT" ] + "Date": [ "Mon, 30 Jan 2023 05:20:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1441" ], + "Content-Length": [ "2070" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/9902f9ea-fff9-442e-8406-9252226f93df*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C\",\"name\":\"9902f9ea-fff9-442e-8406-9252226f93df*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"status\":\"Succeeded\",\"startTime\":\"2022-05-07T06:51:11.6041863Z\",\"endTime\":\"2022-05-07T06:51:17.7639085Z\",\"properties\":{\"message\":\"{\\\"ConnectionName\\\":\\\"preparedLinker\\\",\\\"IsConnectionAvailable\\\":false,\\\"ValidationDetail\\\":[{\\\"Name\\\":\\\"The target existence is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0},{\\\"Name\\\":\\\"The target service firewall is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0},{\\\"Name\\\":\\\"The configured values is validated\\\",\\\"Description\\\":\\\"connectionString of connection is incorrect\\\",\\\"Result\\\":1}],\\\"ReportStartTimeUtc\\\":\\\"2022-05-07T06:51:12.8642071Z\\\",\\\"ReportEndTimeUtc\\\":\\\"2022-05-07T06:51:17.6358226Z\\\",\\\"SourceId\\\":null,\\\"TargetId\\\":\\\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/xichen-postgresql/databases/testdb\\\",\\\"AuthType\\\":4}\"}}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/b8c131ad-0614-411d-b109-1a6336cd041d*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C\",\"name\":\"b8c131ad-0614-411d-b109-1a6336cd041d*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"status\":\"Succeeded\",\"startTime\":\"2023-01-30T05:20:09.8446588Z\",\"endTime\":\"2023-01-30T05:20:15.0987634Z\",\"properties\":{\"Message\":\"{\\\"ConnectionName\\\":\\\"preparedLinker\\\",\\\"IsConnectionAvailable\\\":true,\\\"ValidationDetail\\\":[{\\\"Name\\\":\\\"The target existence is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0},{\\\"Name\\\":\\\"The target\u0027s network access is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0},{\\\"Name\\\":\\\"The configured values is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0},{\\\"Name\\\":\\\"The identity existence is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0},{\\\"Name\\\":\\\"The identity permission is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0}],\\\"ReportStartTimeUtc\\\":\\\"2023-01-30T05:20:11.5780331Z\\\",\\\"ReportEndTimeUtc\\\":\\\"2023-01-30T05:20:13.9648093Z\\\",\\\"SourceId\\\":null,\\\"TargetId\\\":null,\\\"AuthType\\\":0}\",\"linkerName\":\"preparedLinker\",\"isConnectionAvailable\":true,\"validationDetail\":[{\"name\":\"The target existence is validated\",\"description\":null,\"result\":\"success\"},{\"name\":\"The target\u0027s network access is validated\",\"description\":null,\"result\":\"success\"},{\"name\":\"The configured values is validated\",\"description\":null,\"result\":\"success\"},{\"name\":\"The identity existence is validated\",\"description\":null,\"result\":\"success\"},{\"name\":\"The identity permission is validated\",\"description\":null,\"result\":\"success\"}],\"reportStartTimeUtc\":\"2023-01-30T05:20:11.5780331Z\",\"reportEndTimeUtc\":\"2023-01-30T05:20:13.9648093Z\",\"sourceId\":null,\"targetId\":null,\"authType\":\"systemAssignedIdentity\"}}", + "isContentBase64": false } }, - "Test-AzServiceLinkerForContainerApp+[NoContext]+ValidateViaIdentity+$POST+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker/validateLinker?api-version=2022-05-01+1": { + "Test-AzServiceLinkerForContainerApp+[NoContext]+ValidateViaIdentity+$POST+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker/validateLinker?api-version=2022-11-01-preview+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker/validateLinker?api-version=2022-05-01", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker/validateLinker?api-version=2022-11-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "60" ], - "x-ms-client-request-id": [ "4e58cd32-9066-4d05-8820-e30746e5a599" ], + "x-ms-unique-id": [ "45" ], + "x-ms-client-request-id": [ "37ad3076-b941-4bd7-bc85-953b8ecc6bdd" ], "CommandName": [ "Az.ServiceLinker.internal\\Test-AzServiceLinker" ], "FullCommandName": [ "Test-AzServiceLinker_ValidateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceLinker/0.1.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -141,39 +148,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/93d9a33a-f13a-495f-905b-3aba37637f5a*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C?api-version=2022-05-01" ], + "Location": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/5cdab3bf-ab52-4ba4-85de-10ddb0f36f91*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C?api-version=2021-01-01-privatepreview" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "7889381a-e834-4d23-b12f-dcae63dacfd3" ], + "mise-correlation-id": [ "097eeb3e-e111-4b1f-9b1a-ff006d7f88eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/93d9a33a-f13a-495f-905b-3aba37637f5a*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C?api-version=2022-05-01" ], - "x-ms-request-id": [ "93d9a33a-f13a-495f-905b-3aba37637f5a" ], - "x-ms-correlation-request-id": [ "1c30041c-afe2-4fbd-ae5b-cc9e098c534b" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T065143Z:1c30041c-afe2-4fbd-ae5b-cc9e098c534b" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/5cdab3bf-ab52-4ba4-85de-10ddb0f36f91*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C?api-version=2021-01-01-privatepreview" ], + "x-ms-request-id": [ "5cdab3bf-ab52-4ba4-85de-10ddb0f36f91" ], + "x-ms-correlation-request-id": [ "6abbde9d-488a-48e9-aa55-1489f065b009" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20230130T052043Z:6abbde9d-488a-48e9-aa55-1489f065b009" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:51:43 GMT" ] + "Date": [ "Mon, 30 Jan 2023 05:20:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "bnVsbA==" + "Content": "bnVsbA==", + "isContentBase64": false } }, - "Test-AzServiceLinkerForContainerApp+[NoContext]+ValidateViaIdentity+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/93d9a33a-f13a-495f-905b-3aba37637f5a*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C?api-version=2022-05-01+2": { + "Test-AzServiceLinkerForContainerApp+[NoContext]+ValidateViaIdentity+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/5cdab3bf-ab52-4ba4-85de-10ddb0f36f91*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C?api-version=2021-01-01-privatepreview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/93d9a33a-f13a-495f-905b-3aba37637f5a*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/5cdab3bf-ab52-4ba4-85de-10ddb0f36f91*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C?api-version=2021-01-01-privatepreview", "Content": null, + "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "61" ], - "x-ms-client-request-id": [ "4e58cd32-9066-4d05-8820-e30746e5a599" ], + "x-ms-unique-id": [ "46" ], + "x-ms-client-request-id": [ "37ad3076-b941-4bd7-bc85-953b8ecc6bdd" ], "CommandName": [ "Az.ServiceLinker.internal\\Test-AzServiceLinker" ], "FullCommandName": [ "Test-AzServiceLinker_ValidateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceLinker/0.1.0" ] }, "ContentHeaders": { } @@ -183,36 +192,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"03001414-0000-0100-0000-627617040000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11958" ], - "x-ms-request-id": [ "b4442469-7ea2-478e-becc-139c2077c35c" ], - "x-ms-correlation-request-id": [ "f00ebc0c-e149-4beb-8239-80828953ee61" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T065214Z:f00ebc0c-e149-4beb-8239-80828953ee61" ], + "ETag": [ "\"b204089e-0000-0100-0000-63d753af0000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11970" ], + "x-ms-request-id": [ "88ceac02-7dd5-4362-a712-456ed78c277d" ], + "x-ms-correlation-request-id": [ "3d5aa47f-487c-4963-9950-2cd55add11a7" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20230130T052113Z:3d5aa47f-487c-4963-9950-2cd55add11a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:52:14 GMT" ] + "Date": [ "Mon, 30 Jan 2023 05:21:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1441" ], + "Content-Length": [ "2070" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/93d9a33a-f13a-495f-905b-3aba37637f5a*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C\",\"name\":\"93d9a33a-f13a-495f-905b-3aba37637f5a*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"status\":\"Succeeded\",\"startTime\":\"2022-05-07T06:51:43.1928451Z\",\"endTime\":\"2022-05-07T06:51:48.4142073Z\",\"properties\":{\"message\":\"{\\\"ConnectionName\\\":\\\"preparedLinker\\\",\\\"IsConnectionAvailable\\\":false,\\\"ValidationDetail\\\":[{\\\"Name\\\":\\\"The target existence is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0},{\\\"Name\\\":\\\"The target service firewall is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0},{\\\"Name\\\":\\\"The configured values is validated\\\",\\\"Description\\\":\\\"connectionString of connection is incorrect\\\",\\\"Result\\\":1}],\\\"ReportStartTimeUtc\\\":\\\"2022-05-07T06:51:44.5200182Z\\\",\\\"ReportEndTimeUtc\\\":\\\"2022-05-07T06:51:48.3558365Z\\\",\\\"SourceId\\\":null,\\\"TargetId\\\":\\\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/xichen-postgresql/databases/testdb\\\",\\\"AuthType\\\":4}\"}}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/5cdab3bf-ab52-4ba4-85de-10ddb0f36f91*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C\",\"name\":\"5cdab3bf-ab52-4ba4-85de-10ddb0f36f91*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"status\":\"Succeeded\",\"startTime\":\"2023-01-30T05:20:42.8002997Z\",\"endTime\":\"2023-01-30T05:20:47.5931259Z\",\"properties\":{\"Message\":\"{\\\"ConnectionName\\\":\\\"preparedLinker\\\",\\\"IsConnectionAvailable\\\":true,\\\"ValidationDetail\\\":[{\\\"Name\\\":\\\"The target existence is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0},{\\\"Name\\\":\\\"The target\u0027s network access is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0},{\\\"Name\\\":\\\"The configured values is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0},{\\\"Name\\\":\\\"The identity existence is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0},{\\\"Name\\\":\\\"The identity permission is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0}],\\\"ReportStartTimeUtc\\\":\\\"2023-01-30T05:20:44.4808376Z\\\",\\\"ReportEndTimeUtc\\\":\\\"2023-01-30T05:20:46.4431334Z\\\",\\\"SourceId\\\":null,\\\"TargetId\\\":null,\\\"AuthType\\\":0}\",\"linkerName\":\"preparedLinker\",\"isConnectionAvailable\":true,\"validationDetail\":[{\"name\":\"The target existence is validated\",\"description\":null,\"result\":\"success\"},{\"name\":\"The target\u0027s network access is validated\",\"description\":null,\"result\":\"success\"},{\"name\":\"The configured values is validated\",\"description\":null,\"result\":\"success\"},{\"name\":\"The identity existence is validated\",\"description\":null,\"result\":\"success\"},{\"name\":\"The identity permission is validated\",\"description\":null,\"result\":\"success\"}],\"reportStartTimeUtc\":\"2023-01-30T05:20:44.4808376Z\",\"reportEndTimeUtc\":\"2023-01-30T05:20:46.4431334Z\",\"sourceId\":null,\"targetId\":null,\"authType\":\"systemAssignedIdentity\"}}", + "isContentBase64": false } }, - "Test-AzServiceLinkerForContainerApp+[NoContext]+ValidateViaIdentity+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/93d9a33a-f13a-495f-905b-3aba37637f5a*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C?api-version=2022-05-01+3": { + "Test-AzServiceLinkerForContainerApp+[NoContext]+ValidateViaIdentity+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/5cdab3bf-ab52-4ba4-85de-10ddb0f36f91*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C?api-version=2021-01-01-privatepreview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/93d9a33a-f13a-495f-905b-3aba37637f5a*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/5cdab3bf-ab52-4ba4-85de-10ddb0f36f91*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C?api-version=2021-01-01-privatepreview", "Content": null, + "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "62" ], - "x-ms-client-request-id": [ "4e58cd32-9066-4d05-8820-e30746e5a599" ], + "x-ms-unique-id": [ "47" ], + "x-ms-client-request-id": [ "37ad3076-b941-4bd7-bc85-953b8ecc6bdd" ], "CommandName": [ "Az.ServiceLinker.internal\\Test-AzServiceLinker" ], "FullCommandName": [ "Test-AzServiceLinker_ValidateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceLinker/0.1.0" ] }, "ContentHeaders": { } @@ -222,21 +233,22 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"03001414-0000-0100-0000-627617040000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11957" ], - "x-ms-request-id": [ "f7c4fb7f-bc57-42bc-946f-d14219b05877" ], - "x-ms-correlation-request-id": [ "9cf0dfc3-b012-4430-a097-ae4b6c3f24f3" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T065214Z:9cf0dfc3-b012-4430-a097-ae4b6c3f24f3" ], + "ETag": [ "\"b204089e-0000-0100-0000-63d753af0000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11969" ], + "x-ms-request-id": [ "ec7966be-ed01-4a74-9c7f-7e3e3e43b82e" ], + "x-ms-correlation-request-id": [ "a787b74b-f580-4c8d-8e2f-ec215f4775e0" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20230130T052114Z:a787b74b-f580-4c8d-8e2f-ec215f4775e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:52:14 GMT" ] + "Date": [ "Mon, 30 Jan 2023 05:21:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1441" ], + "Content-Length": [ "2070" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/93d9a33a-f13a-495f-905b-3aba37637f5a*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C\",\"name\":\"93d9a33a-f13a-495f-905b-3aba37637f5a*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"status\":\"Succeeded\",\"startTime\":\"2022-05-07T06:51:43.1928451Z\",\"endTime\":\"2022-05-07T06:51:48.4142073Z\",\"properties\":{\"message\":\"{\\\"ConnectionName\\\":\\\"preparedLinker\\\",\\\"IsConnectionAvailable\\\":false,\\\"ValidationDetail\\\":[{\\\"Name\\\":\\\"The target existence is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0},{\\\"Name\\\":\\\"The target service firewall is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0},{\\\"Name\\\":\\\"The configured values is validated\\\",\\\"Description\\\":\\\"connectionString of connection is incorrect\\\",\\\"Result\\\":1}],\\\"ReportStartTimeUtc\\\":\\\"2022-05-07T06:51:44.5200182Z\\\",\\\"ReportEndTimeUtc\\\":\\\"2022-05-07T06:51:48.3558365Z\\\",\\\"SourceId\\\":null,\\\"TargetId\\\":\\\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/xichen-postgresql/databases/testdb\\\",\\\"AuthType\\\":4}\"}}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/5cdab3bf-ab52-4ba4-85de-10ddb0f36f91*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C\",\"name\":\"5cdab3bf-ab52-4ba4-85de-10ddb0f36f91*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"status\":\"Succeeded\",\"startTime\":\"2023-01-30T05:20:42.8002997Z\",\"endTime\":\"2023-01-30T05:20:47.5931259Z\",\"properties\":{\"Message\":\"{\\\"ConnectionName\\\":\\\"preparedLinker\\\",\\\"IsConnectionAvailable\\\":true,\\\"ValidationDetail\\\":[{\\\"Name\\\":\\\"The target existence is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0},{\\\"Name\\\":\\\"The target\u0027s network access is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0},{\\\"Name\\\":\\\"The configured values is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0},{\\\"Name\\\":\\\"The identity existence is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0},{\\\"Name\\\":\\\"The identity permission is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0}],\\\"ReportStartTimeUtc\\\":\\\"2023-01-30T05:20:44.4808376Z\\\",\\\"ReportEndTimeUtc\\\":\\\"2023-01-30T05:20:46.4431334Z\\\",\\\"SourceId\\\":null,\\\"TargetId\\\":null,\\\"AuthType\\\":0}\",\"linkerName\":\"preparedLinker\",\"isConnectionAvailable\":true,\"validationDetail\":[{\"name\":\"The target existence is validated\",\"description\":null,\"result\":\"success\"},{\"name\":\"The target\u0027s network access is validated\",\"description\":null,\"result\":\"success\"},{\"name\":\"The configured values is validated\",\"description\":null,\"result\":\"success\"},{\"name\":\"The identity existence is validated\",\"description\":null,\"result\":\"success\"},{\"name\":\"The identity permission is validated\",\"description\":null,\"result\":\"success\"}],\"reportStartTimeUtc\":\"2023-01-30T05:20:44.4808376Z\",\"reportEndTimeUtc\":\"2023-01-30T05:20:46.4431334Z\",\"sourceId\":null,\"targetId\":null,\"authType\":\"systemAssignedIdentity\"}}", + "isContentBase64": false } } } \ No newline at end of file diff --git a/src/ServiceLinker/test/Test-AzServiceLinkerForSpringCloud.Recording.json b/src/ServiceLinker/test/Test-AzServiceLinkerForSpringCloud.Recording.json index c8b26b27c107..08f93e2a8fd0 100644 --- a/src/ServiceLinker/test/Test-AzServiceLinkerForSpringCloud.Recording.json +++ b/src/ServiceLinker/test/Test-AzServiceLinkerForSpringCloud.Recording.json @@ -1,16 +1,17 @@ { - "Test-AzServiceLinkerForSpringCloud+[NoContext]+Validate+$POST+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker/validateLinker?api-version=2022-05-01+1": { + "Test-AzServiceLinkerForSpringCloud+[NoContext]+Validate+$POST+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker/validateLinker?api-version=2022-11-01-preview+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker/validateLinker?api-version=2022-05-01", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker/validateLinker?api-version=2022-11-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "63" ], - "x-ms-client-request-id": [ "9a1e67bb-d12d-4ae4-a599-1809d5b032b4" ], + "x-ms-unique-id": [ "48" ], + "x-ms-client-request-id": [ "bb11237e-6ed6-4922-8513-4bf46610ce3e" ], "CommandName": [ "Az.ServiceLinker.internal\\Test-AzServiceLinker" ], "FullCommandName": [ "Test-AzServiceLinker_Validate" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceLinker/0.1.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -21,39 +22,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/9b97bdf7-18e2-4ffc-9603-4b41a84d76ae*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6?api-version=2022-05-01" ], + "Location": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/29250243-00ea-41bc-92a1-52c7b39314f6*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6?api-version=2021-01-01-privatepreview" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1194" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T065223Z:a807dd84-3bd5-42ba-a95d-787cbba2d89d" ], "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "ecccbad7-7202-4cc9-b8d0-b4ac575793aa" ], + "mise-correlation-id": [ "f7e44877-3913-4815-a0c2-df27b2aed563" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/9b97bdf7-18e2-4ffc-9603-4b41a84d76ae*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6?api-version=2022-05-01" ], - "x-ms-request-id": [ "9b97bdf7-18e2-4ffc-9603-4b41a84d76ae" ], - "x-ms-correlation-request-id": [ "a807dd84-3bd5-42ba-a95d-787cbba2d89d" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/29250243-00ea-41bc-92a1-52c7b39314f6*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6?api-version=2021-01-01-privatepreview" ], + "x-ms-request-id": [ "29250243-00ea-41bc-92a1-52c7b39314f6" ], + "x-ms-correlation-request-id": [ "d80a56e8-4c94-42eb-b132-58fd3511eea6" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20230130T052124Z:d80a56e8-4c94-42eb-b132-58fd3511eea6" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:52:23 GMT" ] + "Date": [ "Mon, 30 Jan 2023 05:21:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "bnVsbA==" + "Content": "bnVsbA==", + "isContentBase64": false } }, - "Test-AzServiceLinkerForSpringCloud+[NoContext]+Validate+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/9b97bdf7-18e2-4ffc-9603-4b41a84d76ae*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6?api-version=2022-05-01+2": { + "Test-AzServiceLinkerForSpringCloud+[NoContext]+Validate+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/29250243-00ea-41bc-92a1-52c7b39314f6*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6?api-version=2021-01-01-privatepreview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/9b97bdf7-18e2-4ffc-9603-4b41a84d76ae*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/29250243-00ea-41bc-92a1-52c7b39314f6*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6?api-version=2021-01-01-privatepreview", "Content": null, + "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "64" ], - "x-ms-client-request-id": [ "9a1e67bb-d12d-4ae4-a599-1809d5b032b4" ], + "x-ms-unique-id": [ "49" ], + "x-ms-client-request-id": [ "bb11237e-6ed6-4922-8513-4bf46610ce3e" ], "CommandName": [ "Az.ServiceLinker.internal\\Test-AzServiceLinker" ], "FullCommandName": [ "Test-AzServiceLinker_Validate" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceLinker/0.1.0" ] }, "ContentHeaders": { } @@ -63,36 +66,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"03001f14-0000-0100-0000-627617290000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11956" ], - "x-ms-request-id": [ "d0fa9236-104b-4ce9-b54e-113e226a472e" ], - "x-ms-correlation-request-id": [ "65998dc1-81f0-4ef3-9ddb-5678c172378e" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T065254Z:65998dc1-81f0-4ef3-9ddb-5678c172378e" ], + "ETag": [ "\"b204159e-0000-0100-0000-63d753d80000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11968" ], + "x-ms-request-id": [ "333e5a0e-0f01-4e42-b0b2-feeeac3bae84" ], + "x-ms-correlation-request-id": [ "d0ef4855-74f7-4dc1-bbe6-b28c14cd0cdc" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20230130T052154Z:d0ef4855-74f7-4dc1-bbe6-b28c14cd0cdc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:52:53 GMT" ] + "Date": [ "Mon, 30 Jan 2023 05:21:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1589" ], + "Content-Length": [ "2047" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/9b97bdf7-18e2-4ffc-9603-4b41a84d76ae*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6\",\"name\":\"9b97bdf7-18e2-4ffc-9603-4b41a84d76ae*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"status\":\"Succeeded\",\"startTime\":\"2022-05-07T06:52:23.6381669Z\",\"endTime\":\"2022-05-07T06:52:25.8958423Z\",\"properties\":{\"message\":\"{\\\"ConnectionName\\\":\\\"preparedLinker\\\",\\\"IsConnectionAvailable\\\":true,\\\"ValidationDetail\\\":[{\\\"Name\\\":\\\"The target existence is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0},{\\\"Name\\\":\\\"The target\u0027s network access is validated\\\",\\\"Description\\\":\\\"Deny public network access is set to yes. Please confirm you are using private endpoint connection to access target resource.\\\",\\\"Result\\\":2},{\\\"Name\\\":\\\"The configured values (except username/password) is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0}],\\\"ReportStartTimeUtc\\\":\\\"2022-05-07T06:52:24.857703Z\\\",\\\"ReportEndTimeUtc\\\":\\\"2022-05-07T06:52:25.8276189Z\\\",\\\"SourceId\\\":null,\\\"TargetId\\\":\\\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/pollsdb\\\",\\\"AuthType\\\":4}\"}}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/29250243-00ea-41bc-92a1-52c7b39314f6*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6\",\"name\":\"29250243-00ea-41bc-92a1-52c7b39314f6*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"status\":\"Succeeded\",\"startTime\":\"2023-01-30T05:21:24.0833918Z\",\"endTime\":\"2023-01-30T05:21:28.0719022Z\",\"properties\":{\"Message\":\"{\\\"ConnectionName\\\":\\\"preparedLinker\\\",\\\"IsConnectionAvailable\\\":true,\\\"ValidationDetail\\\":[{\\\"Name\\\":\\\"The target existence is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0},{\\\"Name\\\":\\\"The target\u0027s network access is validated\\\",\\\"Description\\\":\\\"Deny public network access is set to yes. Please confirm you are using private endpoint connection to access target resource.\\\",\\\"Result\\\":2},{\\\"Name\\\":\\\"The configured values (except username/password) is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0}],\\\"ReportStartTimeUtc\\\":\\\"2023-01-30T05:21:25.4010288Z\\\",\\\"ReportEndTimeUtc\\\":\\\"2023-01-30T05:21:26.7903802Z\\\",\\\"SourceId\\\":null,\\\"TargetId\\\":null,\\\"AuthType\\\":4}\",\"linkerName\":\"preparedLinker\",\"isConnectionAvailable\":true,\"validationDetail\":[{\"name\":\"The target existence is validated\",\"description\":null,\"result\":\"success\"},{\"name\":\"The target\u0027s network access is validated\",\"description\":\"Deny public network access is set to yes. Please confirm you are using private endpoint connection to access target resource.\",\"result\":\"warning\"},{\"name\":\"The configured values (except username/password) is validated\",\"description\":null,\"result\":\"success\"}],\"reportStartTimeUtc\":\"2023-01-30T05:21:25.4010288Z\",\"reportEndTimeUtc\":\"2023-01-30T05:21:26.7903802Z\",\"sourceId\":null,\"targetId\":null,\"authType\":\"secret\"}}", + "isContentBase64": false } }, - "Test-AzServiceLinkerForSpringCloud+[NoContext]+Validate+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/9b97bdf7-18e2-4ffc-9603-4b41a84d76ae*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6?api-version=2022-05-01+3": { + "Test-AzServiceLinkerForSpringCloud+[NoContext]+Validate+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/29250243-00ea-41bc-92a1-52c7b39314f6*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6?api-version=2021-01-01-privatepreview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/9b97bdf7-18e2-4ffc-9603-4b41a84d76ae*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/29250243-00ea-41bc-92a1-52c7b39314f6*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6?api-version=2021-01-01-privatepreview", "Content": null, + "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "65" ], - "x-ms-client-request-id": [ "9a1e67bb-d12d-4ae4-a599-1809d5b032b4" ], + "x-ms-unique-id": [ "50" ], + "x-ms-client-request-id": [ "bb11237e-6ed6-4922-8513-4bf46610ce3e" ], "CommandName": [ "Az.ServiceLinker.internal\\Test-AzServiceLinker" ], "FullCommandName": [ "Test-AzServiceLinker_Validate" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceLinker/0.1.0" ] }, "ContentHeaders": { } @@ -102,35 +107,37 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"03001f14-0000-0100-0000-627617290000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11955" ], - "x-ms-request-id": [ "94a4be99-faaf-4d60-a391-725b760921c0" ], - "x-ms-correlation-request-id": [ "ef77ad0b-4aa0-45da-a815-f60a0c646e2e" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T065254Z:ef77ad0b-4aa0-45da-a815-f60a0c646e2e" ], + "ETag": [ "\"b204159e-0000-0100-0000-63d753d80000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11967" ], + "x-ms-request-id": [ "a5c5f0ad-09a6-40e5-8157-bd812695ac6d" ], + "x-ms-correlation-request-id": [ "4feb4c34-f29e-4c95-ad82-2c18246178c3" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20230130T052155Z:4feb4c34-f29e-4c95-ad82-2c18246178c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:52:54 GMT" ] + "Date": [ "Mon, 30 Jan 2023 05:21:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1589" ], + "Content-Length": [ "2047" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/9b97bdf7-18e2-4ffc-9603-4b41a84d76ae*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6\",\"name\":\"9b97bdf7-18e2-4ffc-9603-4b41a84d76ae*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"status\":\"Succeeded\",\"startTime\":\"2022-05-07T06:52:23.6381669Z\",\"endTime\":\"2022-05-07T06:52:25.8958423Z\",\"properties\":{\"message\":\"{\\\"ConnectionName\\\":\\\"preparedLinker\\\",\\\"IsConnectionAvailable\\\":true,\\\"ValidationDetail\\\":[{\\\"Name\\\":\\\"The target existence is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0},{\\\"Name\\\":\\\"The target\u0027s network access is validated\\\",\\\"Description\\\":\\\"Deny public network access is set to yes. Please confirm you are using private endpoint connection to access target resource.\\\",\\\"Result\\\":2},{\\\"Name\\\":\\\"The configured values (except username/password) is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0}],\\\"ReportStartTimeUtc\\\":\\\"2022-05-07T06:52:24.857703Z\\\",\\\"ReportEndTimeUtc\\\":\\\"2022-05-07T06:52:25.8276189Z\\\",\\\"SourceId\\\":null,\\\"TargetId\\\":\\\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/pollsdb\\\",\\\"AuthType\\\":4}\"}}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/29250243-00ea-41bc-92a1-52c7b39314f6*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6\",\"name\":\"29250243-00ea-41bc-92a1-52c7b39314f6*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"status\":\"Succeeded\",\"startTime\":\"2023-01-30T05:21:24.0833918Z\",\"endTime\":\"2023-01-30T05:21:28.0719022Z\",\"properties\":{\"Message\":\"{\\\"ConnectionName\\\":\\\"preparedLinker\\\",\\\"IsConnectionAvailable\\\":true,\\\"ValidationDetail\\\":[{\\\"Name\\\":\\\"The target existence is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0},{\\\"Name\\\":\\\"The target\u0027s network access is validated\\\",\\\"Description\\\":\\\"Deny public network access is set to yes. Please confirm you are using private endpoint connection to access target resource.\\\",\\\"Result\\\":2},{\\\"Name\\\":\\\"The configured values (except username/password) is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0}],\\\"ReportStartTimeUtc\\\":\\\"2023-01-30T05:21:25.4010288Z\\\",\\\"ReportEndTimeUtc\\\":\\\"2023-01-30T05:21:26.7903802Z\\\",\\\"SourceId\\\":null,\\\"TargetId\\\":null,\\\"AuthType\\\":4}\",\"linkerName\":\"preparedLinker\",\"isConnectionAvailable\":true,\"validationDetail\":[{\"name\":\"The target existence is validated\",\"description\":null,\"result\":\"success\"},{\"name\":\"The target\u0027s network access is validated\",\"description\":\"Deny public network access is set to yes. Please confirm you are using private endpoint connection to access target resource.\",\"result\":\"warning\"},{\"name\":\"The configured values (except username/password) is validated\",\"description\":null,\"result\":\"success\"}],\"reportStartTimeUtc\":\"2023-01-30T05:21:25.4010288Z\",\"reportEndTimeUtc\":\"2023-01-30T05:21:26.7903802Z\",\"sourceId\":null,\"targetId\":null,\"authType\":\"secret\"}}", + "isContentBase64": false } }, - "Test-AzServiceLinkerForSpringCloud+[NoContext]+ValidateViaIdentity+$POST+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker/validateLinker?api-version=2022-05-01+1": { + "Test-AzServiceLinkerForSpringCloud+[NoContext]+ValidateViaIdentity+$POST+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker/validateLinker?api-version=2022-11-01-preview+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker/validateLinker?api-version=2022-05-01", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker/validateLinker?api-version=2022-11-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "66" ], - "x-ms-client-request-id": [ "f8db5853-5bdb-4d04-9bd7-1f95aa202d18" ], + "x-ms-unique-id": [ "51" ], + "x-ms-client-request-id": [ "d9f15161-1c88-42a9-9dcc-04d8d96050e4" ], "CommandName": [ "Az.ServiceLinker.internal\\Test-AzServiceLinker" ], "FullCommandName": [ "Test-AzServiceLinker_ValidateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceLinker/0.1.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -141,39 +148,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/7f43fb2a-1fc9-42d8-97b0-9a71209cb7a3*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6?api-version=2022-05-01" ], + "Location": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/7485cb4a-5ccb-43d2-b6ca-b1812bc1d391*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6?api-version=2021-01-01-privatepreview" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1193" ], "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "09ba19f3-3bcd-45ff-a32e-7caf671b18cb" ], + "mise-correlation-id": [ "555402b0-77c1-4389-8cb9-0238698a2cbc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/7f43fb2a-1fc9-42d8-97b0-9a71209cb7a3*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6?api-version=2022-05-01" ], - "x-ms-request-id": [ "7f43fb2a-1fc9-42d8-97b0-9a71209cb7a3" ], - "x-ms-correlation-request-id": [ "058b1df7-1301-4b0e-89f3-98aae38d2cc9" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T065256Z:058b1df7-1301-4b0e-89f3-98aae38d2cc9" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/7485cb4a-5ccb-43d2-b6ca-b1812bc1d391*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6?api-version=2021-01-01-privatepreview" ], + "x-ms-request-id": [ "7485cb4a-5ccb-43d2-b6ca-b1812bc1d391" ], + "x-ms-correlation-request-id": [ "ea26e9e1-d2de-4f56-a643-3ae1e5ffe864" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20230130T052156Z:ea26e9e1-d2de-4f56-a643-3ae1e5ffe864" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:52:55 GMT" ] + "Date": [ "Mon, 30 Jan 2023 05:21:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "bnVsbA==" + "Content": "bnVsbA==", + "isContentBase64": false } }, - "Test-AzServiceLinkerForSpringCloud+[NoContext]+ValidateViaIdentity+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/7f43fb2a-1fc9-42d8-97b0-9a71209cb7a3*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6?api-version=2022-05-01+2": { + "Test-AzServiceLinkerForSpringCloud+[NoContext]+ValidateViaIdentity+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/7485cb4a-5ccb-43d2-b6ca-b1812bc1d391*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6?api-version=2021-01-01-privatepreview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/7f43fb2a-1fc9-42d8-97b0-9a71209cb7a3*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/7485cb4a-5ccb-43d2-b6ca-b1812bc1d391*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6?api-version=2021-01-01-privatepreview", "Content": null, + "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "67" ], - "x-ms-client-request-id": [ "f8db5853-5bdb-4d04-9bd7-1f95aa202d18" ], + "x-ms-unique-id": [ "52" ], + "x-ms-client-request-id": [ "d9f15161-1c88-42a9-9dcc-04d8d96050e4" ], "CommandName": [ "Az.ServiceLinker.internal\\Test-AzServiceLinker" ], "FullCommandName": [ "Test-AzServiceLinker_ValidateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceLinker/0.1.0" ] }, "ContentHeaders": { } @@ -183,36 +192,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"03002214-0000-0100-0000-6276174a0000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11954" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T065326Z:3e4ba53d-b07f-4d2b-b793-5e8724f6c355" ], - "x-ms-request-id": [ "2db00297-2f79-464c-8c92-37e9221108cc" ], - "x-ms-correlation-request-id": [ "3e4ba53d-b07f-4d2b-b793-5e8724f6c355" ], + "ETag": [ "\"b204179e-0000-0100-0000-63d753f90000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11966" ], + "x-ms-request-id": [ "d7a0ee83-4b4d-4fa0-8647-f1cfb8820d3d" ], + "x-ms-correlation-request-id": [ "ca6db52a-ef6a-41cf-b1ca-76482e48210b" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20230130T052226Z:ca6db52a-ef6a-41cf-b1ca-76482e48210b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:53:26 GMT" ] + "Date": [ "Mon, 30 Jan 2023 05:22:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1590" ], + "Content-Length": [ "2045" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/7f43fb2a-1fc9-42d8-97b0-9a71209cb7a3*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6\",\"name\":\"7f43fb2a-1fc9-42d8-97b0-9a71209cb7a3*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"status\":\"Succeeded\",\"startTime\":\"2022-05-07T06:52:56.1001633Z\",\"endTime\":\"2022-05-07T06:52:58.5905512Z\",\"properties\":{\"message\":\"{\\\"ConnectionName\\\":\\\"preparedLinker\\\",\\\"IsConnectionAvailable\\\":true,\\\"ValidationDetail\\\":[{\\\"Name\\\":\\\"The target existence is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0},{\\\"Name\\\":\\\"The target\u0027s network access is validated\\\",\\\"Description\\\":\\\"Deny public network access is set to yes. Please confirm you are using private endpoint connection to access target resource.\\\",\\\"Result\\\":2},{\\\"Name\\\":\\\"The configured values (except username/password) is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0}],\\\"ReportStartTimeUtc\\\":\\\"2022-05-07T06:52:57.4134256Z\\\",\\\"ReportEndTimeUtc\\\":\\\"2022-05-07T06:52:58.5252078Z\\\",\\\"SourceId\\\":null,\\\"TargetId\\\":\\\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/pollsdb\\\",\\\"AuthType\\\":4}\"}}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/7485cb4a-5ccb-43d2-b6ca-b1812bc1d391*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6\",\"name\":\"7485cb4a-5ccb-43d2-b6ca-b1812bc1d391*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"status\":\"Succeeded\",\"startTime\":\"2023-01-30T05:21:56.0793057Z\",\"endTime\":\"2023-01-30T05:22:01.3413885Z\",\"properties\":{\"Message\":\"{\\\"ConnectionName\\\":\\\"preparedLinker\\\",\\\"IsConnectionAvailable\\\":true,\\\"ValidationDetail\\\":[{\\\"Name\\\":\\\"The target existence is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0},{\\\"Name\\\":\\\"The target\u0027s network access is validated\\\",\\\"Description\\\":\\\"Deny public network access is set to yes. Please confirm you are using private endpoint connection to access target resource.\\\",\\\"Result\\\":2},{\\\"Name\\\":\\\"The configured values (except username/password) is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0}],\\\"ReportStartTimeUtc\\\":\\\"2023-01-30T05:21:57.360925Z\\\",\\\"ReportEndTimeUtc\\\":\\\"2023-01-30T05:22:00.2240524Z\\\",\\\"SourceId\\\":null,\\\"TargetId\\\":null,\\\"AuthType\\\":4}\",\"linkerName\":\"preparedLinker\",\"isConnectionAvailable\":true,\"validationDetail\":[{\"name\":\"The target existence is validated\",\"description\":null,\"result\":\"success\"},{\"name\":\"The target\u0027s network access is validated\",\"description\":\"Deny public network access is set to yes. Please confirm you are using private endpoint connection to access target resource.\",\"result\":\"warning\"},{\"name\":\"The configured values (except username/password) is validated\",\"description\":null,\"result\":\"success\"}],\"reportStartTimeUtc\":\"2023-01-30T05:21:57.360925Z\",\"reportEndTimeUtc\":\"2023-01-30T05:22:00.2240524Z\",\"sourceId\":null,\"targetId\":null,\"authType\":\"secret\"}}", + "isContentBase64": false } }, - "Test-AzServiceLinkerForSpringCloud+[NoContext]+ValidateViaIdentity+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/7f43fb2a-1fc9-42d8-97b0-9a71209cb7a3*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6?api-version=2022-05-01+3": { + "Test-AzServiceLinkerForSpringCloud+[NoContext]+ValidateViaIdentity+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/7485cb4a-5ccb-43d2-b6ca-b1812bc1d391*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6?api-version=2021-01-01-privatepreview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/7f43fb2a-1fc9-42d8-97b0-9a71209cb7a3*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/7485cb4a-5ccb-43d2-b6ca-b1812bc1d391*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6?api-version=2021-01-01-privatepreview", "Content": null, + "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "68" ], - "x-ms-client-request-id": [ "f8db5853-5bdb-4d04-9bd7-1f95aa202d18" ], + "x-ms-unique-id": [ "53" ], + "x-ms-client-request-id": [ "d9f15161-1c88-42a9-9dcc-04d8d96050e4" ], "CommandName": [ "Az.ServiceLinker.internal\\Test-AzServiceLinker" ], "FullCommandName": [ "Test-AzServiceLinker_ValidateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceLinker/0.1.0" ] }, "ContentHeaders": { } @@ -222,21 +233,22 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"03002214-0000-0100-0000-6276174a0000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11953" ], - "x-ms-request-id": [ "09e6a16d-fbb9-42f5-bf85-999feeca8bb3" ], - "x-ms-correlation-request-id": [ "f7c27fc2-86ab-4a5f-81ec-5152d806fb7b" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T065327Z:f7c27fc2-86ab-4a5f-81ec-5152d806fb7b" ], + "ETag": [ "\"b204179e-0000-0100-0000-63d753f90000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11965" ], + "x-ms-request-id": [ "90715f11-97cf-4b85-be1e-236de05ff8d4" ], + "x-ms-correlation-request-id": [ "e882f10a-e6a9-4f56-bd4e-ae174d7309a2" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20230130T052227Z:e882f10a-e6a9-4f56-bd4e-ae174d7309a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:53:27 GMT" ] + "Date": [ "Mon, 30 Jan 2023 05:22:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1590" ], + "Content-Length": [ "2045" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/7f43fb2a-1fc9-42d8-97b0-9a71209cb7a3*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6\",\"name\":\"7f43fb2a-1fc9-42d8-97b0-9a71209cb7a3*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"status\":\"Succeeded\",\"startTime\":\"2022-05-07T06:52:56.1001633Z\",\"endTime\":\"2022-05-07T06:52:58.5905512Z\",\"properties\":{\"message\":\"{\\\"ConnectionName\\\":\\\"preparedLinker\\\",\\\"IsConnectionAvailable\\\":true,\\\"ValidationDetail\\\":[{\\\"Name\\\":\\\"The target existence is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0},{\\\"Name\\\":\\\"The target\u0027s network access is validated\\\",\\\"Description\\\":\\\"Deny public network access is set to yes. Please confirm you are using private endpoint connection to access target resource.\\\",\\\"Result\\\":2},{\\\"Name\\\":\\\"The configured values (except username/password) is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0}],\\\"ReportStartTimeUtc\\\":\\\"2022-05-07T06:52:57.4134256Z\\\",\\\"ReportEndTimeUtc\\\":\\\"2022-05-07T06:52:58.5252078Z\\\",\\\"SourceId\\\":null,\\\"TargetId\\\":\\\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/pollsdb\\\",\\\"AuthType\\\":4}\"}}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/7485cb4a-5ccb-43d2-b6ca-b1812bc1d391*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6\",\"name\":\"7485cb4a-5ccb-43d2-b6ca-b1812bc1d391*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"status\":\"Succeeded\",\"startTime\":\"2023-01-30T05:21:56.0793057Z\",\"endTime\":\"2023-01-30T05:22:01.3413885Z\",\"properties\":{\"Message\":\"{\\\"ConnectionName\\\":\\\"preparedLinker\\\",\\\"IsConnectionAvailable\\\":true,\\\"ValidationDetail\\\":[{\\\"Name\\\":\\\"The target existence is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0},{\\\"Name\\\":\\\"The target\u0027s network access is validated\\\",\\\"Description\\\":\\\"Deny public network access is set to yes. Please confirm you are using private endpoint connection to access target resource.\\\",\\\"Result\\\":2},{\\\"Name\\\":\\\"The configured values (except username/password) is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0}],\\\"ReportStartTimeUtc\\\":\\\"2023-01-30T05:21:57.360925Z\\\",\\\"ReportEndTimeUtc\\\":\\\"2023-01-30T05:22:00.2240524Z\\\",\\\"SourceId\\\":null,\\\"TargetId\\\":null,\\\"AuthType\\\":4}\",\"linkerName\":\"preparedLinker\",\"isConnectionAvailable\":true,\"validationDetail\":[{\"name\":\"The target existence is validated\",\"description\":null,\"result\":\"success\"},{\"name\":\"The target\u0027s network access is validated\",\"description\":\"Deny public network access is set to yes. Please confirm you are using private endpoint connection to access target resource.\",\"result\":\"warning\"},{\"name\":\"The configured values (except username/password) is validated\",\"description\":null,\"result\":\"success\"}],\"reportStartTimeUtc\":\"2023-01-30T05:21:57.360925Z\",\"reportEndTimeUtc\":\"2023-01-30T05:22:00.2240524Z\",\"sourceId\":null,\"targetId\":null,\"authType\":\"secret\"}}", + "isContentBase64": false } } } \ No newline at end of file diff --git a/src/ServiceLinker/test/Test-AzServiceLinkerForWebApp.Recording.json b/src/ServiceLinker/test/Test-AzServiceLinkerForWebApp.Recording.json index 5024db77dcf8..d795160447cf 100644 --- a/src/ServiceLinker/test/Test-AzServiceLinkerForWebApp.Recording.json +++ b/src/ServiceLinker/test/Test-AzServiceLinkerForWebApp.Recording.json @@ -1,16 +1,17 @@ { - "Test-AzServiceLinkerForWebApp+[NoContext]+Validate+$POST+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker/validateLinker?api-version=2022-05-01+1": { + "Test-AzServiceLinkerForWebApp+[NoContext]+Validate+$POST+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker/validateLinker?api-version=2022-11-01-preview+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker/validateLinker?api-version=2022-05-01", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker/validateLinker?api-version=2022-11-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "69" ], - "x-ms-client-request-id": [ "cdea3610-73da-400d-8993-dcd32c978087" ], + "x-ms-unique-id": [ "54" ], + "x-ms-client-request-id": [ "f3080e5b-dd83-4ea2-94c8-730738ffe4c9" ], "CommandName": [ "Az.ServiceLinker.internal\\Test-AzServiceLinker" ], "FullCommandName": [ "Test-AzServiceLinker_Validate" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceLinker/0.1.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -21,39 +22,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/4bbb4f1f-19a4-46a5-a1ac-2354774228dd*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40?api-version=2022-05-01" ], + "Location": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/233660b0-40de-4caa-9cb5-075206d285cf*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40?api-version=2021-01-01-privatepreview" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1192" ], "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "683600d2-71c8-40f7-bea9-159ee233a4bc" ], + "mise-correlation-id": [ "725339a3-36b7-4425-a653-442ea79108a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/4bbb4f1f-19a4-46a5-a1ac-2354774228dd*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40?api-version=2022-05-01" ], - "x-ms-request-id": [ "4bbb4f1f-19a4-46a5-a1ac-2354774228dd" ], - "x-ms-correlation-request-id": [ "b25f7543-1ad9-4c57-ac16-e6179a53d04b" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T065337Z:b25f7543-1ad9-4c57-ac16-e6179a53d04b" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/233660b0-40de-4caa-9cb5-075206d285cf*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40?api-version=2021-01-01-privatepreview" ], + "x-ms-request-id": [ "233660b0-40de-4caa-9cb5-075206d285cf" ], + "x-ms-correlation-request-id": [ "d8c15883-52d4-498a-9c48-81bad2aedb53" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20230130T052240Z:d8c15883-52d4-498a-9c48-81bad2aedb53" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:53:37 GMT" ] + "Date": [ "Mon, 30 Jan 2023 05:22:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "bnVsbA==" + "Content": "bnVsbA==", + "isContentBase64": false } }, - "Test-AzServiceLinkerForWebApp+[NoContext]+Validate+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/4bbb4f1f-19a4-46a5-a1ac-2354774228dd*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40?api-version=2022-05-01+2": { + "Test-AzServiceLinkerForWebApp+[NoContext]+Validate+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/233660b0-40de-4caa-9cb5-075206d285cf*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40?api-version=2021-01-01-privatepreview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/4bbb4f1f-19a4-46a5-a1ac-2354774228dd*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/233660b0-40de-4caa-9cb5-075206d285cf*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40?api-version=2021-01-01-privatepreview", "Content": null, + "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "70" ], - "x-ms-client-request-id": [ "cdea3610-73da-400d-8993-dcd32c978087" ], + "x-ms-unique-id": [ "55" ], + "x-ms-client-request-id": [ "f3080e5b-dd83-4ea2-94c8-730738ffe4c9" ], "CommandName": [ "Az.ServiceLinker.internal\\Test-AzServiceLinker" ], "FullCommandName": [ "Test-AzServiceLinker_Validate" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceLinker/0.1.0" ] }, "ContentHeaders": { } @@ -63,36 +66,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"03002614-0000-0100-0000-627617730000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11952" ], - "x-ms-request-id": [ "a214d4a8-728a-46dd-b945-9d82e5071f2d" ], - "x-ms-correlation-request-id": [ "20c8fb73-2a78-47ae-ba9a-62d01e1fbe3c" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T065407Z:20c8fb73-2a78-47ae-ba9a-62d01e1fbe3c" ], + "ETag": [ "\"b2041a9e-0000-0100-0000-63d754230000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11964" ], + "x-ms-request-id": [ "3b9f7998-efd1-4dc9-a04a-723db2956ffe" ], + "x-ms-correlation-request-id": [ "336680c9-9bde-4488-bb4c-b4564c0e62d2" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20230130T052310Z:336680c9-9bde-4488-bb4c-b4564c0e62d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:54:07 GMT" ] + "Date": [ "Mon, 30 Jan 2023 05:23:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1478" ], + "Content-Length": [ "2010" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/4bbb4f1f-19a4-46a5-a1ac-2354774228dd*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40\",\"name\":\"4bbb4f1f-19a4-46a5-a1ac-2354774228dd*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"status\":\"Succeeded\",\"startTime\":\"2022-05-07T06:53:36.8105991Z\",\"endTime\":\"2022-05-07T06:53:39.5091744Z\",\"properties\":{\"message\":\"{\\\"ConnectionName\\\":\\\"preparedLinker\\\",\\\"IsConnectionAvailable\\\":true,\\\"ValidationDetail\\\":[{\\\"Name\\\":\\\"The target existence is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0},{\\\"Name\\\":\\\"The target service firewall is validated\\\",\\\"Description\\\":\\\"Public network access is enabled, but firewall rule not set\\\",\\\"Result\\\":2},{\\\"Name\\\":\\\"The configured values (except username/password) is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0}],\\\"ReportStartTimeUtc\\\":\\\"2022-05-07T06:53:38.4618123Z\\\",\\\"ReportEndTimeUtc\\\":\\\"2022-05-07T06:53:39.431554Z\\\",\\\"SourceId\\\":null,\\\"TargetId\\\":\\\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/pollsdb\\\",\\\"AuthType\\\":4}\"}}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/233660b0-40de-4caa-9cb5-075206d285cf*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40\",\"name\":\"233660b0-40de-4caa-9cb5-075206d285cf*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"status\":\"Succeeded\",\"startTime\":\"2023-01-30T05:22:39.7280338Z\",\"endTime\":\"2023-01-30T05:22:43.6578975Z\",\"properties\":{\"Message\":\"{\\\"ConnectionName\\\":\\\"preparedLinker\\\",\\\"IsConnectionAvailable\\\":false,\\\"ValidationDetail\\\":[{\\\"Name\\\":\\\"The target existence is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0},{\\\"Name\\\":\\\"The target\u0027s network access is validated\\\",\\\"Description\\\":\\\"Deny public network access is set to yes. Please confirm you are using private endpoint connection to access target resource.\\\",\\\"Result\\\":2},{\\\"Name\\\":\\\"The configured values is validated\\\",\\\"Description\\\":\\\"name of connection is incorrect\\\",\\\"Result\\\":1}],\\\"ReportStartTimeUtc\\\":\\\"2023-01-30T05:22:41.3441432Z\\\",\\\"ReportEndTimeUtc\\\":\\\"2023-01-30T05:22:42.4906781Z\\\",\\\"SourceId\\\":null,\\\"TargetId\\\":null,\\\"AuthType\\\":4}\",\"linkerName\":\"preparedLinker\",\"isConnectionAvailable\":false,\"validationDetail\":[{\"name\":\"The target existence is validated\",\"description\":null,\"result\":\"success\"},{\"name\":\"The target\u0027s network access is validated\",\"description\":\"Deny public network access is set to yes. Please confirm you are using private endpoint connection to access target resource.\",\"result\":\"warning\"},{\"name\":\"The configured values is validated\",\"description\":\"name of connection is incorrect\",\"result\":\"failure\"}],\"reportStartTimeUtc\":\"2023-01-30T05:22:41.3441432Z\",\"reportEndTimeUtc\":\"2023-01-30T05:22:42.4906781Z\",\"sourceId\":null,\"targetId\":null,\"authType\":\"secret\"}}", + "isContentBase64": false } }, - "Test-AzServiceLinkerForWebApp+[NoContext]+Validate+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/4bbb4f1f-19a4-46a5-a1ac-2354774228dd*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40?api-version=2022-05-01+3": { + "Test-AzServiceLinkerForWebApp+[NoContext]+Validate+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/233660b0-40de-4caa-9cb5-075206d285cf*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40?api-version=2021-01-01-privatepreview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/4bbb4f1f-19a4-46a5-a1ac-2354774228dd*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/233660b0-40de-4caa-9cb5-075206d285cf*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40?api-version=2021-01-01-privatepreview", "Content": null, + "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "71" ], - "x-ms-client-request-id": [ "cdea3610-73da-400d-8993-dcd32c978087" ], + "x-ms-unique-id": [ "56" ], + "x-ms-client-request-id": [ "f3080e5b-dd83-4ea2-94c8-730738ffe4c9" ], "CommandName": [ "Az.ServiceLinker.internal\\Test-AzServiceLinker" ], "FullCommandName": [ "Test-AzServiceLinker_Validate" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceLinker/0.1.0" ] }, "ContentHeaders": { } @@ -102,35 +107,37 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"03002614-0000-0100-0000-627617730000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11951" ], - "x-ms-request-id": [ "16bf7853-a163-4525-86e9-4e5693eee385" ], - "x-ms-correlation-request-id": [ "0e438854-39dd-4bd7-b50a-a72c6ced79f8" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T065408Z:0e438854-39dd-4bd7-b50a-a72c6ced79f8" ], + "ETag": [ "\"b2041a9e-0000-0100-0000-63d754230000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11963" ], + "x-ms-request-id": [ "54903dad-4b72-460d-a50c-8dcea98ea9b4" ], + "x-ms-correlation-request-id": [ "9618a3a0-467d-4a13-ad09-08fba055e6d3" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20230130T052311Z:9618a3a0-467d-4a13-ad09-08fba055e6d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:54:08 GMT" ] + "Date": [ "Mon, 30 Jan 2023 05:23:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1478" ], + "Content-Length": [ "2010" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/4bbb4f1f-19a4-46a5-a1ac-2354774228dd*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40\",\"name\":\"4bbb4f1f-19a4-46a5-a1ac-2354774228dd*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"status\":\"Succeeded\",\"startTime\":\"2022-05-07T06:53:36.8105991Z\",\"endTime\":\"2022-05-07T06:53:39.5091744Z\",\"properties\":{\"message\":\"{\\\"ConnectionName\\\":\\\"preparedLinker\\\",\\\"IsConnectionAvailable\\\":true,\\\"ValidationDetail\\\":[{\\\"Name\\\":\\\"The target existence is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0},{\\\"Name\\\":\\\"The target service firewall is validated\\\",\\\"Description\\\":\\\"Public network access is enabled, but firewall rule not set\\\",\\\"Result\\\":2},{\\\"Name\\\":\\\"The configured values (except username/password) is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0}],\\\"ReportStartTimeUtc\\\":\\\"2022-05-07T06:53:38.4618123Z\\\",\\\"ReportEndTimeUtc\\\":\\\"2022-05-07T06:53:39.431554Z\\\",\\\"SourceId\\\":null,\\\"TargetId\\\":\\\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/pollsdb\\\",\\\"AuthType\\\":4}\"}}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/233660b0-40de-4caa-9cb5-075206d285cf*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40\",\"name\":\"233660b0-40de-4caa-9cb5-075206d285cf*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"status\":\"Succeeded\",\"startTime\":\"2023-01-30T05:22:39.7280338Z\",\"endTime\":\"2023-01-30T05:22:43.6578975Z\",\"properties\":{\"Message\":\"{\\\"ConnectionName\\\":\\\"preparedLinker\\\",\\\"IsConnectionAvailable\\\":false,\\\"ValidationDetail\\\":[{\\\"Name\\\":\\\"The target existence is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0},{\\\"Name\\\":\\\"The target\u0027s network access is validated\\\",\\\"Description\\\":\\\"Deny public network access is set to yes. Please confirm you are using private endpoint connection to access target resource.\\\",\\\"Result\\\":2},{\\\"Name\\\":\\\"The configured values is validated\\\",\\\"Description\\\":\\\"name of connection is incorrect\\\",\\\"Result\\\":1}],\\\"ReportStartTimeUtc\\\":\\\"2023-01-30T05:22:41.3441432Z\\\",\\\"ReportEndTimeUtc\\\":\\\"2023-01-30T05:22:42.4906781Z\\\",\\\"SourceId\\\":null,\\\"TargetId\\\":null,\\\"AuthType\\\":4}\",\"linkerName\":\"preparedLinker\",\"isConnectionAvailable\":false,\"validationDetail\":[{\"name\":\"The target existence is validated\",\"description\":null,\"result\":\"success\"},{\"name\":\"The target\u0027s network access is validated\",\"description\":\"Deny public network access is set to yes. Please confirm you are using private endpoint connection to access target resource.\",\"result\":\"warning\"},{\"name\":\"The configured values is validated\",\"description\":\"name of connection is incorrect\",\"result\":\"failure\"}],\"reportStartTimeUtc\":\"2023-01-30T05:22:41.3441432Z\",\"reportEndTimeUtc\":\"2023-01-30T05:22:42.4906781Z\",\"sourceId\":null,\"targetId\":null,\"authType\":\"secret\"}}", + "isContentBase64": false } }, - "Test-AzServiceLinkerForWebApp+[NoContext]+ValidateViaIdentity+$POST+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker/validateLinker?api-version=2022-05-01+1": { + "Test-AzServiceLinkerForWebApp+[NoContext]+ValidateViaIdentity+$POST+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker/validateLinker?api-version=2022-11-01-preview+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker/validateLinker?api-version=2022-05-01", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker/validateLinker?api-version=2022-11-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "72" ], - "x-ms-client-request-id": [ "4a48080f-08c9-4bb5-be10-2c965db1cd09" ], + "x-ms-unique-id": [ "57" ], + "x-ms-client-request-id": [ "0e4a71e9-0b54-44cc-9326-84c94c127e65" ], "CommandName": [ "Az.ServiceLinker.internal\\Test-AzServiceLinker" ], "FullCommandName": [ "Test-AzServiceLinker_ValidateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceLinker/0.1.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -141,39 +148,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/249d9d1d-3b57-406c-bd08-62332678c8be*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40?api-version=2022-05-01" ], + "Location": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/ede01e5d-8555-4439-8382-6c9054a0b431*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40?api-version=2021-01-01-privatepreview" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1191" ], "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "c8a64471-6199-4fff-84de-834652933a43" ], + "mise-correlation-id": [ "82153915-79c6-4c9c-bfb6-c3a07aa065b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/249d9d1d-3b57-406c-bd08-62332678c8be*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40?api-version=2022-05-01" ], - "x-ms-request-id": [ "249d9d1d-3b57-406c-bd08-62332678c8be" ], - "x-ms-correlation-request-id": [ "eb1bae85-2b23-4c3f-beb0-ca22a6e19c1c" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T065409Z:eb1bae85-2b23-4c3f-beb0-ca22a6e19c1c" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/ede01e5d-8555-4439-8382-6c9054a0b431*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40?api-version=2021-01-01-privatepreview" ], + "x-ms-request-id": [ "ede01e5d-8555-4439-8382-6c9054a0b431" ], + "x-ms-correlation-request-id": [ "7103afa5-8da8-4cfd-bf55-1d58f022d8b8" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20230130T052312Z:7103afa5-8da8-4cfd-bf55-1d58f022d8b8" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:54:09 GMT" ] + "Date": [ "Mon, 30 Jan 2023 05:23:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "bnVsbA==" + "Content": "bnVsbA==", + "isContentBase64": false } }, - "Test-AzServiceLinkerForWebApp+[NoContext]+ValidateViaIdentity+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/249d9d1d-3b57-406c-bd08-62332678c8be*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40?api-version=2022-05-01+2": { + "Test-AzServiceLinkerForWebApp+[NoContext]+ValidateViaIdentity+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/ede01e5d-8555-4439-8382-6c9054a0b431*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40?api-version=2021-01-01-privatepreview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/249d9d1d-3b57-406c-bd08-62332678c8be*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/ede01e5d-8555-4439-8382-6c9054a0b431*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40?api-version=2021-01-01-privatepreview", "Content": null, + "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "73" ], - "x-ms-client-request-id": [ "4a48080f-08c9-4bb5-be10-2c965db1cd09" ], + "x-ms-unique-id": [ "58" ], + "x-ms-client-request-id": [ "0e4a71e9-0b54-44cc-9326-84c94c127e65" ], "CommandName": [ "Az.ServiceLinker.internal\\Test-AzServiceLinker" ], "FullCommandName": [ "Test-AzServiceLinker_ValidateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceLinker/0.1.0" ] }, "ContentHeaders": { } @@ -183,36 +192,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"03002d14-0000-0100-0000-627617930000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11950" ], - "x-ms-request-id": [ "b0263d52-7099-4591-b4be-5d08cef09827" ], - "x-ms-correlation-request-id": [ "e9d1bcfc-0b9e-4b3b-90f9-a0c4236bb80d" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T065439Z:e9d1bcfc-0b9e-4b3b-90f9-a0c4236bb80d" ], + "ETag": [ "\"b204229e-0000-0100-0000-63d754430000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11962" ], + "x-ms-request-id": [ "e1eb070f-8209-4dae-8175-dbbb5f0c2322" ], + "x-ms-correlation-request-id": [ "3707dee0-b979-4399-8d79-2567367b475c" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20230130T052342Z:3707dee0-b979-4399-8d79-2567367b475c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:54:39 GMT" ] + "Date": [ "Mon, 30 Jan 2023 05:23:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1479" ], + "Content-Length": [ "2010" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/249d9d1d-3b57-406c-bd08-62332678c8be*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40\",\"name\":\"249d9d1d-3b57-406c-bd08-62332678c8be*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"status\":\"Succeeded\",\"startTime\":\"2022-05-07T06:54:08.7536684Z\",\"endTime\":\"2022-05-07T06:54:11.4992993Z\",\"properties\":{\"message\":\"{\\\"ConnectionName\\\":\\\"preparedLinker\\\",\\\"IsConnectionAvailable\\\":true,\\\"ValidationDetail\\\":[{\\\"Name\\\":\\\"The target existence is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0},{\\\"Name\\\":\\\"The target service firewall is validated\\\",\\\"Description\\\":\\\"Public network access is enabled, but firewall rule not set\\\",\\\"Result\\\":2},{\\\"Name\\\":\\\"The configured values (except username/password) is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0}],\\\"ReportStartTimeUtc\\\":\\\"2022-05-07T06:54:10.4212458Z\\\",\\\"ReportEndTimeUtc\\\":\\\"2022-05-07T06:54:11.4104682Z\\\",\\\"SourceId\\\":null,\\\"TargetId\\\":\\\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/pollsdb\\\",\\\"AuthType\\\":4}\"}}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/ede01e5d-8555-4439-8382-6c9054a0b431*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40\",\"name\":\"ede01e5d-8555-4439-8382-6c9054a0b431*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"status\":\"Succeeded\",\"startTime\":\"2023-01-30T05:23:11.9696896Z\",\"endTime\":\"2023-01-30T05:23:15.5302823Z\",\"properties\":{\"Message\":\"{\\\"ConnectionName\\\":\\\"preparedLinker\\\",\\\"IsConnectionAvailable\\\":false,\\\"ValidationDetail\\\":[{\\\"Name\\\":\\\"The target existence is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0},{\\\"Name\\\":\\\"The target\u0027s network access is validated\\\",\\\"Description\\\":\\\"Deny public network access is set to yes. Please confirm you are using private endpoint connection to access target resource.\\\",\\\"Result\\\":2},{\\\"Name\\\":\\\"The configured values is validated\\\",\\\"Description\\\":\\\"name of connection is incorrect\\\",\\\"Result\\\":1}],\\\"ReportStartTimeUtc\\\":\\\"2023-01-30T05:23:13.3013169Z\\\",\\\"ReportEndTimeUtc\\\":\\\"2023-01-30T05:23:14.4267413Z\\\",\\\"SourceId\\\":null,\\\"TargetId\\\":null,\\\"AuthType\\\":4}\",\"linkerName\":\"preparedLinker\",\"isConnectionAvailable\":false,\"validationDetail\":[{\"name\":\"The target existence is validated\",\"description\":null,\"result\":\"success\"},{\"name\":\"The target\u0027s network access is validated\",\"description\":\"Deny public network access is set to yes. Please confirm you are using private endpoint connection to access target resource.\",\"result\":\"warning\"},{\"name\":\"The configured values is validated\",\"description\":\"name of connection is incorrect\",\"result\":\"failure\"}],\"reportStartTimeUtc\":\"2023-01-30T05:23:13.3013169Z\",\"reportEndTimeUtc\":\"2023-01-30T05:23:14.4267413Z\",\"sourceId\":null,\"targetId\":null,\"authType\":\"secret\"}}", + "isContentBase64": false } }, - "Test-AzServiceLinkerForWebApp+[NoContext]+ValidateViaIdentity+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/249d9d1d-3b57-406c-bd08-62332678c8be*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40?api-version=2022-05-01+3": { + "Test-AzServiceLinkerForWebApp+[NoContext]+ValidateViaIdentity+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/ede01e5d-8555-4439-8382-6c9054a0b431*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40?api-version=2021-01-01-privatepreview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/249d9d1d-3b57-406c-bd08-62332678c8be*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/ede01e5d-8555-4439-8382-6c9054a0b431*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40?api-version=2021-01-01-privatepreview", "Content": null, + "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "74" ], - "x-ms-client-request-id": [ "4a48080f-08c9-4bb5-be10-2c965db1cd09" ], + "x-ms-unique-id": [ "59" ], + "x-ms-client-request-id": [ "0e4a71e9-0b54-44cc-9326-84c94c127e65" ], "CommandName": [ "Az.ServiceLinker.internal\\Test-AzServiceLinker" ], "FullCommandName": [ "Test-AzServiceLinker_ValidateViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceLinker/0.1.0" ] }, "ContentHeaders": { } @@ -222,21 +233,22 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"03002d14-0000-0100-0000-627617930000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11949" ], - "x-ms-request-id": [ "4a7e6afd-9b40-4424-8e57-27dbf33c68e8" ], - "x-ms-correlation-request-id": [ "e19df065-756a-454f-892f-18867a3d79aa" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T065440Z:e19df065-756a-454f-892f-18867a3d79aa" ], + "ETag": [ "\"b204229e-0000-0100-0000-63d754430000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11961" ], + "x-ms-request-id": [ "7669c24b-5c99-43d5-9d17-b4adf1a88330" ], + "x-ms-correlation-request-id": [ "cdf3c94d-3fac-4e8b-a6bc-880846d9db4b" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20230130T052343Z:cdf3c94d-3fac-4e8b-a6bc-880846d9db4b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:54:39 GMT" ] + "Date": [ "Mon, 30 Jan 2023 05:23:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1479" ], + "Content-Length": [ "2010" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/249d9d1d-3b57-406c-bd08-62332678c8be*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40\",\"name\":\"249d9d1d-3b57-406c-bd08-62332678c8be*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"status\":\"Succeeded\",\"startTime\":\"2022-05-07T06:54:08.7536684Z\",\"endTime\":\"2022-05-07T06:54:11.4992993Z\",\"properties\":{\"message\":\"{\\\"ConnectionName\\\":\\\"preparedLinker\\\",\\\"IsConnectionAvailable\\\":true,\\\"ValidationDetail\\\":[{\\\"Name\\\":\\\"The target existence is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0},{\\\"Name\\\":\\\"The target service firewall is validated\\\",\\\"Description\\\":\\\"Public network access is enabled, but firewall rule not set\\\",\\\"Result\\\":2},{\\\"Name\\\":\\\"The configured values (except username/password) is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0}],\\\"ReportStartTimeUtc\\\":\\\"2022-05-07T06:54:10.4212458Z\\\",\\\"ReportEndTimeUtc\\\":\\\"2022-05-07T06:54:11.4104682Z\\\",\\\"SourceId\\\":null,\\\"TargetId\\\":\\\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/pollsdb\\\",\\\"AuthType\\\":4}\"}}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/ede01e5d-8555-4439-8382-6c9054a0b431*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40\",\"name\":\"ede01e5d-8555-4439-8382-6c9054a0b431*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"status\":\"Succeeded\",\"startTime\":\"2023-01-30T05:23:11.9696896Z\",\"endTime\":\"2023-01-30T05:23:15.5302823Z\",\"properties\":{\"Message\":\"{\\\"ConnectionName\\\":\\\"preparedLinker\\\",\\\"IsConnectionAvailable\\\":false,\\\"ValidationDetail\\\":[{\\\"Name\\\":\\\"The target existence is validated\\\",\\\"Description\\\":null,\\\"Result\\\":0},{\\\"Name\\\":\\\"The target\u0027s network access is validated\\\",\\\"Description\\\":\\\"Deny public network access is set to yes. Please confirm you are using private endpoint connection to access target resource.\\\",\\\"Result\\\":2},{\\\"Name\\\":\\\"The configured values is validated\\\",\\\"Description\\\":\\\"name of connection is incorrect\\\",\\\"Result\\\":1}],\\\"ReportStartTimeUtc\\\":\\\"2023-01-30T05:23:13.3013169Z\\\",\\\"ReportEndTimeUtc\\\":\\\"2023-01-30T05:23:14.4267413Z\\\",\\\"SourceId\\\":null,\\\"TargetId\\\":null,\\\"AuthType\\\":4}\",\"linkerName\":\"preparedLinker\",\"isConnectionAvailable\":false,\"validationDetail\":[{\"name\":\"The target existence is validated\",\"description\":null,\"result\":\"success\"},{\"name\":\"The target\u0027s network access is validated\",\"description\":\"Deny public network access is set to yes. Please confirm you are using private endpoint connection to access target resource.\",\"result\":\"warning\"},{\"name\":\"The configured values is validated\",\"description\":\"name of connection is incorrect\",\"result\":\"failure\"}],\"reportStartTimeUtc\":\"2023-01-30T05:23:13.3013169Z\",\"reportEndTimeUtc\":\"2023-01-30T05:23:14.4267413Z\",\"sourceId\":null,\"targetId\":null,\"authType\":\"secret\"}}", + "isContentBase64": false } } } \ No newline at end of file diff --git a/src/ServiceLinker/test/Update-AzServiceLinkerForContainerApp.Recording.json b/src/ServiceLinker/test/Update-AzServiceLinkerForContainerApp.Recording.json index e3b059920b39..bd8b3914c33f 100644 --- a/src/ServiceLinker/test/Update-AzServiceLinkerForContainerApp.Recording.json +++ b/src/ServiceLinker/test/Update-AzServiceLinkerForContainerApp.Recording.json @@ -1,16 +1,17 @@ { - "Update-AzServiceLinkerForContainerApp+[NoContext]+UpdateExpanded+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-05-01+1": { + "Update-AzServiceLinkerForContainerApp+[NoContext]+UpdateExpanded+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-11-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-05-01", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-11-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "74" ], - "x-ms-client-request-id": [ "60474faa-099f-4b3b-8486-26120f5d59ba" ], + "x-ms-unique-id": [ "60" ], + "x-ms-client-request-id": [ "759e85b4-f2b5-4a83-8980-919ad8703e43" ], "CommandName": [ "Az.ServiceLinker.internal\\Get-AzServiceLinker" ], "FullCommandName": [ "Get-AzServiceLinker_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceLinker/0.1.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -21,36 +22,37 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"3a008066-0000-0100-0000-627610d40000\"" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11962" ], + "ETag": [ "\"ea00c29e-0000-0100-0000-63d73b820000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11960" ], "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "59069c7a-f8c8-4a32-a3ba-6adaeabc3e4b" ], + "mise-correlation-id": [ "00dc1e3e-dafa-4000-90d0-77d83bacd6de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9f8095e9-f2c4-4e6d-89af-20ea87ed6a5c" ], - "x-ms-correlation-request-id": [ "b6110187-ff94-4474-903a-dbc1cb26bb25" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T063845Z:b6110187-ff94-4474-903a-dbc1cb26bb25" ], + "x-ms-request-id": [ "5f726434-e46e-4f07-a362-959874ef851b" ], + "x-ms-correlation-request-id": [ "28e88390-ecc8-4a59-9a98-9b2f3e61f3b3" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20230130T052431Z:28e88390-ecc8-4a59-9a98-9b2f3e61f3b3" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:38:45 GMT" ] + "Date": [ "Mon, 30 Jan 2023 05:24:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "844" ], + "Content-Length": [ "1194" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"name\":\"preparedLinker\",\"type\":\"microsoft.servicelinker/linkers\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/xichen-postgresql/databases/testdb\",\"resourceProperties\":{\"connectAsKubernetesCsiDriver\":false,\"type\":\"KeyVault\"},\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"xichen\",\"secretInfo\":{\"value\":null,\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"dotnet\",\"scope\":\"simple-hello-world-container\",\"vNetSolution\":null,\"secretStore\":null}}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"name\":\"preparedLinker\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"xiaofanzhou@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-01-30T03:37:04.9479159Z\",\"lastModifiedBy\":\"xiaofanzhou@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-01-30T03:37:04.9479159Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":{\"customizedKeys\":{},\"additionalConfigurations\":null,\"deleteOrUpdateBehavior\":null,\"action\":null},\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppConfiguration/configurationStores/servicelinker-app-configuration\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"roles\":[],\"userName\":null,\"authType\":\"systemAssignedIdentity\",\"deleteOrUpdateBehavior\":null},\"clientType\":\"none\",\"scope\":\"simple-hello-world-container\",\"vNetSolution\":null,\"secretStore\":null}}", + "isContentBase64": false } }, - "Update-AzServiceLinkerForContainerApp+[NoContext]+UpdateExpanded+$PUT+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-05-01+2": { + "Update-AzServiceLinkerForContainerApp+[NoContext]+UpdateExpanded+$PUT+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-11-01-preview+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-05-01", - "Content": "{\n \"properties\": {\n \"targetService\": {\n \"type\": \"AzureResource\",\n \"id\": \"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/xichen-postgresql/databases/testdb\",\n \"resourceProperties\": {\n \"type\": \"KeyVault\",\n \"connectAsKubernetesCsiDriver\": false\n }\n },\n \"authInfo\": {\n \"authType\": \"secret\",\n \"name\": \"xichen\",\n \"secretInfo\": {\n \"secretType\": \"rawValue\"\n }\n },\n \"clientType\": \"dotnet\",\n \"scope\": \"simple-hello-world-container\"\n }\n}", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-11-01-preview", + "Content": "{\n \"properties\": {\n \"targetService\": {\n \"type\": \"AzureResource\",\n \"id\": \"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppConfiguration/configurationStores/servicelinker-app-configuration\",\n \"resourceProperties\": {\n \"type\": \"KeyVault\"\n }\n },\n \"authInfo\": {\n \"authType\": \"systemAssignedIdentity\",\n \"roles\": [ ]\n },\n \"clientType\": \"dotnet\",\n \"scope\": \"simple-hello-world-container\"\n }\n}", + "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "602" ] + "Content-Length": [ "513" ] } }, "Response": { @@ -58,39 +60,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"3a00ca6d-0000-0100-0000-627613f60000\"" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1194" ], + "ETag": [ "\"ea0050d3-0000-0100-0000-63d754900000\"" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "9a5bfa54-7f63-4f4a-b5a4-2e5955269906" ], + "mise-correlation-id": [ "dbc8fd62-16be-43c2-84c8-6bfbe10b7856" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/83dbd15f-56de-44eb-9a32-1b498c1a46d4*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C?api-version=2022-05-01" ], - "x-ms-request-id": [ "83dbd15f-56de-44eb-9a32-1b498c1a46d4" ], - "x-ms-correlation-request-id": [ "44adfbf8-34fb-4c7a-bbe8-359a3cd0f9cd" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T063846Z:44adfbf8-34fb-4c7a-bbe8-359a3cd0f9cd" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/afaca9c1-6cc2-44bd-a91a-810a3211fa67*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C?api-version=2021-01-01-privatepreview" ], + "x-ms-request-id": [ "afaca9c1-6cc2-44bd-a91a-810a3211fa67" ], + "x-ms-correlation-request-id": [ "d9b0ce23-1025-47e3-bb95-1a4b09e10fa1" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20230130T052432Z:d9b0ce23-1025-47e3-bb95-1a4b09e10fa1" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:38:46 GMT" ] + "Date": [ "Mon, 30 Jan 2023 05:24:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1085" ], + "Content-Length": [ "1154" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"name\":\"preparedLinker\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"xiaofanzhou@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2022-05-06T13:09:51.8780205Z\",\"lastModifiedBy\":\"xiaofanzhou@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2022-05-07T06:38:46.0406216Z\"},\"properties\":{\"provisioningState\":\"Accepted\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/xichen-postgresql/databases/testdb\",\"resourceProperties\":{\"connectAsKubernetesCsiDriver\":false,\"type\":\"KeyVault\"},\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"xichen\",\"secretInfo\":{\"value\":null,\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"vNetSolution\":null,\"clientType\":\"dotnet\",\"secretStore\":null,\"scope\":\"simple-hello-world-container\"}}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"name\":\"preparedLinker\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"xiaofanzhou@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-01-30T03:37:04.9479159Z\",\"lastModifiedBy\":\"xiaofanzhou@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-01-30T05:24:32.2335746Z\"},\"properties\":{\"provisioningState\":\"Accepted\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppConfiguration/configurationStores/servicelinker-app-configuration\",\"resourceProperties\":{\"connectAsKubernetesCsiDriver\":false,\"type\":\"KeyVault\"},\"type\":\"AzureResource\"},\"authInfo\":{\"roles\":[],\"userName\":null,\"authType\":\"systemAssignedIdentity\",\"deleteOrUpdateBehavior\":null},\"vNetSolution\":null,\"clientType\":\"dotnet\",\"secretStore\":null,\"scope\":\"simple-hello-world-container\",\"publicNetworkSolution\":null,\"configurationInfo\":null}}", + "isContentBase64": false } }, - "Update-AzServiceLinkerForContainerApp+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/83dbd15f-56de-44eb-9a32-1b498c1a46d4*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C?api-version=2022-05-01+3": { + "Update-AzServiceLinkerForContainerApp+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/afaca9c1-6cc2-44bd-a91a-810a3211fa67*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C?api-version=2021-01-01-privatepreview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/83dbd15f-56de-44eb-9a32-1b498c1a46d4*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/afaca9c1-6cc2-44bd-a91a-810a3211fa67*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C?api-version=2021-01-01-privatepreview", "Content": null, + "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "76" ], - "x-ms-client-request-id": [ "c6aefded-f04e-4e29-b6c0-73c00e41e8a4" ], + "x-ms-unique-id": [ "62" ], + "x-ms-client-request-id": [ "6881ecf5-61af-454c-ab37-51d52dc0b04c" ], "CommandName": [ "Az.ServiceLinker.internal\\New-AzServiceLinker" ], "FullCommandName": [ "New-AzServiceLinker_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceLinker/0.1.0" ] }, "ContentHeaders": { } @@ -100,36 +104,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"03003713-0000-0100-0000-627614090000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11961" ], - "x-ms-request-id": [ "7bf7ab5a-a89d-4e92-947c-e520085a5329" ], - "x-ms-correlation-request-id": [ "5526344f-0c82-4821-8d33-4f61d040bc96" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T063917Z:5526344f-0c82-4821-8d33-4f61d040bc96" ], + "ETag": [ "\"b2042f9e-0000-0100-0000-63d754a10000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11959" ], + "x-ms-request-id": [ "8ec609e4-9f28-474a-a818-9781b46a7b9c" ], + "x-ms-correlation-request-id": [ "0b14585e-4a61-42f6-b69b-4b536009591e" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20230130T052503Z:0b14585e-4a61-42f6-b69b-4b536009591e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:39:16 GMT" ] + "Date": [ "Mon, 30 Jan 2023 05:25:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "698" ], + "Content-Length": [ "710" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/83dbd15f-56de-44eb-9a32-1b498c1a46d4*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C\",\"name\":\"83dbd15f-56de-44eb-9a32-1b498c1a46d4*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"status\":\"Succeeded\",\"startTime\":\"2022-05-07T06:38:46.4558922Z\",\"endTime\":\"2022-05-07T06:39:05.3486485Z\",\"properties\":{}}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/afaca9c1-6cc2-44bd-a91a-810a3211fa67*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C\",\"name\":\"afaca9c1-6cc2-44bd-a91a-810a3211fa67*324E836E610ADA5227F1AB5B6997832CF633F8C4C7175BF9A042B2B8312F6A7C\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"status\":\"Succeeded\",\"startTime\":\"2023-01-30T05:24:32.5972677Z\",\"endTime\":\"2023-01-30T05:24:49.5913178Z\",\"properties\":{\"Message\":\"\"}}", + "isContentBase64": false } }, - "Update-AzServiceLinkerForContainerApp+[NoContext]+UpdateExpanded+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-05-01+4": { + "Update-AzServiceLinkerForContainerApp+[NoContext]+UpdateExpanded+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-11-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-05-01", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-11-01-preview", "Content": null, + "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "77" ], - "x-ms-client-request-id": [ "c6aefded-f04e-4e29-b6c0-73c00e41e8a4" ], + "x-ms-unique-id": [ "63" ], + "x-ms-client-request-id": [ "6881ecf5-61af-454c-ab37-51d52dc0b04c" ], "CommandName": [ "Az.ServiceLinker.internal\\New-AzServiceLinker" ], "FullCommandName": [ "New-AzServiceLinker_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceLinker/0.1.0" ] }, "ContentHeaders": { } @@ -139,24 +145,24 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"3a00fc6d-0000-0100-0000-627614090000\"" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11960" ], + "ETag": [ "\"ea0077d3-0000-0100-0000-63d754a10000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11958" ], "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "a3cfee08-2831-43a0-a6c2-a683d591fcf2" ], + "mise-correlation-id": [ "4c8dda53-14ff-45f1-8367-053a92b4b5f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d19cfd28-06df-4100-b921-72e57af16795" ], - "x-ms-correlation-request-id": [ "38716d37-ffc5-4435-85da-cc4a7f8391b1" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T063917Z:38716d37-ffc5-4435-85da-cc4a7f8391b1" ], + "x-ms-request-id": [ "bd5d8c8d-5306-4384-b58e-1b5d149c859c" ], + "x-ms-correlation-request-id": [ "47b338fb-1cc1-4fe3-bd74-4ad5133268f1" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20230130T052503Z:47b338fb-1cc1-4fe3-bd74-4ad5133268f1" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:39:17 GMT" ] + "Date": [ "Mon, 30 Jan 2023 05:25:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "844" ], + "Content-Length": [ "1155" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"name\":\"preparedLinker\",\"type\":\"microsoft.servicelinker/linkers\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/xichen-postgresql/databases/testdb\",\"resourceProperties\":{\"connectAsKubernetesCsiDriver\":false,\"type\":\"KeyVault\"},\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"xichen\",\"secretInfo\":{\"value\":null,\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"dotnet\",\"scope\":\"simple-hello-world-container\",\"vNetSolution\":null,\"secretStore\":null}}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-containerapp/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"name\":\"preparedLinker\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"xiaofanzhou@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-01-30T03:37:04.9479159Z\",\"lastModifiedBy\":\"xiaofanzhou@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-01-30T05:24:32.2335746Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppConfiguration/configurationStores/servicelinker-app-configuration\",\"resourceProperties\":{\"connectAsKubernetesCsiDriver\":false,\"type\":\"KeyVault\"},\"type\":\"AzureResource\"},\"authInfo\":{\"roles\":[],\"userName\":null,\"authType\":\"systemAssignedIdentity\",\"deleteOrUpdateBehavior\":null},\"clientType\":\"dotnet\",\"scope\":\"simple-hello-world-container\",\"vNetSolution\":null,\"secretStore\":null}}", + "isContentBase64": false } } } \ No newline at end of file diff --git a/src/ServiceLinker/test/Update-AzServiceLinkerForSpringCloud.Recording.json b/src/ServiceLinker/test/Update-AzServiceLinkerForSpringCloud.Recording.json index f0d6e2b17d55..13a102fdd1d4 100644 --- a/src/ServiceLinker/test/Update-AzServiceLinkerForSpringCloud.Recording.json +++ b/src/ServiceLinker/test/Update-AzServiceLinkerForSpringCloud.Recording.json @@ -1,16 +1,17 @@ { - "Update-AzServiceLinkerForSpringCloud+[NoContext]+UpdateExpanded+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-05-01+1": { + "Update-AzServiceLinkerForSpringCloud+[NoContext]+UpdateExpanded+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-11-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-05-01", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-11-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "78" ], - "x-ms-client-request-id": [ "87767031-dd39-4170-8bed-0c66ccb1d30a" ], + "x-ms-unique-id": [ "64" ], + "x-ms-client-request-id": [ "d68e7c18-6998-4c84-af87-ed68badfe8f0" ], "CommandName": [ "Az.ServiceLinker.internal\\Get-AzServiceLinker" ], "FullCommandName": [ "Get-AzServiceLinker_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceLinker/0.1.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -21,31 +22,32 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"3a003b6e-0000-0100-0000-627614220000\"" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11946" ], + "ETag": [ "\"3a007e77-0000-0100-0000-627617f00000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11957" ], "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "efcaa39d-6962-4865-a9ef-5b51857d6e3f" ], + "mise-correlation-id": [ "f162fe44-0998-4f2d-9839-2508c6d9be3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "51a40c2d-45cd-4fa9-ac57-1f4ff1077373" ], - "x-ms-correlation-request-id": [ "1a24f40d-a545-4312-96a5-de77fbc34bb5" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T065539Z:1a24f40d-a545-4312-96a5-de77fbc34bb5" ], + "x-ms-request-id": [ "144378a3-0ad7-4321-bb24-14dc399c4bc3" ], + "x-ms-correlation-request-id": [ "f9960e30-97af-401e-a8e5-7af5d4df7764" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20230130T052512Z:f9960e30-97af-401e-a8e5-7af5d4df7764" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:55:38 GMT" ] + "Date": [ "Mon, 30 Jan 2023 05:25:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "866" ], + "Content-Length": [ "1162" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"name\":\"preparedLinker\",\"type\":\"microsoft.servicelinker/linkers\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/pollsdb\",\"resourceProperties\":{\"connectAsKubernetesCsiDriver\":false,\"type\":\"KeyVault\"},\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"servicelinker\",\"secretInfo\":{\"value\":null,\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"dotnet\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"name\":\"preparedLinker\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"xiaofanzhou@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2022-05-06T06:50:44.4314626Z\",\"lastModifiedBy\":\"xiaofanzhou@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2022-05-07T06:55:39.5016761Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/pollsdb\",\"resourceProperties\":{\"connectAsKubernetesCsiDriver\":false,\"type\":\"KeyVault\"},\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"servicelinker\",\"secretInfo\":{\"value\":null,\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"dotnet\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}}", + "isContentBase64": false } }, - "Update-AzServiceLinkerForSpringCloud+[NoContext]+UpdateExpanded+$PUT+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-05-01+2": { + "Update-AzServiceLinkerForSpringCloud+[NoContext]+UpdateExpanded+$PUT+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-11-01-preview+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-05-01", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-11-01-preview", "Content": "{\n \"properties\": {\n \"targetService\": {\n \"type\": \"AzureResource\",\n \"id\": \"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/pollsdb\",\n \"resourceProperties\": {\n \"type\": \"KeyVault\",\n \"connectAsKubernetesCsiDriver\": false\n }\n },\n \"authInfo\": {\n \"authType\": \"secret\",\n \"name\": \"servicelinker\",\n \"secretInfo\": {\n \"secretType\": \"rawValue\"\n }\n },\n \"clientType\": \"dotnet\"\n }\n}", + "isContentBase64": false, "Headers": { }, "ContentHeaders": { @@ -58,39 +60,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"3a007477-0000-0100-0000-627617ec0000\"" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1191" ], + "ETag": [ "\"ea00a9d3-0000-0100-0000-63d754ba0000\"" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1194" ], "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "2213c240-bd0e-4772-a9ed-7f3ac2756fbd" ], + "mise-correlation-id": [ "c40a428a-a825-494a-bd5c-0b4d3ba091d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/855e3128-dbe7-41e6-9d51-e3143260bca8*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6?api-version=2022-05-01" ], - "x-ms-request-id": [ "855e3128-dbe7-41e6-9d51-e3143260bca8" ], - "x-ms-correlation-request-id": [ "f8a0dda6-c319-4315-9e42-2e16a92bcc10" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T065540Z:f8a0dda6-c319-4315-9e42-2e16a92bcc10" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/c65d8703-8369-4f33-addf-828f94c4af44*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6?api-version=2021-01-01-privatepreview" ], + "x-ms-request-id": [ "c65d8703-8369-4f33-addf-828f94c4af44" ], + "x-ms-correlation-request-id": [ "70e1ebf7-a1cf-4798-82ce-42e638f25ff6" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20230130T052514Z:70e1ebf7-a1cf-4798-82ce-42e638f25ff6" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:55:39 GMT" ] + "Date": [ "Mon, 30 Jan 2023 05:25:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1107" ], + "Content-Length": [ "1148" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"name\":\"preparedLinker\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"xiaofanzhou@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2022-05-06T06:50:44.4314626Z\",\"lastModifiedBy\":\"xiaofanzhou@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2022-05-07T06:55:39.5016761Z\"},\"properties\":{\"provisioningState\":\"Accepted\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/pollsdb\",\"resourceProperties\":{\"connectAsKubernetesCsiDriver\":false,\"type\":\"KeyVault\"},\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"servicelinker\",\"secretInfo\":{\"value\":null,\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"vNetSolution\":null,\"clientType\":\"dotnet\",\"secretStore\":null,\"scope\":null}}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"name\":\"preparedLinker\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"xiaofanzhou@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2022-05-06T06:50:44.4314626Z\",\"lastModifiedBy\":\"xiaofanzhou@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-01-30T05:25:13.5779094Z\"},\"properties\":{\"provisioningState\":\"Accepted\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/pollsdb\",\"resourceProperties\":{\"connectAsKubernetesCsiDriver\":false,\"type\":\"KeyVault\"},\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"servicelinker\",\"secretInfo\":{\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"vNetSolution\":null,\"clientType\":\"dotnet\",\"secretStore\":null,\"scope\":null,\"publicNetworkSolution\":null,\"configurationInfo\":null}}", + "isContentBase64": false } }, - "Update-AzServiceLinkerForSpringCloud+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/855e3128-dbe7-41e6-9d51-e3143260bca8*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6?api-version=2022-05-01+3": { + "Update-AzServiceLinkerForSpringCloud+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/c65d8703-8369-4f33-addf-828f94c4af44*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6?api-version=2021-01-01-privatepreview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/855e3128-dbe7-41e6-9d51-e3143260bca8*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/c65d8703-8369-4f33-addf-828f94c4af44*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6?api-version=2021-01-01-privatepreview", "Content": null, + "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "80" ], - "x-ms-client-request-id": [ "142ff109-e489-4843-97a9-c3f0e78f6e43" ], + "x-ms-unique-id": [ "66" ], + "x-ms-client-request-id": [ "2d80c69a-4542-4784-b207-4ecad214e4cd" ], "CommandName": [ "Az.ServiceLinker.internal\\New-AzServiceLinker" ], "FullCommandName": [ "New-AzServiceLinker_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceLinker/0.1.0" ] }, "ContentHeaders": { } @@ -100,36 +104,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"03004314-0000-0100-0000-627617f00000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11945" ], - "x-ms-request-id": [ "820895e4-0eda-4db5-9e27-b7ff9f6fce63" ], - "x-ms-correlation-request-id": [ "b4eb1777-eca0-4575-93b7-0dd49f785b11" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T065610Z:b4eb1777-eca0-4575-93b7-0dd49f785b11" ], + "ETag": [ "\"b204399e-0000-0100-0000-63d754c00000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11956" ], + "x-ms-request-id": [ "4efe12f8-b6bd-4695-b11c-9f4f1a766fe1" ], + "x-ms-correlation-request-id": [ "f3433a33-e0de-4bbd-a059-d354f56b97e6" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20230130T052545Z:f3433a33-e0de-4bbd-a059-d354f56b97e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:56:10 GMT" ] + "Date": [ "Mon, 30 Jan 2023 05:25:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "868" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/855e3128-dbe7-41e6-9d51-e3143260bca8*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6\",\"name\":\"855e3128-dbe7-41e6-9d51-e3143260bca8*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"status\":\"Succeeded\",\"startTime\":\"2022-05-07T06:55:39.9238693Z\",\"endTime\":\"2022-05-07T06:55:44.4553212Z\",\"properties\":{\"message\":\"Deny public network access is set to yes. Please confirm you are using private endpoint connection to access target resource.\"}}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/c65d8703-8369-4f33-addf-828f94c4af44*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6\",\"name\":\"c65d8703-8369-4f33-addf-828f94c4af44*29FC1D772AA9DB7AB96D203D76DC8999C4D402C87FA6F24B9C0330A7029A41F6\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"status\":\"Succeeded\",\"startTime\":\"2023-01-30T05:25:14.1168795Z\",\"endTime\":\"2023-01-30T05:25:20.0796427Z\",\"properties\":{\"Message\":\"Deny public network access is set to yes. Please confirm you are using private endpoint connection to access target resource.\"}}", + "isContentBase64": false } }, - "Update-AzServiceLinkerForSpringCloud+[NoContext]+UpdateExpanded+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-05-01+4": { + "Update-AzServiceLinkerForSpringCloud+[NoContext]+UpdateExpanded+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-11-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-05-01", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-11-01-preview", "Content": null, + "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "81" ], - "x-ms-client-request-id": [ "142ff109-e489-4843-97a9-c3f0e78f6e43" ], + "x-ms-unique-id": [ "67" ], + "x-ms-client-request-id": [ "2d80c69a-4542-4784-b207-4ecad214e4cd" ], "CommandName": [ "Az.ServiceLinker.internal\\New-AzServiceLinker" ], "FullCommandName": [ "New-AzServiceLinker_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceLinker/0.1.0" ] }, "ContentHeaders": { } @@ -139,24 +145,24 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"3a007e77-0000-0100-0000-627617f00000\"" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11944" ], + "ETag": [ "\"ea00bdd3-0000-0100-0000-63d754c00000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11955" ], "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "0f90bbf7-8efc-4e0f-bbed-bab3a9e84dea" ], + "mise-correlation-id": [ "72744145-fc42-4591-a8f2-4cf4dc7ce84a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "796d056d-42b8-4af9-bb29-22a2d84518d5" ], - "x-ms-correlation-request-id": [ "733a4b9a-00a1-4c09-9741-03e4078aa248" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T065611Z:733a4b9a-00a1-4c09-9741-03e4078aa248" ], + "x-ms-request-id": [ "2847b5c1-7921-43b6-87eb-948997250e2f" ], + "x-ms-correlation-request-id": [ "7c1c3568-347f-4dc3-bd2d-b7744dc247f6" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20230130T052545Z:7c1c3568-347f-4dc3-bd2d-b7744dc247f6" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:56:11 GMT" ] + "Date": [ "Mon, 30 Jan 2023 05:25:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "866" ], + "Content-Length": [ "1149" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"name\":\"preparedLinker\",\"type\":\"microsoft.servicelinker/linkers\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/pollsdb\",\"resourceProperties\":{\"connectAsKubernetesCsiDriver\":false,\"type\":\"KeyVault\"},\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"servicelinker\",\"secretInfo\":{\"value\":null,\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"dotnet\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/e2etest/deployments/default/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"name\":\"preparedLinker\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"xiaofanzhou@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2022-05-06T06:50:44.4314626Z\",\"lastModifiedBy\":\"xiaofanzhou@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-01-30T05:25:13.5779094Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/pollsdb\",\"resourceProperties\":{\"connectAsKubernetesCsiDriver\":false,\"type\":\"KeyVault\"},\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"servicelinker\",\"secretInfo\":{\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"dotnet\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}}", + "isContentBase64": false } } } \ No newline at end of file diff --git a/src/ServiceLinker/test/Update-AzServiceLinkerForWebApp.Recording.json b/src/ServiceLinker/test/Update-AzServiceLinkerForWebApp.Recording.json index 93f928b881fc..8f7a5f1b9ddd 100644 --- a/src/ServiceLinker/test/Update-AzServiceLinkerForWebApp.Recording.json +++ b/src/ServiceLinker/test/Update-AzServiceLinkerForWebApp.Recording.json @@ -1,16 +1,17 @@ { - "Update-AzServiceLinkerForWebApp+[NoContext]+UpdateExpanded+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-05-01+1": { + "Update-AzServiceLinkerForWebApp+[NoContext]+UpdateExpanded+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-11-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-05-01", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-11-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "82" ], - "x-ms-client-request-id": [ "4fbf8912-a6e6-4900-a83e-518a617b34d2" ], + "x-ms-unique-id": [ "68" ], + "x-ms-client-request-id": [ "10606511-0d36-4655-906b-deefdd9d7902" ], "CommandName": [ "Az.ServiceLinker.internal\\Get-AzServiceLinker" ], "FullCommandName": [ "Get-AzServiceLinker_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceLinker/0.1.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -21,36 +22,37 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"3a00dd6e-0000-0100-0000-6276145e0000\"" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11943" ], + "ETag": [ "\"e9004883-0000-0100-0000-63d6e60d0000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11954" ], "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "086751a3-8da2-4592-a6ce-2cb6570946c4" ], + "mise-correlation-id": [ "9e4e8c6a-78ef-4977-8f31-9663a4ee9d8d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "16cb8d84-83fb-43f7-a019-4bf8bbc08833" ], - "x-ms-correlation-request-id": [ "30484da9-a3fa-4631-bf4e-a8180918747f" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T065619Z:30484da9-a3fa-4631-bf4e-a8180918747f" ], + "x-ms-request-id": [ "686208c7-b758-4e7f-89d2-56c07e785144" ], + "x-ms-correlation-request-id": [ "f79f7532-4c93-4862-8b19-3e521086189a" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20230130T052555Z:f79f7532-4c93-4862-8b19-3e521086189a" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:56:18 GMT" ] + "Date": [ "Mon, 30 Jan 2023 05:25:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "814" ], + "Content-Length": [ "1056" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"name\":\"preparedLinker\",\"type\":\"microsoft.servicelinker/linkers\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/pollsdb\",\"resourceProperties\":{\"connectAsKubernetesCsiDriver\":false,\"type\":\"KeyVault\"},\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"xichen\",\"secretInfo\":{\"value\":null,\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"dotnet\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"name\":\"preparedLinker\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"naji@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-20T02:10:21.6542229Z\",\"lastModifiedBy\":\"c4288165-6698-45ba-98a5-48ea7791fed3\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2023-01-29T21:33:01.9216341Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/pollsdb\",\"resourceProperties\":null,\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"xichen\",\"secretInfo\":{\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"django\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}}", + "isContentBase64": false } }, - "Update-AzServiceLinkerForWebApp+[NoContext]+UpdateExpanded+$PUT+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-05-01+2": { + "Update-AzServiceLinkerForWebApp+[NoContext]+UpdateExpanded+$PUT+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-11-01-preview+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-05-01", - "Content": "{\n \"properties\": {\n \"targetService\": {\n \"type\": \"AzureResource\",\n \"id\": \"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/pollsdb\",\n \"resourceProperties\": {\n \"type\": \"KeyVault\",\n \"connectAsKubernetesCsiDriver\": false\n }\n },\n \"authInfo\": {\n \"authType\": \"secret\",\n \"name\": \"xichen\",\n \"secretInfo\": {\n \"secretType\": \"rawValue\"\n }\n },\n \"clientType\": \"dotnet\"\n }\n}", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-11-01-preview", + "Content": "{\n \"properties\": {\n \"targetService\": {\n \"type\": \"AzureResource\",\n \"id\": \"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/pollsdb\",\n \"resourceProperties\": {\n \"type\": \"KeyVault\"\n }\n },\n \"authInfo\": {\n \"authType\": \"secret\",\n \"name\": \"xichen\",\n \"secretInfo\": {\n \"secretType\": \"rawValue\"\n }\n },\n \"clientType\": \"dotnet\"\n }\n}", + "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "565" ] + "Content-Length": [ "518" ] } }, "Response": { @@ -58,39 +60,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"3a00ce77-0000-0100-0000-627618130000\"" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1190" ], + "ETag": [ "\"ea0021d4-0000-0100-0000-63d754e40000\"" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1193" ], "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "8bbd4353-4cae-4258-b9ea-e85e71eeb0dc" ], + "mise-correlation-id": [ "0c602934-d38b-4749-a967-56676114f065" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/572d6a2b-1b12-4e7f-bd53-4f1d294a9df5*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40?api-version=2022-05-01" ], - "x-ms-request-id": [ "572d6a2b-1b12-4e7f-bd53-4f1d294a9df5" ], - "x-ms-correlation-request-id": [ "d3c0b20a-b96d-4c71-8775-081b2e6e339c" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T065619Z:d3c0b20a-b96d-4c71-8775-081b2e6e339c" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/88c038fc-303d-4c74-ab1a-b6c5f4a23892*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40?api-version=2021-01-01-privatepreview" ], + "x-ms-request-id": [ "88c038fc-303d-4c74-ab1a-b6c5f4a23892" ], + "x-ms-correlation-request-id": [ "ca1fd80d-c33f-4516-ba86-bc9255151d1b" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20230130T052556Z:ca1fd80d-c33f-4516-ba86-bc9255151d1b" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:56:19 GMT" ] + "Date": [ "Mon, 30 Jan 2023 05:25:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1048" ], + "Content-Length": [ "1089" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"name\":\"preparedLinker\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"naji@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-20T02:10:21.6542229Z\",\"lastModifiedBy\":\"xiaofanzhou@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2022-05-07T06:56:19.1743389Z\"},\"properties\":{\"provisioningState\":\"Accepted\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/pollsdb\",\"resourceProperties\":{\"connectAsKubernetesCsiDriver\":false,\"type\":\"KeyVault\"},\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"xichen\",\"secretInfo\":{\"value\":null,\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"vNetSolution\":null,\"clientType\":\"dotnet\",\"secretStore\":null,\"scope\":null}}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"name\":\"preparedLinker\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"naji@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-20T02:10:21.6542229Z\",\"lastModifiedBy\":\"xiaofanzhou@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-01-30T05:25:55.6334752Z\"},\"properties\":{\"provisioningState\":\"Accepted\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/pollsdb\",\"resourceProperties\":{\"connectAsKubernetesCsiDriver\":false,\"type\":\"KeyVault\"},\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"xichen\",\"secretInfo\":{\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"vNetSolution\":null,\"clientType\":\"dotnet\",\"secretStore\":null,\"scope\":null,\"publicNetworkSolution\":null,\"configurationInfo\":null}}", + "isContentBase64": false } }, - "Update-AzServiceLinkerForWebApp+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/572d6a2b-1b12-4e7f-bd53-4f1d294a9df5*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40?api-version=2022-05-01+3": { + "Update-AzServiceLinkerForWebApp+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/88c038fc-303d-4c74-ab1a-b6c5f4a23892*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40?api-version=2021-01-01-privatepreview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/572d6a2b-1b12-4e7f-bd53-4f1d294a9df5*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/88c038fc-303d-4c74-ab1a-b6c5f4a23892*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40?api-version=2021-01-01-privatepreview", "Content": null, + "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "84" ], - "x-ms-client-request-id": [ "ec9b1206-d10d-4013-a607-1f9a0f0e53ed" ], + "x-ms-unique-id": [ "70" ], + "x-ms-client-request-id": [ "d5d5f765-7b37-491a-b2c7-cc7f9bcec2b5" ], "CommandName": [ "Az.ServiceLinker.internal\\New-AzServiceLinker" ], "FullCommandName": [ "New-AzServiceLinker_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceLinker/0.1.0" ] }, "ContentHeaders": { } @@ -100,36 +104,38 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0605db5d-0000-0200-0000-627618170000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11942" ], - "x-ms-request-id": [ "1c0851b1-63b6-4cd6-a5a4-637c8f2dbb18" ], - "x-ms-correlation-request-id": [ "e096aecf-820b-47bc-a6f2-7e459c7258ff" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T065650Z:e096aecf-820b-47bc-a6f2-7e459c7258ff" ], + "ETag": [ "\"b204519e-0000-0100-0000-63d754ea0000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11953" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20230130T052626Z:69c64abe-a3ff-4043-af54-b3a90c87550d" ], + "x-ms-request-id": [ "6f0736cf-ab71-436f-8cc8-ebd15c54e4c5" ], + "x-ms-correlation-request-id": [ "69c64abe-a3ff-4043-af54-b3a90c87550d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:56:49 GMT" ] + "Date": [ "Mon, 30 Jan 2023 05:26:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "823" ], + "Content-Length": [ "822" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/572d6a2b-1b12-4e7f-bd53-4f1d294a9df5*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40\",\"name\":\"572d6a2b-1b12-4e7f-bd53-4f1d294a9df5*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"status\":\"Succeeded\",\"startTime\":\"2022-05-07T06:56:19.5963955Z\",\"endTime\":\"2022-05-07T06:56:23.5839631Z\",\"properties\":{\"message\":\"Deny public network access is set to yes. Please confirm you are using private endpoint connection to access target resource.\"}}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/providers/Microsoft.ServiceLinker/locations/EASTUS/operationStatuses/88c038fc-303d-4c74-ab1a-b6c5f4a23892*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40\",\"name\":\"88c038fc-303d-4c74-ab1a-b6c5f4a23892*B991DCAFEBFF5C3A79EC9E2FD2F2ADE7A54C04792D45A2389E902AD7087E3F40\",\"resourceId\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"status\":\"Succeeded\",\"startTime\":\"2023-01-30T05:25:55.980302Z\",\"endTime\":\"2023-01-30T05:26:02.7968237Z\",\"properties\":{\"Message\":\"Deny public network access is set to yes. Please confirm you are using private endpoint connection to access target resource.\"}}", + "isContentBase64": false } }, - "Update-AzServiceLinkerForWebApp+[NoContext]+UpdateExpanded+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-05-01+4": { + "Update-AzServiceLinkerForWebApp+[NoContext]+UpdateExpanded+$GET+https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-11-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-05-01", + "RequestUri": "https://management.azure.com//subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker?api-version=2022-11-01-preview", "Content": null, + "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "85" ], - "x-ms-client-request-id": [ "ec9b1206-d10d-4013-a607-1f9a0f0e53ed" ], + "x-ms-unique-id": [ "71" ], + "x-ms-client-request-id": [ "d5d5f765-7b37-491a-b2c7-cc7f9bcec2b5" ], "CommandName": [ "Az.ServiceLinker.internal\\New-AzServiceLinker" ], "FullCommandName": [ "New-AzServiceLinker_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.1.3", "Az.ServiceLinker/0.1.0" ] }, "ContentHeaders": { } @@ -139,24 +145,24 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"f5000ff6-0000-0200-0000-627618170000\"" ], - "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11941" ], + "ETag": [ "\"ea0035d4-0000-0100-0000-63d754ea0000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "11952" ], "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "26a7c2ab-53d9-452d-9ea6-76d908e8762c" ], + "mise-correlation-id": [ "a8df9924-99a6-466c-8830-d4f14f2a6137" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "83c2a959-9fd4-43e7-9554-9475dbd90853" ], - "x-ms-correlation-request-id": [ "c9a2e6d0-ec82-4528-b4c4-6c7c72821090" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220507T065651Z:c9a2e6d0-ec82-4528-b4c4-6c7c72821090" ], + "x-ms-request-id": [ "c2a770b1-3261-41ab-82fa-369dd3e681fe" ], + "x-ms-correlation-request-id": [ "c434d5d8-c106-4a3f-a599-ec53091193bf" ], + "x-ms-routing-request-id": [ "KOREASOUTH:20230130T052627Z:c434d5d8-c106-4a3f-a599-ec53091193bf" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Sat, 07 May 2022 06:56:50 GMT" ] + "Date": [ "Mon, 30 Jan 2023 05:26:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "814" ], + "Content-Length": [ "1090" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"name\":\"preparedLinker\",\"type\":\"microsoft.servicelinker/linkers\",\"properties\":{\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/pollsdb\",\"resourceProperties\":{\"connectAsKubernetesCsiDriver\":false,\"type\":\"KeyVault\"},\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"xichen\",\"secretInfo\":{\"value\":null,\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"dotnet\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}}" + "Content": "{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-test-app/providers/Microsoft.ServiceLinker/linkers/preparedLinker\",\"name\":\"preparedLinker\",\"type\":\"microsoft.servicelinker/linkers\",\"systemData\":{\"createdBy\":\"naji@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2021-10-20T02:10:21.6542229Z\",\"lastModifiedBy\":\"xiaofanzhou@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-01-30T05:25:55.6334752Z\"},\"properties\":{\"publicNetworkSolution\":null,\"configurationInfo\":null,\"provisioningState\":\"Succeeded\",\"targetService\":{\"id\":\"/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/pollsdb\",\"resourceProperties\":{\"connectAsKubernetesCsiDriver\":false,\"type\":\"KeyVault\"},\"type\":\"AzureResource\"},\"authInfo\":{\"name\":\"xichen\",\"secretInfo\":{\"secretType\":\"rawValue\"},\"authType\":\"secret\"},\"clientType\":\"dotnet\",\"scope\":null,\"vNetSolution\":null,\"secretStore\":null}}", + "isContentBase64": false } } } \ No newline at end of file diff --git a/src/ServiceLinker/test/env.json b/src/ServiceLinker/test/env.json index a1dba2e61119..629037233cd9 100644 --- a/src/ServiceLinker/test/env.json +++ b/src/ServiceLinker/test/env.json @@ -1,21 +1,22 @@ { + "secretUri": "https://servicelinker-kv-ref.vault.azure.net/secrets/azure-mysql-host-28449/cc5d8095a54f4755b342f4e7884b5c84", "postgresUsername": "servicelinker", - "Tenant": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "confluentEndpoint": "pkc-xxxx.eastus.azure.confluent.cloud:9092", "container": "simple-hello-world-container", - "clientType": "dotnet", - "spring": "servicelinker-springcloud", - "newLinker": "ps_linker", - "keyvaultId": "/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.KeyVault/vaults/servicelinker-test-kv", - "postgresqId": "/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/postgres", - "SubscriptionId": "937bc588-a144-4083-8612-5f9ffbbddb14", - "containerApp": "servicelinker-containerapp", - "resourceGroup": "servicelinker-test-linux-group", - "schemaRegistry": "https://psrc-xxxx.westus2.azure.confluent.cloud", "preparedWebApp": "servicelinker-test-app", + "schemaRegistry": "https://psrc-xxxx.westus2.azure.confluent.cloud", "preparedLinker": "preparedLinker", - "secretUri": "https://servicelinker-kv-ref.vault.azure.net/secrets/azure-mysql-host-28449/cc5d8095a54f4755b342f4e7884b5c84", - "storageId": "/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Storage/storageAccounts/servicelinkerteststorage/blobServices/default", "springApp": "e2etest", - "webapp": "servicelinker-powershell" + "SubscriptionId": "937bc588-a144-4083-8612-5f9ffbbddb14", + "spring": "servicelinker-springcloud", + "Tenant": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "resourceGroup": "servicelinker-test-linux-group", + "containerApp": "servicelinker-containerapp", + "clientType": "dotnet", + "newLinker": "ps_linker", + "confluentEndpoint": "pkc-xxxx.eastus.azure.confluent.cloud:9092", + "location": "eastus", + "webapp": "servicelinker-powershell", + "storageId": "/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Storage/storageAccounts/servicelinkerteststorage/blobServices/default", + "keyvaultId": "/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.KeyVault/vaults/servicelinker-test-kv", + "postgresqId": "/subscriptions/937bc588-a144-4083-8612-5f9ffbbddb14/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.DBforPostgreSQL/servers/servicelinker-postgresql/databases/postgres" } diff --git a/src/ServiceLinker/test/utils.ps1 b/src/ServiceLinker/test/utils.ps1 index 2145986b40f1..befa0571b6ab 100644 --- a/src/ServiceLinker/test/utils.ps1 +++ b/src/ServiceLinker/test/utils.ps1 @@ -22,6 +22,7 @@ function setupEnv() { $resourceGroup = "servicelinker-test-linux-group" $env.resourceGroup = $resourceGroup + $env.location = "eastus" $env.newLinker = "ps_linker" $env.clientType = "dotnet" diff --git a/src/SignalR/SignalR.Autorest/docs/New-AzWebPubSubEventHubEndpointObject.md b/src/SignalR/SignalR.Autorest/docs/New-AzWebPubSubEventHubEndpointObject.md index d0d5c4992004..94f753b835a8 100644 --- a/src/SignalR/SignalR.Autorest/docs/New-AzWebPubSubEventHubEndpointObject.md +++ b/src/SignalR/SignalR.Autorest/docs/New-AzWebPubSubEventHubEndpointObject.md @@ -1,7 +1,7 @@ --- external help file: Module Name: Az.SignalR -online version: https://learn.microsoft.com/powershell/module/az./new-AzWebPubSubEventHubEndpointObject +online version: https://learn.microsoft.com/powershell/module/az.signalr/new-azwebpubsubeventhubendpointobject schema: 2.0.0 --- diff --git a/src/SignalR/SignalR.Autorest/docs/New-AzWebPubSubEventNameFilterObject.md b/src/SignalR/SignalR.Autorest/docs/New-AzWebPubSubEventNameFilterObject.md index 42f928cabc65..b02c7a2cc59c 100644 --- a/src/SignalR/SignalR.Autorest/docs/New-AzWebPubSubEventNameFilterObject.md +++ b/src/SignalR/SignalR.Autorest/docs/New-AzWebPubSubEventNameFilterObject.md @@ -1,7 +1,7 @@ --- external help file: Module Name: Az.SignalR -online version: https://learn.microsoft.com/powershell/module/az./new-AzWebPubSubEventNameFilterObject +online version: https://learn.microsoft.com/powershell/module/az.signalr/new-azwebpubsubeventnamefilterobject schema: 2.0.0 --- diff --git a/src/SignalR/SignalR/help/New-AzWebPubSubEventHubEndpointObject.md b/src/SignalR/SignalR/help/New-AzWebPubSubEventHubEndpointObject.md index b83f169096eb..2f399bd9d0f5 100644 --- a/src/SignalR/SignalR/help/New-AzWebPubSubEventHubEndpointObject.md +++ b/src/SignalR/SignalR/help/New-AzWebPubSubEventHubEndpointObject.md @@ -1,7 +1,7 @@ --- external help file: Az.SignalR-help.xml Module Name: Az.SignalR -online version: https://learn.microsoft.com/powershell/module/az./new-AzWebPubSubEventHubEndpointObject +online version: https://learn.microsoft.com/powershell/module/az.signalr/new-azwebpubsubeventhubendpointobject schema: 2.0.0 --- diff --git a/src/SignalR/SignalR/help/New-AzWebPubSubEventNameFilterObject.md b/src/SignalR/SignalR/help/New-AzWebPubSubEventNameFilterObject.md index a9796a9cbbf0..d7f3f235c805 100644 --- a/src/SignalR/SignalR/help/New-AzWebPubSubEventNameFilterObject.md +++ b/src/SignalR/SignalR/help/New-AzWebPubSubEventNameFilterObject.md @@ -1,7 +1,7 @@ --- external help file: Az.SignalR-help.xml Module Name: Az.SignalR -online version: https://learn.microsoft.com/powershell/module/az./new-AzWebPubSubEventNameFilterObject +online version: https://learn.microsoft.com/powershell/module/az.signalr/new-azwebpubsubeventnamefilterobject schema: 2.0.0 --- diff --git a/src/SignalR/SignalR/help/README.md b/src/SignalR/SignalR/help/README.md deleted file mode 100644 index e643ff91b377..000000000000 --- a/src/SignalR/SignalR/help/README.md +++ /dev/null @@ -1,11 +0,0 @@ -# Docs -This directory contains the documentation of the cmdlets for the `Az.SignalR` module. To run documentation generation, use the `generate-help.ps1` script at the root module folder. Files in this folder will *always be overridden on regeneration*. To update documentation examples, please use the `..\examples` folder. - -## Info -- Modifiable: no -- Generated: all -- Committed: yes -- Packaged: yes - -## Details -The process of documentation generation loads `Az.SignalR` and analyzes the exported cmdlets from the module. It recognizes the [help comments](https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_comment_based_help) that are generated into the scripts in the `..\exports` folder. Additionally, when writing custom cmdlets in the `..\custom` folder, you can use the help comments syntax, which decorate the exported scripts at build-time. The documentation examples are taken from the `..\examples` folder. \ No newline at end of file diff --git a/src/Ssh/Ssh/help/Enter-AzVM.md b/src/Ssh/Ssh/help/Enter-AzVM.md index d63051b7c16e..e59151dea9ed 100644 --- a/src/Ssh/Ssh/help/Enter-AzVM.md +++ b/src/Ssh/Ssh/help/Enter-AzVM.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Ssh.dll-Help.xml Module Name: Az.Ssh -online version: +online version: https://learn.microsoft.com/powershell/module/az.ssh/enter-azvm schema: 2.0.0 --- @@ -308,4 +308,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Login to a Linux VM by using Azure AD](https://learn.microsoft.com/en-us/azure/active-directory/devices/howto-vm-sign-in-azure-ad-linux) -[Install OpenSSH for Windows](https://learn.microsoft.com/en-us/windows-server/administration/openssh/openssh_install_firstuse?tabs=gui) \ No newline at end of file +[Install OpenSSH for Windows](https://learn.microsoft.com/en-us/windows-server/administration/openssh/openssh_install_firstuse?tabs=gui) diff --git a/src/Ssh/Ssh/help/Export-AzSshConfig.md b/src/Ssh/Ssh/help/Export-AzSshConfig.md index 2e60f0803189..22311c76e2e2 100644 --- a/src/Ssh/Ssh/help/Export-AzSshConfig.md +++ b/src/Ssh/Ssh/help/Export-AzSshConfig.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Ssh.dll-Help.xml Module Name: Az.Ssh -online version: +online version: https://learn.microsoft.com/powershell/module/az.ssh/export-azsshconfig schema: 2.0.0 --- @@ -329,4 +329,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS [Login to a Linux VM by using Azure AD](https://learn.microsoft.com/en-us/azure/active-directory/devices/howto-vm-sign-in-azure-ad-linux) -[Install OpenSSH for Windows](https://learn.microsoft.com/en-us/windows-server/administration/openssh/openssh_install_firstuse?tabs=gui) \ No newline at end of file +[Install OpenSSH for Windows](https://learn.microsoft.com/en-us/windows-server/administration/openssh/openssh_install_firstuse?tabs=gui) diff --git a/src/StorageMover/help/New-AzStorageMoverAzStorageContainerEndpoint.md b/src/StorageMover/help/New-AzStorageMoverAzStorageContainerEndpoint.md index 6bb476e06214..02ed6a4b1c73 100644 --- a/src/StorageMover/help/New-AzStorageMoverAzStorageContainerEndpoint.md +++ b/src/StorageMover/help/New-AzStorageMoverAzStorageContainerEndpoint.md @@ -1,7 +1,7 @@ --- external help file: Module Name: Az.StorageMover -online version: https://learn.microsoft.com/powershell/module/az.storagemover/new-azstoragemoverendpoint +online version: https://learn.microsoft.com/powershell/module/az.storagemover/new-azstoragemoverazstoragecontainerendpoint schema: 2.0.0 --- diff --git a/src/StorageMover/help/New-AzStorageMoverNfsEndpoint.md b/src/StorageMover/help/New-AzStorageMoverNfsEndpoint.md index b9f5c0f59a3a..70214d18c580 100644 --- a/src/StorageMover/help/New-AzStorageMoverNfsEndpoint.md +++ b/src/StorageMover/help/New-AzStorageMoverNfsEndpoint.md @@ -1,7 +1,7 @@ --- external help file: Module Name: Az.StorageMover -online version: https://learn.microsoft.com/powershell/module/az.storagemover/new-azstoragemoverendpoint +online version: https://learn.microsoft.com/powershell/module/az.storagemover/new-azstoragemovernfsendpoint schema: 2.0.0 --- diff --git a/src/StorageMover/help/Unregister-AzStorageMoverAgent.md b/src/StorageMover/help/Unregister-AzStorageMoverAgent.md index 2e034bbaeb43..9923ad0d53ce 100644 --- a/src/StorageMover/help/Unregister-AzStorageMoverAgent.md +++ b/src/StorageMover/help/Unregister-AzStorageMoverAgent.md @@ -1,7 +1,7 @@ --- external help file: Module Name: Az.StorageMover -online version: https://learn.microsoft.com/powershell/module/az.storagemover/remove-azstoragemoveragent +online version: https://learn.microsoft.com/powershell/module/az.storagemover/unregister-azstoragemoveragent schema: 2.0.0 --- diff --git a/src/StorageMover/help/Update-AzStorageMoverAzStorageContainerEndpoint.md b/src/StorageMover/help/Update-AzStorageMoverAzStorageContainerEndpoint.md index 010feed81ed7..ce48f7bcc111 100644 --- a/src/StorageMover/help/Update-AzStorageMoverAzStorageContainerEndpoint.md +++ b/src/StorageMover/help/Update-AzStorageMoverAzStorageContainerEndpoint.md @@ -1,7 +1,7 @@ --- external help file: Module Name: Az.StorageMover -online version: https://learn.microsoft.com/powershell/module/az.storagemover/update-azstoragemoverendpoint +online version: https://learn.microsoft.com/powershell/module/az.storagemover/update-azstoragemoverazstoragecontainerendpoint schema: 2.0.0 --- diff --git a/src/StorageMover/help/Update-AzStorageMoverNfsEndpoint.md b/src/StorageMover/help/Update-AzStorageMoverNfsEndpoint.md index 810d4ffcd440..589ad236c35f 100644 --- a/src/StorageMover/help/Update-AzStorageMoverNfsEndpoint.md +++ b/src/StorageMover/help/Update-AzStorageMoverNfsEndpoint.md @@ -1,7 +1,7 @@ --- external help file: Module Name: Az.StorageMover -online version: https://learn.microsoft.com/powershell/module/az.storagemover/update-azstoragemoverendpoint +online version: https://learn.microsoft.com/powershell/module/az.storagemover/update-azstoragemovernfsendpoint schema: 2.0.0 --- diff --git a/src/Synapse/Synapse/ChangeLog.md b/src/Synapse/Synapse/ChangeLog.md index 70f417b69bce..12b983f066a8 100644 --- a/src/Synapse/Synapse/ChangeLog.md +++ b/src/Synapse/Synapse/ChangeLog.md @@ -19,6 +19,9 @@ --> ## Upcoming Release +* Upgraded Azure.Analytics.Synapse.Artifacts to 1.0.0-preview.17 +* Updated `New-AzSynapseSparkPool` and `Update-AzSynapseSparkPool` to support for setting spark pool isolated compute by `-EnableIsolatedCompute` +* Updated `New-AzSynapseSparkPool` and `Update-AzSynapseSparkPool` to support for setting spark pool node size to 'XLarge', 'XXLarge', 'XXXLarge' ## Version 2.2.0 * Added breaking change message for `-SparkConfigFilePath`. It will be deprecated around the middle of December. diff --git a/src/Synapse/Synapse/Commands/DataPlaneCommands/Artifact/Notebooks/SetAzureSynapseNotebook.cs b/src/Synapse/Synapse/Commands/DataPlaneCommands/Artifact/Notebooks/SetAzureSynapseNotebook.cs index 572c1acc3be7..5ca2905e38bb 100644 --- a/src/Synapse/Synapse/Commands/DataPlaneCommands/Artifact/Notebooks/SetAzureSynapseNotebook.cs +++ b/src/Synapse/Synapse/Commands/DataPlaneCommands/Artifact/Notebooks/SetAzureSynapseNotebook.cs @@ -72,8 +72,8 @@ public class SetAzureSynapseNotebook : SynapseArtifactsCmdletBase Mandatory = false, HelpMessage = HelpMessages.ExecutorSize)] [Parameter(ValueFromPipelineByPropertyName = false, ParameterSetName = SetByObjectAndSparkPool, Mandatory = false, HelpMessage = HelpMessages.ExecutorSize)] - [ValidateSet(Management.Synapse.Models.NodeSize.Small, Management.Synapse.Models.NodeSize.Medium, Management.Synapse.Models.NodeSize.Large, IgnoreCase = true)] - [PSArgumentCompleter(Management.Synapse.Models.NodeSize.Small, Management.Synapse.Models.NodeSize.Medium, Management.Synapse.Models.NodeSize.Large)] + [ValidateSet(Management.Synapse.Models.NodeSize.Small, Management.Synapse.Models.NodeSize.Medium, Management.Synapse.Models.NodeSize.Large, Management.Synapse.Models.NodeSize.XLarge, Management.Synapse.Models.NodeSize.XXLarge, Management.Synapse.Models.NodeSize.XXXLarge, IgnoreCase = true)] + [PSArgumentCompleter(Management.Synapse.Models.NodeSize.Small, Management.Synapse.Models.NodeSize.Medium, Management.Synapse.Models.NodeSize.Large, Management.Synapse.Models.NodeSize.XLarge, Management.Synapse.Models.NodeSize.XXLarge, Management.Synapse.Models.NodeSize.XXXLarge)] public string ExecutorSize { get; set; } = Management.Synapse.Models.NodeSize.Small; [Parameter(ValueFromPipelineByPropertyName = false, ParameterSetName = SetByNameAndSparkPool, diff --git a/src/Synapse/Synapse/Commands/DataPlaneCommands/SparkJob/SubmitAzureSynapseSparkJob.cs b/src/Synapse/Synapse/Commands/DataPlaneCommands/SparkJob/SubmitAzureSynapseSparkJob.cs index aaf14fdb858f..30ea2dbd7a3e 100644 --- a/src/Synapse/Synapse/Commands/DataPlaneCommands/SparkJob/SubmitAzureSynapseSparkJob.cs +++ b/src/Synapse/Synapse/Commands/DataPlaneCommands/SparkJob/SubmitAzureSynapseSparkJob.cs @@ -112,8 +112,8 @@ public class SubmitAzureSynapseSparkJob : SynapseSparkCmdletBase [Parameter(ValueFromPipelineByPropertyName = false, ParameterSetName = RunSparkJobByParentObjectParameterSet, Mandatory = true, HelpMessage = HelpMessages.ExecutorSize)] [ValidateNotNullOrEmpty] - [ValidateSet(NodeSize.Small, NodeSize.Medium, NodeSize.Large, IgnoreCase = true)] - [PSArgumentCompleter(NodeSize.Small, NodeSize.Medium, NodeSize.Large)] + [ValidateSet(NodeSize.Small, NodeSize.Medium, NodeSize.Large, NodeSize.XLarge, NodeSize.XXLarge, NodeSize.XXXLarge, IgnoreCase = true)] + [PSArgumentCompleter(NodeSize.Small, NodeSize.Medium, NodeSize.Large, NodeSize.XLarge, NodeSize.XXLarge, NodeSize.XXXLarge)] public string ExecutorSize { get; set; } [Parameter(ValueFromPipelineByPropertyName = false, ParameterSetName = RunSparkJobParameterSetName, diff --git a/src/Synapse/Synapse/Commands/DataPlaneCommands/SparkSession/StartAzureSynapseSparkSession.cs b/src/Synapse/Synapse/Commands/DataPlaneCommands/SparkSession/StartAzureSynapseSparkSession.cs index c39e9263c106..92dc6c1f1573 100644 --- a/src/Synapse/Synapse/Commands/DataPlaneCommands/SparkSession/StartAzureSynapseSparkSession.cs +++ b/src/Synapse/Synapse/Commands/DataPlaneCommands/SparkSession/StartAzureSynapseSparkSession.cs @@ -74,8 +74,8 @@ public class StartAzureSynapseSparkSession : SynapseSparkCmdletBase [Parameter(ValueFromPipelineByPropertyName = false, Mandatory = true, HelpMessage = HelpMessages.ExecutorSize)] [ValidateNotNullOrEmpty] - [ValidateSet(NodeSize.Small, NodeSize.Medium, NodeSize.Large, IgnoreCase = true)] - [PSArgumentCompleter(NodeSize.Small, NodeSize.Medium, NodeSize.Large)] + [ValidateSet(NodeSize.Small, NodeSize.Medium, NodeSize.Large, NodeSize.XLarge, NodeSize.XXLarge, NodeSize.XXXLarge, IgnoreCase = true)] + [PSArgumentCompleter(NodeSize.Small, NodeSize.Medium, NodeSize.Large, NodeSize.XLarge, NodeSize.XXLarge, NodeSize.XXXLarge)] public string ExecutorSize { get; set; } [Parameter(ValueFromPipelineByPropertyName = false, Mandatory = false, HelpMessage = HelpMessages.Configuration)] diff --git a/src/Synapse/Synapse/Commands/ManagementCommands/SparkPool/NewAzureSynapseSparkPool.cs b/src/Synapse/Synapse/Commands/ManagementCommands/SparkPool/NewAzureSynapseSparkPool.cs index 232b4fe44710..b2e490c61ba5 100644 --- a/src/Synapse/Synapse/Commands/ManagementCommands/SparkPool/NewAzureSynapseSparkPool.cs +++ b/src/Synapse/Synapse/Commands/ManagementCommands/SparkPool/NewAzureSynapseSparkPool.cs @@ -78,10 +78,14 @@ public class NewAzureSynapseSparkPool : SynapseManagementCmdletBase [ValidateRange(3, 200)] public int NodeCount { get; set; } + [Parameter(ValueFromPipelineByPropertyName = false, Mandatory = false, + HelpMessage = HelpMessages.IsolatedCompute)] + public SwitchParameter EnableIsolatedCompute { get; set; } + [Parameter(ValueFromPipelineByPropertyName = false, Mandatory = true, HelpMessage = HelpMessages.NodeSize)] - [ValidateSet(Management.Synapse.Models.NodeSize.Small, Management.Synapse.Models.NodeSize.Medium, Management.Synapse.Models.NodeSize.Large, IgnoreCase = true)] - [PSArgumentCompleter(Management.Synapse.Models.NodeSize.Small, Management.Synapse.Models.NodeSize.Medium, Management.Synapse.Models.NodeSize.Large)] + [ValidateSet(Management.Synapse.Models.NodeSize.Small, Management.Synapse.Models.NodeSize.Medium, Management.Synapse.Models.NodeSize.Large, Management.Synapse.Models.NodeSize.XLarge, Management.Synapse.Models.NodeSize.XXLarge, Management.Synapse.Models.NodeSize.XXXLarge, IgnoreCase = true)] + [PSArgumentCompleter(Management.Synapse.Models.NodeSize.Small, Management.Synapse.Models.NodeSize.Medium, Management.Synapse.Models.NodeSize.Large, Management.Synapse.Models.NodeSize.XLarge, Management.Synapse.Models.NodeSize.XXLarge, Management.Synapse.Models.NodeSize.XXXLarge)] public string NodeSize { get; set; } private SwitchParameter enableAutoScale; @@ -219,6 +223,7 @@ public override void ExecuteCmdlet() { Location = existingWorkspace.Location, Tags = TagsConversionHelper.CreateTagDictionary(this.Tag, validate: true), + IsComputeIsolationEnabled = EnableIsolatedCompute.IsPresent, NodeCount = this.enableAutoScale ? (int?)null : this.NodeCount, NodeSizeFamily = NodeSizeFamily.MemoryOptimized, NodeSize = NodeSize, diff --git a/src/Synapse/Synapse/Commands/ManagementCommands/SparkPool/UpdateAzureSynapseSparkPool.cs b/src/Synapse/Synapse/Commands/ManagementCommands/SparkPool/UpdateAzureSynapseSparkPool.cs index 8a60f8318152..aac3607b9d6f 100644 --- a/src/Synapse/Synapse/Commands/ManagementCommands/SparkPool/UpdateAzureSynapseSparkPool.cs +++ b/src/Synapse/Synapse/Commands/ManagementCommands/SparkPool/UpdateAzureSynapseSparkPool.cs @@ -110,10 +110,14 @@ public class UpdateAzureSynapseSparkPool : SynapseManagementCmdletBase [ValidateRange(3, 200)] public int NodeCount { get; set; } + [Parameter(ValueFromPipelineByPropertyName = false, Mandatory = false, + HelpMessage = HelpMessages.IsolatedCompute)] + public bool? EnableIsolatedCompute { get; set; } + [Parameter(ValueFromPipelineByPropertyName = false, Mandatory = false, HelpMessage = HelpMessages.NodeSize)] - [ValidateSet(Management.Synapse.Models.NodeSize.Small, Management.Synapse.Models.NodeSize.Medium, Management.Synapse.Models.NodeSize.Large, IgnoreCase = true)] - [PSArgumentCompleter(Management.Synapse.Models.NodeSize.Small, Management.Synapse.Models.NodeSize.Medium, Management.Synapse.Models.NodeSize.Large)] + [ValidateSet(Management.Synapse.Models.NodeSize.Small, Management.Synapse.Models.NodeSize.Medium, Management.Synapse.Models.NodeSize.Large, Management.Synapse.Models.NodeSize.XLarge, Management.Synapse.Models.NodeSize.XXLarge, Management.Synapse.Models.NodeSize.XXXLarge, IgnoreCase = true)] + [PSArgumentCompleter(Management.Synapse.Models.NodeSize.Small, Management.Synapse.Models.NodeSize.Medium, Management.Synapse.Models.NodeSize.Large, Management.Synapse.Models.NodeSize.XLarge, Management.Synapse.Models.NodeSize.XXLarge, Management.Synapse.Models.NodeSize.XXXLarge)] public string NodeSize { get; set; } [Parameter(ValueFromPipelineByPropertyName = false, Mandatory = false, @@ -215,6 +219,7 @@ public override void ExecuteCmdlet() existingSparkPool.Tags = this.IsParameterBound(c => c.Tag) ? TagsConversionHelper.CreateTagDictionary(this.Tag, validate: true) : existingSparkPool.Tags; existingSparkPool.NodeCount = this.IsParameterBound(c => c.NodeCount) ? this.NodeCount : existingSparkPool.NodeCount; existingSparkPool.NodeSizeFamily = NodeSizeFamily.MemoryOptimized; + existingSparkPool.IsComputeIsolationEnabled = this.EnableIsolatedCompute != null ? this.EnableIsolatedCompute : existingSparkPool.IsComputeIsolationEnabled ?? false; existingSparkPool.NodeSize = this.IsParameterBound(c => c.NodeSize) ? this.NodeSize : existingSparkPool.NodeSize; existingSparkPool.LibraryRequirements = this.IsParameterBound(c => c.LibraryRequirementsFilePath) ? CreateLibraryRequirements() : existingSparkPool.LibraryRequirements; existingSparkPool.SparkConfigProperties = this.IsParameterBound(c => c.SparkConfigFilePath) ? CreateSparkConfigProperties() : existingSparkPool.SparkConfigProperties; diff --git a/src/Synapse/Synapse/Common/HelpMessages.cs b/src/Synapse/Synapse/Common/HelpMessages.cs index 2ebe6ce5e6bb..efff198fc585 100644 --- a/src/Synapse/Synapse/Common/HelpMessages.cs +++ b/src/Synapse/Synapse/Common/HelpMessages.cs @@ -88,6 +88,8 @@ public static class HelpMessages public const string NodeCount = "Number of nodes to be allocated in the specified Spark pool."; + public const string IsolatedCompute = "The Isolate Compute option is only available with the XXXLarge (80 vCPU / 504 GB) node size. Enabling this option offers isolation for Apache Spark compute for untrusted services. Isolated compute costs the same as the non-isolated VM of the same size. If you expect to enable Isolated Compute for spark pool, ensure that your Synapse workspace is created in an isolated compute supported region, please refer to this document for more details: https://learn.microsoft.com/en-us/azure/synapse-analytics/spark/apache-spark-pool-configurations#isolated-compute"; + public const string NodeSize = "Number of core and memory to be used for nodes allocated in the specified Spark pool. This parameter must be specified when Auto-scale is disabled"; public const string EnableAutoScale = "Indicates whether Auto-scale should be enabled"; diff --git a/src/Synapse/Synapse/Models/DataPlaneModels/Artifact/SynapseAnalyticsArtifactsClient.cs b/src/Synapse/Synapse/Models/DataPlaneModels/Artifact/SynapseAnalyticsArtifactsClient.cs index 21db7f4d80bd..1c0b77938b04 100644 --- a/src/Synapse/Synapse/Models/DataPlaneModels/Artifact/SynapseAnalyticsArtifactsClient.cs +++ b/src/Synapse/Synapse/Models/DataPlaneModels/Artifact/SynapseAnalyticsArtifactsClient.cs @@ -507,12 +507,12 @@ public void UpdateLandingZoneCredential(string linkConnectionName, UpdateLanding public LinkConnectionResource GetLinkConnection(string linkConnectionName) { - return _linkConnectionClient.GetLinkConnection(linkConnectionName).Value; + return _linkConnectionClient.Get(linkConnectionName).Value; } public Pageable GetLinkConnectionByWorkspace() { - return _linkConnectionClient.ListLinkConnectionsByWorkspace(); + return _linkConnectionClient.ListByWorkspace(); } public void StartLinkConnection(string linkConnectionName) @@ -527,13 +527,13 @@ public void StopLinkConnection(string linkConnectionName) public void DeleteLinkConnection(string linkConnectionName) { - _linkConnectionClient.DeleteLinkConnection(linkConnectionName); + _linkConnectionClient.Delete(linkConnectionName); } public LinkConnectionResource CreateOrUpdateLinkConnection(string linkConnectionName, string rawJsonContent) { LinkConnectionResource linkConnection = JsonConvert.DeserializeObject(rawJsonContent); - var response = _linkConnectionClient.CreateOrUpdateLinkConnection(linkConnectionName, linkConnection); + var response = _linkConnectionClient.CreateOrUpdate(linkConnectionName, linkConnection); return response.Value; } diff --git a/src/Synapse/Synapse/Models/ManagementModels/SparkPool/PSSynapseSparkPool.cs b/src/Synapse/Synapse/Models/ManagementModels/SparkPool/PSSynapseSparkPool.cs index f6d8b7fe8b80..635a9972cd96 100644 --- a/src/Synapse/Synapse/Models/ManagementModels/SparkPool/PSSynapseSparkPool.cs +++ b/src/Synapse/Synapse/Models/ManagementModels/SparkPool/PSSynapseSparkPool.cs @@ -118,7 +118,7 @@ public PSSynapseSparkPool(BigDataPoolResourceInfo sparkPool) /// /// Gets the level of compute power that each node in the Big /// Data pool has. Possible values include: 'None', 'Small', 'Medium', - /// 'Large' + /// 'Large', 'XLarge', 'XXLarge', 'XXXLarge' /// public string NodeSize { get; set; } diff --git a/src/Synapse/Synapse/Models/SynapseConstants.cs b/src/Synapse/Synapse/Models/SynapseConstants.cs index 0770e39b6041..75c5213e9d94 100644 --- a/src/Synapse/Synapse/Models/SynapseConstants.cs +++ b/src/Synapse/Synapse/Models/SynapseConstants.cs @@ -249,6 +249,33 @@ public static class SynapseConstants Cores = 16, Memory = 112 } + }, + { + NodeSize.XLarge, + new ComputeNodeSize + { + Name = NodeSize.XLarge, + Cores = 32, + Memory = 224 + } + }, + { + NodeSize.XXLarge, + new ComputeNodeSize + { + Name = NodeSize.XXLarge, + Cores = 64, + Memory = 368 + } + }, + { + NodeSize.XXXLarge, + new ComputeNodeSize + { + Name = NodeSize.XXXLarge, + Cores = 80, + Memory = 424 + } } }; diff --git a/src/Synapse/Synapse/Synapse.csproj b/src/Synapse/Synapse/Synapse.csproj index 0a24782854e2..5babf9c74825 100644 --- a/src/Synapse/Synapse/Synapse.csproj +++ b/src/Synapse/Synapse/Synapse.csproj @@ -13,7 +13,7 @@ - + diff --git a/src/Synapse/Synapse/help/Get-AzSynapseRoleAssignment.md b/src/Synapse/Synapse/help/Get-AzSynapseRoleAssignment.md index cdc2fe10f302..f553013e8a8b 100644 --- a/src/Synapse/Synapse/help/Get-AzSynapseRoleAssignment.md +++ b/src/Synapse/Synapse/help/Get-AzSynapseRoleAssignment.md @@ -89,6 +89,9 @@ The cmdlet may call below Microsoft Graph API according to input parameters: * GET /users/{id} * GET /servicePrincipals/{id} +>[!Note] +> To retrieve a role assignment for a service principal, pass the object ID of the principal in the ObjectId parameter. + ## EXAMPLES ### Example 1 diff --git a/src/Synapse/Synapse/help/New-AzSynapseRoleAssignment.md b/src/Synapse/Synapse/help/New-AzSynapseRoleAssignment.md index f619d805abab..6d0363a8c63c 100644 --- a/src/Synapse/Synapse/help/New-AzSynapseRoleAssignment.md +++ b/src/Synapse/Synapse/help/New-AzSynapseRoleAssignment.md @@ -9,6 +9,7 @@ schema: 2.0.0 ## SYNOPSIS Creates a Synapse Analytics role assignment. + ## SYNTAX @@ -76,6 +77,9 @@ The cmdlet may call below Microsoft Graph API according to input parameters: * GET /users/{id} * GET /servicePrincipals/{id} +>[!Note] +> To create a role assignment for a service principal, pass the object ID of the principal in the ObjectId parameter. + ## EXAMPLES ### Example 1 diff --git a/src/Synapse/Synapse/help/New-AzSynapseSparkPool.md b/src/Synapse/Synapse/help/New-AzSynapseSparkPool.md index 53d563700c25..06a97b6149b5 100644 --- a/src/Synapse/Synapse/help/New-AzSynapseSparkPool.md +++ b/src/Synapse/Synapse/help/New-AzSynapseSparkPool.md @@ -15,9 +15,9 @@ Creates a Synapse Analytics Spark pool. ### CreateByNameAndEnableAutoScaleParameterSet (Default) ``` New-AzSynapseSparkPool [-ResourceGroupName ] -WorkspaceName -Name [-Tag ] - -NodeSize -AutoScaleMinNodeCount -AutoScaleMaxNodeCount [-EnableAutoPause] - [-AutoPauseDelayInMinute ] [-EnableDynamicExecutorAllocation] [-MinExecutorCount ] - [-MaxExecutorCount ] -SparkVersion [-SparkConfigFilePath ] + [-EnableIsolatedCompute] -NodeSize -AutoScaleMinNodeCount -AutoScaleMaxNodeCount + [-EnableAutoPause] [-AutoPauseDelayInMinute ] [-EnableDynamicExecutorAllocation] + [-MinExecutorCount ] [-MaxExecutorCount ] -SparkVersion [-SparkConfigFilePath ] [-SparkConfiguration ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -25,18 +25,19 @@ New-AzSynapseSparkPool [-ResourceGroupName ] -WorkspaceName -Na ### CreateByNameAndDisableAutoScaleParameterSet ``` New-AzSynapseSparkPool [-ResourceGroupName ] -WorkspaceName -Name [-Tag ] - -NodeCount -NodeSize [-EnableAutoPause] [-AutoPauseDelayInMinute ] - [-EnableDynamicExecutorAllocation] [-MinExecutorCount ] [-MaxExecutorCount ] - -SparkVersion [-SparkConfigFilePath ] [-SparkConfiguration ] - [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] + -NodeCount [-EnableIsolatedCompute] -NodeSize [-EnableAutoPause] + [-AutoPauseDelayInMinute ] [-EnableDynamicExecutorAllocation] [-MinExecutorCount ] + [-MaxExecutorCount ] -SparkVersion [-SparkConfigFilePath ] + [-SparkConfiguration ] [-AsJob] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] ``` ### CreateByParentObjectAndEnableAutoScaleParameterSet ``` New-AzSynapseSparkPool -WorkspaceObject -Name [-Tag ] - -NodeSize -AutoScaleMinNodeCount -AutoScaleMaxNodeCount [-EnableAutoPause] - [-AutoPauseDelayInMinute ] [-EnableDynamicExecutorAllocation] [-MinExecutorCount ] - [-MaxExecutorCount ] -SparkVersion [-SparkConfigFilePath ] + [-EnableIsolatedCompute] -NodeSize -AutoScaleMinNodeCount -AutoScaleMaxNodeCount + [-EnableAutoPause] [-AutoPauseDelayInMinute ] [-EnableDynamicExecutorAllocation] + [-MinExecutorCount ] [-MaxExecutorCount ] -SparkVersion [-SparkConfigFilePath ] [-SparkConfiguration ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -44,10 +45,11 @@ New-AzSynapseSparkPool -WorkspaceObject -Name [-Ta ### CreateByParentObjectAndDisableAutoScaleParameterSet ``` New-AzSynapseSparkPool -WorkspaceObject -Name [-Tag ] - -NodeCount -NodeSize [-EnableAutoPause] [-AutoPauseDelayInMinute ] - [-EnableDynamicExecutorAllocation] [-MinExecutorCount ] [-MaxExecutorCount ] - -SparkVersion [-SparkConfigFilePath ] [-SparkConfiguration ] - [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] + -NodeCount [-EnableIsolatedCompute] -NodeSize [-EnableAutoPause] + [-AutoPauseDelayInMinute ] [-EnableDynamicExecutorAllocation] [-MinExecutorCount ] + [-MaxExecutorCount ] -SparkVersion [-SparkConfigFilePath ] + [-SparkConfiguration ] [-AsJob] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -100,6 +102,14 @@ $ws | New-AzSynapseSparkPool -Name ContosoSparkPool -AutoScaleMinNodeCount 3 -Au This command creates an Azure Synapse Analytics Spark pool with auto-scale enabled through pipeline. +### Example 7 +```powershell +$ws = Get-AzSynapseWorkspace -Name ContosoWorkspace +$ws | New-AzSynapseSparkPool -Name ContosoSparkPool -EnableIsolatedCompute -NodeSize XXXLarge -NodeCount 3 -SparkVersion 2.4 +``` + +This command creates an Azure Synapse Analytics Spark pool with isolated compute enabled through pipeline. + ## PARAMETERS ### -AsJob @@ -209,6 +219,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -EnableIsolatedCompute +The Isolate Compute option is only available with the XXXLarge (80 vCPU / 504 GB) node size. Enabling this option offers isolation for Apache Spark compute for untrusted services. Isolated compute costs the same as the non-isolated VM of the same size. If you expect to enable Isolated Compute for spark pool, ensure that your Synapse workspace is created in an isolated compute supported region, please refer to this document for more details: https://learn.microsoft.com/en-us/azure/synapse-analytics/spark/apache-spark-pool-configurations#isolated-compute. + +```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 +``` + ### -MaxExecutorCount Maximum number of executors to be allocated in the specified Spark pool. This parameter can be specified when DynamicExecutorAllocation is enabled. The value should lie between 1 (inclusive) and maximumNodeCount (exclusive). If it is not specified manually, the default value will be 2. @@ -277,7 +302,7 @@ This parameter must be specified when Auto-scale is disabled Type: System.String Parameter Sets: (All) Aliases: -Accepted values: Small, Medium, Large +Accepted values: Small, Medium, Large, XLarge, XXLarge, XXXLarge Required: True Position: Named diff --git a/src/Synapse/Synapse/help/Remove-AzSynapseRoleAssignment.md b/src/Synapse/Synapse/help/Remove-AzSynapseRoleAssignment.md index 7324b7826e03..7cc1a61a213f 100644 --- a/src/Synapse/Synapse/help/Remove-AzSynapseRoleAssignment.md +++ b/src/Synapse/Synapse/help/Remove-AzSynapseRoleAssignment.md @@ -88,6 +88,9 @@ The cmdlet may call below Microsoft Graph API according to input parameters: * GET /users/{id} * GET /servicePrincipals/{id} +>[!Note] +> To removing a role assignment for a service principal, pass the object ID of the principal in the ObjectId parameter. + ## EXAMPLES ### Example 1 diff --git a/src/Synapse/Synapse/help/Set-AzSynapseNotebook.md b/src/Synapse/Synapse/help/Set-AzSynapseNotebook.md index 962596baab6c..98ba5ca93467 100644 --- a/src/Synapse/Synapse/help/Set-AzSynapseNotebook.md +++ b/src/Synapse/Synapse/help/Set-AzSynapseNotebook.md @@ -50,7 +50,7 @@ Set-AzSynapseNotebook -WorkspaceName ContosoWorkspace -DefinitionFile "C:\\sampl ``` ```output - WorkspaceName : ContosoWorkspace +WorkspaceName : ContosoWorkspace Properties : Microsoft.Azure.Commands.Synapse.Models.PSNotebook Name : notebook ``` @@ -155,7 +155,7 @@ Number of core and memory to be used for executors allocated in the specified Sp Type: System.String Parameter Sets: SetByNameAndSparkPool, SetByObjectAndSparkPool Aliases: -Accepted values: Small, Medium, Large +Accepted values: Small, Medium, Large, XLarge, XXLarge, XXXLarge Required: False Position: Named diff --git a/src/Synapse/Synapse/help/Start-AzSynapseSparkSession.md b/src/Synapse/Synapse/help/Start-AzSynapseSparkSession.md index 21d48736f5f1..3a10e8396401 100644 --- a/src/Synapse/Synapse/help/Start-AzSynapseSparkSession.md +++ b/src/Synapse/Synapse/help/Start-AzSynapseSparkSession.md @@ -115,7 +115,7 @@ Number of core and memory to be used for executors allocated in the specified Sp Type: System.String Parameter Sets: (All) Aliases: -Accepted values: Small, Medium, Large +Accepted values: Small, Medium, Large, XLarge, XXLarge, XXXLarge Required: True Position: Named diff --git a/src/Synapse/Synapse/help/Submit-AzSynapseSparkJob.md b/src/Synapse/Synapse/help/Submit-AzSynapseSparkJob.md index a81c64f389ee..064dd0d7d52b 100644 --- a/src/Synapse/Synapse/help/Submit-AzSynapseSparkJob.md +++ b/src/Synapse/Synapse/help/Submit-AzSynapseSparkJob.md @@ -123,7 +123,7 @@ Number of core and memory to be used for executors allocated in the specified Sp Type: System.String Parameter Sets: (All) Aliases: -Accepted values: Small, Medium, Large +Accepted values: Small, Medium, Large, XLarge, XXLarge, XXXLarge Required: True Position: Named diff --git a/src/Synapse/Synapse/help/Update-AzSynapseLinkConnectionLandingZoneCredential.md b/src/Synapse/Synapse/help/Update-AzSynapseLinkConnectionLandingZoneCredential.md index cfe74edd7910..928d5cf6999d 100644 --- a/src/Synapse/Synapse/help/Update-AzSynapseLinkConnectionLandingZoneCredential.md +++ b/src/Synapse/Synapse/help/Update-AzSynapseLinkConnectionLandingZoneCredential.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Synapse.dll-Help.xml Module Name: Az.Synapse -online version: https://learn.microsoft.com/powershell/module/az.synapse/set-azsynapselinkconnectionlandingzonecredential +online version: https://learn.microsoft.com/powershell/module/az.synapse/update-azsynapselinkconnectionlandingzonecredential schema: 2.0.0 --- diff --git a/src/Synapse/Synapse/help/Update-AzSynapseSparkPool.md b/src/Synapse/Synapse/help/Update-AzSynapseSparkPool.md index af49f49abadc..8023b32683f5 100644 --- a/src/Synapse/Synapse/help/Update-AzSynapseSparkPool.md +++ b/src/Synapse/Synapse/help/Update-AzSynapseSparkPool.md @@ -17,9 +17,9 @@ Updates a Apache Spark pool in Azure Synapse Analytics. Update-AzSynapseSparkPool [-ResourceGroupName ] -WorkspaceName -Name [-Tag ] [-EnableAutoScale ] [-AutoScaleMinNodeCount ] [-AutoScaleMaxNodeCount ] [-EnableAutoPause ] [-AutoPauseDelayInMinute ] - [-NodeCount ] [-NodeSize ] [-EnableDynamicExecutorAllocation ] - [-MinExecutorCount ] [-MaxExecutorCount ] [-SparkVersion ] - [-LibraryRequirementsFilePath ] [-SparkConfigFilePath ] + [-NodeCount ] [-EnableIsolatedCompute ] [-NodeSize ] + [-EnableDynamicExecutorAllocation ] [-MinExecutorCount ] [-MaxExecutorCount ] + [-SparkVersion ] [-LibraryRequirementsFilePath ] [-SparkConfigFilePath ] [-SparkConfiguration ] [-PackageAction ] [-Package ] [-ForceApplySetting] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] @@ -30,9 +30,10 @@ Update-AzSynapseSparkPool [-ResourceGroupName ] -WorkspaceName ``` Update-AzSynapseSparkPool -Name -WorkspaceObject [-Tag ] [-EnableAutoScale ] [-AutoScaleMinNodeCount ] [-AutoScaleMaxNodeCount ] - [-EnableAutoPause ] [-AutoPauseDelayInMinute ] [-NodeCount ] [-NodeSize ] - [-EnableDynamicExecutorAllocation ] [-MinExecutorCount ] [-MaxExecutorCount ] - [-SparkVersion ] [-LibraryRequirementsFilePath ] [-SparkConfigFilePath ] + [-EnableAutoPause ] [-AutoPauseDelayInMinute ] [-NodeCount ] + [-EnableIsolatedCompute ] [-NodeSize ] [-EnableDynamicExecutorAllocation ] + [-MinExecutorCount ] [-MaxExecutorCount ] [-SparkVersion ] + [-LibraryRequirementsFilePath ] [-SparkConfigFilePath ] [-SparkConfiguration ] [-PackageAction ] [-Package ] [-ForceApplySetting] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] @@ -43,7 +44,7 @@ Update-AzSynapseSparkPool -Name -WorkspaceObject [ ``` Update-AzSynapseSparkPool -InputObject [-Tag ] [-EnableAutoScale ] [-AutoScaleMinNodeCount ] [-AutoScaleMaxNodeCount ] [-EnableAutoPause ] - [-AutoPauseDelayInMinute ] [-NodeCount ] [-NodeSize ] + [-AutoPauseDelayInMinute ] [-NodeCount ] [-EnableIsolatedCompute ] [-NodeSize ] [-EnableDynamicExecutorAllocation ] [-MinExecutorCount ] [-MaxExecutorCount ] [-SparkVersion ] [-LibraryRequirementsFilePath ] [-SparkConfigFilePath ] [-SparkConfiguration ] [-PackageAction ] @@ -56,7 +57,7 @@ Update-AzSynapseSparkPool -InputObject [-Tag ] [ ``` Update-AzSynapseSparkPool -ResourceId [-Tag ] [-EnableAutoScale ] [-AutoScaleMinNodeCount ] [-AutoScaleMaxNodeCount ] [-EnableAutoPause ] - [-AutoPauseDelayInMinute ] [-NodeCount ] [-NodeSize ] + [-AutoPauseDelayInMinute ] [-NodeCount ] [-EnableIsolatedCompute ] [-NodeSize ] [-EnableDynamicExecutorAllocation ] [-MinExecutorCount ] [-MaxExecutorCount ] [-SparkVersion ] [-LibraryRequirementsFilePath ] [-SparkConfigFilePath ] [-SparkConfiguration ] [-PackageAction ] @@ -189,6 +190,13 @@ $pool | Update-AzSynapseSparkPool -PackageAction Remove -Package $pool.Workspace The first command retrieves an Apache Spark pool in Azure Synapse Analytics. The second command removes all workspace packages that are linked to that Apache Spark pool and force stop any running jobs in the Spark pool to apply this new setting. +### Example 17 +```powershell +Update-AzSynapseSparkPool -WorkspaceName ContosoWorkspace -Name ContosoSparkPool -EnableIsolatedCompute $true -NodeSize XXXLarge +``` + +This command enables isolated compute and specify node size to XXXLarge(80 vCPU / 504 GB) for an Apache Spark pool in Azure Synapse Analytics. + ## PARAMETERS ### -AsJob @@ -313,6 +321,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -EnableIsolatedCompute +The Isolate Compute option is only available with the XXXLarge (80 vCPU / 504 GB) node size. Enabling this option offers isolation for Apache Spark compute for untrusted services. Isolated compute costs the same as the non-isolated VM of the same size. If you expect to enable Isolated Compute for spark pool, ensure that your Synapse workspace is created in an isolated compute supported region, please refer to this document for more details: https://learn.microsoft.com/en-us/azure/synapse-analytics/spark/apache-spark-pool-configurations#isolated-compute. + +```yaml +Type: System.Nullable`1[System.Boolean] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ForceApplySetting Whether to stop any running jobs in the Big Data pool. @@ -426,7 +449,7 @@ This parameter must be specified when Auto-scale is disabled Type: System.String Parameter Sets: (All) Aliases: -Accepted values: Small, Medium, Large +Accepted values: Small, Medium, Large, XLarge, XXLarge, XXXLarge Required: False Position: Named diff --git a/src/Websites/Websites.Test/ScenarioTests/SSLBindingTests.ps1 b/src/Websites/Websites.Test/ScenarioTests/SSLBindingTests.ps1 index cd7d79e6cd10..dbc75c1b461b 100644 --- a/src/Websites/Websites.Test/ScenarioTests/SSLBindingTests.ps1 +++ b/src/Websites/Websites.Test/ScenarioTests/SSLBindingTests.ps1 @@ -17,12 +17,12 @@ assign a custom domain to it and update global variable values. #> #Global variables -$rgname = "lketmtestantps10" -$appname = "lketmtestantps10" +$rgname = "RG-PS-UnitTesting" +$appname = "AppService-PS-UnitTesting" $slot = "testslot" -$prodHostname = "www.adorenow.net" -$slotHostname = "testslot.adorenow.net" -$thumbprint = "6156D1475113476C55A3064D44DED9ECA0B33864" +$prodHostname = "www.psunittesting.com" +$slotHostname = "testslot.psunittesting.com" +$thumbprint = "210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41" <# .SYNOPSIS diff --git a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TagsNotRemovedByCreateNewWebAppSSLBinding.json b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TagsNotRemovedByCreateNewWebAppSSLBinding.json index fddca73c33ff..d8908e9cfefe 100644 --- a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TagsNotRemovedByCreateNewWebAppSSLBinding.json +++ b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TagsNotRemovedByCreateNewWebAppSSLBinding.json @@ -1,24 +1,24 @@ { "Entries": [ { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "76f060dd-dce4-43d4-93e6-5248fe51f719" + "9f247568-ae55-44e8-a4c6-ac68bbdb9848" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -27,13 +27,13 @@ "no-cache" ], "ETag": [ - "\"1D7E1055AEC3035\"" + "\"1D941C79AC66E95\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0a7e49d9-d34e-4eb6-abb1-96bf688e4b96" + "de88078d-20d6-4078-94f1-8e1ec98384e2" ], "Server": [ "Microsoft-IIS/10.0" @@ -45,22 +45,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11981" ], "x-ms-correlation-request-id": [ - "0a24c55b-9ebf-4fe2-ad5c-d26d07ae89b9" + "a4b7ed09-a0bd-420c-b8a6-6e9112fdc7b0" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073223Z:0a24c55b-9ebf-4fe2-ad5c-d26d07ae89b9" + "JIOINDIACENTRAL:20230216T053019Z:a4b7ed09-a0bd-420c-b8a6-6e9112fdc7b0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:32:23 GMT" + "Thu, 16 Feb 2023 05:30:19 GMT" ], "Content-Length": [ - "5945" + "6983" ], "Content-Type": [ "application/json" @@ -69,28 +69,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"IpBasedEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": \"52.165.151.82\",\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T07:31:54.7233333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:29:13.5133333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0437a916-5218-423b-b196-0d7e94b86bf7" + "0a0f3137-c7c1-4a4c-9742-4bf8d73d1f7d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -99,13 +99,13 @@ "no-cache" ], "ETag": [ - "\"1D7E1055AEC3035\"" + "\"1D941C79AC66E95\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "110acd35-86b3-483e-9c4c-dbce7c86b309" + "2e7a814d-1b7b-4681-9678-a6c5ee721372" ], "Server": [ "Microsoft-IIS/10.0" @@ -117,22 +117,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11986" ], "x-ms-correlation-request-id": [ - "49691f47-bcca-4147-96aa-ede007f69fa0" + "deccb6ee-e838-4781-9e8f-2f60a748273c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073226Z:49691f47-bcca-4147-96aa-ede007f69fa0" + "JIOINDIACENTRAL:20230216T053026Z:deccb6ee-e838-4781-9e8f-2f60a748273c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:32:26 GMT" + "Thu, 16 Feb 2023 05:30:26 GMT" ], "Content-Length": [ - "5945" + "6983" ], "Content-Type": [ "application/json" @@ -141,28 +141,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"IpBasedEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": \"52.165.151.82\",\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T07:31:54.7233333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:29:13.5133333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0437a916-5218-423b-b196-0d7e94b86bf7" + "0a0f3137-c7c1-4a4c-9742-4bf8d73d1f7d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -171,13 +171,13 @@ "no-cache" ], "ETag": [ - "\"1D7E1055AEC3035\"" + "\"1D941C79AC66E95\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f77aba65-d4f8-4928-9533-e973e5c946a5" + "18d6a58d-2e1a-47ef-828b-c1e500475ab7" ], "Server": [ "Microsoft-IIS/10.0" @@ -189,22 +189,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11984" ], "x-ms-correlation-request-id": [ - "ca9e59d0-c81a-43c6-a701-19414a6ab3dc" + "fe388bc7-834b-4c62-93cd-c8835539cf0b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073228Z:ca9e59d0-c81a-43c6-a701-19414a6ab3dc" + "JIOINDIACENTRAL:20230216T053031Z:fe388bc7-834b-4c62-93cd-c8835539cf0b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:32:27 GMT" + "Thu, 16 Feb 2023 05:30:30 GMT" ], "Content-Length": [ - "5945" + "6983" ], "Content-Type": [ "application/json" @@ -213,28 +213,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"IpBasedEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": \"52.165.151.82\",\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T07:31:54.7233333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:29:13.5133333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9dc878fa-30d4-4e1a-a2cc-ae4cce285803" + "565e6e2f-6afc-4527-8b3b-6a1a2ca5389e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -243,13 +243,13 @@ "no-cache" ], "ETag": [ - "\"1D7E1057714F2EB\"" + "\"1D941C7CC47DFA0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b5a8d309-722c-4236-a8a1-1b0789a52ae8" + "98311156-8a6b-464d-b92a-74c465e660b5" ], "Server": [ "Microsoft-IIS/10.0" @@ -261,22 +261,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11991" ], "x-ms-correlation-request-id": [ - "958f3ba9-e1cd-4e90-b2a8-6c8d547434ff" + "8eade5a4-1d77-4b45-a768-d98d145c0594" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073251Z:958f3ba9-e1cd-4e90-b2a8-6c8d547434ff" + "JIOINDIACENTRAL:20230216T053043Z:8eade5a4-1d77-4b45-a768-d98d145c0594" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:32:50 GMT" + "Thu, 16 Feb 2023 05:30:42 GMT" ], "Content-Length": [ - "5930" + "6978" ], "Content-Type": [ "application/json" @@ -285,28 +285,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T07:32:41.9666667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:30:36.57\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f544174b-42c4-4ba0-88b7-ef8f398f4a56" + "1b7069a3-08fc-49c9-809c-d8fe05ce0b1e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -315,13 +315,13 @@ "no-cache" ], "ETag": [ - "\"1D7E1057714F2EB\"" + "\"1D941C7CC47DFA0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dd5a8c1a-c72e-46eb-9085-3a5613aa7a12" + "e6bbb82f-13d9-491a-b306-518383f34259" ], "Server": [ "Microsoft-IIS/10.0" @@ -333,22 +333,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11999" ], "x-ms-correlation-request-id": [ - "00fe4feb-f8a3-47ee-9a4c-b019163eaad9" + "f80d2aaa-9504-46e4-8333-5cdb608362f6" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073307Z:00fe4feb-f8a3-47ee-9a4c-b019163eaad9" + "CENTRALINDIA:20230216T053124Z:f80d2aaa-9504-46e4-8333-5cdb608362f6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:33:07 GMT" + "Thu, 16 Feb 2023 05:31:23 GMT" ], "Content-Length": [ - "5930" + "6978" ], "Content-Type": [ "application/json" @@ -357,28 +357,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T07:32:41.9666667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:30:36.57\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f544174b-42c4-4ba0-88b7-ef8f398f4a56" + "1b7069a3-08fc-49c9-809c-d8fe05ce0b1e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -387,13 +387,13 @@ "no-cache" ], "ETag": [ - "\"1D7E1057714F2EB\"" + "\"1D941C7CC47DFA0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d393311f-4b8b-43d2-aec6-8c25be083e87" + "22fc4f55-6ab8-4f44-b549-1c40553501e8" ], "Server": [ "Microsoft-IIS/10.0" @@ -405,22 +405,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11997" ], "x-ms-correlation-request-id": [ - "c872f131-732b-4b32-b7aa-07b82dccb91e" + "f59c0f2e-7a9f-4659-8971-53e054c3e65a" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073309Z:c872f131-732b-4b32-b7aa-07b82dccb91e" + "CENTRALINDIA:20230216T053127Z:f59c0f2e-7a9f-4659-8971-53e054c3e65a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:33:09 GMT" + "Thu, 16 Feb 2023 05:31:27 GMT" ], "Content-Length": [ - "5930" + "6978" ], "Content-Type": [ "application/json" @@ -429,28 +429,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T07:32:41.9666667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:30:36.57\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "76f060dd-dce4-43d4-93e6-5248fe51f719" + "9f247568-ae55-44e8-a4c6-ac68bbdb9848" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -462,7 +462,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7a70063e-9eaf-4629-b699-b0888db5e7ca" + "9ea161fa-e3c6-4fba-9d64-e1048ea6669c" ], "Server": [ "Microsoft-IIS/10.0" @@ -474,22 +474,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11980" ], "x-ms-correlation-request-id": [ - "e5f1ebec-31c7-4d72-ba1a-0fee380d8090" + "8a396885-1e80-46bf-a4c4-b8f0d3d5801a" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073224Z:e5f1ebec-31c7-4d72-ba1a-0fee380d8090" + "JIOINDIACENTRAL:20230216T053020Z:8a396885-1e80-46bf-a4c4-b8f0d3d5801a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:32:24 GMT" + "Thu, 16 Feb 2023 05:30:20 GMT" ], "Content-Length": [ - "4196" + "4048" ], "Content-Type": [ "application/json" @@ -498,28 +498,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$AppService-PS-UnitTesting\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0437a916-5218-423b-b196-0d7e94b86bf7" + "0a0f3137-c7c1-4a4c-9742-4bf8d73d1f7d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -531,7 +531,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "31d8cbeb-a236-4a42-9ab3-d5de9129ccdf" + "4fdd8bbb-d2ac-430a-9c6e-1737f8fe7ad3" ], "Server": [ "Microsoft-IIS/10.0" @@ -543,22 +543,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11985" ], "x-ms-correlation-request-id": [ - "96c76d27-403c-4e0f-8a87-03fe16c7dcb2" + "fcfb0f54-cdcb-44af-a277-8444ad8b0dfc" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073226Z:96c76d27-403c-4e0f-8a87-03fe16c7dcb2" + "JIOINDIACENTRAL:20230216T053027Z:fcfb0f54-cdcb-44af-a277-8444ad8b0dfc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:32:26 GMT" + "Thu, 16 Feb 2023 05:30:26 GMT" ], "Content-Length": [ - "4196" + "4048" ], "Content-Type": [ "application/json" @@ -567,28 +567,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$AppService-PS-UnitTesting\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0437a916-5218-423b-b196-0d7e94b86bf7" + "0a0f3137-c7c1-4a4c-9742-4bf8d73d1f7d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -600,7 +600,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b3b7b1d1-a1ec-4591-8a3c-648312efbbe7" + "60af984b-366a-4705-a00f-17472eb8ecca" ], "Server": [ "Microsoft-IIS/10.0" @@ -612,22 +612,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11983" ], "x-ms-correlation-request-id": [ - "4a653e8d-9377-4e6a-bf4f-342ecdf601b3" + "b919e63e-f79f-4d00-9b27-56f7b6cc504f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073228Z:4a653e8d-9377-4e6a-bf4f-342ecdf601b3" + "JIOINDIACENTRAL:20230216T053031Z:b919e63e-f79f-4d00-9b27-56f7b6cc504f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:32:28 GMT" + "Thu, 16 Feb 2023 05:30:31 GMT" ], "Content-Length": [ - "4196" + "4048" ], "Content-Type": [ "application/json" @@ -636,28 +636,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$AppService-PS-UnitTesting\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9dc878fa-30d4-4e1a-a2cc-ae4cce285803" + "565e6e2f-6afc-4527-8b3b-6a1a2ca5389e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -669,7 +669,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "30479d2b-df8a-4431-9bec-d226f7aec247" + "1462b817-e8d4-421f-aeef-4ad3b31081a8" ], "Server": [ "Microsoft-IIS/10.0" @@ -681,22 +681,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11990" ], "x-ms-correlation-request-id": [ - "13ffd636-b439-4442-82e6-12b0d4d0b6b9" + "3d86941a-f012-49e9-9690-d19e7561f0d8" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073251Z:13ffd636-b439-4442-82e6-12b0d4d0b6b9" + "JIOINDIACENTRAL:20230216T053044Z:3d86941a-f012-49e9-9690-d19e7561f0d8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:32:51 GMT" + "Thu, 16 Feb 2023 05:30:43 GMT" ], "Content-Length": [ - "4196" + "4048" ], "Content-Type": [ "application/json" @@ -705,28 +705,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$AppService-PS-UnitTesting\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f544174b-42c4-4ba0-88b7-ef8f398f4a56" + "1b7069a3-08fc-49c9-809c-d8fe05ce0b1e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -738,7 +738,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "433a7651-c0cb-40c2-bc37-0bc9aa08263b" + "10aaed84-4c7f-4437-9a2b-0294bdeccb98" ], "Server": [ "Microsoft-IIS/10.0" @@ -750,22 +750,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11998" ], "x-ms-correlation-request-id": [ - "54024016-ce2d-4061-b9c0-9a57efef2040" + "f4507b62-80ef-4f77-88e9-44c3f8b1f498" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073308Z:54024016-ce2d-4061-b9c0-9a57efef2040" + "CENTRALINDIA:20230216T053124Z:f4507b62-80ef-4f77-88e9-44c3f8b1f498" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:33:07 GMT" + "Thu, 16 Feb 2023 05:31:24 GMT" ], "Content-Length": [ - "4196" + "4048" ], "Content-Type": [ "application/json" @@ -774,28 +774,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$AppService-PS-UnitTesting\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f544174b-42c4-4ba0-88b7-ef8f398f4a56" + "1b7069a3-08fc-49c9-809c-d8fe05ce0b1e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -807,7 +807,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4bd5c848-99c9-43c4-b4b4-64c66867556a" + "40e6bfeb-1431-46a6-8e39-9f1481bae63d" ], "Server": [ "Microsoft-IIS/10.0" @@ -819,22 +819,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11996" ], "x-ms-correlation-request-id": [ - "1546b9df-6821-4e8c-83ca-da43aa77372c" + "102bb966-dadd-4cec-9548-7490bba99204" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073310Z:1546b9df-6821-4e8c-83ca-da43aa77372c" + "CENTRALINDIA:20230216T053128Z:102bb966-dadd-4cec-9548-7490bba99204" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:33:09 GMT" + "Thu, 16 Feb 2023 05:31:28 GMT" ], "Content-Length": [ - "4196" + "4048" ], "Content-Type": [ "application/json" @@ -843,28 +843,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$AppService-PS-UnitTesting\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "76f060dd-dce4-43d4-93e6-5248fe51f719" + "9f247568-ae55-44e8-a4c6-ac68bbdb9848" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -876,7 +876,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "98b2595a-3d0a-4d0f-af60-f284252079d4" + "a897043f-0dbe-48bc-a663-ac0e4b87a563" ], "Server": [ "Microsoft-IIS/10.0" @@ -888,22 +888,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11999" + "11993" ], "x-ms-correlation-request-id": [ - "cad94376-86db-4364-a3fb-e910b42cfa63" + "be7da2c6-85a0-43bc-b91b-cec3fb131968" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073224Z:cad94376-86db-4364-a3fb-e910b42cfa63" + "JIOINDIACENTRAL:20230216T053022Z:be7da2c6-85a0-43bc-b91b-cec3fb131968" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:32:24 GMT" + "Thu, 16 Feb 2023 05:30:22 GMT" ], "Content-Length": [ - "740" + "707" ], "Content-Type": [ "application/json" @@ -912,28 +912,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0437a916-5218-423b-b196-0d7e94b86bf7" + "0a0f3137-c7c1-4a4c-9742-4bf8d73d1f7d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -945,7 +945,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cce787bb-61b0-45b9-8838-6eb2a3ad6bc5" + "f8f7fafd-235e-4cca-baf0-ea6b4e32f4db" ], "Server": [ "Microsoft-IIS/10.0" @@ -957,22 +957,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11996" + "11990" ], "x-ms-correlation-request-id": [ - "a790c5e6-5010-4b7b-bdc1-4c3b2b0f63aa" + "55c62a70-c428-4c27-bc8e-2fee9fb3baa6" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073227Z:a790c5e6-5010-4b7b-bdc1-4c3b2b0f63aa" + "JIOINDIACENTRAL:20230216T053028Z:55c62a70-c428-4c27-bc8e-2fee9fb3baa6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:32:26 GMT" + "Thu, 16 Feb 2023 05:30:27 GMT" ], "Content-Length": [ - "740" + "707" ], "Content-Type": [ "application/json" @@ -981,28 +981,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0437a916-5218-423b-b196-0d7e94b86bf7" + "0a0f3137-c7c1-4a4c-9742-4bf8d73d1f7d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1014,7 +1014,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "10c68189-3360-4d63-a11f-6357858f83f3" + "e0b572d4-56b4-404d-b973-385c6ce034a1" ], "Server": [ "Microsoft-IIS/10.0" @@ -1026,22 +1026,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11993" + "11987" ], "x-ms-correlation-request-id": [ - "5552dc1a-db36-491d-b71c-c9e9623413b7" + "13ea78e7-20f1-4e8b-9f3b-7145be434ab4" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073229Z:5552dc1a-db36-491d-b71c-c9e9623413b7" + "JIOINDIACENTRAL:20230216T053032Z:13ea78e7-20f1-4e8b-9f3b-7145be434ab4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:32:28 GMT" + "Thu, 16 Feb 2023 05:30:32 GMT" ], "Content-Length": [ - "740" + "707" ], "Content-Type": [ "application/json" @@ -1050,28 +1050,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9dc878fa-30d4-4e1a-a2cc-ae4cce285803" + "565e6e2f-6afc-4527-8b3b-6a1a2ca5389e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1083,7 +1083,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "71cf95bc-d483-4907-90a6-de6850118a37" + "428a2c65-a5a5-4d50-9797-797e01a10270" ], "Server": [ "Microsoft-IIS/10.0" @@ -1095,22 +1095,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11990" + "11996" ], "x-ms-correlation-request-id": [ - "6daab279-2085-4ad5-bd2b-56c0193cfcff" + "4751ba2a-f9ee-40e6-8677-e59eb97fd2db" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073252Z:6daab279-2085-4ad5-bd2b-56c0193cfcff" + "JIOINDIACENTRAL:20230216T053045Z:4751ba2a-f9ee-40e6-8677-e59eb97fd2db" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:32:51 GMT" + "Thu, 16 Feb 2023 05:30:44 GMT" ], "Content-Length": [ - "740" + "707" ], "Content-Type": [ "application/json" @@ -1119,28 +1119,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f544174b-42c4-4ba0-88b7-ef8f398f4a56" + "1b7069a3-08fc-49c9-809c-d8fe05ce0b1e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1152,7 +1152,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c3f10fb1-53ca-4288-9bce-97fff8c1fba9" + "6c5d1a02-dbf5-461b-a72b-7ed86f70aee4" ], "Server": [ "Microsoft-IIS/10.0" @@ -1164,22 +1164,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11987" + "11999" ], "x-ms-correlation-request-id": [ - "94b66ad3-9115-4d8a-b7f4-6f2dab22df16" + "c76d6746-c59f-4f2e-bb20-d72ecf14dc02" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073308Z:94b66ad3-9115-4d8a-b7f4-6f2dab22df16" + "CENTRALINDIA:20230216T053125Z:c76d6746-c59f-4f2e-bb20-d72ecf14dc02" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:33:08 GMT" + "Thu, 16 Feb 2023 05:31:25 GMT" ], "Content-Length": [ - "740" + "707" ], "Content-Type": [ "application/json" @@ -1188,28 +1188,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f544174b-42c4-4ba0-88b7-ef8f398f4a56" + "1b7069a3-08fc-49c9-809c-d8fe05ce0b1e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1221,7 +1221,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2c797fb6-5963-4076-b300-acf7f31ea539" + "3aa0bc79-61ce-44ef-bef6-1bbeb12b2f3a" ], "Server": [ "Microsoft-IIS/10.0" @@ -1233,22 +1233,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11984" + "11996" ], "x-ms-correlation-request-id": [ - "a5b21d1f-7ef1-47ec-acf9-0de283a84c36" + "8cf1229e-ddae-4ee7-b0e7-67762501e3d2" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073310Z:a5b21d1f-7ef1-47ec-acf9-0de283a84c36" + "CENTRALINDIA:20230216T053129Z:8cf1229e-ddae-4ee7-b0e7-67762501e3d2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:33:09 GMT" + "Thu, 16 Feb 2023 05:31:29 GMT" ], "Content-Length": [ - "740" + "707" ], "Content-Type": [ "application/json" @@ -1257,28 +1257,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "76f060dd-dce4-43d4-93e6-5248fe51f719" + "9f247568-ae55-44e8-a4c6-ac68bbdb9848" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1290,7 +1290,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5677e1ed-0789-4f88-b81a-c502014c3235" + "387f3604-0d7b-4153-8dd0-2f24ce6672a4" ], "Server": [ "Microsoft-IIS/10.0" @@ -1302,22 +1302,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11998" + "11992" ], "x-ms-correlation-request-id": [ - "655b2feb-06ed-4ce6-9d02-1440adb62fa6" + "bf1e7830-5470-4d00-8add-f0c75c070853" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073225Z:655b2feb-06ed-4ce6-9d02-1440adb62fa6" + "JIOINDIACENTRAL:20230216T053023Z:bf1e7830-5470-4d00-8add-f0c75c070853" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:32:25 GMT" + "Thu, 16 Feb 2023 05:30:23 GMT" ], "Content-Length": [ - "290" + "308" ], "Content-Type": [ "application/json" @@ -1326,28 +1326,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0437a916-5218-423b-b196-0d7e94b86bf7" + "0a0f3137-c7c1-4a4c-9742-4bf8d73d1f7d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1359,7 +1359,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9a48ab59-0265-49b7-8fa4-d88a571a4a9d" + "e2843f01-f58f-4d9b-95b9-2f3494e8b578" ], "Server": [ "Microsoft-IIS/10.0" @@ -1371,22 +1371,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11995" + "11989" ], "x-ms-correlation-request-id": [ - "b4e9cdb1-881d-4975-9a23-7e13018850bb" + "0c4dc3d3-9265-4828-a631-64057bc6e30d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073227Z:b4e9cdb1-881d-4975-9a23-7e13018850bb" + "JIOINDIACENTRAL:20230216T053028Z:0c4dc3d3-9265-4828-a631-64057bc6e30d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:32:27 GMT" + "Thu, 16 Feb 2023 05:30:28 GMT" ], "Content-Length": [ - "290" + "308" ], "Content-Type": [ "application/json" @@ -1395,28 +1395,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0437a916-5218-423b-b196-0d7e94b86bf7" + "0a0f3137-c7c1-4a4c-9742-4bf8d73d1f7d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1428,7 +1428,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e2500f76-590b-464d-a3f6-0aa0711f0559" + "6c1a0af4-98ab-4ab0-8388-e20d7b4156b1" ], "Server": [ "Microsoft-IIS/10.0" @@ -1440,22 +1440,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11992" + "11986" ], "x-ms-correlation-request-id": [ - "c262cad8-e219-40b4-a58f-1ca38917eabe" + "21869663-a00c-412e-b0f8-9d1c6fcd02e3" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073229Z:c262cad8-e219-40b4-a58f-1ca38917eabe" + "JIOINDIACENTRAL:20230216T053033Z:21869663-a00c-412e-b0f8-9d1c6fcd02e3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:32:29 GMT" + "Thu, 16 Feb 2023 05:30:33 GMT" ], "Content-Length": [ - "290" + "308" ], "Content-Type": [ "application/json" @@ -1464,28 +1464,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9dc878fa-30d4-4e1a-a2cc-ae4cce285803" + "565e6e2f-6afc-4527-8b3b-6a1a2ca5389e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1497,7 +1497,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a9f70642-5b91-4117-89fd-c5505aa76d05" + "76c233af-3c3e-49bb-bd8c-b759a60a66cf" ], "Server": [ "Microsoft-IIS/10.0" @@ -1509,22 +1509,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11989" + "11995" ], "x-ms-correlation-request-id": [ - "af40a2c3-9ffb-449d-a89b-642c6b4a7f67" + "a1026f5e-9b9f-4af9-b0b3-82c972d13672" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073252Z:af40a2c3-9ffb-449d-a89b-642c6b4a7f67" + "JIOINDIACENTRAL:20230216T053046Z:a1026f5e-9b9f-4af9-b0b3-82c972d13672" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:32:52 GMT" + "Thu, 16 Feb 2023 05:30:45 GMT" ], "Content-Length": [ - "290" + "308" ], "Content-Type": [ "application/json" @@ -1533,28 +1533,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f544174b-42c4-4ba0-88b7-ef8f398f4a56" + "1b7069a3-08fc-49c9-809c-d8fe05ce0b1e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1566,7 +1566,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4831a8a0-d55b-4fd6-8443-81ca423e7f18" + "11aaa0a3-124b-4862-a842-6766b612590a" ], "Server": [ "Microsoft-IIS/10.0" @@ -1578,22 +1578,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11986" + "11998" ], "x-ms-correlation-request-id": [ - "306ea5b9-3eb4-4651-adcc-53f88bd45d24" + "bff7e7f5-1633-471a-8972-36c9a68c24e0" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073308Z:306ea5b9-3eb4-4651-adcc-53f88bd45d24" + "CENTRALINDIA:20230216T053126Z:bff7e7f5-1633-471a-8972-36c9a68c24e0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:33:08 GMT" + "Thu, 16 Feb 2023 05:31:26 GMT" ], "Content-Length": [ - "290" + "308" ], "Content-Type": [ "application/json" @@ -1602,28 +1602,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f544174b-42c4-4ba0-88b7-ef8f398f4a56" + "1b7069a3-08fc-49c9-809c-d8fe05ce0b1e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1635,7 +1635,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3418fd80-353e-41be-a739-aa01d3702b39" + "0a94c191-4940-42ee-b8fe-9067c4e1670a" ], "Server": [ "Microsoft-IIS/10.0" @@ -1647,22 +1647,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11983" + "11995" ], "x-ms-correlation-request-id": [ - "77ba458c-fa77-451d-98e8-eb5651c84fe5" + "174bc002-6fd0-4618-8661-34f65473c8b1" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073311Z:77ba458c-fa77-451d-98e8-eb5651c84fe5" + "CENTRALINDIA:20230216T053130Z:174bc002-6fd0-4618-8661-34f65473c8b1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:33:11 GMT" + "Thu, 16 Feb 2023 05:31:30 GMT" ], "Content-Length": [ - "290" + "308" ], "Content-Type": [ "application/json" @@ -1671,28 +1671,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "76f060dd-dce4-43d4-93e6-5248fe51f719" + "9f247568-ae55-44e8-a4c6-ac68bbdb9848" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1704,7 +1704,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "44a47847-9ab4-4b92-bf52-0c74bd7d0e82" + "f6890f51-0341-4862-836b-3c2dd24196d0" ], "Server": [ "Microsoft-IIS/10.0" @@ -1716,22 +1716,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11997" + "11991" ], "x-ms-correlation-request-id": [ - "12fe3be0-1507-46a3-aced-92edb923b40e" + "f2ce7a2e-d05b-480b-919f-d7ff4c98ebe0" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073225Z:12fe3be0-1507-46a3-aced-92edb923b40e" + "JIOINDIACENTRAL:20230216T053023Z:f2ce7a2e-d05b-480b-919f-d7ff4c98ebe0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:32:25 GMT" + "Thu, 16 Feb 2023 05:30:23 GMT" ], "Content-Length": [ - "287" + "305" ], "Content-Type": [ "application/json" @@ -1740,28 +1740,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0437a916-5218-423b-b196-0d7e94b86bf7" + "0a0f3137-c7c1-4a4c-9742-4bf8d73d1f7d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1773,7 +1773,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "52f702ab-9403-4eb3-97c1-3a361cd73344" + "43d19805-969b-4c38-a2d4-19335f2e6d3f" ], "Server": [ "Microsoft-IIS/10.0" @@ -1785,22 +1785,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11994" + "11988" ], "x-ms-correlation-request-id": [ - "ec9a3953-3e77-421c-a82c-d0d6a7907b23" + "92f270e5-1cbe-47b1-86cb-5eabb1d6ad02" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073228Z:ec9a3953-3e77-421c-a82c-d0d6a7907b23" + "JIOINDIACENTRAL:20230216T053030Z:92f270e5-1cbe-47b1-86cb-5eabb1d6ad02" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:32:27 GMT" + "Thu, 16 Feb 2023 05:30:29 GMT" ], "Content-Length": [ - "287" + "305" ], "Content-Type": [ "application/json" @@ -1809,28 +1809,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0437a916-5218-423b-b196-0d7e94b86bf7" + "0a0f3137-c7c1-4a4c-9742-4bf8d73d1f7d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1842,7 +1842,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "66b86c3b-9535-4109-82a1-0c2dd86548c5" + "dc603702-e18d-435e-ae57-98f445885385" ], "Server": [ "Microsoft-IIS/10.0" @@ -1854,22 +1854,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11991" + "11985" ], "x-ms-correlation-request-id": [ - "8087507b-4ad3-4941-9092-07a5f1dc56be" + "760d10dd-3ca0-4c52-95fa-81e0bb41ec82" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073230Z:8087507b-4ad3-4941-9092-07a5f1dc56be" + "JIOINDIACENTRAL:20230216T053034Z:760d10dd-3ca0-4c52-95fa-81e0bb41ec82" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:32:29 GMT" + "Thu, 16 Feb 2023 05:30:33 GMT" ], "Content-Length": [ - "287" + "305" ], "Content-Type": [ "application/json" @@ -1878,28 +1878,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9dc878fa-30d4-4e1a-a2cc-ae4cce285803" + "565e6e2f-6afc-4527-8b3b-6a1a2ca5389e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1911,7 +1911,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bfb0760c-82df-4078-9b81-ae6ff5388b47" + "74d8a78a-df68-49c7-9f77-9852185f808b" ], "Server": [ "Microsoft-IIS/10.0" @@ -1923,22 +1923,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11988" + "11994" ], "x-ms-correlation-request-id": [ - "bfde9395-f277-4061-8ec7-ac84cd1f9290" + "4e922997-07fc-4596-8a27-b26cd2f92628" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073253Z:bfde9395-f277-4061-8ec7-ac84cd1f9290" + "JIOINDIACENTRAL:20230216T053047Z:4e922997-07fc-4596-8a27-b26cd2f92628" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:32:52 GMT" + "Thu, 16 Feb 2023 05:30:46 GMT" ], "Content-Length": [ - "287" + "305" ], "Content-Type": [ "application/json" @@ -1947,28 +1947,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f544174b-42c4-4ba0-88b7-ef8f398f4a56" + "1b7069a3-08fc-49c9-809c-d8fe05ce0b1e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1980,7 +1980,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c951873b-3a65-4882-9f36-8c54befc1269" + "f64cec86-bdd2-4260-9aac-aeae6d44b295" ], "Server": [ "Microsoft-IIS/10.0" @@ -1992,22 +1992,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11985" + "11997" ], "x-ms-correlation-request-id": [ - "a65b6ad7-d9dd-4d21-81bc-c7f1411dfaba" + "b70faf16-2f2d-46c8-a838-610e40173823" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073309Z:a65b6ad7-d9dd-4d21-81bc-c7f1411dfaba" + "CENTRALINDIA:20230216T053127Z:b70faf16-2f2d-46c8-a838-610e40173823" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:33:08 GMT" + "Thu, 16 Feb 2023 05:31:27 GMT" ], "Content-Length": [ - "287" + "305" ], "Content-Type": [ "application/json" @@ -2016,28 +2016,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f544174b-42c4-4ba0-88b7-ef8f398f4a56" + "1b7069a3-08fc-49c9-809c-d8fe05ce0b1e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2049,7 +2049,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5328d1a5-1033-43ea-a7c9-219347e8e1b6" + "10820449-befe-40e6-818f-6a2fbc8aa75e" ], "Server": [ "Microsoft-IIS/10.0" @@ -2061,22 +2061,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11982" + "11994" ], "x-ms-correlation-request-id": [ - "e3e86bc3-947d-449a-af6a-ee112b6f3102" + "64ddb5bf-9a63-4726-b055-75d56b5ed0e7" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073311Z:e3e86bc3-947d-449a-af6a-ee112b6f3102" + "CENTRALINDIA:20230216T053131Z:64ddb5bf-9a63-4726-b055-75d56b5ed0e7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:33:11 GMT" + "Thu, 16 Feb 2023 05:31:30 GMT" ], "Content-Length": [ - "287" + "305" ], "Content-Type": [ "application/json" @@ -2085,34 +2085,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0437a916-5218-423b-b196-0d7e94b86bf7" + "0a0f3137-c7c1-4a4c-9742-4bf8d73d1f7d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "314" + "327" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2121,13 +2121,13 @@ "no-cache" ], "ETag": [ - "\"1D7E1055AEC3035\"" + "\"1D941C79AC66E95\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bf921729-9221-4052-bafc-b93846e52000" + "133a36d1-8b66-4697-b206-b894c7d50419" ], "Server": [ "Microsoft-IIS/10.0" @@ -2142,19 +2142,19 @@ "499" ], "x-ms-correlation-request-id": [ - "3e26b80c-bf84-4f03-95eb-cf37afa6b01e" + "165bc72a-5448-4c55-844e-c42c214edbee" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073250Z:3e26b80c-bf84-4f03-95eb-cf37afa6b01e" + "JIOINDIACENTRAL:20230216T053040Z:165bc72a-5448-4c55-844e-c42c214edbee" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:32:50 GMT" + "Thu, 16 Feb 2023 05:30:40 GMT" ], "Content-Length": [ - "6130" + "7196" ], "Content-Type": [ "application/json" @@ -2163,34 +2163,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T07:32:41.9666667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:30:36.57\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f544174b-42c4-4ba0-88b7-ef8f398f4a56" + "1b7069a3-08fc-49c9-809c-d8fe05ce0b1e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "245" + "258" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"Disabled\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2199,13 +2199,13 @@ "no-cache" ], "ETag": [ - "\"1D7E1057714F2EB\"" + "\"1D941C7CC47DFA0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "210e6b0a-69a9-41da-a26f-410d479a4dde" + "e4bb52df-b5ec-43eb-a1a5-2b55defc9947" ], "Server": [ "Microsoft-IIS/10.0" @@ -2217,22 +2217,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "498" + "499" ], "x-ms-correlation-request-id": [ - "66bacbe0-7eb0-4551-8bfa-a5358eb05b84" + "95127c7d-c7b8-491a-b723-db5606e656b8" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073315Z:66bacbe0-7eb0-4551-8bfa-a5358eb05b84" + "CENTRALINDIA:20230216T053137Z:95127c7d-c7b8-491a-b723-db5606e656b8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:33:15 GMT" + "Thu, 16 Feb 2023 05:31:36 GMT" ], "Content-Length": [ - "6090" + "7156" ], "Content-Type": [ "application/json" @@ -2241,28 +2241,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T07:33:12.9266667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:31:32.85\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b063aa1f-150c-4904-82e9-e9f0eba1b674" + "2ee1a6fc-b31d-49cf-a815-0d2c74c78f4a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2271,13 +2271,13 @@ "no-cache" ], "ETag": [ - "\"1D7E104DDE2CF2B\"" + "\"1D941C78E1E7B80\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "682e9384-794a-49fb-8482-63da708f2fb2" + "b5229b64-c7d3-4f3b-be4c-1ff4e911f8f8" ], "Server": [ "Microsoft-IIS/10.0" @@ -2289,22 +2289,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11982" ], "x-ms-correlation-request-id": [ - "8d5a2702-9e80-454c-bd06-f9c1421c678f" + "4e8bb3c5-825d-49a4-bb1d-652f9073272f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073253Z:8d5a2702-9e80-454c-bd06-f9c1421c678f" + "JIOINDIACENTRAL:20230216T053048Z:4e8bb3c5-825d-49a4-bb1d-652f9073272f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:32:53 GMT" + "Thu, 16 Feb 2023 05:30:47 GMT" ], "Content-Length": [ - "6025" + "7133" ], "Content-Type": [ "application/json" @@ -2313,28 +2313,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T07:28:24.9466667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot\",\r\n \"name\": \"AppService-PS-UnitTesting/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"name\": \"appservice-ps-unittesting(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/appservice-ps-unittesting\",\r\n \"repositorySiteName\": \"appservice-ps-unittesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:28:52.28\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"appservice-ps-unittesting__5e7e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"appservice-ps-unittesting__testslot\\\\$appservice-ps-unittesting__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "02b8bd28-457a-4942-8c2a-bb35ef3f06d4" + "b6aa6db5-1f8a-43a6-bef0-581c0c99e265" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2343,13 +2343,13 @@ "no-cache" ], "ETag": [ - "\"1D7E104DDE2CF2B\"" + "\"1D941C78E1E7B80\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "78879c76-87a0-41c3-af67-1b5567bae611" + "394e1638-83a1-4fba-be6c-7cdfc8d6f12e" ], "Server": [ "Microsoft-IIS/10.0" @@ -2361,22 +2361,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11999" ], "x-ms-correlation-request-id": [ - "0ee72e3c-f553-4c73-a45f-e28f362b0e1d" + "d74c695d-c2b2-40aa-bd2e-1f2084a6b68b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073255Z:0ee72e3c-f553-4c73-a45f-e28f362b0e1d" + "JIOINDIACENTRAL:20230216T053056Z:d74c695d-c2b2-40aa-bd2e-1f2084a6b68b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:32:54 GMT" + "Thu, 16 Feb 2023 05:30:55 GMT" ], "Content-Length": [ - "6025" + "7133" ], "Content-Type": [ "application/json" @@ -2385,28 +2385,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T07:28:24.9466667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot\",\r\n \"name\": \"AppService-PS-UnitTesting/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"name\": \"appservice-ps-unittesting(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/appservice-ps-unittesting\",\r\n \"repositorySiteName\": \"appservice-ps-unittesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:28:52.28\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"appservice-ps-unittesting__5e7e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"appservice-ps-unittesting__testslot\\\\$appservice-ps-unittesting__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "02b8bd28-457a-4942-8c2a-bb35ef3f06d4" + "b6aa6db5-1f8a-43a6-bef0-581c0c99e265" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2415,13 +2415,13 @@ "no-cache" ], "ETag": [ - "\"1D7E104DDE2CF2B\"" + "\"1D941C78E1E7B80\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2b738dc1-2443-49e7-98a4-2e55a992827e" + "88d338a1-7581-49af-aad6-47149d356c89" ], "Server": [ "Microsoft-IIS/10.0" @@ -2433,22 +2433,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11997" ], "x-ms-correlation-request-id": [ - "6c08c715-fb01-4162-8a7e-eea20e94312b" + "7deefa90-6e3f-4d2b-bd31-bb7f5dfc09cd" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073258Z:6c08c715-fb01-4162-8a7e-eea20e94312b" + "JIOINDIACENTRAL:20230216T053102Z:7deefa90-6e3f-4d2b-bd31-bb7f5dfc09cd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:32:57 GMT" + "Thu, 16 Feb 2023 05:31:01 GMT" ], "Content-Length": [ - "6025" + "7133" ], "Content-Type": [ "application/json" @@ -2457,28 +2457,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T07:28:24.9466667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot\",\r\n \"name\": \"AppService-PS-UnitTesting/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"name\": \"appservice-ps-unittesting(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/appservice-ps-unittesting\",\r\n \"repositorySiteName\": \"appservice-ps-unittesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:28:52.28\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"appservice-ps-unittesting__5e7e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"appservice-ps-unittesting__testslot\\\\$appservice-ps-unittesting__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "30f23dcb-9556-4254-905e-9c342ba700b3" + "391d66c0-955a-409b-bddd-eac43dd20035" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2487,13 +2487,13 @@ "no-cache" ], "ETag": [ - "\"1D7E105834F0900\"" + "\"1D941C7DEF36F55\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5eb514a6-78f7-49f9-9521-bf7231daf64f" + "4033d1d3-6abe-4ae4-8cd4-258c618a9c00" ], "Server": [ "Microsoft-IIS/10.0" @@ -2505,22 +2505,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11997" ], "x-ms-correlation-request-id": [ - "0b3a128c-0a39-4e0e-97f7-944fa051b246" + "8cfdbdfc-f201-4e32-a552-2c0920790e7f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073305Z:0b3a128c-0a39-4e0e-97f7-944fa051b246" + "JIOINDIACENTRAL:20230216T053116Z:8cfdbdfc-f201-4e32-a552-2c0920790e7f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:33:04 GMT" + "Thu, 16 Feb 2023 05:31:15 GMT" ], "Content-Length": [ - "6060" + "7138" ], "Content-Type": [ "application/json" @@ -2529,28 +2529,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T07:33:02.48\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot\",\r\n \"name\": \"AppService-PS-UnitTesting/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"name\": \"appservice-ps-unittesting(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/appservice-ps-unittesting\",\r\n \"repositorySiteName\": \"appservice-ps-unittesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:31:07.8933333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"appservice-ps-unittesting__5e7e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"appservice-ps-unittesting__testslot\\\\$appservice-ps-unittesting__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c25d199-75ea-4114-b5dc-fe821912b049" + "62176cba-d838-4807-96bb-8f0af022d225" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2559,13 +2559,13 @@ "no-cache" ], "ETag": [ - "\"1D7E105834F0900\"" + "\"1D941C7DEF36F55\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "907658be-0b30-48ec-9814-1cd39ebc07c9" + "bf82b2c0-e31b-47cd-b600-b741b543d950" ], "Server": [ "Microsoft-IIS/10.0" @@ -2580,19 +2580,19 @@ "11978" ], "x-ms-correlation-request-id": [ - "91e743c6-ffde-47e3-b664-7d1112666f9a" + "ad2e115c-6cce-494b-8e81-97287ca51cb2" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073317Z:91e743c6-ffde-47e3-b664-7d1112666f9a" + "JIOINDIACENTRAL:20230216T053143Z:ad2e115c-6cce-494b-8e81-97287ca51cb2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:33:17 GMT" + "Thu, 16 Feb 2023 05:31:42 GMT" ], "Content-Length": [ - "6060" + "7138" ], "Content-Type": [ "application/json" @@ -2601,28 +2601,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T07:33:02.48\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot\",\r\n \"name\": \"AppService-PS-UnitTesting/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"name\": \"appservice-ps-unittesting(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/appservice-ps-unittesting\",\r\n \"repositorySiteName\": \"appservice-ps-unittesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:31:07.8933333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"appservice-ps-unittesting__5e7e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"appservice-ps-unittesting__testslot\\\\$appservice-ps-unittesting__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c25d199-75ea-4114-b5dc-fe821912b049" + "62176cba-d838-4807-96bb-8f0af022d225" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2631,13 +2631,13 @@ "no-cache" ], "ETag": [ - "\"1D7E105834F0900\"" + "\"1D941C7DEF36F55\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9d3f891e-d4c2-4f36-8a74-922106338d0a" + "88f091e1-c803-43e9-89e8-e9ed738a7114" ], "Server": [ "Microsoft-IIS/10.0" @@ -2652,19 +2652,19 @@ "11976" ], "x-ms-correlation-request-id": [ - "57b63a71-fda6-437d-b7a1-c2fc9014cc80" + "27e8f067-5c9c-4a18-acdc-d9452bd56249" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073320Z:57b63a71-fda6-437d-b7a1-c2fc9014cc80" + "JIOINDIACENTRAL:20230216T053146Z:27e8f067-5c9c-4a18-acdc-d9452bd56249" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:33:19 GMT" + "Thu, 16 Feb 2023 05:31:46 GMT" ], "Content-Length": [ - "6060" + "7138" ], "Content-Type": [ "application/json" @@ -2673,28 +2673,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T07:33:02.48\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot\",\r\n \"name\": \"AppService-PS-UnitTesting/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"name\": \"appservice-ps-unittesting(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/appservice-ps-unittesting\",\r\n \"repositorySiteName\": \"appservice-ps-unittesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:31:07.8933333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"appservice-ps-unittesting__5e7e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"appservice-ps-unittesting__testslot\\\\$appservice-ps-unittesting__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b063aa1f-150c-4904-82e9-e9f0eba1b674" + "2ee1a6fc-b31d-49cf-a815-0d2c74c78f4a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2706,7 +2706,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2269aa96-6d3e-46c9-8fd2-315249066f94" + "b1047932-a20a-4feb-94bf-be8fcb38d6b8" ], "Server": [ "Microsoft-IIS/10.0" @@ -2718,22 +2718,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11981" ], "x-ms-correlation-request-id": [ - "746f6aa3-3ac5-47cf-b7f0-9b8a01242432" + "7f77fc50-8005-4d04-9219-9c449b26276e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073253Z:746f6aa3-3ac5-47cf-b7f0-9b8a01242432" + "JIOINDIACENTRAL:20230216T053049Z:7f77fc50-8005-4d04-9219-9c449b26276e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:32:53 GMT" + "Thu, 16 Feb 2023 05:30:48 GMT" ], "Content-Length": [ - "3731" + "4087" ], "Content-Type": [ "application/json" @@ -2742,28 +2742,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$appservice-ps-unittesting__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "02b8bd28-457a-4942-8c2a-bb35ef3f06d4" + "b6aa6db5-1f8a-43a6-bef0-581c0c99e265" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2775,7 +2775,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4ce8f74d-1ebe-4cdd-9a09-747184c0185a" + "5b9d18a3-1039-405d-8cf9-8c75363fb995" ], "Server": [ "Microsoft-IIS/10.0" @@ -2787,22 +2787,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11998" ], "x-ms-correlation-request-id": [ - "c8265c75-400e-40a3-9505-070e4da44d5b" + "dd97dfc8-f98b-4acc-9484-8fe77555ac04" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073256Z:c8265c75-400e-40a3-9505-070e4da44d5b" + "JIOINDIACENTRAL:20230216T053056Z:dd97dfc8-f98b-4acc-9484-8fe77555ac04" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:32:56 GMT" + "Thu, 16 Feb 2023 05:30:56 GMT" ], "Content-Length": [ - "3731" + "4087" ], "Content-Type": [ "application/json" @@ -2811,28 +2811,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$appservice-ps-unittesting__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "02b8bd28-457a-4942-8c2a-bb35ef3f06d4" + "b6aa6db5-1f8a-43a6-bef0-581c0c99e265" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2844,7 +2844,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "83ef4bc5-d691-4eaa-9b0b-13b10f487b7c" + "334716f6-3001-48c6-95ca-0aba4122291a" ], "Server": [ "Microsoft-IIS/10.0" @@ -2856,22 +2856,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11996" ], "x-ms-correlation-request-id": [ - "da966407-a30d-44a2-b69f-9425f6c19e07" + "ecdb905c-1111-4b64-950c-70859fa99e1f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073258Z:da966407-a30d-44a2-b69f-9425f6c19e07" + "JIOINDIACENTRAL:20230216T053102Z:ecdb905c-1111-4b64-950c-70859fa99e1f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:32:57 GMT" + "Thu, 16 Feb 2023 05:31:02 GMT" ], "Content-Length": [ - "3731" + "4087" ], "Content-Type": [ "application/json" @@ -2880,28 +2880,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$appservice-ps-unittesting__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "30f23dcb-9556-4254-905e-9c342ba700b3" + "391d66c0-955a-409b-bddd-eac43dd20035" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2913,7 +2913,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "60935ab2-b706-4ff9-a581-c07faf08cf78" + "6f8cb5e7-77a9-4d36-9a74-437ea2651324" ], "Server": [ "Microsoft-IIS/10.0" @@ -2925,22 +2925,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11996" ], "x-ms-correlation-request-id": [ - "caddc6ce-8a36-4edf-997d-b0d1a6364bc3" + "349167e3-337f-46f2-b5a6-25c12ce6f109" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073305Z:caddc6ce-8a36-4edf-997d-b0d1a6364bc3" + "JIOINDIACENTRAL:20230216T053118Z:349167e3-337f-46f2-b5a6-25c12ce6f109" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:33:04 GMT" + "Thu, 16 Feb 2023 05:31:17 GMT" ], "Content-Length": [ - "3731" + "4087" ], "Content-Type": [ "application/json" @@ -2949,28 +2949,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$appservice-ps-unittesting__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c25d199-75ea-4114-b5dc-fe821912b049" + "62176cba-d838-4807-96bb-8f0af022d225" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2982,7 +2982,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b1c5de1b-c100-4a9e-a3e3-16f533bf356b" + "643e5319-2067-47b2-82d0-0855bd9045d8" ], "Server": [ "Microsoft-IIS/10.0" @@ -2997,19 +2997,19 @@ "11977" ], "x-ms-correlation-request-id": [ - "403a9a61-a8ff-4104-9581-3abfd558a197" + "2d784536-d61a-4a05-b5af-9610f0bc1ab0" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073318Z:403a9a61-a8ff-4104-9581-3abfd558a197" + "JIOINDIACENTRAL:20230216T053143Z:2d784536-d61a-4a05-b5af-9610f0bc1ab0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:33:17 GMT" + "Thu, 16 Feb 2023 05:31:43 GMT" ], "Content-Length": [ - "3731" + "4087" ], "Content-Type": [ "application/json" @@ -3018,28 +3018,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$appservice-ps-unittesting__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c25d199-75ea-4114-b5dc-fe821912b049" + "62176cba-d838-4807-96bb-8f0af022d225" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3051,7 +3051,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3cc398db-debd-4136-a674-66915c32428c" + "e6189326-e6ae-4046-9c28-28c50dbff9cc" ], "Server": [ "Microsoft-IIS/10.0" @@ -3066,19 +3066,19 @@ "11975" ], "x-ms-correlation-request-id": [ - "0dc9394c-5b51-401f-aceb-96e9da959065" + "07a8afe1-669d-49f7-a938-8513529427ad" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073320Z:0dc9394c-5b51-401f-aceb-96e9da959065" + "JIOINDIACENTRAL:20230216T053147Z:07a8afe1-669d-49f7-a938-8513529427ad" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:33:19 GMT" + "Thu, 16 Feb 2023 05:31:47 GMT" ], "Content-Length": [ - "3731" + "4087" ], "Content-Type": [ "application/json" @@ -3087,28 +3087,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$appservice-ps-unittesting__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b063aa1f-150c-4904-82e9-e9f0eba1b674" + "2ee1a6fc-b31d-49cf-a815-0d2c74c78f4a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3120,7 +3120,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5ed0a0b1-8951-486d-8dfa-30d3d6b25ff1" + "5fdf2c5f-70d4-45fa-9d3b-5ea796854d12" ], "Server": [ "Microsoft-IIS/10.0" @@ -3132,22 +3132,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11999" + "11993" ], "x-ms-correlation-request-id": [ - "d1aa544e-06a3-4ea6-b66d-18ae5b668da4" + "a5abbe3b-6c1b-412a-8d35-084aa56c1e9f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073254Z:d1aa544e-06a3-4ea6-b66d-18ae5b668da4" + "JIOINDIACENTRAL:20230216T053050Z:a5abbe3b-6c1b-412a-8d35-084aa56c1e9f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:32:53 GMT" + "Thu, 16 Feb 2023 05:30:49 GMT" ], "Content-Length": [ - "755" + "732" ], "Content-Type": [ "application/json" @@ -3156,28 +3156,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "02b8bd28-457a-4942-8c2a-bb35ef3f06d4" + "b6aa6db5-1f8a-43a6-bef0-581c0c99e265" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3189,7 +3189,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a720835c-78fa-4922-a77f-2566a616e66d" + "abc2d23f-4e9a-48c8-9ec0-82c1242fd20f" ], "Server": [ "Microsoft-IIS/10.0" @@ -3201,22 +3201,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11996" + "11999" ], "x-ms-correlation-request-id": [ - "48eb4dc7-cc47-4e03-8ac8-a04052703d38" + "b08c7ffd-a2c4-4e7a-899d-2a38211d9148" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073256Z:48eb4dc7-cc47-4e03-8ac8-a04052703d38" + "JIOINDIACENTRAL:20230216T053057Z:b08c7ffd-a2c4-4e7a-899d-2a38211d9148" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:32:56 GMT" + "Thu, 16 Feb 2023 05:30:57 GMT" ], "Content-Length": [ - "755" + "732" ], "Content-Type": [ "application/json" @@ -3225,28 +3225,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "02b8bd28-457a-4942-8c2a-bb35ef3f06d4" + "b6aa6db5-1f8a-43a6-bef0-581c0c99e265" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3258,7 +3258,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "48052df3-949d-495c-b0a6-97e92f8f2e4b" + "f0f75497-e537-4932-9fe0-54efe62842f5" ], "Server": [ "Microsoft-IIS/10.0" @@ -3270,22 +3270,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11993" + "11996" ], "x-ms-correlation-request-id": [ - "7c498802-f99c-4478-9e21-3663a23b45f4" + "0af6beab-6e2a-4b78-bb35-ad740a480f9c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073258Z:7c498802-f99c-4478-9e21-3663a23b45f4" + "JIOINDIACENTRAL:20230216T053103Z:0af6beab-6e2a-4b78-bb35-ad740a480f9c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:32:58 GMT" + "Thu, 16 Feb 2023 05:31:02 GMT" ], "Content-Length": [ - "755" + "732" ], "Content-Type": [ "application/json" @@ -3294,28 +3294,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "30f23dcb-9556-4254-905e-9c342ba700b3" + "391d66c0-955a-409b-bddd-eac43dd20035" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3327,7 +3327,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "59667e54-7080-415e-b105-4e69bafc3e71" + "c40ecdba-6d22-4719-ad5b-9e2d765927a1" ], "Server": [ "Microsoft-IIS/10.0" @@ -3339,22 +3339,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11990" + "11999" ], "x-ms-correlation-request-id": [ - "b3297ae3-d281-4d83-a5b1-fe46c2566e70" + "ee1e4b8b-3cea-47d1-af6c-ffc5e7f0e844" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073306Z:b3297ae3-d281-4d83-a5b1-fe46c2566e70" + "JIOINDIACENTRAL:20230216T053119Z:ee1e4b8b-3cea-47d1-af6c-ffc5e7f0e844" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:33:06 GMT" + "Thu, 16 Feb 2023 05:31:18 GMT" ], "Content-Length": [ - "755" + "732" ], "Content-Type": [ "application/json" @@ -3363,28 +3363,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c25d199-75ea-4114-b5dc-fe821912b049" + "62176cba-d838-4807-96bb-8f0af022d225" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3396,7 +3396,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "defb80ae-bc52-4e99-a763-f7b7aea5de77" + "0a4e0c2c-7409-473e-bccb-b1be9eb58c83" ], "Server": [ "Microsoft-IIS/10.0" @@ -3411,19 +3411,19 @@ "11987" ], "x-ms-correlation-request-id": [ - "400d371a-9a71-4614-ae55-0473f683d9c2" + "ac3569b4-a40a-4865-953b-d4c44316d7be" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073318Z:400d371a-9a71-4614-ae55-0473f683d9c2" + "JIOINDIACENTRAL:20230216T053144Z:ac3569b4-a40a-4865-953b-d4c44316d7be" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:33:18 GMT" + "Thu, 16 Feb 2023 05:31:44 GMT" ], "Content-Length": [ - "755" + "732" ], "Content-Type": [ "application/json" @@ -3432,28 +3432,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c25d199-75ea-4114-b5dc-fe821912b049" + "62176cba-d838-4807-96bb-8f0af022d225" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3465,7 +3465,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "715098d3-76db-482b-bac7-6d84ae6713f2" + "8dbbee2f-e75c-42d4-9855-3548cc2281fe" ], "Server": [ "Microsoft-IIS/10.0" @@ -3480,19 +3480,19 @@ "11984" ], "x-ms-correlation-request-id": [ - "97cb852e-6d9c-4a65-9b91-19b832bbf6cd" + "da499ae7-6463-4243-b4d5-3f27c506f4b1" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073320Z:97cb852e-6d9c-4a65-9b91-19b832bbf6cd" + "JIOINDIACENTRAL:20230216T053148Z:da499ae7-6463-4243-b4d5-3f27c506f4b1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:33:19 GMT" + "Thu, 16 Feb 2023 05:31:47 GMT" ], "Content-Length": [ - "755" + "732" ], "Content-Type": [ "application/json" @@ -3501,28 +3501,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b063aa1f-150c-4904-82e9-e9f0eba1b674" + "2ee1a6fc-b31d-49cf-a815-0d2c74c78f4a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3534,7 +3534,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "93258722-295c-43a4-b896-22d14e78d6e3" + "03eb7ecd-9d18-4e0f-834e-4a1fc59a7692" ], "Server": [ "Microsoft-IIS/10.0" @@ -3546,22 +3546,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11998" + "11992" ], "x-ms-correlation-request-id": [ - "beac3daf-c5c9-43f9-aeeb-1efb6f9cec9d" + "5d76a391-bdf6-4458-9310-de2347f5878d" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073254Z:beac3daf-c5c9-43f9-aeeb-1efb6f9cec9d" + "JIOINDIACENTRAL:20230216T053051Z:5d76a391-bdf6-4458-9310-de2347f5878d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:32:54 GMT" + "Thu, 16 Feb 2023 05:30:50 GMT" ], "Content-Length": [ - "305" + "333" ], "Content-Type": [ "application/json" @@ -3570,28 +3570,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "02b8bd28-457a-4942-8c2a-bb35ef3f06d4" + "b6aa6db5-1f8a-43a6-bef0-581c0c99e265" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3603,7 +3603,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "52984be8-5d81-4e3e-977d-01cc4bf62e2c" + "8ffad097-38f3-4cb9-9a3f-70f5afd69054" ], "Server": [ "Microsoft-IIS/10.0" @@ -3615,22 +3615,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11995" + "11998" ], "x-ms-correlation-request-id": [ - "10175d58-f2ca-4855-808e-a3f51faf9287" + "7d70ee45-0781-469c-bb4a-05fe187ba531" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073257Z:10175d58-f2ca-4855-808e-a3f51faf9287" + "JIOINDIACENTRAL:20230216T053100Z:7d70ee45-0781-469c-bb4a-05fe187ba531" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:32:56 GMT" + "Thu, 16 Feb 2023 05:30:59 GMT" ], "Content-Length": [ - "305" + "333" ], "Content-Type": [ "application/json" @@ -3639,28 +3639,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "02b8bd28-457a-4942-8c2a-bb35ef3f06d4" + "b6aa6db5-1f8a-43a6-bef0-581c0c99e265" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3672,7 +3672,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b0db862b-490a-4853-8b0d-965e7f77e647" + "49e6e203-149e-4e4a-9abe-aa7bd05613da" ], "Server": [ "Microsoft-IIS/10.0" @@ -3684,22 +3684,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11992" + "11995" ], "x-ms-correlation-request-id": [ - "b67f84f1-157c-43c6-aff9-e01c7f76ca1b" + "2193b729-565d-47b6-8321-6b4283371008" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073259Z:b67f84f1-157c-43c6-aff9-e01c7f76ca1b" + "JIOINDIACENTRAL:20230216T053104Z:2193b729-565d-47b6-8321-6b4283371008" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:32:58 GMT" + "Thu, 16 Feb 2023 05:31:03 GMT" ], "Content-Length": [ - "305" + "333" ], "Content-Type": [ "application/json" @@ -3708,28 +3708,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "30f23dcb-9556-4254-905e-9c342ba700b3" + "391d66c0-955a-409b-bddd-eac43dd20035" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3741,7 +3741,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "df62264a-8d56-4228-9390-02db29c01a6b" + "affa16b4-e467-4089-bbee-8e446369564b" ], "Server": [ "Microsoft-IIS/10.0" @@ -3753,22 +3753,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11989" + "11998" ], "x-ms-correlation-request-id": [ - "1fe484a4-0e76-4035-a1d0-1f55a895f5df" + "214a6810-4ce0-4e1f-8e1c-bd303ac7ba2b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073306Z:1fe484a4-0e76-4035-a1d0-1f55a895f5df" + "JIOINDIACENTRAL:20230216T053120Z:214a6810-4ce0-4e1f-8e1c-bd303ac7ba2b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:33:06 GMT" + "Thu, 16 Feb 2023 05:31:19 GMT" ], "Content-Length": [ - "305" + "333" ], "Content-Type": [ "application/json" @@ -3777,28 +3777,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c25d199-75ea-4114-b5dc-fe821912b049" + "62176cba-d838-4807-96bb-8f0af022d225" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3810,7 +3810,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e5473c5c-1164-43b2-b535-0fdd3274f56f" + "ab8e6aed-0371-4efb-9c3e-96e5e330adcd" ], "Server": [ "Microsoft-IIS/10.0" @@ -3825,19 +3825,19 @@ "11986" ], "x-ms-correlation-request-id": [ - "5ffd0edd-d39b-425b-aef4-ff0cf90dec12" + "46e90117-4956-4a7f-a46a-5204fc17d6c7" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073319Z:5ffd0edd-d39b-425b-aef4-ff0cf90dec12" + "JIOINDIACENTRAL:20230216T053145Z:46e90117-4956-4a7f-a46a-5204fc17d6c7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:33:18 GMT" + "Thu, 16 Feb 2023 05:31:44 GMT" ], "Content-Length": [ - "305" + "333" ], "Content-Type": [ "application/json" @@ -3846,28 +3846,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c25d199-75ea-4114-b5dc-fe821912b049" + "62176cba-d838-4807-96bb-8f0af022d225" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3879,7 +3879,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "46755ea8-5bf2-41f9-b09e-aaf45741d7ff" + "2ed2d69c-f961-4457-8d9c-54b33839cf67" ], "Server": [ "Microsoft-IIS/10.0" @@ -3894,19 +3894,19 @@ "11983" ], "x-ms-correlation-request-id": [ - "a2d7ee1d-862a-42f9-90ef-308865110ebc" + "18585121-d527-4ad3-9a09-f1c5060f5eb8" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073321Z:a2d7ee1d-862a-42f9-90ef-308865110ebc" + "JIOINDIACENTRAL:20230216T053149Z:18585121-d527-4ad3-9a09-f1c5060f5eb8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:33:21 GMT" + "Thu, 16 Feb 2023 05:31:48 GMT" ], "Content-Length": [ - "305" + "333" ], "Content-Type": [ "application/json" @@ -3915,28 +3915,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b063aa1f-150c-4904-82e9-e9f0eba1b674" + "2ee1a6fc-b31d-49cf-a815-0d2c74c78f4a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3948,7 +3948,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a777d0a4-5ae9-4855-ac94-fc69b1ef7e48" + "5b9e6331-8432-4bff-8fd5-5dd7b56c2f5f" ], "Server": [ "Microsoft-IIS/10.0" @@ -3960,22 +3960,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11997" + "11991" ], "x-ms-correlation-request-id": [ - "4f68a578-be1a-4710-b1f4-572663092f63" + "a600f411-befc-4fb8-8aad-baa1cbfd0b30" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073255Z:4f68a578-be1a-4710-b1f4-572663092f63" + "JIOINDIACENTRAL:20230216T053052Z:a600f411-befc-4fb8-8aad-baa1cbfd0b30" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:32:54 GMT" + "Thu, 16 Feb 2023 05:30:51 GMT" ], "Content-Length": [ - "302" + "330" ], "Content-Type": [ "application/json" @@ -3984,28 +3984,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "02b8bd28-457a-4942-8c2a-bb35ef3f06d4" + "b6aa6db5-1f8a-43a6-bef0-581c0c99e265" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4017,7 +4017,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5383bbf0-d813-4b77-84cd-d70dda5a9120" + "e22051eb-22ad-46a6-9c0c-2832521d9378" ], "Server": [ "Microsoft-IIS/10.0" @@ -4029,22 +4029,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11994" + "11997" ], "x-ms-correlation-request-id": [ - "b0a0c87d-30f2-4762-ad03-0e00cad5a956" + "e9d6a2c1-fa3d-47a6-89ec-204f68a3cbba" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073257Z:b0a0c87d-30f2-4762-ad03-0e00cad5a956" + "JIOINDIACENTRAL:20230216T053101Z:e9d6a2c1-fa3d-47a6-89ec-204f68a3cbba" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:32:57 GMT" + "Thu, 16 Feb 2023 05:31:00 GMT" ], "Content-Length": [ - "302" + "330" ], "Content-Type": [ "application/json" @@ -4053,28 +4053,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "02b8bd28-457a-4942-8c2a-bb35ef3f06d4" + "b6aa6db5-1f8a-43a6-bef0-581c0c99e265" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4086,7 +4086,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3b25d676-4022-4982-8c3c-bdc8018ea897" + "bfe41aea-10ed-47f5-9c86-4eda53ce35ff" ], "Server": [ "Microsoft-IIS/10.0" @@ -4098,22 +4098,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11991" + "11994" ], "x-ms-correlation-request-id": [ - "9b3702ec-5348-4770-958f-2120c2f12437" + "7c3aa8f8-08a0-4db0-9619-5e969758302f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073259Z:9b3702ec-5348-4770-958f-2120c2f12437" + "JIOINDIACENTRAL:20230216T053106Z:7c3aa8f8-08a0-4db0-9619-5e969758302f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:32:58 GMT" + "Thu, 16 Feb 2023 05:31:05 GMT" ], "Content-Length": [ - "302" + "330" ], "Content-Type": [ "application/json" @@ -4122,28 +4122,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "30f23dcb-9556-4254-905e-9c342ba700b3" + "391d66c0-955a-409b-bddd-eac43dd20035" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4155,7 +4155,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1dd181dc-be11-44f6-8e50-f8f1b0a594ed" + "96eace05-6c15-404a-861e-6f516fbb9791" ], "Server": [ "Microsoft-IIS/10.0" @@ -4167,22 +4167,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11988" + "11997" ], "x-ms-correlation-request-id": [ - "40eb1a53-5d26-4779-bd70-a73f3389345d" + "af2dd3ca-fe33-4397-9d81-0d4678d5d6a2" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073307Z:40eb1a53-5d26-4779-bd70-a73f3389345d" + "JIOINDIACENTRAL:20230216T053121Z:af2dd3ca-fe33-4397-9d81-0d4678d5d6a2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:33:07 GMT" + "Thu, 16 Feb 2023 05:31:20 GMT" ], "Content-Length": [ - "302" + "330" ], "Content-Type": [ "application/json" @@ -4191,28 +4191,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c25d199-75ea-4114-b5dc-fe821912b049" + "62176cba-d838-4807-96bb-8f0af022d225" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4224,7 +4224,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5aaefba5-7a30-459f-92fc-b3a67348aa95" + "50fa65e8-3eec-496b-bdab-9d0837c04571" ], "Server": [ "Microsoft-IIS/10.0" @@ -4239,19 +4239,19 @@ "11985" ], "x-ms-correlation-request-id": [ - "1d295c16-cd1e-475c-90f6-550d7571f279" + "d4ccc6d0-5b33-43b1-8b2a-d97619b9071c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073319Z:1d295c16-cd1e-475c-90f6-550d7571f279" + "JIOINDIACENTRAL:20230216T053146Z:d4ccc6d0-5b33-43b1-8b2a-d97619b9071c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:33:18 GMT" + "Thu, 16 Feb 2023 05:31:45 GMT" ], "Content-Length": [ - "302" + "330" ], "Content-Type": [ "application/json" @@ -4260,28 +4260,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c25d199-75ea-4114-b5dc-fe821912b049" + "62176cba-d838-4807-96bb-8f0af022d225" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4293,7 +4293,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "35a909ab-125e-4c17-9b0b-4b98d9a83ac0" + "e671a1c1-a26e-45fb-9d34-c937db4b527d" ], "Server": [ "Microsoft-IIS/10.0" @@ -4308,19 +4308,19 @@ "11982" ], "x-ms-correlation-request-id": [ - "92520d58-838f-4f3f-9d2b-30e3c5ea3263" + "916743e0-d89b-4cfb-8021-7892776b98e9" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073321Z:92520d58-838f-4f3f-9d2b-30e3c5ea3263" + "JIOINDIACENTRAL:20230216T053150Z:916743e0-d89b-4cfb-8021-7892776b98e9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:33:21 GMT" + "Thu, 16 Feb 2023 05:31:49 GMT" ], "Content-Length": [ - "302" + "330" ], "Content-Type": [ "application/json" @@ -4329,34 +4329,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "02b8bd28-457a-4942-8c2a-bb35ef3f06d4" + "b6aa6db5-1f8a-43a6-bef0-581c0c99e265" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "319" + "342" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4365,13 +4365,13 @@ "no-cache" ], "ETag": [ - "\"1D7E104DDE2CF2B\"" + "\"1D941C78E1E7B80\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e54785d2-2446-4daa-9b81-2e0d0369cd19" + "768dfe56-5061-44a6-8fc6-4ce13f70872e" ], "Server": [ "Microsoft-IIS/10.0" @@ -4386,19 +4386,19 @@ "499" ], "x-ms-correlation-request-id": [ - "a9f4b6e1-5fdb-467b-8455-5b0f61275c15" + "7b179dc2-d8d0-4e99-90e4-30b260ed66ea" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073304Z:a9f4b6e1-5fdb-467b-8455-5b0f61275c15" + "JIOINDIACENTRAL:20230216T053112Z:7b179dc2-d8d0-4e99-90e4-30b260ed66ea" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:33:04 GMT" + "Thu, 16 Feb 2023 05:31:12 GMT" ], "Content-Length": [ - "6260" + "7356" ], "Content-Type": [ "application/json" @@ -4407,34 +4407,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T07:33:02.48\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot\",\r\n \"name\": \"AppService-PS-UnitTesting/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"name\": \"appservice-ps-unittesting(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/appservice-ps-unittesting\",\r\n \"repositorySiteName\": \"appservice-ps-unittesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:31:07.8933333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"appservice-ps-unittesting__5e7e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"appservice-ps-unittesting__testslot\\\\$appservice-ps-unittesting__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5c25d199-75ea-4114-b5dc-fe821912b049" + "62176cba-d838-4807-96bb-8f0af022d225" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "250" + "273" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"Disabled\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4443,13 +4443,13 @@ "no-cache" ], "ETag": [ - "\"1D7E105834F0900\"" + "\"1D941C7DEF36F55\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "40fb609f-f62c-45ae-bf46-ce68d8dac542" + "e3850964-6581-4bba-8910-bfc99f27d26e" ], "Server": [ "Microsoft-IIS/10.0" @@ -4461,22 +4461,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "498" + "499" ], "x-ms-correlation-request-id": [ - "06f8a3c9-29a3-4086-a549-093f5b66a83b" + "ffa7dd16-72e0-4730-9102-2eb2285e61c6" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073325Z:06f8a3c9-29a3-4086-a549-093f5b66a83b" + "JIOINDIACENTRAL:20230216T053155Z:ffa7dd16-72e0-4730-9102-2eb2285e61c6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:33:24 GMT" + "Thu, 16 Feb 2023 05:31:54 GMT" ], "Content-Length": [ - "6225" + "7316" ], "Content-Type": [ "application/json" @@ -4485,28 +4485,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T07:33:23.0066667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot\",\r\n \"name\": \"AppService-PS-UnitTesting/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"name\": \"appservice-ps-unittesting(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/appservice-ps-unittesting\",\r\n \"repositorySiteName\": \"appservice-ps-unittesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:31:51.7433333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"appservice-ps-unittesting__5e7e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"appservice-ps-unittesting__testslot\\\\$appservice-ps-unittesting__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcmVzb3VyY2VzPyRmaWx0ZXI9cmVzb3VyY2VUeXBlJTIwZXElMjAnTWljcm9zb2Z0LldlYiUyRkNlcnRpZmljYXRlcycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5XZWIlMkZDZXJ0aWZpY2F0ZXMnJmFwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f544174b-42c4-4ba0-88b7-ef8f398f4a56" + "1b7069a3-08fc-49c9-809c-d8fe05ce0b1e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.51" + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4515,16 +4515,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11979" ], "x-ms-request-id": [ - "bc8c884a-54cd-482d-8fae-cdc3a7e4329c" + "4006d5dc-9ff5-40a1-a3cb-4fdffc33efc4" ], "x-ms-correlation-request-id": [ - "bc8c884a-54cd-482d-8fae-cdc3a7e4329c" + "4006d5dc-9ff5-40a1-a3cb-4fdffc33efc4" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T073316Z:bc8c884a-54cd-482d-8fae-cdc3a7e4329c" + "JIOINDIACENTRAL:20230216T053137Z:4006d5dc-9ff5-40a1-a3cb-4fdffc33efc4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4533,7 +4533,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:33:15 GMT" + "Thu, 16 Feb 2023 05:31:36 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4542,31 +4542,31 @@ "-1" ], "Content-Length": [ - "297" + "587" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"name\": \"adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"name\": \"PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"name\": \"psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcmVzb3VyY2VzPyRmaWx0ZXI9cmVzb3VyY2VUeXBlJTIwZXElMjAnTWljcm9zb2Z0LldlYiUyRkNlcnRpZmljYXRlcycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5XZWIlMkZDZXJ0aWZpY2F0ZXMnJmFwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c25d199-75ea-4114-b5dc-fe821912b049" + "62176cba-d838-4807-96bb-8f0af022d225" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.51" + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4575,16 +4575,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11993" ], "x-ms-request-id": [ - "f557fc73-0d96-4e00-b3a7-22cd1a962556" + "93a06b7c-b19d-4366-be3d-07969af516dd" ], "x-ms-correlation-request-id": [ - "f557fc73-0d96-4e00-b3a7-22cd1a962556" + "93a06b7c-b19d-4366-be3d-07969af516dd" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T073325Z:f557fc73-0d96-4e00-b3a7-22cd1a962556" + "JIOINDIACENTRAL:20230216T053156Z:93a06b7c-b19d-4366-be3d-07969af516dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4593,7 +4593,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:33:25 GMT" + "Thu, 16 Feb 2023 05:31:55 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4602,31 +4602,100 @@ "-1" ], "Content-Length": [ - "297" + "587" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"name\": \"adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"name\": \"PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"name\": \"psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL2Fkb3Jlbm93LWxrZXRtdGVzdGFudHBzMTAtQ2VudHJhbFVTd2Vic3BhY2U/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/PS-UnitTesting-Keyvault-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy9QUy1Vbml0VGVzdGluZy1LZXl2YXVsdC1QUy1Vbml0VGVzdGluZz9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1b7069a3-08fc-49c9-809c-d8fe05ce0b1e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" + ] + }, "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "776fe8ed-a615-477f-86f6-4b004225e27d" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "eebc8bf7-f8dc-4051-ad67-8d4929fe2a35" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20230216T053138Z:eebc8bf7-f8dc-4051-ad67-8d4929fe2a35" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Feb 2023 05:31:38 GMT" + ], + "Content-Length": [ + "1081" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"name\": \"PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"password\": null,\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"psunittesting\",\r\n \"hostNames\": [\r\n \"psunittesting\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"psunittesting\",\r\n \"issueDate\": \"2022-07-28T07:11:04+05:30\",\r\n \"expirationDate\": \"2023-07-28T07:21:04+05:30\",\r\n \"thumbprint\": \"E4E04D3CE912AB34F0B94CBC27042E5022C961E1\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourcegroups/rg-ps-unittesting/providers/microsoft.keyvault/vaults/ps-unittesting-keyvault\",\r\n \"keyVaultSecretName\": \"ps-unittesting\",\r\n \"keyVaultSecretStatus\": \"KeyVaultSecretDoesNotExist\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/PS-UnitTesting-Keyvault-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy9QUy1Vbml0VGVzdGluZy1LZXl2YXVsdC1QUy1Vbml0VGVzdGluZz9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "f544174b-42c4-4ba0-88b7-ef8f398f4a56" + "62176cba-d838-4807-96bb-8f0af022d225" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4638,7 +4707,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e2787920-7b8c-4629-a65f-f5661f08d434" + "9a5ee9c1-7500-4193-b00a-dbbcf35948eb" ], "Server": [ "Microsoft-IIS/10.0" @@ -4650,22 +4719,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11974" ], "x-ms-correlation-request-id": [ - "2e1c03dd-5c01-43b9-b9ff-2d90f36c0fee" + "9e1bb76f-a701-4a66-a005-0cc5abba3677" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073316Z:2e1c03dd-5c01-43b9-b9ff-2d90f36c0fee" + "JIOINDIACENTRAL:20230216T053156Z:9e1bb76f-a701-4a66-a005-0cc5abba3677" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:33:15 GMT" + "Thu, 16 Feb 2023 05:31:56 GMT" ], "Content-Length": [ - "1157" + "1081" ], "Content-Type": [ "application/json" @@ -4674,28 +4743,97 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"name\": \"adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"password\": null,\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.adorenow.net,adorenow.net\",\r\n \"hostNames\": [\r\n \"*.adorenow.net\",\r\n \"adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"Go Daddy Secure Certificate Authority - G2\",\r\n \"issueDate\": \"2021-08-30T09:36:25+05:30\",\r\n \"expirationDate\": \"2022-09-29T12:46:02+05:30\",\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/lketmtestantps10/providers/microsoft.keyvault/vaults/ssltesting\",\r\n \"keyVaultSecretName\": \"adorenowadb85164-4f85-4ba7-8721-7071bbc3ecb1\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"lketmtestantps10\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"name\": \"PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"password\": null,\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"psunittesting\",\r\n \"hostNames\": [\r\n \"psunittesting\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"psunittesting\",\r\n \"issueDate\": \"2022-07-28T07:11:04+05:30\",\r\n \"expirationDate\": \"2023-07-28T07:21:04+05:30\",\r\n \"thumbprint\": \"E4E04D3CE912AB34F0B94CBC27042E5022C961E1\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourcegroups/rg-ps-unittesting/providers/microsoft.keyvault/vaults/ps-unittesting-keyvault\",\r\n \"keyVaultSecretName\": \"ps-unittesting\",\r\n \"keyVaultSecretStatus\": \"KeyVaultSecretDoesNotExist\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL2Fkb3Jlbm93LWxrZXRtdGVzdGFudHBzMTAtQ2VudHJhbFVTd2Vic3BhY2U/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy9wc3VuaXR0ZXN0aW5nLVJHLVBTLVVuaXRUZXN0aW5nLUNlbnRyYWxVU3dlYnNwYWNlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1b7069a3-08fc-49c9-809c-d8fe05ce0b1e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" + ] + }, "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b2c34149-3c7b-43e4-a70c-0ae67ce5b243" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "a4e144ba-abb3-49b9-aefa-7c75025d95ed" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20230216T053139Z:a4e144ba-abb3-49b9-aefa-7c75025d95ed" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Feb 2023 05:31:38 GMT" + ], + "Content-Length": [ + "1211" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"name\": \"psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"password\": null,\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.psunittesting.com,psunittesting.com\",\r\n \"hostNames\": [\r\n \"*.psunittesting.com\",\r\n \"psunittesting.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"Go Daddy Secure Certificate Authority - G2\",\r\n \"issueDate\": \"2023-02-16T07:42:44+05:30\",\r\n \"expirationDate\": \"2024-02-16T07:42:44+05:30\",\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourcegroups/rg-ps-unittesting/providers/microsoft.keyvault/vaults/ps-unittesting-keyvault\",\r\n \"keyVaultSecretName\": \"psunittestingaa142621-b4d5-445e-b940-7b9a0cc4e414\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy9wc3VuaXR0ZXN0aW5nLVJHLVBTLVVuaXRUZXN0aW5nLUNlbnRyYWxVU3dlYnNwYWNlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "5c25d199-75ea-4114-b5dc-fe821912b049" + "62176cba-d838-4807-96bb-8f0af022d225" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4707,7 +4845,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9b261f42-60d5-4e85-b651-125e87b309ef" + "f32e499b-985b-4840-8acc-35055ffc269c" ], "Server": [ "Microsoft-IIS/10.0" @@ -4719,22 +4857,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11973" ], "x-ms-correlation-request-id": [ - "fa14448a-f216-4c6a-9bb5-9bf222adbaa2" + "4183720c-1eae-4b08-9ba4-d16d7f6c8d71" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073325Z:fa14448a-f216-4c6a-9bb5-9bf222adbaa2" + "JIOINDIACENTRAL:20230216T053157Z:4183720c-1eae-4b08-9ba4-d16d7f6c8d71" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:33:25 GMT" + "Thu, 16 Feb 2023 05:31:56 GMT" ], "Content-Length": [ - "1157" + "1211" ], "Content-Type": [ "application/json" @@ -4743,28 +4881,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"name\": \"adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"password\": null,\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.adorenow.net,adorenow.net\",\r\n \"hostNames\": [\r\n \"*.adorenow.net\",\r\n \"adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"Go Daddy Secure Certificate Authority - G2\",\r\n \"issueDate\": \"2021-08-30T09:36:25+05:30\",\r\n \"expirationDate\": \"2022-09-29T12:46:02+05:30\",\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/lketmtestantps10/providers/microsoft.keyvault/vaults/ssltesting\",\r\n \"keyVaultSecretName\": \"adorenowadb85164-4f85-4ba7-8721-7071bbc3ecb1\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"lketmtestantps10\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"name\": \"psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"password\": null,\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.psunittesting.com,psunittesting.com\",\r\n \"hostNames\": [\r\n \"*.psunittesting.com\",\r\n \"psunittesting.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"Go Daddy Secure Certificate Authority - G2\",\r\n \"issueDate\": \"2023-02-16T07:42:44+05:30\",\r\n \"expirationDate\": \"2024-02-16T07:42:44+05:30\",\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourcegroups/rg-ps-unittesting/providers/microsoft.keyvault/vaults/ps-unittesting-keyvault\",\r\n \"keyVaultSecretName\": \"psunittestingaa142621-b4d5-445e-b940-7b9a0cc4e414\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL2Fkb3Jlbm93LWxrZXRtdGVzdGFudHBzMTAtQ2VudHJhbFVTd2Vic3BhY2U/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy9wc3VuaXR0ZXN0aW5nLVJHLVBTLVVuaXRUZXN0aW5nLUNlbnRyYWxVU3dlYnNwYWNlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f544174b-42c4-4ba0-88b7-ef8f398f4a56" + "1b7069a3-08fc-49c9-809c-d8fe05ce0b1e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4788,22 +4926,22 @@ "14999" ], "x-ms-request-id": [ - "e88661df-a404-4532-b038-d23491632629" + "60a27f43-c8fb-4a77-907e-c01d4dbfed1f" ], "x-ms-correlation-request-id": [ - "e88661df-a404-4532-b038-d23491632629" + "60a27f43-c8fb-4a77-907e-c01d4dbfed1f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073317Z:e88661df-a404-4532-b038-d23491632629" + "CENTRALINDIA:20230216T053140Z:60a27f43-c8fb-4a77-907e-c01d4dbfed1f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:33:17 GMT" + "Thu, 16 Feb 2023 05:31:40 GMT" ], "Content-Length": [ - "779" + "799" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4812,28 +4950,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"Code\": \"Conflict\",\r\n \"Message\": \"Cannot remove certificate with thumbprint 6156D1475113476C55A3064D44DED9ECA0B33864 because it is used for hostname testslot.adorenow.net.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot remove certificate with thumbprint 6156D1475113476C55A3064D44DED9ECA0B33864 because it is used for hostname testslot.adorenow.net.\"\r\n },\r\n {\r\n \"Code\": \"Conflict\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"ExtendedCode\": \"04035\",\r\n \"MessageTemplate\": \"Cannot remove certificate with thumbprint {0} because it is used for hostname {1}.\",\r\n \"Parameters\": [\r\n \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"testslot.adorenow.net\"\r\n ],\r\n \"Code\": \"Conflict\",\r\n \"Message\": \"Cannot remove certificate with thumbprint 6156D1475113476C55A3064D44DED9ECA0B33864 because it is used for hostname testslot.adorenow.net.\"\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}", + "ResponseBody": "{\r\n \"Code\": \"Conflict\",\r\n \"Message\": \"Cannot remove certificate with thumbprint 210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41 because it is used for hostname testslot.psunittesting.com.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot remove certificate with thumbprint 210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41 because it is used for hostname testslot.psunittesting.com.\"\r\n },\r\n {\r\n \"Code\": \"Conflict\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"ExtendedCode\": \"04035\",\r\n \"MessageTemplate\": \"Cannot remove certificate with thumbprint {0} because it is used for hostname {1}.\",\r\n \"Parameters\": [\r\n \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"testslot.psunittesting.com\"\r\n ],\r\n \"Code\": \"Conflict\",\r\n \"Message\": \"Cannot remove certificate with thumbprint 210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41 because it is used for hostname testslot.psunittesting.com.\"\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}", "StatusCode": 409 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL2Fkb3Jlbm93LWxrZXRtdGVzdGFudHBzMTAtQ2VudHJhbFVTd2Vic3BhY2U/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy9wc3VuaXR0ZXN0aW5nLVJHLVBTLVVuaXRUZXN0aW5nLUNlbnRyYWxVU3dlYnNwYWNlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c25d199-75ea-4114-b5dc-fe821912b049" + "62176cba-d838-4807-96bb-8f0af022d225" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4845,7 +4983,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9a7db652-96ff-493d-8607-7e1a447df32c" + "bbd5c96e-f7a9-497f-9f32-dfe40d8b639c" ], "Server": [ "Microsoft-IIS/10.0" @@ -4857,19 +4995,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14997" ], "x-ms-correlation-request-id": [ - "ba29be96-cfcc-4735-b482-51843c839c93" + "718e307d-93b0-48ce-a213-b4e834924ed7" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T073329Z:ba29be96-cfcc-4735-b482-51843c839c93" + "JIOINDIACENTRAL:20230216T053200Z:718e307d-93b0-48ce-a213-b4e834924ed7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 07:33:29 GMT" + "Thu, 16 Feb 2023 05:32:00 GMT" ], "Expires": [ "-1" @@ -4884,6 +5022,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "04b0639d-85d8-445a-bada-8da78e50ff30" + "SubscriptionId": "3e929699-b7a4-46cc-97cf-8a95e04318b8" } } \ No newline at end of file diff --git a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TestCreateNewWebAppSSLBinding.json b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TestCreateNewWebAppSSLBinding.json index 9ad4103ab246..1e9d08485d05 100644 --- a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TestCreateNewWebAppSSLBinding.json +++ b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TestCreateNewWebAppSSLBinding.json @@ -1,24 +1,24 @@ { "Entries": [ { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4b0d9dfc-5b25-4747-a042-bcdb8852ea01" + "052ce854-cabd-43f4-8132-c9db3b4a7d24" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -27,13 +27,13 @@ "no-cache" ], "ETag": [ - "\"1D7E125CC7EFEB5\"" + "\"1D941B523C8F9C0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "532cd290-da1c-4f1b-b9dc-177482b3ec0e" + "5c7bf493-9816-4f9e-a750-4ebbb778f18b" ], "Server": [ "Microsoft-IIS/10.0" @@ -45,22 +45,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11993" ], "x-ms-correlation-request-id": [ - "99089e0f-c027-4a06-ba4d-7f2580d6ce43" + "0d4b6ab6-7195-4d7d-a56a-ef312d6b885b" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112439Z:99089e0f-c027-4a06-ba4d-7f2580d6ce43" + "JIOINDIACENTRAL:20230216T031942Z:0d4b6ab6-7195-4d7d-a56a-ef312d6b885b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:24:39 GMT" + "Thu, 16 Feb 2023 03:19:42 GMT" ], "Content-Length": [ - "5945" + "6928" ], "Content-Type": [ "application/json" @@ -69,28 +69,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"IpBasedEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": \"52.165.151.82\",\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:24:09.1633333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T03:17:02.94\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4b0d9dfc-5b25-4747-a042-bcdb8852ea01" + "052ce854-cabd-43f4-8132-c9db3b4a7d24" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -99,13 +99,13 @@ "no-cache" ], "ETag": [ - "\"1D7E125CC7EFEB5\"" + "\"1D941B523C8F9C0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c3862255-07f7-43dd-8301-88d8e68e7af8" + "97bd74a2-ad22-4c84-a9aa-85ae2ba89fa4" ], "Server": [ "Microsoft-IIS/10.0" @@ -117,22 +117,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11991" ], "x-ms-correlation-request-id": [ - "668db7ba-e490-4d0c-a154-fb681b5376bd" + "48bf14cb-27fa-43fd-aad9-3dee17a626ac" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112442Z:668db7ba-e490-4d0c-a154-fb681b5376bd" + "JIOINDIACENTRAL:20230216T031948Z:48bf14cb-27fa-43fd-aad9-3dee17a626ac" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:24:42 GMT" + "Thu, 16 Feb 2023 03:19:48 GMT" ], "Content-Length": [ - "5945" + "6928" ], "Content-Type": [ "application/json" @@ -141,28 +141,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"IpBasedEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": \"52.165.151.82\",\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:24:09.1633333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T03:17:02.94\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1d70919-c920-4097-9307-9f635d0d4d61" + "257ecc27-82d0-4a09-9ef1-e26de01f3b4a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -171,13 +171,13 @@ "no-cache" ], "ETag": [ - "\"1D7E125E3ACA120\"" + "\"1D941B589248BE0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e0a08e45-0779-45aa-b37c-6e3c48653e56" + "c4a0c65b-2fe5-440a-b682-9b12f17988c7" ], "Server": [ "Microsoft-IIS/10.0" @@ -189,22 +189,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11993" ], "x-ms-correlation-request-id": [ - "6bbbb0f3-1fb1-4f8e-849f-f05f45a6c3e3" + "b71d7bba-b06a-45a8-950a-baa3d8bd27e2" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112507Z:6bbbb0f3-1fb1-4f8e-849f-f05f45a6c3e3" + "JIOINDIACENTRAL:20230216T032016Z:b71d7bba-b06a-45a8-950a-baa3d8bd27e2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:25:07 GMT" + "Thu, 16 Feb 2023 03:20:15 GMT" ], "Content-Length": [ - "5925" + "6928" ], "Content-Type": [ "application/json" @@ -213,28 +213,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:24:48.05\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T03:19:52.99\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1d70919-c920-4097-9307-9f635d0d4d61" + "257ecc27-82d0-4a09-9ef1-e26de01f3b4a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -243,13 +243,13 @@ "no-cache" ], "ETag": [ - "\"1D7E125E3ACA120\"" + "\"1D941B589248BE0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "26a706dc-1e45-46e2-9553-0597eed5d164" + "ced7c831-e707-4f59-945d-f4b352feaf8f" ], "Server": [ "Microsoft-IIS/10.0" @@ -261,22 +261,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11991" ], "x-ms-correlation-request-id": [ - "b38db44e-597e-4913-88c9-f3310af38ec1" + "3dd05c8f-555b-4e71-b317-99fe75658027" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112516Z:b38db44e-597e-4913-88c9-f3310af38ec1" + "JIOINDIACENTRAL:20230216T032020Z:3dd05c8f-555b-4e71-b317-99fe75658027" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:25:16 GMT" + "Thu, 16 Feb 2023 03:20:19 GMT" ], "Content-Length": [ - "5925" + "6928" ], "Content-Type": [ "application/json" @@ -285,28 +285,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:24:48.05\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T03:19:52.99\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4b0d9dfc-5b25-4747-a042-bcdb8852ea01" + "052ce854-cabd-43f4-8132-c9db3b4a7d24" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -318,7 +318,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "93a50fd1-f941-4b30-9783-764ba34172dc" + "0d6eb1f5-2a06-4713-8c55-e84b06e4b952" ], "Server": [ "Microsoft-IIS/10.0" @@ -330,22 +330,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11992" ], "x-ms-correlation-request-id": [ - "d083c8a7-353f-4cc7-aea6-fdd356f9f163" + "8e93f661-5126-4ea8-87a1-4097c238cc16" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112440Z:d083c8a7-353f-4cc7-aea6-fdd356f9f163" + "JIOINDIACENTRAL:20230216T031944Z:8e93f661-5126-4ea8-87a1-4097c238cc16" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:24:39 GMT" + "Thu, 16 Feb 2023 03:19:44 GMT" ], "Content-Length": [ - "4196" + "4017" ], "Content-Type": [ "application/json" @@ -354,28 +354,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$AppService-PS-UnitTesting\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4b0d9dfc-5b25-4747-a042-bcdb8852ea01" + "052ce854-cabd-43f4-8132-c9db3b4a7d24" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -387,7 +387,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f913b692-d083-4e3e-b5af-f69f9cbf7589" + "a3350963-064d-46d0-b887-a696d354617f" ], "Server": [ "Microsoft-IIS/10.0" @@ -399,22 +399,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11990" ], "x-ms-correlation-request-id": [ - "d05455d7-8aae-4a97-b62b-0204558571ee" + "20ef6095-1501-428e-94a1-05f3c9c5a0ef" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112443Z:d05455d7-8aae-4a97-b62b-0204558571ee" + "JIOINDIACENTRAL:20230216T031948Z:20ef6095-1501-428e-94a1-05f3c9c5a0ef" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:24:43 GMT" + "Thu, 16 Feb 2023 03:19:48 GMT" ], "Content-Length": [ - "4196" + "4017" ], "Content-Type": [ "application/json" @@ -423,28 +423,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$AppService-PS-UnitTesting\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1d70919-c920-4097-9307-9f635d0d4d61" + "257ecc27-82d0-4a09-9ef1-e26de01f3b4a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -456,7 +456,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c368cb25-aed2-4c55-8b18-428029569f85" + "426e5bec-5c68-4a76-b10d-2cc50af4ba67" ], "Server": [ "Microsoft-IIS/10.0" @@ -468,22 +468,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11992" ], "x-ms-correlation-request-id": [ - "9a2b1135-5462-4830-aebf-75dc68760bec" + "7b4711be-364d-4879-a3cc-79163c676a68" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112508Z:9a2b1135-5462-4830-aebf-75dc68760bec" + "JIOINDIACENTRAL:20230216T032016Z:7b4711be-364d-4879-a3cc-79163c676a68" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:25:08 GMT" + "Thu, 16 Feb 2023 03:20:16 GMT" ], "Content-Length": [ - "4196" + "4017" ], "Content-Type": [ "application/json" @@ -492,28 +492,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$AppService-PS-UnitTesting\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1d70919-c920-4097-9307-9f635d0d4d61" + "257ecc27-82d0-4a09-9ef1-e26de01f3b4a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -525,7 +525,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b4e2f837-4827-4683-9299-5ec9012dc42f" + "25048b61-4efe-49f1-9d5d-24a42471fd3e" ], "Server": [ "Microsoft-IIS/10.0" @@ -537,22 +537,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11990" ], "x-ms-correlation-request-id": [ - "d78c5a89-7a67-429e-ac16-5b7576cffced" + "bad51e43-1f52-4526-aa6a-dde15a139bac" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112517Z:d78c5a89-7a67-429e-ac16-5b7576cffced" + "JIOINDIACENTRAL:20230216T032021Z:bad51e43-1f52-4526-aa6a-dde15a139bac" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:25:16 GMT" + "Thu, 16 Feb 2023 03:20:20 GMT" ], "Content-Length": [ - "4196" + "4017" ], "Content-Type": [ "application/json" @@ -561,28 +561,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$AppService-PS-UnitTesting\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4b0d9dfc-5b25-4747-a042-bcdb8852ea01" + "052ce854-cabd-43f4-8132-c9db3b4a7d24" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -594,7 +594,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4f3887df-26fe-46ea-8043-475855d21a93" + "abce26e1-e6f1-432a-b82b-5779945b5e56" ], "Server": [ "Microsoft-IIS/10.0" @@ -606,22 +606,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11999" + "11996" ], "x-ms-correlation-request-id": [ - "bba35747-4fd6-42f0-87fc-b0af68dc7ef8" + "76653995-cf40-47ac-80d8-e63f9de2c3fb" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112441Z:bba35747-4fd6-42f0-87fc-b0af68dc7ef8" + "JIOINDIACENTRAL:20230216T031945Z:76653995-cf40-47ac-80d8-e63f9de2c3fb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:24:40 GMT" + "Thu, 16 Feb 2023 03:19:45 GMT" ], "Content-Length": [ - "740" + "676" ], "Content-Type": [ "application/json" @@ -630,28 +630,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4b0d9dfc-5b25-4747-a042-bcdb8852ea01" + "052ce854-cabd-43f4-8132-c9db3b4a7d24" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -663,7 +663,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "732a0980-5a38-47f3-9f77-55ff637449e3" + "50ddae81-dcef-4c47-a860-edfe6151da72" ], "Server": [ "Microsoft-IIS/10.0" @@ -675,22 +675,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11996" + "11993" ], "x-ms-correlation-request-id": [ - "c34a5d2d-77df-49f5-a042-a9edec960828" + "ce2bde0c-4c01-4889-bbd6-faba799c32f6" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112444Z:c34a5d2d-77df-49f5-a042-a9edec960828" + "JIOINDIACENTRAL:20230216T031949Z:ce2bde0c-4c01-4889-bbd6-faba799c32f6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:24:43 GMT" + "Thu, 16 Feb 2023 03:19:49 GMT" ], "Content-Length": [ - "740" + "676" ], "Content-Type": [ "application/json" @@ -699,28 +699,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1d70919-c920-4097-9307-9f635d0d4d61" + "257ecc27-82d0-4a09-9ef1-e26de01f3b4a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -732,7 +732,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e8e4caca-5d6c-4d20-bfdb-a415875a04a0" + "130ac3b9-dcc7-4fb4-80f3-d374312e8e15" ], "Server": [ "Microsoft-IIS/10.0" @@ -747,19 +747,19 @@ "11993" ], "x-ms-correlation-request-id": [ - "eb23fb31-d7e0-457f-b36b-89e795168acb" + "b3c2858c-eab0-4b56-b093-374a60e91445" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112512Z:eb23fb31-d7e0-457f-b36b-89e795168acb" + "JIOINDIACENTRAL:20230216T032018Z:b3c2858c-eab0-4b56-b093-374a60e91445" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:25:12 GMT" + "Thu, 16 Feb 2023 03:20:17 GMT" ], "Content-Length": [ - "740" + "676" ], "Content-Type": [ "application/json" @@ -768,28 +768,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1d70919-c920-4097-9307-9f635d0d4d61" + "257ecc27-82d0-4a09-9ef1-e26de01f3b4a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -801,7 +801,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "af996624-2809-4e61-bfbc-a50b0de6acf1" + "d494fbfa-3e5e-4315-b792-fe20cdd9f128" ], "Server": [ "Microsoft-IIS/10.0" @@ -816,19 +816,19 @@ "11990" ], "x-ms-correlation-request-id": [ - "6dc10663-9a8c-4a9c-aaeb-90e6e5adc1ea" + "b55df95c-0475-4126-8fbd-dd94c944c748" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112517Z:6dc10663-9a8c-4a9c-aaeb-90e6e5adc1ea" + "JIOINDIACENTRAL:20230216T032022Z:b55df95c-0475-4126-8fbd-dd94c944c748" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:25:17 GMT" + "Thu, 16 Feb 2023 03:20:21 GMT" ], "Content-Length": [ - "740" + "676" ], "Content-Type": [ "application/json" @@ -837,28 +837,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4b0d9dfc-5b25-4747-a042-bcdb8852ea01" + "052ce854-cabd-43f4-8132-c9db3b4a7d24" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -870,7 +870,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9b0cc382-b02b-4c4e-b8a8-4507e2929dfc" + "5793a883-9743-47d4-8ed5-db93b0e1f30d" ], "Server": [ "Microsoft-IIS/10.0" @@ -882,22 +882,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11998" + "11995" ], "x-ms-correlation-request-id": [ - "180da0b3-dd3c-4b40-b111-3f44df1f53a6" + "821673d0-c19d-4179-a116-414533ad7c68" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112441Z:180da0b3-dd3c-4b40-b111-3f44df1f53a6" + "JIOINDIACENTRAL:20230216T031946Z:821673d0-c19d-4179-a116-414533ad7c68" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:24:41 GMT" + "Thu, 16 Feb 2023 03:19:45 GMT" ], "Content-Length": [ - "290" + "277" ], "Content-Type": [ "application/json" @@ -906,28 +906,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4b0d9dfc-5b25-4747-a042-bcdb8852ea01" + "052ce854-cabd-43f4-8132-c9db3b4a7d24" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -939,7 +939,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c7db8dca-1cf2-482f-ab69-c8fe17c42d4e" + "995bad79-46b2-4b4c-86e7-5f29118da9c8" ], "Server": [ "Microsoft-IIS/10.0" @@ -951,22 +951,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11995" + "11992" ], "x-ms-correlation-request-id": [ - "6bab3e31-d602-4fc0-8eff-041d887b0277" + "463df7c9-3586-40f1-8e5e-ce3d763f08d6" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112444Z:6bab3e31-d602-4fc0-8eff-041d887b0277" + "JIOINDIACENTRAL:20230216T031950Z:463df7c9-3586-40f1-8e5e-ce3d763f08d6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:24:44 GMT" + "Thu, 16 Feb 2023 03:19:50 GMT" ], "Content-Length": [ - "290" + "277" ], "Content-Type": [ "application/json" @@ -975,28 +975,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1d70919-c920-4097-9307-9f635d0d4d61" + "257ecc27-82d0-4a09-9ef1-e26de01f3b4a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1008,7 +1008,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ff53d820-fc1c-4e2f-a467-45c9a3041051" + "4406fda3-9be0-41d7-bc68-0e2126d62e87" ], "Server": [ "Microsoft-IIS/10.0" @@ -1023,19 +1023,19 @@ "11992" ], "x-ms-correlation-request-id": [ - "12f4c887-6f02-4615-9f53-6106cb6b79b3" + "393f0b7e-cfdb-4bfc-a613-9599315e318d" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112514Z:12f4c887-6f02-4615-9f53-6106cb6b79b3" + "JIOINDIACENTRAL:20230216T032019Z:393f0b7e-cfdb-4bfc-a613-9599315e318d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:25:14 GMT" + "Thu, 16 Feb 2023 03:20:18 GMT" ], "Content-Length": [ - "290" + "277" ], "Content-Type": [ "application/json" @@ -1044,28 +1044,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1d70919-c920-4097-9307-9f635d0d4d61" + "257ecc27-82d0-4a09-9ef1-e26de01f3b4a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1077,7 +1077,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dabbd421-0bed-4772-b80e-148c62fff2c6" + "dd860397-8220-4e0f-988c-a8115c864c8a" ], "Server": [ "Microsoft-IIS/10.0" @@ -1092,19 +1092,19 @@ "11989" ], "x-ms-correlation-request-id": [ - "d48104f9-9f51-4054-bd9c-517230ee5298" + "e76dc599-c5ef-4d15-af87-4e6500d84543" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112518Z:d48104f9-9f51-4054-bd9c-517230ee5298" + "JIOINDIACENTRAL:20230216T032023Z:e76dc599-c5ef-4d15-af87-4e6500d84543" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:25:17 GMT" + "Thu, 16 Feb 2023 03:20:22 GMT" ], "Content-Length": [ - "290" + "277" ], "Content-Type": [ "application/json" @@ -1113,28 +1113,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4b0d9dfc-5b25-4747-a042-bcdb8852ea01" + "052ce854-cabd-43f4-8132-c9db3b4a7d24" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1146,7 +1146,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e5bffb0a-d496-4430-9b37-ca5e4ec02ed2" + "b88c93b4-710a-4596-b366-769dba26514e" ], "Server": [ "Microsoft-IIS/10.0" @@ -1158,22 +1158,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11997" + "11994" ], "x-ms-correlation-request-id": [ - "7ff6a26e-e59a-49dc-9386-a899ed57f01d" + "42199d8f-fc62-4a1d-931b-30ad0785944d" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112442Z:7ff6a26e-e59a-49dc-9386-a899ed57f01d" + "JIOINDIACENTRAL:20230216T031947Z:42199d8f-fc62-4a1d-931b-30ad0785944d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:24:41 GMT" + "Thu, 16 Feb 2023 03:19:46 GMT" ], "Content-Length": [ - "287" + "274" ], "Content-Type": [ "application/json" @@ -1182,28 +1182,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4b0d9dfc-5b25-4747-a042-bcdb8852ea01" + "052ce854-cabd-43f4-8132-c9db3b4a7d24" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1215,7 +1215,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3e5eacc4-72f4-4259-813b-82581cbc8ecc" + "91905750-50ce-491b-a045-4cd7056ece4d" ], "Server": [ "Microsoft-IIS/10.0" @@ -1227,22 +1227,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11994" + "11991" ], "x-ms-correlation-request-id": [ - "b5f01814-fdfc-4dfd-85bf-c96cba3e53e6" + "5e651351-bd35-4dee-8cf3-d36fce300900" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112445Z:b5f01814-fdfc-4dfd-85bf-c96cba3e53e6" + "JIOINDIACENTRAL:20230216T031951Z:5e651351-bd35-4dee-8cf3-d36fce300900" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:24:44 GMT" + "Thu, 16 Feb 2023 03:19:50 GMT" ], "Content-Length": [ - "287" + "274" ], "Content-Type": [ "application/json" @@ -1251,28 +1251,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1d70919-c920-4097-9307-9f635d0d4d61" + "257ecc27-82d0-4a09-9ef1-e26de01f3b4a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1284,7 +1284,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8c3e3d95-9e19-4822-803e-22228e5b1e11" + "84e9fde5-0ec5-46f8-8040-56408afeee2b" ], "Server": [ "Microsoft-IIS/10.0" @@ -1299,19 +1299,19 @@ "11991" ], "x-ms-correlation-request-id": [ - "ae99d9f1-f3c9-422d-af3d-21f558fd12a8" + "ab9e052e-f8c1-4788-9f89-6379ece603b9" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112516Z:ae99d9f1-f3c9-422d-af3d-21f558fd12a8" + "JIOINDIACENTRAL:20230216T032019Z:ab9e052e-f8c1-4788-9f89-6379ece603b9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:25:15 GMT" + "Thu, 16 Feb 2023 03:20:19 GMT" ], "Content-Length": [ - "287" + "274" ], "Content-Type": [ "application/json" @@ -1320,28 +1320,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1d70919-c920-4097-9307-9f635d0d4d61" + "257ecc27-82d0-4a09-9ef1-e26de01f3b4a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1353,7 +1353,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "193bbfba-04fe-4018-9887-efae66bdf3d5" + "4127ebe4-a95f-47ea-835b-1ee0df8d5c7c" ], "Server": [ "Microsoft-IIS/10.0" @@ -1368,19 +1368,19 @@ "11988" ], "x-ms-correlation-request-id": [ - "f5e451a6-6375-4789-b901-16624e9238d1" + "7b81bb7c-cb74-4cb3-8bf2-0a55afc0a10b" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112518Z:f5e451a6-6375-4789-b901-16624e9238d1" + "JIOINDIACENTRAL:20230216T032024Z:7b81bb7c-cb74-4cb3-8bf2-0a55afc0a10b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:25:18 GMT" + "Thu, 16 Feb 2023 03:20:24 GMT" ], "Content-Length": [ - "287" + "274" ], "Content-Type": [ "application/json" @@ -1389,34 +1389,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4b0d9dfc-5b25-4747-a042-bcdb8852ea01" + "052ce854-cabd-43f4-8132-c9db3b4a7d24" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "314" + "280" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1425,13 +1425,13 @@ "no-cache" ], "ETag": [ - "\"1D7E125CC7EFEB5\"" + "\"1D941B523C8F9C0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2034c327-f53c-47c5-8689-2a8a9bb3a3f9" + "12753b5f-1464-41a5-b326-8cb90133170c" ], "Server": [ "Microsoft-IIS/10.0" @@ -1446,19 +1446,19 @@ "499" ], "x-ms-correlation-request-id": [ - "fe55958f-bbe5-43e2-b1c4-206fc4717130" + "4978106c-f304-4cf6-a24e-b4d77dd54579" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112456Z:fe55958f-bbe5-43e2-b1c4-206fc4717130" + "JIOINDIACENTRAL:20230216T031957Z:4978106c-f304-4cf6-a24e-b4d77dd54579" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:24:55 GMT" + "Thu, 16 Feb 2023 03:19:57 GMT" ], "Content-Length": [ - "6125" + "7146" ], "Content-Type": [ "application/json" @@ -1467,34 +1467,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:24:48.05\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T03:19:52.99\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c1d70919-c920-4097-9307-9f635d0d4d61" + "257ecc27-82d0-4a09-9ef1-e26de01f3b4a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "245" + "211" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"Disabled\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1503,13 +1503,13 @@ "no-cache" ], "ETag": [ - "\"1D7E125E3ACA120\"" + "\"1D941B589248BE0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "736964a8-9271-4367-942e-5fcb20d58609" + "57004817-69ad-45bf-9fdd-84e91bdc890a" ], "Server": [ "Microsoft-IIS/10.0" @@ -1521,22 +1521,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "498" + "499" ], "x-ms-correlation-request-id": [ - "98864035-f9b2-41b2-81a2-a6e270666e7e" + "ee767491-03e5-463d-8647-002a8b1d05ff" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112523Z:98864035-f9b2-41b2-81a2-a6e270666e7e" + "JIOINDIACENTRAL:20230216T032031Z:ee767491-03e5-463d-8647-002a8b1d05ff" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:25:22 GMT" + "Thu, 16 Feb 2023 03:20:30 GMT" ], "Content-Length": [ - "6090" + "7111" ], "Content-Type": [ "application/json" @@ -1545,28 +1545,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:25:20.7466667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T03:20:26.4833333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5791cda0-124d-4379-a668-c05f3bddc8a1" + "2fd8b5cb-d476-4ef3-8d73-4f27e826105a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1575,13 +1575,13 @@ "no-cache" ], "ETag": [ - "\"1D7E125A69B7DCB\"" + "\"1D941B55639FAEB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "179d62b0-3d84-4229-9dde-694a9ac06d14" + "1f854848-182c-4a05-b278-a0657b41c22a" ], "Server": [ "Microsoft-IIS/10.0" @@ -1593,22 +1593,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11989" ], "x-ms-correlation-request-id": [ - "b4ce8c26-6f4d-451e-a5d8-8ec1eeee07cb" + "dbf1cd3d-de06-427e-a943-e8b0fdbe2384" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112456Z:b4ce8c26-6f4d-451e-a5d8-8ec1eeee07cb" + "JIOINDIACENTRAL:20230216T031958Z:dbf1cd3d-de06-427e-a943-e8b0fdbe2384" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:24:56 GMT" + "Thu, 16 Feb 2023 03:19:57 GMT" ], "Content-Length": [ - "6025" + "7068" ], "Content-Type": [ "application/json" @@ -1617,28 +1617,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:23:05.5966667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot\",\r\n \"name\": \"AppService-PS-UnitTesting/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"appservice-ps-unittesting(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/appservice-ps-unittesting\",\r\n \"repositorySiteName\": \"appservice-ps-unittesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T03:18:27.5666667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"appservice-ps-unittesting__5e7e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"appservice-ps-unittesting__testslot\\\\$appservice-ps-unittesting__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5791cda0-124d-4379-a668-c05f3bddc8a1" + "2fd8b5cb-d476-4ef3-8d73-4f27e826105a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1647,13 +1647,13 @@ "no-cache" ], "ETag": [ - "\"1D7E125A69B7DCB\"" + "\"1D941B55639FAEB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a5dc9185-6f25-4dd4-8254-a214f4380009" + "dc00fe07-82c3-4e52-b01f-8d6f4f743b1c" ], "Server": [ "Microsoft-IIS/10.0" @@ -1665,22 +1665,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11987" ], "x-ms-correlation-request-id": [ - "f77eb55d-fe0c-494b-ade5-0b87d5536f87" + "4847c0a5-35d5-4fb2-8ef6-54742c9ab783" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112459Z:f77eb55d-fe0c-494b-ade5-0b87d5536f87" + "JIOINDIACENTRAL:20230216T032002Z:4847c0a5-35d5-4fb2-8ef6-54742c9ab783" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:24:58 GMT" + "Thu, 16 Feb 2023 03:20:02 GMT" ], "Content-Length": [ - "6025" + "7068" ], "Content-Type": [ "application/json" @@ -1689,28 +1689,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:23:05.5966667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot\",\r\n \"name\": \"AppService-PS-UnitTesting/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"appservice-ps-unittesting(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/appservice-ps-unittesting\",\r\n \"repositorySiteName\": \"appservice-ps-unittesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T03:18:27.5666667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"appservice-ps-unittesting__5e7e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"appservice-ps-unittesting__testslot\\\\$appservice-ps-unittesting__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e99421b1-2ee3-48c6-b9c8-4c90d0597545" + "bb35b9d7-5445-4705-b7b2-fceb376b07d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1719,13 +1719,13 @@ "no-cache" ], "ETag": [ - "\"1D7E125EC9AE795\"" + "\"1D941B5920AAF00\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9290ce19-ed92-492c-a83b-156ccf117e8f" + "a794f2a1-489b-4721-8c25-6b00503ba893" ], "Server": [ "Microsoft-IIS/10.0" @@ -1737,22 +1737,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11998" ], "x-ms-correlation-request-id": [ - "bec0db81-b027-433d-8c60-5bd9b03a777e" + "a169faff-d7a6-497d-9038-6b54ff0d54d1" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112525Z:bec0db81-b027-433d-8c60-5bd9b03a777e" + "JIOINDIACENTRAL:20230216T032040Z:a169faff-d7a6-497d-9038-6b54ff0d54d1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:25:25 GMT" + "Thu, 16 Feb 2023 03:20:40 GMT" ], "Content-Length": [ - "6065" + "7063" ], "Content-Type": [ "application/json" @@ -1761,28 +1761,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:25:03.0333333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot\",\r\n \"name\": \"AppService-PS-UnitTesting/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"appservice-ps-unittesting(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/appservice-ps-unittesting\",\r\n \"repositorySiteName\": \"appservice-ps-unittesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T03:20:07.92\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"appservice-ps-unittesting__5e7e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"appservice-ps-unittesting__testslot\\\\$appservice-ps-unittesting__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e99421b1-2ee3-48c6-b9c8-4c90d0597545" + "bb35b9d7-5445-4705-b7b2-fceb376b07d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1791,13 +1791,13 @@ "no-cache" ], "ETag": [ - "\"1D7E125EC9AE795\"" + "\"1D941B5920AAF00\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "28570f53-fca4-4e66-8df6-b1df8b56c3a4" + "f78a4044-8877-4028-8aef-058668c0f7da" ], "Server": [ "Microsoft-IIS/10.0" @@ -1809,22 +1809,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11996" ], "x-ms-correlation-request-id": [ - "0ccbb662-35d2-4afb-9ecd-e48a1303647d" + "1c2e837e-e0b8-4b6e-8909-a2a7c8e02275" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112528Z:0ccbb662-35d2-4afb-9ecd-e48a1303647d" + "JIOINDIACENTRAL:20230216T032046Z:1c2e837e-e0b8-4b6e-8909-a2a7c8e02275" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:25:28 GMT" + "Thu, 16 Feb 2023 03:20:45 GMT" ], "Content-Length": [ - "6065" + "7063" ], "Content-Type": [ "application/json" @@ -1833,28 +1833,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:25:03.0333333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot\",\r\n \"name\": \"AppService-PS-UnitTesting/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"appservice-ps-unittesting(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/appservice-ps-unittesting\",\r\n \"repositorySiteName\": \"appservice-ps-unittesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T03:20:07.92\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"appservice-ps-unittesting__5e7e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"appservice-ps-unittesting__testslot\\\\$appservice-ps-unittesting__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5791cda0-124d-4379-a668-c05f3bddc8a1" + "2fd8b5cb-d476-4ef3-8d73-4f27e826105a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1866,7 +1866,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4d456bfa-d067-4101-813c-99f00d76f161" + "18c6f26f-7670-4f97-81a7-2dc75386bb33" ], "Server": [ "Microsoft-IIS/10.0" @@ -1878,22 +1878,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11988" ], "x-ms-correlation-request-id": [ - "bfe02bca-ee8e-4000-a187-62f445583d52" + "65cfed59-014a-4550-ac6e-9c85d2a530d4" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112457Z:bfe02bca-ee8e-4000-a187-62f445583d52" + "JIOINDIACENTRAL:20230216T031959Z:65cfed59-014a-4550-ac6e-9c85d2a530d4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:24:56 GMT" + "Thu, 16 Feb 2023 03:19:59 GMT" ], "Content-Length": [ - "3731" + "4046" ], "Content-Type": [ "application/json" @@ -1902,28 +1902,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$appservice-ps-unittesting__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5791cda0-124d-4379-a668-c05f3bddc8a1" + "2fd8b5cb-d476-4ef3-8d73-4f27e826105a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1935,7 +1935,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "941f6d2f-67fd-46b6-af91-670547361660" + "b488679e-c6e1-41a3-a28b-05adc9419ed8" ], "Server": [ "Microsoft-IIS/10.0" @@ -1947,22 +1947,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11986" ], "x-ms-correlation-request-id": [ - "a88ee6ce-1790-450d-b4a7-49320eda05aa" + "9b44e648-7826-4d97-b415-21aa3814a071" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112459Z:a88ee6ce-1790-450d-b4a7-49320eda05aa" + "JIOINDIACENTRAL:20230216T032003Z:9b44e648-7826-4d97-b415-21aa3814a071" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:24:59 GMT" + "Thu, 16 Feb 2023 03:20:02 GMT" ], "Content-Length": [ - "3731" + "4046" ], "Content-Type": [ "application/json" @@ -1971,28 +1971,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$appservice-ps-unittesting__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e99421b1-2ee3-48c6-b9c8-4c90d0597545" + "bb35b9d7-5445-4705-b7b2-fceb376b07d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2004,7 +2004,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "890bd079-dc67-49db-8468-5bc4572f1793" + "88eeebc4-2c3a-4934-904a-f2bce8a0d356" ], "Server": [ "Microsoft-IIS/10.0" @@ -2016,22 +2016,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11997" ], "x-ms-correlation-request-id": [ - "5cd2473e-203a-426f-843c-f78e52fdc736" + "0589e36e-beea-4647-8d76-e54788871b40" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112526Z:5cd2473e-203a-426f-843c-f78e52fdc736" + "JIOINDIACENTRAL:20230216T032042Z:0589e36e-beea-4647-8d76-e54788871b40" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:25:25 GMT" + "Thu, 16 Feb 2023 03:20:41 GMT" ], "Content-Length": [ - "3731" + "4046" ], "Content-Type": [ "application/json" @@ -2040,28 +2040,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$appservice-ps-unittesting__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e99421b1-2ee3-48c6-b9c8-4c90d0597545" + "bb35b9d7-5445-4705-b7b2-fceb376b07d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2073,7 +2073,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f8de8407-04fb-4109-8451-6fc062efb359" + "36facc2f-4fa0-4c37-9dca-d1ae59a5ae79" ], "Server": [ "Microsoft-IIS/10.0" @@ -2085,22 +2085,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11995" ], "x-ms-correlation-request-id": [ - "916a5d86-9524-414f-bfc3-bf5fe05dd040" + "0268a9a2-63ef-4652-b0c4-d7f45168563b" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112529Z:916a5d86-9524-414f-bfc3-bf5fe05dd040" + "JIOINDIACENTRAL:20230216T032047Z:0268a9a2-63ef-4652-b0c4-d7f45168563b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:25:29 GMT" + "Thu, 16 Feb 2023 03:20:46 GMT" ], "Content-Length": [ - "3731" + "4046" ], "Content-Type": [ "application/json" @@ -2109,28 +2109,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$appservice-ps-unittesting__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5791cda0-124d-4379-a668-c05f3bddc8a1" + "2fd8b5cb-d476-4ef3-8d73-4f27e826105a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2142,7 +2142,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "12515c51-c72a-43eb-9f2a-4118fd9ed240" + "c89c4bfe-27ce-4c08-a9c9-afd8c2bea0ff" ], "Server": [ "Microsoft-IIS/10.0" @@ -2154,22 +2154,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11999" + "11993" ], "x-ms-correlation-request-id": [ - "0b500eeb-fabc-480d-baa5-0624318b2d12" + "3fe4a58d-821d-43f7-947e-8aa8b7c9bed2" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112457Z:0b500eeb-fabc-480d-baa5-0624318b2d12" + "JIOINDIACENTRAL:20230216T032000Z:3fe4a58d-821d-43f7-947e-8aa8b7c9bed2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:24:57 GMT" + "Thu, 16 Feb 2023 03:20:00 GMT" ], "Content-Length": [ - "755" + "691" ], "Content-Type": [ "application/json" @@ -2178,28 +2178,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5791cda0-124d-4379-a668-c05f3bddc8a1" + "2fd8b5cb-d476-4ef3-8d73-4f27e826105a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2211,7 +2211,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "303c03bb-88c4-4a66-ba97-595722c50cca" + "bbb6e2c8-13a6-4879-9104-1067ee2ea2e2" ], "Server": [ "Microsoft-IIS/10.0" @@ -2223,22 +2223,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11996" + "11990" ], "x-ms-correlation-request-id": [ - "2042bf7e-9251-4ea0-9e33-cc76e1030750" + "abba4108-7ae9-48e9-bf7f-fe14b1a9baa1" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112500Z:2042bf7e-9251-4ea0-9e33-cc76e1030750" + "JIOINDIACENTRAL:20230216T032004Z:abba4108-7ae9-48e9-bf7f-fe14b1a9baa1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:24:59 GMT" + "Thu, 16 Feb 2023 03:20:03 GMT" ], "Content-Length": [ - "755" + "691" ], "Content-Type": [ "application/json" @@ -2247,28 +2247,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e99421b1-2ee3-48c6-b9c8-4c90d0597545" + "bb35b9d7-5445-4705-b7b2-fceb376b07d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2280,7 +2280,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f2ac2c9e-99f7-46d9-bef3-07f7bddda377" + "eb655af1-0a3b-490d-a162-a56c848f0867" ], "Server": [ "Microsoft-IIS/10.0" @@ -2292,22 +2292,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11993" + "11999" ], "x-ms-correlation-request-id": [ - "66ca6fa7-a5f2-4d33-85c8-ba1e8527207c" + "f32ec008-c4cc-4334-adc8-05d7fd56d357" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112526Z:66ca6fa7-a5f2-4d33-85c8-ba1e8527207c" + "JIOINDIACENTRAL:20230216T032044Z:f32ec008-c4cc-4334-adc8-05d7fd56d357" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:25:26 GMT" + "Thu, 16 Feb 2023 03:20:43 GMT" ], "Content-Length": [ - "755" + "691" ], "Content-Type": [ "application/json" @@ -2316,28 +2316,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e99421b1-2ee3-48c6-b9c8-4c90d0597545" + "bb35b9d7-5445-4705-b7b2-fceb376b07d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2349,7 +2349,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1020f6a8-abd8-4b33-b260-0bbe8c1d6404" + "65d60b4c-5b6e-4a78-b41b-192fe8a3a8c8" ], "Server": [ "Microsoft-IIS/10.0" @@ -2361,22 +2361,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11990" + "11996" ], "x-ms-correlation-request-id": [ - "1813d7c9-cd80-4066-bdfc-b887bf503730" + "a10f4cb8-26f5-491a-acd0-28cc71347a47" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112529Z:1813d7c9-cd80-4066-bdfc-b887bf503730" + "JIOINDIACENTRAL:20230216T032048Z:a10f4cb8-26f5-491a-acd0-28cc71347a47" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:25:29 GMT" + "Thu, 16 Feb 2023 03:20:47 GMT" ], "Content-Length": [ - "755" + "691" ], "Content-Type": [ "application/json" @@ -2385,28 +2385,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5791cda0-124d-4379-a668-c05f3bddc8a1" + "2fd8b5cb-d476-4ef3-8d73-4f27e826105a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2418,7 +2418,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "819cdb0b-f26c-4975-a1c8-8ba5c35f9130" + "c4e2b3d0-e37b-42fd-9973-421a97211906" ], "Server": [ "Microsoft-IIS/10.0" @@ -2430,22 +2430,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11998" + "11992" ], "x-ms-correlation-request-id": [ - "a4702559-424b-471f-b4d1-256adf934e84" + "029e4f74-3dd6-41e6-8a26-75ab75fa39b3" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112458Z:a4702559-424b-471f-b4d1-256adf934e84" + "JIOINDIACENTRAL:20230216T032001Z:029e4f74-3dd6-41e6-8a26-75ab75fa39b3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:24:57 GMT" + "Thu, 16 Feb 2023 03:20:00 GMT" ], "Content-Length": [ - "305" + "292" ], "Content-Type": [ "application/json" @@ -2454,28 +2454,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5791cda0-124d-4379-a668-c05f3bddc8a1" + "2fd8b5cb-d476-4ef3-8d73-4f27e826105a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2487,7 +2487,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "37ba7861-34dd-4e39-bf10-fa03756f90c5" + "56684110-2d80-439e-ab8a-d98f3695ba47" ], "Server": [ "Microsoft-IIS/10.0" @@ -2499,22 +2499,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11995" + "11989" ], "x-ms-correlation-request-id": [ - "3eacd68f-ad7c-415f-a94d-1e4739dbf027" + "34c35fdc-12b2-447e-a941-1edf0e3a42c9" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112501Z:3eacd68f-ad7c-415f-a94d-1e4739dbf027" + "JIOINDIACENTRAL:20230216T032005Z:34c35fdc-12b2-447e-a941-1edf0e3a42c9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:25:00 GMT" + "Thu, 16 Feb 2023 03:20:05 GMT" ], "Content-Length": [ - "305" + "292" ], "Content-Type": [ "application/json" @@ -2523,28 +2523,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e99421b1-2ee3-48c6-b9c8-4c90d0597545" + "bb35b9d7-5445-4705-b7b2-fceb376b07d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2556,7 +2556,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "09352add-e3fd-4b24-8c01-2003dae35101" + "ec00ab98-6abe-40b4-b109-f4ef17cc1af1" ], "Server": [ "Microsoft-IIS/10.0" @@ -2568,22 +2568,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11992" + "11998" ], "x-ms-correlation-request-id": [ - "68dc3267-4202-4829-8bc7-1ea696719aa2" + "187620be-c5a0-47fb-bcc7-9804f231325b" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112527Z:68dc3267-4202-4829-8bc7-1ea696719aa2" + "JIOINDIACENTRAL:20230216T032044Z:187620be-c5a0-47fb-bcc7-9804f231325b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:25:26 GMT" + "Thu, 16 Feb 2023 03:20:44 GMT" ], "Content-Length": [ - "305" + "292" ], "Content-Type": [ "application/json" @@ -2592,28 +2592,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e99421b1-2ee3-48c6-b9c8-4c90d0597545" + "bb35b9d7-5445-4705-b7b2-fceb376b07d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2625,7 +2625,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8f4dcfe8-ba8f-43b8-b133-44e3b44605e9" + "042bf822-a6a5-4d3f-bba1-0edac399a761" ], "Server": [ "Microsoft-IIS/10.0" @@ -2637,22 +2637,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11989" + "11995" ], "x-ms-correlation-request-id": [ - "36ed6ddd-c11a-4fee-9462-9582b7fa0398" + "c594255a-24ca-4ae3-bae6-6c5b738fda56" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112530Z:36ed6ddd-c11a-4fee-9462-9582b7fa0398" + "JIOINDIACENTRAL:20230216T032049Z:c594255a-24ca-4ae3-bae6-6c5b738fda56" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:25:30 GMT" + "Thu, 16 Feb 2023 03:20:48 GMT" ], "Content-Length": [ - "305" + "292" ], "Content-Type": [ "application/json" @@ -2661,28 +2661,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5791cda0-124d-4379-a668-c05f3bddc8a1" + "2fd8b5cb-d476-4ef3-8d73-4f27e826105a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2694,7 +2694,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e0a74df5-8c58-4f49-b21e-228150abb8e9" + "87ba878f-4e5a-4e67-99ed-4263aef9dc27" ], "Server": [ "Microsoft-IIS/10.0" @@ -2706,22 +2706,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11997" + "11991" ], "x-ms-correlation-request-id": [ - "70d9df1b-e367-4d3f-a297-24cd2104b133" + "75bd1f97-b457-4061-8ae4-86a77e93f362" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112458Z:70d9df1b-e367-4d3f-a297-24cd2104b133" + "JIOINDIACENTRAL:20230216T032002Z:75bd1f97-b457-4061-8ae4-86a77e93f362" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:24:58 GMT" + "Thu, 16 Feb 2023 03:20:01 GMT" ], "Content-Length": [ - "302" + "289" ], "Content-Type": [ "application/json" @@ -2730,28 +2730,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5791cda0-124d-4379-a668-c05f3bddc8a1" + "2fd8b5cb-d476-4ef3-8d73-4f27e826105a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2763,7 +2763,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4336e673-350b-44c2-8fde-731e53fcf9b2" + "2be1e37b-b033-49af-86a5-0e73d752daa4" ], "Server": [ "Microsoft-IIS/10.0" @@ -2775,22 +2775,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11994" + "11988" ], "x-ms-correlation-request-id": [ - "a7def899-5fad-4add-8969-12c0bcaf6070" + "d64263ac-d55a-4cd2-988d-4164c692da42" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112501Z:a7def899-5fad-4add-8969-12c0bcaf6070" + "JIOINDIACENTRAL:20230216T032006Z:d64263ac-d55a-4cd2-988d-4164c692da42" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:25:00 GMT" + "Thu, 16 Feb 2023 03:20:05 GMT" ], "Content-Length": [ - "302" + "289" ], "Content-Type": [ "application/json" @@ -2799,28 +2799,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e99421b1-2ee3-48c6-b9c8-4c90d0597545" + "bb35b9d7-5445-4705-b7b2-fceb376b07d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2832,7 +2832,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5921d9b4-2f7b-49e3-99bf-5e8a8801ba8b" + "9ec9162d-14f8-45f1-8cb8-443c77ed66c4" ], "Server": [ "Microsoft-IIS/10.0" @@ -2844,22 +2844,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11991" + "11997" ], "x-ms-correlation-request-id": [ - "62be6c58-8926-4db2-a857-5a20a77dc8fe" + "9f32626f-dd05-4936-8758-29bd26df281e" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112528Z:62be6c58-8926-4db2-a857-5a20a77dc8fe" + "JIOINDIACENTRAL:20230216T032045Z:9f32626f-dd05-4936-8758-29bd26df281e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:25:28 GMT" + "Thu, 16 Feb 2023 03:20:45 GMT" ], "Content-Length": [ - "302" + "289" ], "Content-Type": [ "application/json" @@ -2868,28 +2868,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e99421b1-2ee3-48c6-b9c8-4c90d0597545" + "bb35b9d7-5445-4705-b7b2-fceb376b07d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2901,7 +2901,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a27aab0b-8cf8-4303-a9d6-e2823da53e1c" + "6d331eef-c929-4b54-b1c2-c8a15532da04" ], "Server": [ "Microsoft-IIS/10.0" @@ -2913,22 +2913,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11988" + "11994" ], "x-ms-correlation-request-id": [ - "e53c619c-c805-4f1d-a4eb-58bc5d096265" + "b0008346-7e2e-46ca-91e2-85976f0a325a" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112530Z:e53c619c-c805-4f1d-a4eb-58bc5d096265" + "JIOINDIACENTRAL:20230216T032050Z:b0008346-7e2e-46ca-91e2-85976f0a325a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:25:30 GMT" + "Thu, 16 Feb 2023 03:20:49 GMT" ], "Content-Length": [ - "302" + "289" ], "Content-Type": [ "application/json" @@ -2937,34 +2937,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5791cda0-124d-4379-a668-c05f3bddc8a1" + "2fd8b5cb-d476-4ef3-8d73-4f27e826105a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "319" + "285" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2973,13 +2973,13 @@ "no-cache" ], "ETag": [ - "\"1D7E125A69B7DCB\"" + "\"1D941B55639FAEB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7e8ca0d9-71dc-47df-9e13-86d2650bd63f" + "2119cb88-cea6-448c-9098-1532779b5612" ], "Server": [ "Microsoft-IIS/10.0" @@ -2994,19 +2994,19 @@ "499" ], "x-ms-correlation-request-id": [ - "d7b562d0-f1b9-4f61-9c93-4c5b605fad42" + "413ded89-06b9-4c5c-9aaf-612aee68dd39" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112506Z:d7b562d0-f1b9-4f61-9c93-4c5b605fad42" + "JIOINDIACENTRAL:20230216T032009Z:413ded89-06b9-4c5c-9aaf-612aee68dd39" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:25:06 GMT" + "Thu, 16 Feb 2023 03:20:09 GMT" ], "Content-Length": [ - "6265" + "7281" ], "Content-Type": [ "application/json" @@ -3015,34 +3015,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:25:03.0333333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot\",\r\n \"name\": \"AppService-PS-UnitTesting/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"appservice-ps-unittesting(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/appservice-ps-unittesting\",\r\n \"repositorySiteName\": \"appservice-ps-unittesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T03:20:07.92\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"appservice-ps-unittesting__5e7e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"appservice-ps-unittesting__testslot\\\\$appservice-ps-unittesting__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e99421b1-2ee3-48c6-b9c8-4c90d0597545" + "bb35b9d7-5445-4705-b7b2-fceb376b07d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "250" + "216" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"Disabled\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3051,13 +3051,13 @@ "no-cache" ], "ETag": [ - "\"1D7E125EC9AE795\"" + "\"1D941B5920AAF00\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "425bfe21-791e-4ee9-a854-ff82c87c3449" + "64bd9325-3afe-46f8-ae9b-24374ee57e69" ], "Server": [ "Microsoft-IIS/10.0" @@ -3069,22 +3069,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "498" + "499" ], "x-ms-correlation-request-id": [ - "eca42ef3-dd10-4010-9638-6b97df63190e" + "8c9c157e-df9e-4921-88cf-e88c1b0d9e37" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112535Z:eca42ef3-dd10-4010-9638-6b97df63190e" + "JIOINDIACENTRAL:20230216T032057Z:8c9c157e-df9e-4921-88cf-e88c1b0d9e37" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:25:34 GMT" + "Thu, 16 Feb 2023 03:20:57 GMT" ], "Content-Length": [ - "6225" + "7246" ], "Content-Type": [ "application/json" @@ -3093,28 +3093,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:25:32.3866667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot\",\r\n \"name\": \"AppService-PS-UnitTesting/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"appservice-ps-unittesting(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/appservice-ps-unittesting\",\r\n \"repositorySiteName\": \"appservice-ps-unittesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T03:20:51.9666667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"appservice-ps-unittesting__5e7e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"appservice-ps-unittesting__testslot\\\\$appservice-ps-unittesting__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcmVzb3VyY2VzPyRmaWx0ZXI9cmVzb3VyY2VUeXBlJTIwZXElMjAnTWljcm9zb2Z0LldlYiUyRkNlcnRpZmljYXRlcycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5XZWIlMkZDZXJ0aWZpY2F0ZXMnJmFwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1d70919-c920-4097-9307-9f635d0d4d61" + "257ecc27-82d0-4a09-9ef1-e26de01f3b4a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.51" + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3123,16 +3123,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11996" ], "x-ms-request-id": [ - "5cf924e7-36f9-40ed-a6e7-8541d0facf16" + "125a4a5a-4e3f-4f43-8f94-79766ce9b9e3" ], "x-ms-correlation-request-id": [ - "5cf924e7-36f9-40ed-a6e7-8541d0facf16" + "125a4a5a-4e3f-4f43-8f94-79766ce9b9e3" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112523Z:5cf924e7-36f9-40ed-a6e7-8541d0facf16" + "JIOINDIACENTRAL:20230216T032033Z:125a4a5a-4e3f-4f43-8f94-79766ce9b9e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3141,7 +3141,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:25:23 GMT" + "Thu, 16 Feb 2023 03:20:32 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3150,31 +3150,31 @@ "-1" ], "Content-Length": [ - "297" + "587" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"name\": \"adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"name\": \"PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"name\": \"psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcmVzb3VyY2VzPyRmaWx0ZXI9cmVzb3VyY2VUeXBlJTIwZXElMjAnTWljcm9zb2Z0LldlYiUyRkNlcnRpZmljYXRlcycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5XZWIlMkZDZXJ0aWZpY2F0ZXMnJmFwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e99421b1-2ee3-48c6-b9c8-4c90d0597545" + "bb35b9d7-5445-4705-b7b2-fceb376b07d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.51" + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3183,16 +3183,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11991" ], "x-ms-request-id": [ - "c89a25ce-572a-4262-83f8-8cc21646740f" + "1cee2a36-6ada-4d42-af6f-dc0969a1c11b" ], "x-ms-correlation-request-id": [ - "c89a25ce-572a-4262-83f8-8cc21646740f" + "1cee2a36-6ada-4d42-af6f-dc0969a1c11b" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112535Z:c89a25ce-572a-4262-83f8-8cc21646740f" + "JIOINDIACENTRAL:20230216T032101Z:1cee2a36-6ada-4d42-af6f-dc0969a1c11b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3201,7 +3201,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:25:35 GMT" + "Thu, 16 Feb 2023 03:21:00 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3210,31 +3210,100 @@ "-1" ], "Content-Length": [ - "297" + "587" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"name\": \"adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"name\": \"PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"name\": \"psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL2Fkb3Jlbm93LWxrZXRtdGVzdGFudHBzMTAtQ2VudHJhbFVTd2Vic3BhY2U/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/PS-UnitTesting-Keyvault-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy9QUy1Vbml0VGVzdGluZy1LZXl2YXVsdC1QUy1Vbml0VGVzdGluZz9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "257ecc27-82d0-4a09-9ef1-e26de01f3b4a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" + ] + }, "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2eb107e7-deac-4f2a-b9ff-6529eb49de3d" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "bd854950-d08a-482b-97f5-946499b0a78f" + ], + "x-ms-routing-request-id": [ + "JIOINDIACENTRAL:20230216T032034Z:bd854950-d08a-482b-97f5-946499b0a78f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Feb 2023 03:20:33 GMT" + ], + "Content-Length": [ + "1081" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"name\": \"PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"password\": null,\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"psunittesting\",\r\n \"hostNames\": [\r\n \"psunittesting\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"psunittesting\",\r\n \"issueDate\": \"2022-07-28T07:11:04+05:30\",\r\n \"expirationDate\": \"2023-07-28T07:21:04+05:30\",\r\n \"thumbprint\": \"E4E04D3CE912AB34F0B94CBC27042E5022C961E1\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourcegroups/rg-ps-unittesting/providers/microsoft.keyvault/vaults/ps-unittesting-keyvault\",\r\n \"keyVaultSecretName\": \"ps-unittesting\",\r\n \"keyVaultSecretStatus\": \"KeyVaultSecretDoesNotExist\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/PS-UnitTesting-Keyvault-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy9QUy1Vbml0VGVzdGluZy1LZXl2YXVsdC1QUy1Vbml0VGVzdGluZz9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "c1d70919-c920-4097-9307-9f635d0d4d61" + "bb35b9d7-5445-4705-b7b2-fceb376b07d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3246,7 +3315,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "460588d9-a867-425a-8aab-ee001606313a" + "81fc8c5b-12f5-4cf1-a8fa-ef88f47e1834" ], "Server": [ "Microsoft-IIS/10.0" @@ -3258,22 +3327,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11994" ], "x-ms-correlation-request-id": [ - "9ee820ff-c1ae-4c1e-b3f8-5c51ea3e6926" + "012106a3-cd50-4146-9c8b-3f23b94752a3" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112524Z:9ee820ff-c1ae-4c1e-b3f8-5c51ea3e6926" + "JIOINDIACENTRAL:20230216T032101Z:012106a3-cd50-4146-9c8b-3f23b94752a3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:25:23 GMT" + "Thu, 16 Feb 2023 03:21:01 GMT" ], "Content-Length": [ - "1157" + "1081" ], "Content-Type": [ "application/json" @@ -3282,28 +3351,97 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"name\": \"adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"password\": null,\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.adorenow.net,adorenow.net\",\r\n \"hostNames\": [\r\n \"*.adorenow.net\",\r\n \"adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"Go Daddy Secure Certificate Authority - G2\",\r\n \"issueDate\": \"2021-08-30T09:36:25+05:30\",\r\n \"expirationDate\": \"2022-09-29T12:46:02+05:30\",\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/lketmtestantps10/providers/microsoft.keyvault/vaults/ssltesting\",\r\n \"keyVaultSecretName\": \"adorenowadb85164-4f85-4ba7-8721-7071bbc3ecb1\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"lketmtestantps10\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"name\": \"PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"password\": null,\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"psunittesting\",\r\n \"hostNames\": [\r\n \"psunittesting\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"psunittesting\",\r\n \"issueDate\": \"2022-07-28T07:11:04+05:30\",\r\n \"expirationDate\": \"2023-07-28T07:21:04+05:30\",\r\n \"thumbprint\": \"E4E04D3CE912AB34F0B94CBC27042E5022C961E1\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourcegroups/rg-ps-unittesting/providers/microsoft.keyvault/vaults/ps-unittesting-keyvault\",\r\n \"keyVaultSecretName\": \"ps-unittesting\",\r\n \"keyVaultSecretStatus\": \"KeyVaultSecretDoesNotExist\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL2Fkb3Jlbm93LWxrZXRtdGVzdGFudHBzMTAtQ2VudHJhbFVTd2Vic3BhY2U/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy9wc3VuaXR0ZXN0aW5nLVJHLVBTLVVuaXRUZXN0aW5nLUNlbnRyYWxVU3dlYnNwYWNlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "257ecc27-82d0-4a09-9ef1-e26de01f3b4a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" + ] + }, "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6b87c4a5-d07d-4d15-a33c-549abcf44477" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "b748ed3e-871d-4605-ad2a-f6ad94ee91c1" + ], + "x-ms-routing-request-id": [ + "JIOINDIACENTRAL:20230216T032034Z:b748ed3e-871d-4605-ad2a-f6ad94ee91c1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Feb 2023 03:20:33 GMT" + ], + "Content-Length": [ + "1211" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"name\": \"psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"password\": null,\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.psunittesting.com,psunittesting.com\",\r\n \"hostNames\": [\r\n \"*.psunittesting.com\",\r\n \"psunittesting.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"Go Daddy Secure Certificate Authority - G2\",\r\n \"issueDate\": \"2023-02-16T07:42:44+05:30\",\r\n \"expirationDate\": \"2024-02-16T07:42:44+05:30\",\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourcegroups/rg-ps-unittesting/providers/microsoft.keyvault/vaults/ps-unittesting-keyvault\",\r\n \"keyVaultSecretName\": \"psunittestingaa142621-b4d5-445e-b940-7b9a0cc4e414\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy9wc3VuaXR0ZXN0aW5nLVJHLVBTLVVuaXRUZXN0aW5nLUNlbnRyYWxVU3dlYnNwYWNlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "e99421b1-2ee3-48c6-b9c8-4c90d0597545" + "bb35b9d7-5445-4705-b7b2-fceb376b07d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3315,7 +3453,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7b10f001-1a75-4d69-9a7d-8faecbdcf47c" + "36372de6-6865-48b5-8ff6-a6cab9c1f0ac" ], "Server": [ "Microsoft-IIS/10.0" @@ -3327,22 +3465,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11993" ], "x-ms-correlation-request-id": [ - "9da9e9c1-6e9a-4245-8214-85660ae31d16" + "0b017c22-d39b-405d-b4af-b3de0d325dda" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112535Z:9da9e9c1-6e9a-4245-8214-85660ae31d16" + "JIOINDIACENTRAL:20230216T032102Z:0b017c22-d39b-405d-b4af-b3de0d325dda" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:25:35 GMT" + "Thu, 16 Feb 2023 03:21:02 GMT" ], "Content-Length": [ - "1157" + "1211" ], "Content-Type": [ "application/json" @@ -3351,28 +3489,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"name\": \"adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"password\": null,\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.adorenow.net,adorenow.net\",\r\n \"hostNames\": [\r\n \"*.adorenow.net\",\r\n \"adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"Go Daddy Secure Certificate Authority - G2\",\r\n \"issueDate\": \"2021-08-30T09:36:25+05:30\",\r\n \"expirationDate\": \"2022-09-29T12:46:02+05:30\",\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/lketmtestantps10/providers/microsoft.keyvault/vaults/ssltesting\",\r\n \"keyVaultSecretName\": \"adorenowadb85164-4f85-4ba7-8721-7071bbc3ecb1\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"lketmtestantps10\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"name\": \"psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"password\": null,\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.psunittesting.com,psunittesting.com\",\r\n \"hostNames\": [\r\n \"*.psunittesting.com\",\r\n \"psunittesting.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"Go Daddy Secure Certificate Authority - G2\",\r\n \"issueDate\": \"2023-02-16T07:42:44+05:30\",\r\n \"expirationDate\": \"2024-02-16T07:42:44+05:30\",\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourcegroups/rg-ps-unittesting/providers/microsoft.keyvault/vaults/ps-unittesting-keyvault\",\r\n \"keyVaultSecretName\": \"psunittestingaa142621-b4d5-445e-b940-7b9a0cc4e414\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL2Fkb3Jlbm93LWxrZXRtdGVzdGFudHBzMTAtQ2VudHJhbFVTd2Vic3BhY2U/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy9wc3VuaXR0ZXN0aW5nLVJHLVBTLVVuaXRUZXN0aW5nLUNlbnRyYWxVU3dlYnNwYWNlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1d70919-c920-4097-9307-9f635d0d4d61" + "257ecc27-82d0-4a09-9ef1-e26de01f3b4a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3393,25 +3531,25 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-request-id": [ - "249ffa5c-5464-45a3-96b7-5dd159d527dd" + "f943e365-3b91-4b85-9598-5cecba5ba85a" ], "x-ms-correlation-request-id": [ - "249ffa5c-5464-45a3-96b7-5dd159d527dd" + "f943e365-3b91-4b85-9598-5cecba5ba85a" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112525Z:249ffa5c-5464-45a3-96b7-5dd159d527dd" + "JIOINDIACENTRAL:20230216T032036Z:f943e365-3b91-4b85-9598-5cecba5ba85a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:25:24 GMT" + "Thu, 16 Feb 2023 03:20:35 GMT" ], "Content-Length": [ - "779" + "799" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3420,28 +3558,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"Code\": \"Conflict\",\r\n \"Message\": \"Cannot remove certificate with thumbprint 6156D1475113476C55A3064D44DED9ECA0B33864 because it is used for hostname testslot.adorenow.net.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot remove certificate with thumbprint 6156D1475113476C55A3064D44DED9ECA0B33864 because it is used for hostname testslot.adorenow.net.\"\r\n },\r\n {\r\n \"Code\": \"Conflict\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"ExtendedCode\": \"04035\",\r\n \"MessageTemplate\": \"Cannot remove certificate with thumbprint {0} because it is used for hostname {1}.\",\r\n \"Parameters\": [\r\n \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"testslot.adorenow.net\"\r\n ],\r\n \"Code\": \"Conflict\",\r\n \"Message\": \"Cannot remove certificate with thumbprint 6156D1475113476C55A3064D44DED9ECA0B33864 because it is used for hostname testslot.adorenow.net.\"\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}", + "ResponseBody": "{\r\n \"Code\": \"Conflict\",\r\n \"Message\": \"Cannot remove certificate with thumbprint 210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41 because it is used for hostname testslot.psunittesting.com.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot remove certificate with thumbprint 210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41 because it is used for hostname testslot.psunittesting.com.\"\r\n },\r\n {\r\n \"Code\": \"Conflict\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"ExtendedCode\": \"04035\",\r\n \"MessageTemplate\": \"Cannot remove certificate with thumbprint {0} because it is used for hostname {1}.\",\r\n \"Parameters\": [\r\n \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"testslot.psunittesting.com\"\r\n ],\r\n \"Code\": \"Conflict\",\r\n \"Message\": \"Cannot remove certificate with thumbprint 210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41 because it is used for hostname testslot.psunittesting.com.\"\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}", "StatusCode": 409 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL2Fkb3Jlbm93LWxrZXRtdGVzdGFudHBzMTAtQ2VudHJhbFVTd2Vic3BhY2U/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy9wc3VuaXR0ZXN0aW5nLVJHLVBTLVVuaXRUZXN0aW5nLUNlbnRyYWxVU3dlYnNwYWNlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e99421b1-2ee3-48c6-b9c8-4c90d0597545" + "bb35b9d7-5445-4705-b7b2-fceb376b07d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3453,7 +3591,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "802ae6f1-609b-4c17-8108-d2b8be55ef2e" + "c4a5d12b-badc-40b0-8faf-ac0df9a4f67f" ], "Server": [ "Microsoft-IIS/10.0" @@ -3465,19 +3603,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-correlation-request-id": [ - "bbdec345-1fff-42a9-b77c-cfbdee336c53" + "4ddbfd25-f5ab-438f-ba44-ea5b4b9ecbdd" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112539Z:bbdec345-1fff-42a9-b77c-cfbdee336c53" + "JIOINDIACENTRAL:20230216T032105Z:4ddbfd25-f5ab-438f-ba44-ea5b4b9ecbdd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:25:38 GMT" + "Thu, 16 Feb 2023 03:21:05 GMT" ], "Expires": [ "-1" @@ -3492,6 +3630,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "04b0639d-85d8-445a-bada-8da78e50ff30" + "SubscriptionId": "3e929699-b7a4-46cc-97cf-8a95e04318b8" } } \ No newline at end of file diff --git a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TestGetNewWebAppSSLBinding.json b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TestGetNewWebAppSSLBinding.json index f6c35b11016a..77e40c39f5d0 100644 --- a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TestGetNewWebAppSSLBinding.json +++ b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TestGetNewWebAppSSLBinding.json @@ -1,24 +1,24 @@ { "Entries": [ { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5af4f4d6-d9f4-4a8f-81a6-65899d337c82" + "d71fe6b8-8355-45f2-bd9f-94005b82ec98" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -27,13 +27,13 @@ "no-cache" ], "ETag": [ - "\"1D7E12631649080\"" + "\"1D941C680625BC0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e9dd2817-ca4e-4c5c-b1eb-749f82f88237" + "bb2d220f-1102-4675-8a30-8ccb5a1e87bf" ], "Server": [ "Microsoft-IIS/10.0" @@ -48,19 +48,19 @@ "11999" ], "x-ms-correlation-request-id": [ - "8211260c-2c11-4dc9-ae9b-4685d2f25d97" + "9e38799b-0421-4743-843f-14876dccebcc" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112735Z:8211260c-2c11-4dc9-ae9b-4685d2f25d97" + "CENTRALINDIA:20230216T052250Z:9e38799b-0421-4743-843f-14876dccebcc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:27:34 GMT" + "Thu, 16 Feb 2023 05:22:49 GMT" ], "Content-Length": [ - "5940" + "6928" ], "Content-Type": [ "application/json" @@ -69,28 +69,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"IpBasedEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": \"52.165.151.82\",\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:26:58.44\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:21:19.74\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5af4f4d6-d9f4-4a8f-81a6-65899d337c82" + "d71fe6b8-8355-45f2-bd9f-94005b82ec98" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -99,13 +99,13 @@ "no-cache" ], "ETag": [ - "\"1D7E12631649080\"" + "\"1D941C680625BC0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "af3b4efe-4dd6-4aae-9eae-c599c6758430" + "77c9bdd3-bbab-4ec9-b2fc-2673f822bba9" ], "Server": [ "Microsoft-IIS/10.0" @@ -120,19 +120,19 @@ "11997" ], "x-ms-correlation-request-id": [ - "142b9235-3c7a-45cf-a796-f9a1c26b778e" + "21b9628c-2e73-4080-be24-b40ce92cf4ca" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112738Z:142b9235-3c7a-45cf-a796-f9a1c26b778e" + "CENTRALINDIA:20230216T052254Z:21b9628c-2e73-4080-be24-b40ce92cf4ca" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:27:37 GMT" + "Thu, 16 Feb 2023 05:22:54 GMT" ], "Content-Length": [ - "5940" + "6928" ], "Content-Type": [ "application/json" @@ -141,28 +141,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"IpBasedEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": \"52.165.151.82\",\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:26:58.44\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:21:19.74\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "754682b7-3f41-4cca-b00e-a8bff0e6d185" + "03a27e4a-4469-460d-8a8a-4e11b1167492" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -171,13 +171,13 @@ "no-cache" ], "ETag": [ - "\"1D7E1264D2612EB\"" + "\"1D941C6BC2965E0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "39434285-733f-4c15-b441-e443eaacda9a" + "8506e7a6-53d7-4a8c-bc9d-20c09efc3625" ], "Server": [ "Microsoft-IIS/10.0" @@ -189,22 +189,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11997" ], "x-ms-correlation-request-id": [ - "e85cfdb0-a8d1-4432-8470-09ab4efefd93" + "11fe3ba0-f402-4525-ac7c-4d6b3910089d" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112805Z:e85cfdb0-a8d1-4432-8470-09ab4efefd93" + "JIOINDIACENTRAL:20230216T052327Z:11fe3ba0-f402-4525-ac7c-4d6b3910089d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:04 GMT" + "Thu, 16 Feb 2023 05:23:27 GMT" ], "Content-Length": [ - "5930" + "6928" ], "Content-Type": [ "application/json" @@ -213,28 +213,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:27:45.0066667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:23:00.03\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f8573e3-cff4-4eb3-a062-ff55a47d8811" + "2921740c-44ac-44d5-965f-ce4ee96f0744" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -243,13 +243,13 @@ "no-cache" ], "ETag": [ - "\"1D7E1264D2612EB\"" + "\"1D941C6BC2965E0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "befcb693-d8bd-4298-9ba9-d84b46732c9a" + "e290f14c-dbaa-4119-baa7-b7b8567e6404" ], "Server": [ "Microsoft-IIS/10.0" @@ -261,22 +261,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11994" ], "x-ms-correlation-request-id": [ - "16846b29-8a99-4743-bbf8-39e9c7195721" + "8f26dfb9-3622-41a4-a283-9b1bbda44ed7" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112807Z:16846b29-8a99-4743-bbf8-39e9c7195721" + "JIOINDIACENTRAL:20230216T052334Z:8f26dfb9-3622-41a4-a283-9b1bbda44ed7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:07 GMT" + "Thu, 16 Feb 2023 05:23:34 GMT" ], "Content-Length": [ - "5930" + "6928" ], "Content-Type": [ "application/json" @@ -285,28 +285,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:27:45.0066667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:23:00.03\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17983aff-1521-4969-b776-95cb9ce2fd48" + "bd288e84-dad3-4154-88af-5819c42c970f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -315,13 +315,13 @@ "no-cache" ], "ETag": [ - "\"1D7E1264D2612EB\"" + "\"1D941C6BC2965E0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f894c07b-3b7f-42f8-aa14-a0ca4e5cfae8" + "55e31273-c113-4465-af6a-57e67230a36e" ], "Server": [ "Microsoft-IIS/10.0" @@ -333,22 +333,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11999" ], "x-ms-correlation-request-id": [ - "2cbfb9c8-02c6-4f1e-9bdb-285eef447564" + "a9f69806-4f24-4ebe-9b00-03e0597699e2" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112817Z:2cbfb9c8-02c6-4f1e-9bdb-285eef447564" + "JIOINDIACENTRAL:20230216T052355Z:a9f69806-4f24-4ebe-9b00-03e0597699e2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:17 GMT" + "Thu, 16 Feb 2023 05:23:54 GMT" ], "Content-Length": [ - "5930" + "6928" ], "Content-Type": [ "application/json" @@ -357,28 +357,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:27:45.0066667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:23:00.03\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17983aff-1521-4969-b776-95cb9ce2fd48" + "bd288e84-dad3-4154-88af-5819c42c970f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -387,13 +387,13 @@ "no-cache" ], "ETag": [ - "\"1D7E1264D2612EB\"" + "\"1D941C6BC2965E0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2d0b6d89-255d-470f-a571-81f077499a10" + "d1dad31e-4f61-46cb-84a6-734fee7b33a1" ], "Server": [ "Microsoft-IIS/10.0" @@ -405,22 +405,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11997" ], "x-ms-correlation-request-id": [ - "f2e40060-e1b4-4a11-a0b0-39c4c9565b35" + "cd423272-4b88-448f-8f19-061dbfaa0879" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112820Z:f2e40060-e1b4-4a11-a0b0-39c4c9565b35" + "JIOINDIACENTRAL:20230216T052400Z:cd423272-4b88-448f-8f19-061dbfaa0879" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:19 GMT" + "Thu, 16 Feb 2023 05:24:00 GMT" ], "Content-Length": [ - "5930" + "6928" ], "Content-Type": [ "application/json" @@ -429,28 +429,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:27:45.0066667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:23:00.03\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5af4f4d6-d9f4-4a8f-81a6-65899d337c82" + "d71fe6b8-8355-45f2-bd9f-94005b82ec98" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -462,7 +462,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dc04e44a-e54f-4b5e-ad09-ec8a1c63bb57" + "9031e2af-ce54-4079-bfea-afcff0fa0841" ], "Server": [ "Microsoft-IIS/10.0" @@ -477,19 +477,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "ce018646-94d2-4db2-9f86-9d50999f5741" + "3f0d000e-d8b8-497b-ae46-814d7c961806" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112735Z:ce018646-94d2-4db2-9f86-9d50999f5741" + "CENTRALINDIA:20230216T052251Z:3f0d000e-d8b8-497b-ae46-814d7c961806" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:27:35 GMT" + "Thu, 16 Feb 2023 05:22:50 GMT" ], "Content-Length": [ - "4196" + "4017" ], "Content-Type": [ "application/json" @@ -498,28 +498,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$AppService-PS-UnitTesting\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5af4f4d6-d9f4-4a8f-81a6-65899d337c82" + "d71fe6b8-8355-45f2-bd9f-94005b82ec98" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -531,7 +531,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b4e33792-5773-493d-88a1-3baa62b21801" + "2dfe613c-c733-4e43-bcb6-e717b83fd6b1" ], "Server": [ "Microsoft-IIS/10.0" @@ -546,19 +546,19 @@ "11996" ], "x-ms-correlation-request-id": [ - "084d6c1d-7e4a-4817-903a-7354c6ebed7d" + "324f0cb7-572a-48de-97f1-4f54af69e834" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112738Z:084d6c1d-7e4a-4817-903a-7354c6ebed7d" + "CENTRALINDIA:20230216T052255Z:324f0cb7-572a-48de-97f1-4f54af69e834" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:27:38 GMT" + "Thu, 16 Feb 2023 05:22:55 GMT" ], "Content-Length": [ - "4196" + "4017" ], "Content-Type": [ "application/json" @@ -567,28 +567,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$AppService-PS-UnitTesting\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "754682b7-3f41-4cca-b00e-a8bff0e6d185" + "03a27e4a-4469-460d-8a8a-4e11b1167492" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -600,7 +600,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "634bec91-942d-45bb-9b8e-ff2fb87de150" + "244e8249-30e9-4180-8e59-5f99578a8e61" ], "Server": [ "Microsoft-IIS/10.0" @@ -612,22 +612,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11996" ], "x-ms-correlation-request-id": [ - "fa5c562b-3f39-4e6a-b15d-b3166c08bc16" + "e6e95a3e-f0b0-47dc-a0e4-763523ebcecb" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112805Z:fa5c562b-3f39-4e6a-b15d-b3166c08bc16" + "JIOINDIACENTRAL:20230216T052328Z:e6e95a3e-f0b0-47dc-a0e4-763523ebcecb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:05 GMT" + "Thu, 16 Feb 2023 05:23:28 GMT" ], "Content-Length": [ - "4196" + "4017" ], "Content-Type": [ "application/json" @@ -636,28 +636,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$AppService-PS-UnitTesting\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f8573e3-cff4-4eb3-a062-ff55a47d8811" + "2921740c-44ac-44d5-965f-ce4ee96f0744" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -669,7 +669,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4b33c0e4-e98c-42fa-abc7-b8f4b48df194" + "972eb976-d40f-46e2-9e5d-e55d1af219bf" ], "Server": [ "Microsoft-IIS/10.0" @@ -681,22 +681,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11993" ], "x-ms-correlation-request-id": [ - "eb88f800-d469-450f-8002-21bdd6410987" + "54b0e542-7395-4129-998c-8c3789a13da6" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112808Z:eb88f800-d469-450f-8002-21bdd6410987" + "JIOINDIACENTRAL:20230216T052334Z:54b0e542-7395-4129-998c-8c3789a13da6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:07 GMT" + "Thu, 16 Feb 2023 05:23:34 GMT" ], "Content-Length": [ - "4196" + "4017" ], "Content-Type": [ "application/json" @@ -705,28 +705,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$AppService-PS-UnitTesting\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17983aff-1521-4969-b776-95cb9ce2fd48" + "bd288e84-dad3-4154-88af-5819c42c970f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -738,7 +738,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e6373a3b-242b-4e15-bb64-66b828399dc1" + "ae37f02e-3593-4cc5-b56d-ba4311015034" ], "Server": [ "Microsoft-IIS/10.0" @@ -750,22 +750,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11998" ], "x-ms-correlation-request-id": [ - "457b65e7-a091-438f-821b-21061cf97b99" + "0d717817-5d98-4388-916a-5ded4d8dd4aa" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112817Z:457b65e7-a091-438f-821b-21061cf97b99" + "JIOINDIACENTRAL:20230216T052357Z:0d717817-5d98-4388-916a-5ded4d8dd4aa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:17 GMT" + "Thu, 16 Feb 2023 05:23:56 GMT" ], "Content-Length": [ - "4196" + "4017" ], "Content-Type": [ "application/json" @@ -774,28 +774,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$AppService-PS-UnitTesting\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17983aff-1521-4969-b776-95cb9ce2fd48" + "bd288e84-dad3-4154-88af-5819c42c970f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -807,7 +807,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a1cb36e3-9099-47ad-82e8-2ed2075bd286" + "b77db2bb-c2ad-4408-a162-d14f41234088" ], "Server": [ "Microsoft-IIS/10.0" @@ -819,22 +819,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11996" ], "x-ms-correlation-request-id": [ - "804b3bd2-2214-4540-ba8c-ad9c60750b26" + "fd15c8fa-5f95-49b4-bbb8-a30d56068f06" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112820Z:804b3bd2-2214-4540-ba8c-ad9c60750b26" + "JIOINDIACENTRAL:20230216T052401Z:fd15c8fa-5f95-49b4-bbb8-a30d56068f06" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:20 GMT" + "Thu, 16 Feb 2023 05:24:00 GMT" ], "Content-Length": [ - "4196" + "4017" ], "Content-Type": [ "application/json" @@ -843,28 +843,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$AppService-PS-UnitTesting\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5af4f4d6-d9f4-4a8f-81a6-65899d337c82" + "d71fe6b8-8355-45f2-bd9f-94005b82ec98" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -876,7 +876,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5dad4806-1190-45a8-bdc1-eec8fe4ee821" + "7fb2588a-5e77-4f79-b151-980531e74e75" ], "Server": [ "Microsoft-IIS/10.0" @@ -891,19 +891,19 @@ "11999" ], "x-ms-correlation-request-id": [ - "03938c9d-0215-4b80-89af-58c3abd8d80c" + "075d87df-a922-4a2f-8809-35b2a2179c20" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112736Z:03938c9d-0215-4b80-89af-58c3abd8d80c" + "CENTRALINDIA:20230216T052252Z:075d87df-a922-4a2f-8809-35b2a2179c20" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:27:36 GMT" + "Thu, 16 Feb 2023 05:22:51 GMT" ], "Content-Length": [ - "740" + "676" ], "Content-Type": [ "application/json" @@ -912,28 +912,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5af4f4d6-d9f4-4a8f-81a6-65899d337c82" + "d71fe6b8-8355-45f2-bd9f-94005b82ec98" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -945,7 +945,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "567c1cf5-1649-4e28-b1d6-cd9f21bdf916" + "2563b78e-8787-4ccc-b19a-463811e663b4" ], "Server": [ "Microsoft-IIS/10.0" @@ -960,19 +960,19 @@ "11996" ], "x-ms-correlation-request-id": [ - "777f8505-1cfb-4284-a3de-e50230f57f4d" + "a1472347-1314-4c96-8ad8-3b9de0d50be5" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112739Z:777f8505-1cfb-4284-a3de-e50230f57f4d" + "CENTRALINDIA:20230216T052256Z:a1472347-1314-4c96-8ad8-3b9de0d50be5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:27:38 GMT" + "Thu, 16 Feb 2023 05:22:55 GMT" ], "Content-Length": [ - "740" + "676" ], "Content-Type": [ "application/json" @@ -981,28 +981,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "754682b7-3f41-4cca-b00e-a8bff0e6d185" + "03a27e4a-4469-460d-8a8a-4e11b1167492" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1014,7 +1014,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cd59a79d-ac47-4a57-b6f2-66b8a400c77e" + "55fb2b29-6c55-45d9-a227-da82636ee2ce" ], "Server": [ "Microsoft-IIS/10.0" @@ -1026,22 +1026,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11993" + "11996" ], "x-ms-correlation-request-id": [ - "48c6b109-9805-447f-a490-71dd73fab342" + "a4b9b89f-0a36-4132-aebc-58bc18c32ab2" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112806Z:48c6b109-9805-447f-a490-71dd73fab342" + "JIOINDIACENTRAL:20230216T052329Z:a4b9b89f-0a36-4132-aebc-58bc18c32ab2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:05 GMT" + "Thu, 16 Feb 2023 05:23:28 GMT" ], "Content-Length": [ - "740" + "676" ], "Content-Type": [ "application/json" @@ -1050,28 +1050,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f8573e3-cff4-4eb3-a062-ff55a47d8811" + "2921740c-44ac-44d5-965f-ce4ee96f0744" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1083,7 +1083,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8a24bbf0-2a03-44e8-bee1-e7084c63e228" + "4cf605bc-562d-4b5f-8c50-be9b83662bba" ], "Server": [ "Microsoft-IIS/10.0" @@ -1095,22 +1095,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11990" + "11999" ], "x-ms-correlation-request-id": [ - "b7c313b1-cc5b-46d6-86c0-cf1e301cb143" + "938b5ce6-4974-44d7-af4d-a7966f3f78e4" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112809Z:b7c313b1-cc5b-46d6-86c0-cf1e301cb143" + "JIOINDIACENTRAL:20230216T052336Z:938b5ce6-4974-44d7-af4d-a7966f3f78e4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:09 GMT" + "Thu, 16 Feb 2023 05:23:36 GMT" ], "Content-Length": [ - "740" + "676" ], "Content-Type": [ "application/json" @@ -1119,28 +1119,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17983aff-1521-4969-b776-95cb9ce2fd48" + "bd288e84-dad3-4154-88af-5819c42c970f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1152,7 +1152,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2fa61556-9cc0-47a2-9e8f-a62fd8bb2f5b" + "baa094f5-7940-47fa-9d5c-27f27d69d89d" ], "Server": [ "Microsoft-IIS/10.0" @@ -1164,22 +1164,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11987" + "11999" ], "x-ms-correlation-request-id": [ - "97a9b5e6-ac36-492c-9690-0a59f1b918c5" + "b195d073-c2d7-4c1f-ab92-f0102d47041c" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112818Z:97a9b5e6-ac36-492c-9690-0a59f1b918c5" + "JIOINDIACENTRAL:20230216T052358Z:b195d073-c2d7-4c1f-ab92-f0102d47041c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:18 GMT" + "Thu, 16 Feb 2023 05:23:57 GMT" ], "Content-Length": [ - "740" + "676" ], "Content-Type": [ "application/json" @@ -1188,28 +1188,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17983aff-1521-4969-b776-95cb9ce2fd48" + "bd288e84-dad3-4154-88af-5819c42c970f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1221,7 +1221,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7bfdb8e4-97ff-4fdd-add2-4286da78eb7c" + "eb3adc43-1503-4f8c-8001-b0f71b214713" ], "Server": [ "Microsoft-IIS/10.0" @@ -1233,22 +1233,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11984" + "11996" ], "x-ms-correlation-request-id": [ - "b5f57398-0c90-4909-8d4e-f33df5f5473b" + "2786f762-8445-48c7-870f-f453f8677abb" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112821Z:b5f57398-0c90-4909-8d4e-f33df5f5473b" + "JIOINDIACENTRAL:20230216T052402Z:2786f762-8445-48c7-870f-f453f8677abb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:20 GMT" + "Thu, 16 Feb 2023 05:24:01 GMT" ], "Content-Length": [ - "740" + "676" ], "Content-Type": [ "application/json" @@ -1257,28 +1257,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5af4f4d6-d9f4-4a8f-81a6-65899d337c82" + "d71fe6b8-8355-45f2-bd9f-94005b82ec98" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1290,7 +1290,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e0453779-3be6-4f27-ad5e-7b4a55fb3fc7" + "9b4803db-5815-4bb0-93e5-d288d50997ab" ], "Server": [ "Microsoft-IIS/10.0" @@ -1305,19 +1305,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "7e35d41b-e652-4c17-b864-f69c4f6b4c8d" + "c91251ce-cbe4-4969-ae07-2494ab19767d" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112737Z:7e35d41b-e652-4c17-b864-f69c4f6b4c8d" + "CENTRALINDIA:20230216T052253Z:c91251ce-cbe4-4969-ae07-2494ab19767d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:27:36 GMT" + "Thu, 16 Feb 2023 05:22:53 GMT" ], "Content-Length": [ - "290" + "277" ], "Content-Type": [ "application/json" @@ -1326,28 +1326,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5af4f4d6-d9f4-4a8f-81a6-65899d337c82" + "d71fe6b8-8355-45f2-bd9f-94005b82ec98" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1359,7 +1359,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "79e6ce06-73ed-46aa-ba85-1557bac5bd45" + "042011c3-2c04-488d-9d1c-ad6914f53807" ], "Server": [ "Microsoft-IIS/10.0" @@ -1374,19 +1374,19 @@ "11995" ], "x-ms-correlation-request-id": [ - "72a0f14d-f868-44de-b475-af81cedede73" + "6fc79b57-964f-4532-bf19-e16003d0c61d" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112739Z:72a0f14d-f868-44de-b475-af81cedede73" + "CENTRALINDIA:20230216T052256Z:6fc79b57-964f-4532-bf19-e16003d0c61d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:27:39 GMT" + "Thu, 16 Feb 2023 05:22:56 GMT" ], "Content-Length": [ - "290" + "277" ], "Content-Type": [ "application/json" @@ -1395,28 +1395,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "754682b7-3f41-4cca-b00e-a8bff0e6d185" + "03a27e4a-4469-460d-8a8a-4e11b1167492" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1428,7 +1428,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a839a3e9-38fa-42bc-bb75-dc69e9a61be9" + "70dc744d-662e-4efe-957a-010a2aa2064a" ], "Server": [ "Microsoft-IIS/10.0" @@ -1440,22 +1440,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11992" + "11995" ], "x-ms-correlation-request-id": [ - "e43a6b68-dd4e-4e3d-82cb-283b827d9eac" + "ca464bde-9a94-475a-968a-b6de68884b58" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112806Z:e43a6b68-dd4e-4e3d-82cb-283b827d9eac" + "JIOINDIACENTRAL:20230216T052330Z:ca464bde-9a94-475a-968a-b6de68884b58" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:06 GMT" + "Thu, 16 Feb 2023 05:23:30 GMT" ], "Content-Length": [ - "290" + "277" ], "Content-Type": [ "application/json" @@ -1464,28 +1464,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f8573e3-cff4-4eb3-a062-ff55a47d8811" + "2921740c-44ac-44d5-965f-ce4ee96f0744" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1497,7 +1497,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a6524d78-5f5a-4f37-a83c-68a326163ef1" + "1642b9fb-812b-4a2d-98a8-95829141a596" ], "Server": [ "Microsoft-IIS/10.0" @@ -1509,22 +1509,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11989" + "11998" ], "x-ms-correlation-request-id": [ - "81db3de3-9737-4a32-a334-c49dfa693866" + "18b9179a-8e3a-4380-8849-e9bcce32978e" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112810Z:81db3de3-9737-4a32-a334-c49dfa693866" + "JIOINDIACENTRAL:20230216T052338Z:18b9179a-8e3a-4380-8849-e9bcce32978e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:09 GMT" + "Thu, 16 Feb 2023 05:23:37 GMT" ], "Content-Length": [ - "290" + "277" ], "Content-Type": [ "application/json" @@ -1533,28 +1533,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17983aff-1521-4969-b776-95cb9ce2fd48" + "bd288e84-dad3-4154-88af-5819c42c970f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1566,7 +1566,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "31f1c6d2-653b-4e62-bcab-2a92e126e20e" + "8e48384f-6094-4ddc-b0b0-c459603f748a" ], "Server": [ "Microsoft-IIS/10.0" @@ -1578,22 +1578,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11986" + "11998" ], "x-ms-correlation-request-id": [ - "a700a7cd-de78-443c-81cd-6f20af36a3b9" + "5ea2a748-a41e-4c94-9864-2486b5d683a8" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112818Z:a700a7cd-de78-443c-81cd-6f20af36a3b9" + "JIOINDIACENTRAL:20230216T052359Z:5ea2a748-a41e-4c94-9864-2486b5d683a8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:18 GMT" + "Thu, 16 Feb 2023 05:23:58 GMT" ], "Content-Length": [ - "290" + "277" ], "Content-Type": [ "application/json" @@ -1602,28 +1602,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17983aff-1521-4969-b776-95cb9ce2fd48" + "bd288e84-dad3-4154-88af-5819c42c970f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1635,7 +1635,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d5f6f6cf-0a83-4dbf-8626-412fa990016f" + "29627436-aa71-4131-9eaf-ad3819cb650d" ], "Server": [ "Microsoft-IIS/10.0" @@ -1647,22 +1647,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11983" + "11995" ], "x-ms-correlation-request-id": [ - "47867526-f1cf-45d7-bdce-568518b8fbc0" + "52d6f5ef-0d39-4fc7-8793-4355b4321a42" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112821Z:47867526-f1cf-45d7-bdce-568518b8fbc0" + "JIOINDIACENTRAL:20230216T052403Z:52d6f5ef-0d39-4fc7-8793-4355b4321a42" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:21 GMT" + "Thu, 16 Feb 2023 05:24:02 GMT" ], "Content-Length": [ - "290" + "277" ], "Content-Type": [ "application/json" @@ -1671,28 +1671,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5af4f4d6-d9f4-4a8f-81a6-65899d337c82" + "d71fe6b8-8355-45f2-bd9f-94005b82ec98" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1704,7 +1704,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cb2448ac-4bf6-43b3-9059-b9d8f8e5e672" + "bdcc3f08-eb8a-4c76-af9c-390086a78e90" ], "Server": [ "Microsoft-IIS/10.0" @@ -1719,19 +1719,19 @@ "11997" ], "x-ms-correlation-request-id": [ - "c46e3e8d-0393-434f-99b8-739ecfddd25e" + "a67a8721-3f75-460d-a9de-a8de42e3a9f6" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112737Z:c46e3e8d-0393-434f-99b8-739ecfddd25e" + "CENTRALINDIA:20230216T052254Z:a67a8721-3f75-460d-a9de-a8de42e3a9f6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:27:37 GMT" + "Thu, 16 Feb 2023 05:22:53 GMT" ], "Content-Length": [ - "287" + "274" ], "Content-Type": [ "application/json" @@ -1740,28 +1740,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5af4f4d6-d9f4-4a8f-81a6-65899d337c82" + "d71fe6b8-8355-45f2-bd9f-94005b82ec98" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1773,7 +1773,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ae1032c2-f984-4638-b922-a86e1dc9815b" + "79538b01-77bd-4544-b4e4-fcd04febd217" ], "Server": [ "Microsoft-IIS/10.0" @@ -1788,19 +1788,19 @@ "11994" ], "x-ms-correlation-request-id": [ - "61910871-9cf2-4152-82df-1cc39fb962e2" + "92a35775-bb17-493a-9a27-1453c69848e7" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112740Z:61910871-9cf2-4152-82df-1cc39fb962e2" + "CENTRALINDIA:20230216T052257Z:92a35775-bb17-493a-9a27-1453c69848e7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:27:40 GMT" + "Thu, 16 Feb 2023 05:22:57 GMT" ], "Content-Length": [ - "287" + "274" ], "Content-Type": [ "application/json" @@ -1809,28 +1809,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "754682b7-3f41-4cca-b00e-a8bff0e6d185" + "03a27e4a-4469-460d-8a8a-4e11b1167492" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1842,7 +1842,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4f5c3410-3d6c-4d76-b934-d0bfba9443e3" + "d3af7a12-31a3-4081-b236-7ee6f4ccfc0b" ], "Server": [ "Microsoft-IIS/10.0" @@ -1854,22 +1854,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11991" + "11994" ], "x-ms-correlation-request-id": [ - "6c22c183-fe84-47b7-be3b-af76b6a9abfe" + "ccbedbd7-2012-453d-b712-90fb5eb479fd" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112807Z:6c22c183-fe84-47b7-be3b-af76b6a9abfe" + "JIOINDIACENTRAL:20230216T052331Z:ccbedbd7-2012-453d-b712-90fb5eb479fd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:06 GMT" + "Thu, 16 Feb 2023 05:23:31 GMT" ], "Content-Length": [ - "287" + "274" ], "Content-Type": [ "application/json" @@ -1878,28 +1878,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f8573e3-cff4-4eb3-a062-ff55a47d8811" + "2921740c-44ac-44d5-965f-ce4ee96f0744" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1911,7 +1911,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "43dca9ad-2085-487e-bbea-5caef9b731dd" + "4456839b-8afc-4abc-a537-0acc96c40c18" ], "Server": [ "Microsoft-IIS/10.0" @@ -1923,22 +1923,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11988" + "11997" ], "x-ms-correlation-request-id": [ - "cdb85808-2ce0-406f-8594-c671ea49e6d1" + "1b257a05-7017-4f55-bc58-da4fb3bb8096" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112811Z:cdb85808-2ce0-406f-8594-c671ea49e6d1" + "JIOINDIACENTRAL:20230216T052339Z:1b257a05-7017-4f55-bc58-da4fb3bb8096" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:10 GMT" + "Thu, 16 Feb 2023 05:23:39 GMT" ], "Content-Length": [ - "287" + "274" ], "Content-Type": [ "application/json" @@ -1947,28 +1947,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17983aff-1521-4969-b776-95cb9ce2fd48" + "bd288e84-dad3-4154-88af-5819c42c970f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1980,7 +1980,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "067c670b-c913-4b4f-98e4-2893aeba6b04" + "77745d9a-5e2e-448d-ac6f-42562edf75dd" ], "Server": [ "Microsoft-IIS/10.0" @@ -1992,22 +1992,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11985" + "11997" ], "x-ms-correlation-request-id": [ - "9d50453e-978f-40ef-a388-85e0fd779486" + "769a5b5f-9ae2-4af3-95f5-942de17d8c5d" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112819Z:9d50453e-978f-40ef-a388-85e0fd779486" + "JIOINDIACENTRAL:20230216T052400Z:769a5b5f-9ae2-4af3-95f5-942de17d8c5d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:19 GMT" + "Thu, 16 Feb 2023 05:23:59 GMT" ], "Content-Length": [ - "287" + "274" ], "Content-Type": [ "application/json" @@ -2016,28 +2016,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17983aff-1521-4969-b776-95cb9ce2fd48" + "bd288e84-dad3-4154-88af-5819c42c970f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2049,7 +2049,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3ae4cef3-0dfd-44a2-9fd2-fd1d952cf969" + "32cda4cb-a194-4335-83e0-2e7ec845a421" ], "Server": [ "Microsoft-IIS/10.0" @@ -2061,22 +2061,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11982" + "11994" ], "x-ms-correlation-request-id": [ - "e4a1eeb8-40ea-4a6e-bf6a-f1e2c1a1625f" + "30ddebeb-0ae0-415f-9967-f8b866ea9963" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112822Z:e4a1eeb8-40ea-4a6e-bf6a-f1e2c1a1625f" + "JIOINDIACENTRAL:20230216T052404Z:30ddebeb-0ae0-415f-9967-f8b866ea9963" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:21 GMT" + "Thu, 16 Feb 2023 05:24:03 GMT" ], "Content-Length": [ - "287" + "274" ], "Content-Type": [ "application/json" @@ -2085,34 +2085,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5af4f4d6-d9f4-4a8f-81a6-65899d337c82" + "d71fe6b8-8355-45f2-bd9f-94005b82ec98" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "314" + "280" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2121,13 +2121,13 @@ "no-cache" ], "ETag": [ - "\"1D7E12631649080\"" + "\"1D941C680625BC0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a8f25086-6e4c-4d9f-b1d0-862645d8bac5" + "31c0a623-ab00-4bf0-b1d1-b5b2e2b7696e" ], "Server": [ "Microsoft-IIS/10.0" @@ -2142,19 +2142,19 @@ "499" ], "x-ms-correlation-request-id": [ - "d33674ab-e330-4257-a4ae-510c35488b4b" + "b8597b38-37ba-454f-9a6d-e7ff73023ae2" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112754Z:d33674ab-e330-4257-a4ae-510c35488b4b" + "CENTRALINDIA:20230216T052304Z:b8597b38-37ba-454f-9a6d-e7ff73023ae2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:27:53 GMT" + "Thu, 16 Feb 2023 05:23:04 GMT" ], "Content-Length": [ - "6130" + "7146" ], "Content-Type": [ "application/json" @@ -2163,34 +2163,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:27:45.0066667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:23:00.03\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "17983aff-1521-4969-b776-95cb9ce2fd48" + "bd288e84-dad3-4154-88af-5819c42c970f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "245" + "211" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"Disabled\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2199,13 +2199,13 @@ "no-cache" ], "ETag": [ - "\"1D7E1264D2612EB\"" + "\"1D941C6BC2965E0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7c02019b-122d-4b70-a4fc-294601a85d4d" + "17fb57a7-7409-484b-954c-8aa1cad48939" ], "Server": [ "Microsoft-IIS/10.0" @@ -2217,22 +2217,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "498" + "499" ], "x-ms-correlation-request-id": [ - "f42559f6-bfaf-462f-bf2e-5ce8c44b213f" + "e09d9e55-3999-4f2b-a85d-59f01553f5f4" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112827Z:f42559f6-bfaf-462f-bf2e-5ce8c44b213f" + "JIOINDIACENTRAL:20230216T052410Z:e09d9e55-3999-4f2b-a85d-59f01553f5f4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:27 GMT" + "Thu, 16 Feb 2023 05:24:09 GMT" ], "Content-Length": [ - "6090" + "7111" ], "Content-Type": [ "application/json" @@ -2241,28 +2241,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:28:24.8133333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:24:05.6733333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3ba51445-6f6f-4394-a993-31d1ea6a4e36" + "cea23465-043d-4b62-b7a4-9f4f3a1a1299" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2271,13 +2271,13 @@ "no-cache" ], "ETag": [ - "\"1D7E125FE19DE2B\"" + "\"1D941C69D2BD84B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dfc63780-d376-4e30-8d8a-4814b20f15d1" + "4403729e-146c-43ad-bbbe-fad3efc4a06c" ], "Server": [ "Microsoft-IIS/10.0" @@ -2289,22 +2289,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11999" ], "x-ms-correlation-request-id": [ - "5c0bba51-6e92-48b5-9964-f17261899a74" + "83795d7e-0582-4ea1-9aeb-62f66b7fdffa" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112754Z:5c0bba51-6e92-48b5-9964-f17261899a74" + "JIOINDIACENTRAL:20230216T052309Z:83795d7e-0582-4ea1-9aeb-62f66b7fdffa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:27:53 GMT" + "Thu, 16 Feb 2023 05:23:09 GMT" ], "Content-Length": [ - "6025" + "7068" ], "Content-Type": [ "application/json" @@ -2313,28 +2313,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:25:32.3866667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot\",\r\n \"name\": \"AppService-PS-UnitTesting/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"appservice-ps-unittesting(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/appservice-ps-unittesting\",\r\n \"repositorySiteName\": \"appservice-ps-unittesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:22:08.0366667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"appservice-ps-unittesting__5e7e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"appservice-ps-unittesting__testslot\\\\$appservice-ps-unittesting__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3ba51445-6f6f-4394-a993-31d1ea6a4e36" + "cea23465-043d-4b62-b7a4-9f4f3a1a1299" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2343,13 +2343,13 @@ "no-cache" ], "ETag": [ - "\"1D7E125FE19DE2B\"" + "\"1D941C69D2BD84B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cfcd0710-9572-49a2-93e6-9a26d3a6b902" + "b941a0b0-9efe-4f49-86ee-32ac3befd0fb" ], "Server": [ "Microsoft-IIS/10.0" @@ -2361,22 +2361,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11997" ], "x-ms-correlation-request-id": [ - "f3fb65e5-2afd-429e-88cf-e38a997bc997" + "6d6fbff9-9c05-4fe4-b0cc-4a2f8d31298e" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112757Z:f3fb65e5-2afd-429e-88cf-e38a997bc997" + "JIOINDIACENTRAL:20230216T052315Z:6d6fbff9-9c05-4fe4-b0cc-4a2f8d31298e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:27:57 GMT" + "Thu, 16 Feb 2023 05:23:14 GMT" ], "Content-Length": [ - "6025" + "7068" ], "Content-Type": [ "application/json" @@ -2385,28 +2385,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:25:32.3866667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot\",\r\n \"name\": \"AppService-PS-UnitTesting/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"appservice-ps-unittesting(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/appservice-ps-unittesting\",\r\n \"repositorySiteName\": \"appservice-ps-unittesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:22:08.0366667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"appservice-ps-unittesting__5e7e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"appservice-ps-unittesting__testslot\\\\$appservice-ps-unittesting__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1069d22a-168b-4b13-b3b8-e958ad704477" + "802dc39a-dabc-4c1f-8dbb-02e7cb7bfa10" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2415,13 +2415,13 @@ "no-cache" ], "ETag": [ - "\"1D7E12656FED36B\"" + "\"1D941C6C819398B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "91c62500-f3d5-4faa-b9e7-9c332ea6bf4a" + "ab996ecf-d74b-45c3-b0ae-cf689330ba94" ], "Server": [ "Microsoft-IIS/10.0" @@ -2433,22 +2433,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11995" ], "x-ms-correlation-request-id": [ - "a750c3dd-529b-4ca3-abba-85d02cdcd954" + "f6d47825-4a54-4937-97ee-fd0bf39302c9" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112811Z:a750c3dd-529b-4ca3-abba-85d02cdcd954" + "JIOINDIACENTRAL:20230216T052340Z:f6d47825-4a54-4937-97ee-fd0bf39302c9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:10 GMT" + "Thu, 16 Feb 2023 05:23:40 GMT" ], "Content-Length": [ - "6065" + "7068" ], "Content-Type": [ "application/json" @@ -2457,28 +2457,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:28:01.5266667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot\",\r\n \"name\": \"AppService-PS-UnitTesting/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"appservice-ps-unittesting(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/appservice-ps-unittesting\",\r\n \"repositorySiteName\": \"appservice-ps-unittesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:23:20.0566667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"appservice-ps-unittesting__5e7e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"appservice-ps-unittesting__testslot\\\\$appservice-ps-unittesting__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fb8526b9-bd16-4126-aeb0-43ed654e792f" + "5c5af6c0-d66a-4212-94ec-0c0e2a557f01" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2487,13 +2487,13 @@ "no-cache" ], "ETag": [ - "\"1D7E12656FED36B\"" + "\"1D941C6C819398B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7d921165-e105-4603-8faf-74ef915c1725" + "532f8d56-4bff-4f93-b4bb-b0b395f112d5" ], "Server": [ "Microsoft-IIS/10.0" @@ -2505,22 +2505,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11993" ], "x-ms-correlation-request-id": [ - "1ce619ee-1d49-4999-a921-85af09c542ed" + "dbe0af10-218c-44fd-a62e-20321b9a065d" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112814Z:1ce619ee-1d49-4999-a921-85af09c542ed" + "JIOINDIACENTRAL:20230216T052346Z:dbe0af10-218c-44fd-a62e-20321b9a065d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:14 GMT" + "Thu, 16 Feb 2023 05:23:45 GMT" ], "Content-Length": [ - "6065" + "7068" ], "Content-Type": [ "application/json" @@ -2529,28 +2529,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:28:01.5266667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot\",\r\n \"name\": \"AppService-PS-UnitTesting/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"appservice-ps-unittesting(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/appservice-ps-unittesting\",\r\n \"repositorySiteName\": \"appservice-ps-unittesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:23:20.0566667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"appservice-ps-unittesting__5e7e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"appservice-ps-unittesting__testslot\\\\$appservice-ps-unittesting__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42c3c3d1-f710-432d-8fbd-9b085349f460" + "224f041a-8d01-4037-877d-d00fef1a978d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2559,13 +2559,13 @@ "no-cache" ], "ETag": [ - "\"1D7E12656FED36B\"" + "\"1D941C6C819398B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8519f912-1f0e-43b9-81b6-3b7c8d0e5486" + "b036a937-c3d2-41de-9c8b-c1c6b2f3d7e2" ], "Server": [ "Microsoft-IIS/10.0" @@ -2577,22 +2577,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11987" ], "x-ms-correlation-request-id": [ - "02759742-e376-46de-9947-01a1fb660353" + "e295df58-51f5-47b7-b1d8-a69c5c4907a4" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112830Z:02759742-e376-46de-9947-01a1fb660353" + "JIOINDIACENTRAL:20230216T052417Z:e295df58-51f5-47b7-b1d8-a69c5c4907a4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:30 GMT" + "Thu, 16 Feb 2023 05:24:16 GMT" ], "Content-Length": [ - "6065" + "7068" ], "Content-Type": [ "application/json" @@ -2601,28 +2601,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:28:01.5266667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot\",\r\n \"name\": \"AppService-PS-UnitTesting/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"appservice-ps-unittesting(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/appservice-ps-unittesting\",\r\n \"repositorySiteName\": \"appservice-ps-unittesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:23:20.0566667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"appservice-ps-unittesting__5e7e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"appservice-ps-unittesting__testslot\\\\$appservice-ps-unittesting__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42c3c3d1-f710-432d-8fbd-9b085349f460" + "224f041a-8d01-4037-877d-d00fef1a978d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2631,13 +2631,13 @@ "no-cache" ], "ETag": [ - "\"1D7E12656FED36B\"" + "\"1D941C6C819398B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "105e937e-9551-47b7-b0d1-2970b824819a" + "4f241e14-07c5-4663-863c-864d83ccd766" ], "Server": [ "Microsoft-IIS/10.0" @@ -2649,22 +2649,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11985" ], "x-ms-correlation-request-id": [ - "5689be02-727b-42fc-b936-ddaf302c096e" + "2ef04036-bc3e-417e-a8d0-ace16dddf8c4" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112832Z:5689be02-727b-42fc-b936-ddaf302c096e" + "JIOINDIACENTRAL:20230216T052422Z:2ef04036-bc3e-417e-a8d0-ace16dddf8c4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:32 GMT" + "Thu, 16 Feb 2023 05:24:22 GMT" ], "Content-Length": [ - "6065" + "7068" ], "Content-Type": [ "application/json" @@ -2673,28 +2673,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:28:01.5266667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot\",\r\n \"name\": \"AppService-PS-UnitTesting/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"appservice-ps-unittesting(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/appservice-ps-unittesting\",\r\n \"repositorySiteName\": \"appservice-ps-unittesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:23:20.0566667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"appservice-ps-unittesting__5e7e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"appservice-ps-unittesting__testslot\\\\$appservice-ps-unittesting__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3ba51445-6f6f-4394-a993-31d1ea6a4e36" + "cea23465-043d-4b62-b7a4-9f4f3a1a1299" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2706,7 +2706,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9ecfd47a-f89e-4806-9339-052fa5ed6035" + "03c21444-7942-4f3b-bd8e-b300f87e9f77" ], "Server": [ "Microsoft-IIS/10.0" @@ -2718,22 +2718,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11998" ], "x-ms-correlation-request-id": [ - "654c98f4-fd4d-47c0-b345-4f0594f17fcf" + "1cfdf592-65f6-4b2a-bfdf-496e32262765" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112755Z:654c98f4-fd4d-47c0-b345-4f0594f17fcf" + "JIOINDIACENTRAL:20230216T052311Z:1cfdf592-65f6-4b2a-bfdf-496e32262765" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:27:55 GMT" + "Thu, 16 Feb 2023 05:23:11 GMT" ], "Content-Length": [ - "3731" + "4046" ], "Content-Type": [ "application/json" @@ -2742,28 +2742,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$appservice-ps-unittesting__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3ba51445-6f6f-4394-a993-31d1ea6a4e36" + "cea23465-043d-4b62-b7a4-9f4f3a1a1299" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2775,7 +2775,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "91167966-56b0-41d3-b507-100e189643d8" + "8b260827-bb04-4ce6-8bfb-8a6cac24f7e2" ], "Server": [ "Microsoft-IIS/10.0" @@ -2787,22 +2787,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11996" ], "x-ms-correlation-request-id": [ - "c436d4f1-d38e-4de7-bd4e-8d21a4385889" + "3148f985-c221-4157-85b3-9c6e29dafcbc" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112757Z:c436d4f1-d38e-4de7-bd4e-8d21a4385889" + "JIOINDIACENTRAL:20230216T052316Z:3148f985-c221-4157-85b3-9c6e29dafcbc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:27:57 GMT" + "Thu, 16 Feb 2023 05:23:15 GMT" ], "Content-Length": [ - "3731" + "4046" ], "Content-Type": [ "application/json" @@ -2811,28 +2811,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$appservice-ps-unittesting__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1069d22a-168b-4b13-b3b8-e958ad704477" + "802dc39a-dabc-4c1f-8dbb-02e7cb7bfa10" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2844,7 +2844,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d32f2458-6b92-434e-bd06-197aeb86e5f4" + "2a99b0f0-690d-40d0-b49d-f66a0d9b725d" ], "Server": [ "Microsoft-IIS/10.0" @@ -2856,22 +2856,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11994" ], "x-ms-correlation-request-id": [ - "7cc6b9ba-4304-4954-ab58-af6f6e2cce6b" + "f1cb0e10-7de4-4410-830b-64bffb507448" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112812Z:7cc6b9ba-4304-4954-ab58-af6f6e2cce6b" + "JIOINDIACENTRAL:20230216T052341Z:f1cb0e10-7de4-4410-830b-64bffb507448" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:11 GMT" + "Thu, 16 Feb 2023 05:23:41 GMT" ], "Content-Length": [ - "3731" + "4046" ], "Content-Type": [ "application/json" @@ -2880,28 +2880,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$appservice-ps-unittesting__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fb8526b9-bd16-4126-aeb0-43ed654e792f" + "5c5af6c0-d66a-4212-94ec-0c0e2a557f01" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2913,7 +2913,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ca6862d8-d84a-4e43-9e1e-d59744435515" + "ef21d57a-b033-4e8c-86a6-6dae42580cd9" ], "Server": [ "Microsoft-IIS/10.0" @@ -2925,22 +2925,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11992" ], "x-ms-correlation-request-id": [ - "b6814514-56ea-4365-873f-89f3dbd48420" + "e4d6828b-4852-4b2f-8efd-aabcd032a3ea" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112814Z:b6814514-56ea-4365-873f-89f3dbd48420" + "JIOINDIACENTRAL:20230216T052347Z:e4d6828b-4852-4b2f-8efd-aabcd032a3ea" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:14 GMT" + "Thu, 16 Feb 2023 05:23:46 GMT" ], "Content-Length": [ - "3731" + "4046" ], "Content-Type": [ "application/json" @@ -2949,28 +2949,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$appservice-ps-unittesting__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42c3c3d1-f710-432d-8fbd-9b085349f460" + "224f041a-8d01-4037-877d-d00fef1a978d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2982,7 +2982,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "32153f53-fb6c-4b1a-b22c-fabfe579264b" + "dde6c745-5591-47a4-bdb9-04ba8abd0023" ], "Server": [ "Microsoft-IIS/10.0" @@ -2994,22 +2994,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11986" ], "x-ms-correlation-request-id": [ - "f0e4d1bb-4eee-480b-bc69-f23a5c6ddb48" + "cd15b78b-f8fa-4e21-a7fc-86ad2d25f5c2" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112830Z:f0e4d1bb-4eee-480b-bc69-f23a5c6ddb48" + "JIOINDIACENTRAL:20230216T052418Z:cd15b78b-f8fa-4e21-a7fc-86ad2d25f5c2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:30 GMT" + "Thu, 16 Feb 2023 05:24:18 GMT" ], "Content-Length": [ - "3731" + "4046" ], "Content-Type": [ "application/json" @@ -3018,28 +3018,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$appservice-ps-unittesting__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42c3c3d1-f710-432d-8fbd-9b085349f460" + "224f041a-8d01-4037-877d-d00fef1a978d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3051,7 +3051,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8752c22d-4f31-4ed8-98cc-5701a090a4d9" + "0bf37a86-7582-4716-adae-0cc9073684e9" ], "Server": [ "Microsoft-IIS/10.0" @@ -3063,22 +3063,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11984" ], "x-ms-correlation-request-id": [ - "86cf6de8-4d48-4d32-9050-8c40dd3f4ee8" + "2874366f-0755-4844-a2c4-f5f4a6600c85" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112833Z:86cf6de8-4d48-4d32-9050-8c40dd3f4ee8" + "JIOINDIACENTRAL:20230216T052423Z:2874366f-0755-4844-a2c4-f5f4a6600c85" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:33 GMT" + "Thu, 16 Feb 2023 05:24:23 GMT" ], "Content-Length": [ - "3731" + "4046" ], "Content-Type": [ "application/json" @@ -3087,28 +3087,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$appservice-ps-unittesting__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3ba51445-6f6f-4394-a993-31d1ea6a4e36" + "cea23465-043d-4b62-b7a4-9f4f3a1a1299" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3120,7 +3120,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a4af4ae3-3583-4e91-9b82-c58afe7cb510" + "d6b10235-1d7d-4570-a082-00a571fdb154" ], "Server": [ "Microsoft-IIS/10.0" @@ -3135,19 +3135,19 @@ "11999" ], "x-ms-correlation-request-id": [ - "c0c9190d-5fe1-4ea5-86c2-813da2d7b8ae" + "35ecfad0-2731-4f93-83d9-8a32c2a511ca" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112755Z:c0c9190d-5fe1-4ea5-86c2-813da2d7b8ae" + "JIOINDIACENTRAL:20230216T052313Z:35ecfad0-2731-4f93-83d9-8a32c2a511ca" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:27:55 GMT" + "Thu, 16 Feb 2023 05:23:12 GMT" ], "Content-Length": [ - "755" + "691" ], "Content-Type": [ "application/json" @@ -3156,28 +3156,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3ba51445-6f6f-4394-a993-31d1ea6a4e36" + "cea23465-043d-4b62-b7a4-9f4f3a1a1299" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3189,7 +3189,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "20875a23-f94b-4a07-be79-80fda0f5871e" + "f91ecdeb-a21f-4f64-bf85-8763f4de2d8e" ], "Server": [ "Microsoft-IIS/10.0" @@ -3204,19 +3204,19 @@ "11996" ], "x-ms-correlation-request-id": [ - "3a5c2010-33a7-4e3c-9d16-100c8ebb4085" + "784deaed-2b16-44a1-8ae9-24fdc8935bdc" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112758Z:3a5c2010-33a7-4e3c-9d16-100c8ebb4085" + "JIOINDIACENTRAL:20230216T052317Z:784deaed-2b16-44a1-8ae9-24fdc8935bdc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:27:58 GMT" + "Thu, 16 Feb 2023 05:23:16 GMT" ], "Content-Length": [ - "755" + "691" ], "Content-Type": [ "application/json" @@ -3225,28 +3225,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1069d22a-168b-4b13-b3b8-e958ad704477" + "802dc39a-dabc-4c1f-8dbb-02e7cb7bfa10" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3258,7 +3258,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "abb85a81-e1de-4bda-afba-95295e8c490c" + "0970d1b6-eea4-425e-99ea-8202dd5a193f" ], "Server": [ "Microsoft-IIS/10.0" @@ -3270,22 +3270,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11993" + "11999" ], "x-ms-correlation-request-id": [ - "76bd1de5-4ac8-40dc-ba44-beb2798cf8b0" + "f37eb125-969f-4a87-859e-626ff8c6370b" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112812Z:76bd1de5-4ac8-40dc-ba44-beb2798cf8b0" + "JIOINDIACENTRAL:20230216T052342Z:f37eb125-969f-4a87-859e-626ff8c6370b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:12 GMT" + "Thu, 16 Feb 2023 05:23:42 GMT" ], "Content-Length": [ - "755" + "691" ], "Content-Type": [ "application/json" @@ -3294,28 +3294,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fb8526b9-bd16-4126-aeb0-43ed654e792f" + "5c5af6c0-d66a-4212-94ec-0c0e2a557f01" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3327,7 +3327,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d91be007-eb25-4d12-bff7-ea3f3c248af0" + "d375d7ef-a47d-43dc-abc3-65ed2aa0c892" ], "Server": [ "Microsoft-IIS/10.0" @@ -3339,22 +3339,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11990" + "11996" ], "x-ms-correlation-request-id": [ - "d182ab38-10ef-44b1-9f1d-a4a8d7110ec9" + "1feb1a47-8a4f-48c4-9fc5-863a47e183e0" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112815Z:d182ab38-10ef-44b1-9f1d-a4a8d7110ec9" + "JIOINDIACENTRAL:20230216T052348Z:1feb1a47-8a4f-48c4-9fc5-863a47e183e0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:15 GMT" + "Thu, 16 Feb 2023 05:23:47 GMT" ], "Content-Length": [ - "755" + "691" ], "Content-Type": [ "application/json" @@ -3363,28 +3363,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42c3c3d1-f710-432d-8fbd-9b085349f460" + "224f041a-8d01-4037-877d-d00fef1a978d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3396,7 +3396,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "39772e43-b9ce-4bf2-9176-360110ba5b82" + "f50dffe6-43d7-486e-ba01-e904cc6aab06" ], "Server": [ "Microsoft-IIS/10.0" @@ -3408,22 +3408,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11987" + "11993" ], "x-ms-correlation-request-id": [ - "c26bc601-8bc2-4091-88c7-738f2b1512ff" + "c7792d30-e1cc-40e3-b84d-f708f11e6ea4" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112831Z:c26bc601-8bc2-4091-88c7-738f2b1512ff" + "JIOINDIACENTRAL:20230216T052419Z:c7792d30-e1cc-40e3-b84d-f708f11e6ea4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:31 GMT" + "Thu, 16 Feb 2023 05:24:19 GMT" ], "Content-Length": [ - "755" + "691" ], "Content-Type": [ "application/json" @@ -3432,28 +3432,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42c3c3d1-f710-432d-8fbd-9b085349f460" + "224f041a-8d01-4037-877d-d00fef1a978d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3465,7 +3465,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "966197ef-a2f5-4ceb-84ce-7be5b2167cfd" + "4308d8a1-ef79-4e86-9427-02217b09bad5" ], "Server": [ "Microsoft-IIS/10.0" @@ -3477,22 +3477,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11984" + "11990" ], "x-ms-correlation-request-id": [ - "b4c91731-608b-454e-a78c-220273400e07" + "d6543886-4ec1-42da-8940-a3b0e377fa05" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112833Z:b4c91731-608b-454e-a78c-220273400e07" + "JIOINDIACENTRAL:20230216T052425Z:d6543886-4ec1-42da-8940-a3b0e377fa05" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:33 GMT" + "Thu, 16 Feb 2023 05:24:24 GMT" ], "Content-Length": [ - "755" + "691" ], "Content-Type": [ "application/json" @@ -3501,28 +3501,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3ba51445-6f6f-4394-a993-31d1ea6a4e36" + "cea23465-043d-4b62-b7a4-9f4f3a1a1299" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3534,7 +3534,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "57e314db-784f-4c5f-8629-46b6b19e71bf" + "928490d5-44b1-4373-a7ea-0f5b29bbaa83" ], "Server": [ "Microsoft-IIS/10.0" @@ -3549,19 +3549,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "3932c531-e3c2-419d-8b37-2af7710a1527" + "595ebfd7-7e79-4cb7-baa0-3a0ddae05cdb" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112756Z:3932c531-e3c2-419d-8b37-2af7710a1527" + "JIOINDIACENTRAL:20230216T052313Z:595ebfd7-7e79-4cb7-baa0-3a0ddae05cdb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:27:56 GMT" + "Thu, 16 Feb 2023 05:23:13 GMT" ], "Content-Length": [ - "305" + "292" ], "Content-Type": [ "application/json" @@ -3570,28 +3570,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3ba51445-6f6f-4394-a993-31d1ea6a4e36" + "cea23465-043d-4b62-b7a4-9f4f3a1a1299" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3603,7 +3603,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5052c8bc-5ec3-4756-bbc3-8400cd1a24c6" + "50761bf5-9c6e-44fa-aeca-9d4059d8294d" ], "Server": [ "Microsoft-IIS/10.0" @@ -3618,19 +3618,19 @@ "11995" ], "x-ms-correlation-request-id": [ - "47869381-513b-459d-ac6d-845e28eb0ffd" + "b9ea769d-f707-4932-96bc-04c3bda1ed6a" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112759Z:47869381-513b-459d-ac6d-845e28eb0ffd" + "JIOINDIACENTRAL:20230216T052317Z:b9ea769d-f707-4932-96bc-04c3bda1ed6a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:27:59 GMT" + "Thu, 16 Feb 2023 05:23:17 GMT" ], "Content-Length": [ - "305" + "292" ], "Content-Type": [ "application/json" @@ -3639,28 +3639,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1069d22a-168b-4b13-b3b8-e958ad704477" + "802dc39a-dabc-4c1f-8dbb-02e7cb7bfa10" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3672,7 +3672,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "edd16e23-c237-445c-bdfc-ccbf1e167d48" + "01f626b6-e7e7-4402-b358-31dee7d357e7" ], "Server": [ "Microsoft-IIS/10.0" @@ -3684,22 +3684,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11992" + "11998" ], "x-ms-correlation-request-id": [ - "73d2f031-bfb2-4d80-bb83-41ba1781abfc" + "8a22f214-ea84-469a-8c34-5a09fdc17ac4" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112813Z:73d2f031-bfb2-4d80-bb83-41ba1781abfc" + "JIOINDIACENTRAL:20230216T052344Z:8a22f214-ea84-469a-8c34-5a09fdc17ac4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:12 GMT" + "Thu, 16 Feb 2023 05:23:43 GMT" ], "Content-Length": [ - "305" + "292" ], "Content-Type": [ "application/json" @@ -3708,28 +3708,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fb8526b9-bd16-4126-aeb0-43ed654e792f" + "5c5af6c0-d66a-4212-94ec-0c0e2a557f01" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3741,7 +3741,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8cf193d5-d7c1-4fce-b1ed-7ddcab9164c1" + "c62d83c6-301d-4a4f-ab9f-06865d379253" ], "Server": [ "Microsoft-IIS/10.0" @@ -3753,22 +3753,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11989" + "11995" ], "x-ms-correlation-request-id": [ - "69c1dc48-011e-4f0d-ba30-1005cc79c0a2" + "0461ddb6-017b-462b-b1ac-098fd5e00f78" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112816Z:69c1dc48-011e-4f0d-ba30-1005cc79c0a2" + "JIOINDIACENTRAL:20230216T052350Z:0461ddb6-017b-462b-b1ac-098fd5e00f78" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:16 GMT" + "Thu, 16 Feb 2023 05:23:49 GMT" ], "Content-Length": [ - "305" + "292" ], "Content-Type": [ "application/json" @@ -3777,28 +3777,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42c3c3d1-f710-432d-8fbd-9b085349f460" + "224f041a-8d01-4037-877d-d00fef1a978d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3810,7 +3810,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9ed36bc5-3d0f-4219-b2e5-47af6ce32df2" + "a35d409b-7ba2-4e25-bc03-e3347ee43bb8" ], "Server": [ "Microsoft-IIS/10.0" @@ -3822,22 +3822,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11986" + "11992" ], "x-ms-correlation-request-id": [ - "43e6cc62-6ea3-40a7-a59e-b0bdc4a269bc" + "a9cd47ce-700c-436e-9ad5-63098a8e888f" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112831Z:43e6cc62-6ea3-40a7-a59e-b0bdc4a269bc" + "JIOINDIACENTRAL:20230216T052420Z:a9cd47ce-700c-436e-9ad5-63098a8e888f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:31 GMT" + "Thu, 16 Feb 2023 05:24:20 GMT" ], "Content-Length": [ - "305" + "292" ], "Content-Type": [ "application/json" @@ -3846,28 +3846,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42c3c3d1-f710-432d-8fbd-9b085349f460" + "224f041a-8d01-4037-877d-d00fef1a978d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3879,7 +3879,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "302ebc71-1d3c-4be7-8e2c-8d855fc2255d" + "18273fe0-c4f8-4949-924e-906dde8a2376" ], "Server": [ "Microsoft-IIS/10.0" @@ -3891,22 +3891,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11983" + "11989" ], "x-ms-correlation-request-id": [ - "8f231214-b318-45c8-a455-213ce0b187a8" + "5f5c479d-9316-400f-bf0a-ec4cf927bac2" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112834Z:8f231214-b318-45c8-a455-213ce0b187a8" + "JIOINDIACENTRAL:20230216T052425Z:5f5c479d-9316-400f-bf0a-ec4cf927bac2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:34 GMT" + "Thu, 16 Feb 2023 05:24:25 GMT" ], "Content-Length": [ - "305" + "292" ], "Content-Type": [ "application/json" @@ -3915,28 +3915,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3ba51445-6f6f-4394-a993-31d1ea6a4e36" + "cea23465-043d-4b62-b7a4-9f4f3a1a1299" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3948,7 +3948,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e5064624-f406-4736-a631-ddcd2c309be3" + "001cf471-1abd-43e4-8d6f-808ade66d8bc" ], "Server": [ "Microsoft-IIS/10.0" @@ -3963,19 +3963,19 @@ "11997" ], "x-ms-correlation-request-id": [ - "fac4fb10-5842-421b-ac07-cb2c01c98c3e" + "bc4215ff-a8e3-4026-81a4-18def245adf8" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112756Z:fac4fb10-5842-421b-ac07-cb2c01c98c3e" + "JIOINDIACENTRAL:20230216T052314Z:bc4215ff-a8e3-4026-81a4-18def245adf8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:27:56 GMT" + "Thu, 16 Feb 2023 05:23:14 GMT" ], "Content-Length": [ - "302" + "289" ], "Content-Type": [ "application/json" @@ -3984,28 +3984,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3ba51445-6f6f-4394-a993-31d1ea6a4e36" + "cea23465-043d-4b62-b7a4-9f4f3a1a1299" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4017,7 +4017,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c76df3b7-df46-4ce2-bd8e-17cc3a3e5c1b" + "10aca639-5bf8-40f1-902f-7a33c3be2721" ], "Server": [ "Microsoft-IIS/10.0" @@ -4032,19 +4032,19 @@ "11994" ], "x-ms-correlation-request-id": [ - "6e5aa861-1559-44a5-b4aa-9db2dadf9120" + "3e15e6c4-24bc-4250-82c3-fe5076c551cc" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112759Z:6e5aa861-1559-44a5-b4aa-9db2dadf9120" + "JIOINDIACENTRAL:20230216T052318Z:3e15e6c4-24bc-4250-82c3-fe5076c551cc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:27:59 GMT" + "Thu, 16 Feb 2023 05:23:17 GMT" ], "Content-Length": [ - "302" + "289" ], "Content-Type": [ "application/json" @@ -4053,28 +4053,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1069d22a-168b-4b13-b3b8-e958ad704477" + "802dc39a-dabc-4c1f-8dbb-02e7cb7bfa10" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4086,7 +4086,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e22b034d-1b4b-4562-82fa-167c47e8c2bb" + "99df896d-6ee9-492f-91dc-e73bd2509d8e" ], "Server": [ "Microsoft-IIS/10.0" @@ -4098,22 +4098,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11991" + "11997" ], "x-ms-correlation-request-id": [ - "ec000868-0136-4841-8519-360d1f4b223a" + "bd9c9d12-7222-436d-947e-6e9c8518fb99" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112814Z:ec000868-0136-4841-8519-360d1f4b223a" + "JIOINDIACENTRAL:20230216T052345Z:bd9c9d12-7222-436d-947e-6e9c8518fb99" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:14 GMT" + "Thu, 16 Feb 2023 05:23:45 GMT" ], "Content-Length": [ - "302" + "289" ], "Content-Type": [ "application/json" @@ -4122,28 +4122,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fb8526b9-bd16-4126-aeb0-43ed654e792f" + "5c5af6c0-d66a-4212-94ec-0c0e2a557f01" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4155,7 +4155,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6f00bb5b-a3e7-4a01-b3e0-dd000ee6e1bf" + "ff0c37f7-981a-4756-8f97-0244401ff5b0" ], "Server": [ "Microsoft-IIS/10.0" @@ -4167,22 +4167,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11988" + "11994" ], "x-ms-correlation-request-id": [ - "48d8efcb-e8a2-40d4-8e57-b7b0ae9e086a" + "e31b2b69-eefb-4e34-ad81-39db4ae3894a" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112816Z:48d8efcb-e8a2-40d4-8e57-b7b0ae9e086a" + "JIOINDIACENTRAL:20230216T052351Z:e31b2b69-eefb-4e34-ad81-39db4ae3894a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:16 GMT" + "Thu, 16 Feb 2023 05:23:50 GMT" ], "Content-Length": [ - "302" + "289" ], "Content-Type": [ "application/json" @@ -4191,28 +4191,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42c3c3d1-f710-432d-8fbd-9b085349f460" + "224f041a-8d01-4037-877d-d00fef1a978d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4224,7 +4224,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "15c8cd68-3714-4ec6-9913-e32848ef3e8e" + "849a6021-c47a-4ae0-a7d2-341c7ad8a0e1" ], "Server": [ "Microsoft-IIS/10.0" @@ -4236,22 +4236,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11985" + "11991" ], "x-ms-correlation-request-id": [ - "b95f7faf-70de-4d7e-aefc-42e957609bcc" + "33879e8c-29a1-4541-b148-7b3e874afc16" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112832Z:b95f7faf-70de-4d7e-aefc-42e957609bcc" + "JIOINDIACENTRAL:20230216T052421Z:33879e8c-29a1-4541-b148-7b3e874afc16" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:32 GMT" + "Thu, 16 Feb 2023 05:24:21 GMT" ], "Content-Length": [ - "302" + "289" ], "Content-Type": [ "application/json" @@ -4260,28 +4260,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42c3c3d1-f710-432d-8fbd-9b085349f460" + "224f041a-8d01-4037-877d-d00fef1a978d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4293,7 +4293,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0218e3d5-e0e6-40af-badd-f94143c70385" + "8cb8a772-1814-4f9c-8667-632d59779314" ], "Server": [ "Microsoft-IIS/10.0" @@ -4305,22 +4305,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11982" + "11988" ], "x-ms-correlation-request-id": [ - "e2a394a3-8648-43dc-b4e2-80bf94474b69" + "c4b03884-2565-4018-941a-78f15ef0719a" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112834Z:e2a394a3-8648-43dc-b4e2-80bf94474b69" + "JIOINDIACENTRAL:20230216T052426Z:c4b03884-2565-4018-941a-78f15ef0719a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:34 GMT" + "Thu, 16 Feb 2023 05:24:26 GMT" ], "Content-Length": [ - "302" + "289" ], "Content-Type": [ "application/json" @@ -4329,34 +4329,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3ba51445-6f6f-4394-a993-31d1ea6a4e36" + "cea23465-043d-4b62-b7a4-9f4f3a1a1299" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "319" + "285" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4365,13 +4365,13 @@ "no-cache" ], "ETag": [ - "\"1D7E125FE19DE2B\"" + "\"1D941C69D2BD84B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6cd1bc38-7f0a-4c10-b636-4e2206ce4849" + "20583905-0ec5-4ad0-baeb-b6242ffd5831" ], "Server": [ "Microsoft-IIS/10.0" @@ -4386,19 +4386,19 @@ "499" ], "x-ms-correlation-request-id": [ - "75fda31d-935e-4548-a484-d513daaefbee" + "cdb5e752-5579-4574-b103-4fdf2a3107e6" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112804Z:75fda31d-935e-4548-a484-d513daaefbee" + "JIOINDIACENTRAL:20230216T052325Z:cdb5e752-5579-4574-b103-4fdf2a3107e6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:03 GMT" + "Thu, 16 Feb 2023 05:23:25 GMT" ], "Content-Length": [ - "6265" + "7286" ], "Content-Type": [ "application/json" @@ -4407,34 +4407,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:28:01.5266667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot\",\r\n \"name\": \"AppService-PS-UnitTesting/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"appservice-ps-unittesting(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/appservice-ps-unittesting\",\r\n \"repositorySiteName\": \"appservice-ps-unittesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:23:20.0566667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"appservice-ps-unittesting__5e7e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"appservice-ps-unittesting__testslot\\\\$appservice-ps-unittesting__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "42c3c3d1-f710-432d-8fbd-9b085349f460" + "224f041a-8d01-4037-877d-d00fef1a978d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "250" + "216" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"Disabled\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4443,13 +4443,13 @@ "no-cache" ], "ETag": [ - "\"1D7E12656FED36B\"" + "\"1D941C6C819398B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bceb679d-cab2-43e4-a64e-d07d909da84d" + "eba337e3-22e3-43ad-bb0e-9355f7455c9b" ], "Server": [ "Microsoft-IIS/10.0" @@ -4461,22 +4461,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "498" + "499" ], "x-ms-correlation-request-id": [ - "3b16af5d-1433-4555-b408-54237af5913b" + "2b963996-226d-4056-ba4a-23a0d003db66" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112839Z:3b16af5d-1433-4555-b408-54237af5913b" + "JIOINDIACENTRAL:20230216T052432Z:2b963996-226d-4056-ba4a-23a0d003db66" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:38 GMT" + "Thu, 16 Feb 2023 05:24:31 GMT" ], "Content-Length": [ - "6225" + "7241" ], "Content-Type": [ "application/json" @@ -4485,28 +4485,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:28:36.3333333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot\",\r\n \"name\": \"AppService-PS-UnitTesting/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"appservice-ps-unittesting(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/appservice-ps-unittesting\",\r\n \"repositorySiteName\": \"appservice-ps-unittesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:24:28.23\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"appservice-ps-unittesting__5e7e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"appservice-ps-unittesting__testslot\\\\$appservice-ps-unittesting__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcmVzb3VyY2VzPyRmaWx0ZXI9cmVzb3VyY2VUeXBlJTIwZXElMjAnTWljcm9zb2Z0LldlYiUyRkNlcnRpZmljYXRlcycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5XZWIlMkZDZXJ0aWZpY2F0ZXMnJmFwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17983aff-1521-4969-b776-95cb9ce2fd48" + "bd288e84-dad3-4154-88af-5819c42c970f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.51" + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4515,16 +4515,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11992" ], "x-ms-request-id": [ - "ea40970c-426b-4c2a-b987-2aa0572d5c24" + "e7ccede3-526d-4ada-8ab6-d80f02e0ba32" ], "x-ms-correlation-request-id": [ - "ea40970c-426b-4c2a-b987-2aa0572d5c24" + "e7ccede3-526d-4ada-8ab6-d80f02e0ba32" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112828Z:ea40970c-426b-4c2a-b987-2aa0572d5c24" + "JIOINDIACENTRAL:20230216T052411Z:e7ccede3-526d-4ada-8ab6-d80f02e0ba32" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4533,7 +4533,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:27 GMT" + "Thu, 16 Feb 2023 05:24:11 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4542,31 +4542,31 @@ "-1" ], "Content-Length": [ - "297" + "587" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"name\": \"adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"name\": \"PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"name\": \"psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcmVzb3VyY2VzPyRmaWx0ZXI9cmVzb3VyY2VUeXBlJTIwZXElMjAnTWljcm9zb2Z0LldlYiUyRkNlcnRpZmljYXRlcycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5XZWIlMkZDZXJ0aWZpY2F0ZXMnJmFwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42c3c3d1-f710-432d-8fbd-9b085349f460" + "224f041a-8d01-4037-877d-d00fef1a978d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.51" + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4575,16 +4575,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-request-id": [ - "9ea1ba8b-c841-4b35-8c96-125570790b8f" + "8a1b032d-1568-4568-8acc-fa2ae206f3c1" ], "x-ms-correlation-request-id": [ - "9ea1ba8b-c841-4b35-8c96-125570790b8f" + "8a1b032d-1568-4568-8acc-fa2ae206f3c1" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112839Z:9ea1ba8b-c841-4b35-8c96-125570790b8f" + "JIOINDIACENTRAL:20230216T052436Z:8a1b032d-1568-4568-8acc-fa2ae206f3c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4593,7 +4593,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:38 GMT" + "Thu, 16 Feb 2023 05:24:36 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4602,31 +4602,100 @@ "-1" ], "Content-Length": [ - "297" + "587" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"name\": \"adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"name\": \"PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"name\": \"psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL2Fkb3Jlbm93LWxrZXRtdGVzdGFudHBzMTAtQ2VudHJhbFVTd2Vic3BhY2U/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/PS-UnitTesting-Keyvault-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy9QUy1Vbml0VGVzdGluZy1LZXl2YXVsdC1QUy1Vbml0VGVzdGluZz9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bd288e84-dad3-4154-88af-5819c42c970f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" + ] + }, "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "41e09d5b-94a1-4474-bd2b-ef67c1dca903" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "17651591-610e-41ce-af9e-64d9bfbb7a01" + ], + "x-ms-routing-request-id": [ + "JIOINDIACENTRAL:20230216T052412Z:17651591-610e-41ce-af9e-64d9bfbb7a01" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Feb 2023 05:24:11 GMT" + ], + "Content-Length": [ + "1081" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"name\": \"PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"password\": null,\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"psunittesting\",\r\n \"hostNames\": [\r\n \"psunittesting\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"psunittesting\",\r\n \"issueDate\": \"2022-07-28T07:11:04+05:30\",\r\n \"expirationDate\": \"2023-07-28T07:21:04+05:30\",\r\n \"thumbprint\": \"E4E04D3CE912AB34F0B94CBC27042E5022C961E1\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourcegroups/rg-ps-unittesting/providers/microsoft.keyvault/vaults/ps-unittesting-keyvault\",\r\n \"keyVaultSecretName\": \"ps-unittesting\",\r\n \"keyVaultSecretStatus\": \"KeyVaultSecretDoesNotExist\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/PS-UnitTesting-Keyvault-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy9QUy1Vbml0VGVzdGluZy1LZXl2YXVsdC1QUy1Vbml0VGVzdGluZz9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "17983aff-1521-4969-b776-95cb9ce2fd48" + "224f041a-8d01-4037-877d-d00fef1a978d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4638,7 +4707,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2cf1e53c-ee47-42bd-9224-5b29feaa45f7" + "0310a47e-fb60-48a5-adda-7dfe3ef3591e" ], "Server": [ "Microsoft-IIS/10.0" @@ -4650,22 +4719,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11983" ], "x-ms-correlation-request-id": [ - "b8ca3c0e-7467-46ee-8392-6c12da10e9fc" + "848d23b1-feb8-4333-a353-186e3ed2a7e1" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112828Z:b8ca3c0e-7467-46ee-8392-6c12da10e9fc" + "JIOINDIACENTRAL:20230216T052437Z:848d23b1-feb8-4333-a353-186e3ed2a7e1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:28 GMT" + "Thu, 16 Feb 2023 05:24:36 GMT" ], "Content-Length": [ - "1157" + "1081" ], "Content-Type": [ "application/json" @@ -4674,28 +4743,97 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"name\": \"adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"password\": null,\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.adorenow.net,adorenow.net\",\r\n \"hostNames\": [\r\n \"*.adorenow.net\",\r\n \"adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"Go Daddy Secure Certificate Authority - G2\",\r\n \"issueDate\": \"2021-08-30T09:36:25+05:30\",\r\n \"expirationDate\": \"2022-09-29T12:46:02+05:30\",\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/lketmtestantps10/providers/microsoft.keyvault/vaults/ssltesting\",\r\n \"keyVaultSecretName\": \"adorenowadb85164-4f85-4ba7-8721-7071bbc3ecb1\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"lketmtestantps10\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"name\": \"PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"password\": null,\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"psunittesting\",\r\n \"hostNames\": [\r\n \"psunittesting\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"psunittesting\",\r\n \"issueDate\": \"2022-07-28T07:11:04+05:30\",\r\n \"expirationDate\": \"2023-07-28T07:21:04+05:30\",\r\n \"thumbprint\": \"E4E04D3CE912AB34F0B94CBC27042E5022C961E1\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourcegroups/rg-ps-unittesting/providers/microsoft.keyvault/vaults/ps-unittesting-keyvault\",\r\n \"keyVaultSecretName\": \"ps-unittesting\",\r\n \"keyVaultSecretStatus\": \"KeyVaultSecretDoesNotExist\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL2Fkb3Jlbm93LWxrZXRtdGVzdGFudHBzMTAtQ2VudHJhbFVTd2Vic3BhY2U/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy9wc3VuaXR0ZXN0aW5nLVJHLVBTLVVuaXRUZXN0aW5nLUNlbnRyYWxVU3dlYnNwYWNlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bd288e84-dad3-4154-88af-5819c42c970f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" + ] + }, "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6dd11f90-7d29-465b-8fe8-e71398deebe8" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "ae107848-8ff9-40be-9dc4-c88feec86ec0" + ], + "x-ms-routing-request-id": [ + "JIOINDIACENTRAL:20230216T052413Z:ae107848-8ff9-40be-9dc4-c88feec86ec0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Feb 2023 05:24:12 GMT" + ], + "Content-Length": [ + "1211" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"name\": \"psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"password\": null,\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.psunittesting.com,psunittesting.com\",\r\n \"hostNames\": [\r\n \"*.psunittesting.com\",\r\n \"psunittesting.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"Go Daddy Secure Certificate Authority - G2\",\r\n \"issueDate\": \"2023-02-16T07:42:44+05:30\",\r\n \"expirationDate\": \"2024-02-16T07:42:44+05:30\",\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourcegroups/rg-ps-unittesting/providers/microsoft.keyvault/vaults/ps-unittesting-keyvault\",\r\n \"keyVaultSecretName\": \"psunittestingaa142621-b4d5-445e-b940-7b9a0cc4e414\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy9wc3VuaXR0ZXN0aW5nLVJHLVBTLVVuaXRUZXN0aW5nLUNlbnRyYWxVU3dlYnNwYWNlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "42c3c3d1-f710-432d-8fbd-9b085349f460" + "224f041a-8d01-4037-877d-d00fef1a978d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4707,7 +4845,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0a09a000-464a-4f52-99bd-e3ec2afaecd8" + "0be741dc-910e-4b86-b49c-0fd3a0017444" ], "Server": [ "Microsoft-IIS/10.0" @@ -4719,22 +4857,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11982" ], "x-ms-correlation-request-id": [ - "2899d98a-babd-4675-9f52-17c9a523703b" + "34e26237-688b-48cc-9f20-6b25a60a826e" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112839Z:2899d98a-babd-4675-9f52-17c9a523703b" + "JIOINDIACENTRAL:20230216T052438Z:34e26237-688b-48cc-9f20-6b25a60a826e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:39 GMT" + "Thu, 16 Feb 2023 05:24:37 GMT" ], "Content-Length": [ - "1157" + "1211" ], "Content-Type": [ "application/json" @@ -4743,28 +4881,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"name\": \"adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"password\": null,\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.adorenow.net,adorenow.net\",\r\n \"hostNames\": [\r\n \"*.adorenow.net\",\r\n \"adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"Go Daddy Secure Certificate Authority - G2\",\r\n \"issueDate\": \"2021-08-30T09:36:25+05:30\",\r\n \"expirationDate\": \"2022-09-29T12:46:02+05:30\",\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/lketmtestantps10/providers/microsoft.keyvault/vaults/ssltesting\",\r\n \"keyVaultSecretName\": \"adorenowadb85164-4f85-4ba7-8721-7071bbc3ecb1\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"lketmtestantps10\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"name\": \"psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"password\": null,\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.psunittesting.com,psunittesting.com\",\r\n \"hostNames\": [\r\n \"*.psunittesting.com\",\r\n \"psunittesting.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"Go Daddy Secure Certificate Authority - G2\",\r\n \"issueDate\": \"2023-02-16T07:42:44+05:30\",\r\n \"expirationDate\": \"2024-02-16T07:42:44+05:30\",\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourcegroups/rg-ps-unittesting/providers/microsoft.keyvault/vaults/ps-unittesting-keyvault\",\r\n \"keyVaultSecretName\": \"psunittestingaa142621-b4d5-445e-b940-7b9a0cc4e414\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL2Fkb3Jlbm93LWxrZXRtdGVzdGFudHBzMTAtQ2VudHJhbFVTd2Vic3BhY2U/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy9wc3VuaXR0ZXN0aW5nLVJHLVBTLVVuaXRUZXN0aW5nLUNlbnRyYWxVU3dlYnNwYWNlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17983aff-1521-4969-b776-95cb9ce2fd48" + "bd288e84-dad3-4154-88af-5819c42c970f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4788,22 +4926,22 @@ "14999" ], "x-ms-request-id": [ - "1c456fcf-a29b-47fe-af0f-861eb56e5952" + "0d2ac8ac-845b-4678-864f-bf98a1ce67e9" ], "x-ms-correlation-request-id": [ - "1c456fcf-a29b-47fe-af0f-861eb56e5952" + "0d2ac8ac-845b-4678-864f-bf98a1ce67e9" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112829Z:1c456fcf-a29b-47fe-af0f-861eb56e5952" + "JIOINDIACENTRAL:20230216T052415Z:0d2ac8ac-845b-4678-864f-bf98a1ce67e9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:28:29 GMT" + "Thu, 16 Feb 2023 05:24:15 GMT" ], "Content-Length": [ - "779" + "799" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4812,28 +4950,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"Code\": \"Conflict\",\r\n \"Message\": \"Cannot remove certificate with thumbprint 6156D1475113476C55A3064D44DED9ECA0B33864 because it is used for hostname testslot.adorenow.net.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot remove certificate with thumbprint 6156D1475113476C55A3064D44DED9ECA0B33864 because it is used for hostname testslot.adorenow.net.\"\r\n },\r\n {\r\n \"Code\": \"Conflict\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"ExtendedCode\": \"04035\",\r\n \"MessageTemplate\": \"Cannot remove certificate with thumbprint {0} because it is used for hostname {1}.\",\r\n \"Parameters\": [\r\n \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"testslot.adorenow.net\"\r\n ],\r\n \"Code\": \"Conflict\",\r\n \"Message\": \"Cannot remove certificate with thumbprint 6156D1475113476C55A3064D44DED9ECA0B33864 because it is used for hostname testslot.adorenow.net.\"\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}", + "ResponseBody": "{\r\n \"Code\": \"Conflict\",\r\n \"Message\": \"Cannot remove certificate with thumbprint 210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41 because it is used for hostname testslot.psunittesting.com.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot remove certificate with thumbprint 210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41 because it is used for hostname testslot.psunittesting.com.\"\r\n },\r\n {\r\n \"Code\": \"Conflict\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"ExtendedCode\": \"04035\",\r\n \"MessageTemplate\": \"Cannot remove certificate with thumbprint {0} because it is used for hostname {1}.\",\r\n \"Parameters\": [\r\n \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"testslot.psunittesting.com\"\r\n ],\r\n \"Code\": \"Conflict\",\r\n \"Message\": \"Cannot remove certificate with thumbprint 210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41 because it is used for hostname testslot.psunittesting.com.\"\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}", "StatusCode": 409 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL2Fkb3Jlbm93LWxrZXRtdGVzdGFudHBzMTAtQ2VudHJhbFVTd2Vic3BhY2U/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy9wc3VuaXR0ZXN0aW5nLVJHLVBTLVVuaXRUZXN0aW5nLUNlbnRyYWxVU3dlYnNwYWNlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42c3c3d1-f710-432d-8fbd-9b085349f460" + "224f041a-8d01-4037-877d-d00fef1a978d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4845,7 +4983,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fc51ebb3-76f6-4514-bd1b-eeb81c03b32b" + "b1ada8ab-0b10-44fd-9129-dc023e727d9b" ], "Server": [ "Microsoft-IIS/10.0" @@ -4860,16 +4998,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "f73b84a6-1d44-4d66-af15-9d72895eb762" + "f6e69bd1-b147-455c-85cf-8e9cf31ec4b8" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112914Z:f73b84a6-1d44-4d66-af15-9d72895eb762" + "JIOINDIACENTRAL:20230216T052441Z:f6e69bd1-b147-455c-85cf-8e9cf31ec4b8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:29:13 GMT" + "Thu, 16 Feb 2023 05:24:40 GMT" ], "Expires": [ "-1" @@ -4884,6 +5022,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "04b0639d-85d8-445a-bada-8da78e50ff30" + "SubscriptionId": "3e929699-b7a4-46cc-97cf-8a95e04318b8" } } \ No newline at end of file diff --git a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TestGetWebAppCertificate.json b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TestGetWebAppCertificate.json index 30120a294b99..266cc2c0c893 100644 --- a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TestGetWebAppCertificate.json +++ b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TestGetWebAppCertificate.json @@ -1,24 +1,24 @@ { "Entries": [ { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8fdb9a1f-0c34-450e-859f-ab5f0e67a513" + "f94466e5-00fb-46c6-9c77-48d8d0db8fba" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -27,13 +27,13 @@ "no-cache" ], "ETag": [ - "\"1D7E1271DB7A0EB\"" + "\"1D941C020CEF2A0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2bd17247-5495-4930-9bd7-3bcb6fb8ef90" + "48376892-b7f6-4c3b-8f84-1f9b9fd6b373" ], "Server": [ "Microsoft-IIS/10.0" @@ -48,19 +48,19 @@ "11999" ], "x-ms-correlation-request-id": [ - "6b648658-b3a7-4d17-851a-6789d3bf3090" + "4bd6fcfb-60ca-49b7-8965-15ed19b8cb11" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T113414Z:6b648658-b3a7-4d17-851a-6789d3bf3090" + "JIOINDIACENTRAL:20230216T044358Z:4bd6fcfb-60ca-49b7-8965-15ed19b8cb11" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:34:14 GMT" + "Thu, 16 Feb 2023 04:43:58 GMT" ], "Content-Length": [ - "5945" + "6888" ], "Content-Type": [ "application/json" @@ -69,28 +69,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"IpBasedEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": \"52.165.151.82\",\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:33:34.9266667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T04:35:42.41\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8fdb9a1f-0c34-450e-859f-ab5f0e67a513" + "f94466e5-00fb-46c6-9c77-48d8d0db8fba" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -99,13 +99,13 @@ "no-cache" ], "ETag": [ - "\"1D7E1271DB7A0EB\"" + "\"1D941C020CEF2A0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1cfd674b-65be-492b-8e9a-6be0c8bcafcd" + "334051f4-72f9-4968-96e5-a5c92b1979aa" ], "Server": [ "Microsoft-IIS/10.0" @@ -120,19 +120,19 @@ "11997" ], "x-ms-correlation-request-id": [ - "9f2fa08f-ebd6-4bcc-80c8-0161b2424956" + "42fcb5a9-0988-41cb-a8d0-ae2b99187056" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T113417Z:9f2fa08f-ebd6-4bcc-80c8-0161b2424956" + "JIOINDIACENTRAL:20230216T044403Z:42fcb5a9-0988-41cb-a8d0-ae2b99187056" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:34:16 GMT" + "Thu, 16 Feb 2023 04:44:03 GMT" ], "Content-Length": [ - "5945" + "6888" ], "Content-Type": [ "application/json" @@ -141,28 +141,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"IpBasedEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": \"52.165.151.82\",\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:33:34.9266667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T04:35:42.41\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77fd013c-c4f7-4a36-80d8-0bf5c29a8cdd" + "523a8a50-c7da-4505-920c-1612331a5183" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -171,13 +171,13 @@ "no-cache" ], "ETag": [ - "\"1D7E1273A7C8995\"" + "\"1D941C14EDEEE2B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "33e10e63-b7b4-4868-87b1-765b59aa6257" + "af34486b-6705-4247-9a70-c13a6e8efc49" ], "Server": [ "Microsoft-IIS/10.0" @@ -189,22 +189,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11999" ], "x-ms-correlation-request-id": [ - "5a985fe9-58de-4154-b501-d03ad4eaf7a6" + "47ff34dc-9f2b-4871-974a-0dfde9a0ba26" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T113432Z:5a985fe9-58de-4154-b501-d03ad4eaf7a6" + "JIOINDIACENTRAL:20230216T044436Z:47ff34dc-9f2b-4871-974a-0dfde9a0ba26" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:34:32 GMT" + "Thu, 16 Feb 2023 04:44:35 GMT" ], "Content-Length": [ - "5930" + "6933" ], "Content-Type": [ "application/json" @@ -213,28 +213,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:34:23.1933333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T04:44:09.1866667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77fd013c-c4f7-4a36-80d8-0bf5c29a8cdd" + "523a8a50-c7da-4505-920c-1612331a5183" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -243,13 +243,13 @@ "no-cache" ], "ETag": [ - "\"1D7E1273A7C8995\"" + "\"1D941C14EDEEE2B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a2def353-040d-44db-b238-2f3b6a57fa23" + "8da7259a-dcaa-49f5-976f-f3b27d8569b1" ], "Server": [ "Microsoft-IIS/10.0" @@ -261,22 +261,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11997" ], "x-ms-correlation-request-id": [ - "980b1c75-05b4-4e38-9253-321144145b06" + "eea5f6e7-78d7-4a2a-86a6-159d1d2a0e19" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T113435Z:980b1c75-05b4-4e38-9253-321144145b06" + "JIOINDIACENTRAL:20230216T044441Z:eea5f6e7-78d7-4a2a-86a6-159d1d2a0e19" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:34:34 GMT" + "Thu, 16 Feb 2023 04:44:40 GMT" ], "Content-Length": [ - "5930" + "6933" ], "Content-Type": [ "application/json" @@ -285,28 +285,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:34:23.1933333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T04:44:09.1866667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8fdb9a1f-0c34-450e-859f-ab5f0e67a513" + "f94466e5-00fb-46c6-9c77-48d8d0db8fba" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -318,7 +318,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b612166a-24c1-4372-80e0-1639a9f80a8f" + "c25eff49-518a-4d77-99bf-547c9393b25e" ], "Server": [ "Microsoft-IIS/10.0" @@ -333,19 +333,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "cf0f325b-a117-4517-8ec0-2e931037b88c" + "7fb9b2d6-c974-4d48-99ed-894859e954b0" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T113414Z:cf0f325b-a117-4517-8ec0-2e931037b88c" + "JIOINDIACENTRAL:20230216T044400Z:7fb9b2d6-c974-4d48-99ed-894859e954b0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:34:14 GMT" + "Thu, 16 Feb 2023 04:44:00 GMT" ], "Content-Length": [ - "4196" + "4017" ], "Content-Type": [ "application/json" @@ -354,28 +354,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$AppService-PS-UnitTesting\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8fdb9a1f-0c34-450e-859f-ab5f0e67a513" + "f94466e5-00fb-46c6-9c77-48d8d0db8fba" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -387,7 +387,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9283b34b-0b23-47dd-96c9-2723e416a743" + "3af2b536-1817-42eb-ad3b-93429f9b3a46" ], "Server": [ "Microsoft-IIS/10.0" @@ -402,19 +402,19 @@ "11996" ], "x-ms-correlation-request-id": [ - "5eccb96a-d709-4c36-8bd9-48baf12bab1d" + "f7715e07-ae23-4fa9-a2d3-f5501bf13d93" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T113417Z:5eccb96a-d709-4c36-8bd9-48baf12bab1d" + "JIOINDIACENTRAL:20230216T044404Z:f7715e07-ae23-4fa9-a2d3-f5501bf13d93" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:34:17 GMT" + "Thu, 16 Feb 2023 04:44:03 GMT" ], "Content-Length": [ - "4196" + "4017" ], "Content-Type": [ "application/json" @@ -423,28 +423,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$AppService-PS-UnitTesting\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77fd013c-c4f7-4a36-80d8-0bf5c29a8cdd" + "523a8a50-c7da-4505-920c-1612331a5183" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -456,7 +456,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c2761a28-6091-4ddb-b48b-94f1438749b5" + "8ad31842-bc7e-4cde-ab03-139f0956d08c" ], "Server": [ "Microsoft-IIS/10.0" @@ -468,22 +468,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11998" ], "x-ms-correlation-request-id": [ - "0f550277-8a78-4584-bef1-6aa47d3dd1df" + "c1e46f5d-f40a-45f6-b5ba-5ef5607d840f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T113433Z:0f550277-8a78-4584-bef1-6aa47d3dd1df" + "JIOINDIACENTRAL:20230216T044438Z:c1e46f5d-f40a-45f6-b5ba-5ef5607d840f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:34:32 GMT" + "Thu, 16 Feb 2023 04:44:37 GMT" ], "Content-Length": [ - "4196" + "4017" ], "Content-Type": [ "application/json" @@ -492,28 +492,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$AppService-PS-UnitTesting\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77fd013c-c4f7-4a36-80d8-0bf5c29a8cdd" + "523a8a50-c7da-4505-920c-1612331a5183" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -525,7 +525,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c04db88e-87a7-4ef5-a327-8de4a93bf58b" + "18d3af41-a19b-4a18-adf5-0c63f96a4b10" ], "Server": [ "Microsoft-IIS/10.0" @@ -537,22 +537,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11996" ], "x-ms-correlation-request-id": [ - "bc037914-8b18-4b64-a1db-96ecf004f7a6" + "c8160d86-8df3-48e5-b836-f8ef23b392e3" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T113435Z:bc037914-8b18-4b64-a1db-96ecf004f7a6" + "JIOINDIACENTRAL:20230216T044441Z:c8160d86-8df3-48e5-b836-f8ef23b392e3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:34:35 GMT" + "Thu, 16 Feb 2023 04:44:41 GMT" ], "Content-Length": [ - "4196" + "4017" ], "Content-Type": [ "application/json" @@ -561,28 +561,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$AppService-PS-UnitTesting\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8fdb9a1f-0c34-450e-859f-ab5f0e67a513" + "f94466e5-00fb-46c6-9c77-48d8d0db8fba" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -594,7 +594,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c9a8d43a-01de-4cf4-903f-5f337155fd53" + "e64f1466-cbbe-48ba-9c8a-84fb964d8777" ], "Server": [ "Microsoft-IIS/10.0" @@ -609,19 +609,19 @@ "11999" ], "x-ms-correlation-request-id": [ - "9a18f670-2a9d-4353-bd2e-83a1d53aba7f" + "9b20bceb-eaf3-4266-a0a7-ba2962dbbd57" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T113415Z:9a18f670-2a9d-4353-bd2e-83a1d53aba7f" + "JIOINDIACENTRAL:20230216T044401Z:9b20bceb-eaf3-4266-a0a7-ba2962dbbd57" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:34:15 GMT" + "Thu, 16 Feb 2023 04:44:00 GMT" ], "Content-Length": [ - "740" + "676" ], "Content-Type": [ "application/json" @@ -630,28 +630,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8fdb9a1f-0c34-450e-859f-ab5f0e67a513" + "f94466e5-00fb-46c6-9c77-48d8d0db8fba" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -663,7 +663,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "33f68627-40dd-46ee-9bd2-370d46b43975" + "fc1f6092-a30a-46b2-b2b4-b47a74c2bdef" ], "Server": [ "Microsoft-IIS/10.0" @@ -678,19 +678,19 @@ "11996" ], "x-ms-correlation-request-id": [ - "b1ac3255-bbd8-4c2e-8e26-007dde739f45" + "89b890c6-e80f-4305-9c0a-77fb76630b60" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T113417Z:b1ac3255-bbd8-4c2e-8e26-007dde739f45" + "JIOINDIACENTRAL:20230216T044405Z:89b890c6-e80f-4305-9c0a-77fb76630b60" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:34:17 GMT" + "Thu, 16 Feb 2023 04:44:04 GMT" ], "Content-Length": [ - "740" + "676" ], "Content-Type": [ "application/json" @@ -699,28 +699,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77fd013c-c4f7-4a36-80d8-0bf5c29a8cdd" + "523a8a50-c7da-4505-920c-1612331a5183" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -732,7 +732,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "623fea2e-a43d-4101-8251-be8b335f0150" + "d4b13963-45cc-42bf-bf3e-7e30b69b4df3" ], "Server": [ "Microsoft-IIS/10.0" @@ -744,22 +744,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11993" + "11999" ], "x-ms-correlation-request-id": [ - "70e08a7e-667a-491b-81ed-17d5e484a062" + "82ee2f8c-f3b7-407f-bf83-0b9f90896be2" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T113433Z:70e08a7e-667a-491b-81ed-17d5e484a062" + "JIOINDIACENTRAL:20230216T044438Z:82ee2f8c-f3b7-407f-bf83-0b9f90896be2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:34:33 GMT" + "Thu, 16 Feb 2023 04:44:38 GMT" ], "Content-Length": [ - "740" + "676" ], "Content-Type": [ "application/json" @@ -768,28 +768,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77fd013c-c4f7-4a36-80d8-0bf5c29a8cdd" + "523a8a50-c7da-4505-920c-1612331a5183" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -801,7 +801,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "276e2e91-c46b-4c9e-9459-03c1f250ee80" + "d9a10ddb-bac1-4894-89a9-52a5f2dd276c" ], "Server": [ "Microsoft-IIS/10.0" @@ -813,22 +813,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11990" + "11996" ], "x-ms-correlation-request-id": [ - "afa3637b-ffda-4dcd-a446-e4cdbc38f77b" + "2dd9584f-3c5a-4fec-a291-e3bc897b9271" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T113435Z:afa3637b-ffda-4dcd-a446-e4cdbc38f77b" + "JIOINDIACENTRAL:20230216T044442Z:2dd9584f-3c5a-4fec-a291-e3bc897b9271" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:34:35 GMT" + "Thu, 16 Feb 2023 04:44:42 GMT" ], "Content-Length": [ - "740" + "676" ], "Content-Type": [ "application/json" @@ -837,28 +837,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8fdb9a1f-0c34-450e-859f-ab5f0e67a513" + "f94466e5-00fb-46c6-9c77-48d8d0db8fba" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -870,7 +870,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ba534815-acec-48a7-8780-a0586f4ba2e5" + "7243dfc5-ee89-4ff6-b814-10d68b3cccda" ], "Server": [ "Microsoft-IIS/10.0" @@ -885,19 +885,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "c7eb8b1e-a27e-4acf-8dcd-dca4f32e2a5c" + "53b83a8e-5c12-4cbd-87f1-b11914d29d6e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T113416Z:c7eb8b1e-a27e-4acf-8dcd-dca4f32e2a5c" + "JIOINDIACENTRAL:20230216T044402Z:53b83a8e-5c12-4cbd-87f1-b11914d29d6e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:34:15 GMT" + "Thu, 16 Feb 2023 04:44:01 GMT" ], "Content-Length": [ - "290" + "277" ], "Content-Type": [ "application/json" @@ -906,28 +906,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8fdb9a1f-0c34-450e-859f-ab5f0e67a513" + "f94466e5-00fb-46c6-9c77-48d8d0db8fba" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -939,7 +939,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "270fbf4e-27a9-491e-9d43-c230e2e100d9" + "81608eab-7d7e-44ce-aee1-24055af9c35a" ], "Server": [ "Microsoft-IIS/10.0" @@ -954,19 +954,19 @@ "11995" ], "x-ms-correlation-request-id": [ - "e772aa32-70d8-46c2-8098-7c259547b39f" + "35589283-d9dd-4b63-8ddd-576750672a61" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T113418Z:e772aa32-70d8-46c2-8098-7c259547b39f" + "JIOINDIACENTRAL:20230216T044406Z:35589283-d9dd-4b63-8ddd-576750672a61" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:34:17 GMT" + "Thu, 16 Feb 2023 04:44:05 GMT" ], "Content-Length": [ - "290" + "277" ], "Content-Type": [ "application/json" @@ -975,28 +975,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77fd013c-c4f7-4a36-80d8-0bf5c29a8cdd" + "523a8a50-c7da-4505-920c-1612331a5183" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1008,7 +1008,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6b7f8744-2cb1-43e7-a43f-01629ff3def6" + "a1f0a14a-0070-4632-8599-eb2d8fe014fd" ], "Server": [ "Microsoft-IIS/10.0" @@ -1020,22 +1020,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11992" + "11998" ], "x-ms-correlation-request-id": [ - "f83e9c10-b331-4d2b-90e4-781e06aff7c9" + "7380c660-4a80-4ce4-8344-3bb6fcea38d3" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T113434Z:f83e9c10-b331-4d2b-90e4-781e06aff7c9" + "JIOINDIACENTRAL:20230216T044439Z:7380c660-4a80-4ce4-8344-3bb6fcea38d3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:34:33 GMT" + "Thu, 16 Feb 2023 04:44:39 GMT" ], "Content-Length": [ - "290" + "277" ], "Content-Type": [ "application/json" @@ -1044,28 +1044,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77fd013c-c4f7-4a36-80d8-0bf5c29a8cdd" + "523a8a50-c7da-4505-920c-1612331a5183" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1077,7 +1077,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "60c35289-8f37-477f-aa68-d590e97d8135" + "a961f837-c4b8-43d4-8f1a-1393df65af42" ], "Server": [ "Microsoft-IIS/10.0" @@ -1089,22 +1089,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11989" + "11995" ], "x-ms-correlation-request-id": [ - "c196279a-e760-4eab-8b79-cdc9f40988c4" + "821df2ee-4148-4fa9-a8bc-2da7e685977b" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T113436Z:c196279a-e760-4eab-8b79-cdc9f40988c4" + "JIOINDIACENTRAL:20230216T044443Z:821df2ee-4148-4fa9-a8bc-2da7e685977b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:34:35 GMT" + "Thu, 16 Feb 2023 04:44:43 GMT" ], "Content-Length": [ - "290" + "277" ], "Content-Type": [ "application/json" @@ -1113,28 +1113,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8fdb9a1f-0c34-450e-859f-ab5f0e67a513" + "f94466e5-00fb-46c6-9c77-48d8d0db8fba" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1146,7 +1146,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d0f17e42-5035-4a53-a4f7-ef239e81581f" + "76ad80d3-eb91-4800-afea-7e732024a9b0" ], "Server": [ "Microsoft-IIS/10.0" @@ -1161,19 +1161,19 @@ "11997" ], "x-ms-correlation-request-id": [ - "cd138906-c648-4399-b12b-a30fb14df25d" + "82334440-d264-46c7-818d-cddb002fd74f" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T113416Z:cd138906-c648-4399-b12b-a30fb14df25d" + "JIOINDIACENTRAL:20230216T044402Z:82334440-d264-46c7-818d-cddb002fd74f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:34:16 GMT" + "Thu, 16 Feb 2023 04:44:02 GMT" ], "Content-Length": [ - "287" + "274" ], "Content-Type": [ "application/json" @@ -1182,28 +1182,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8fdb9a1f-0c34-450e-859f-ab5f0e67a513" + "f94466e5-00fb-46c6-9c77-48d8d0db8fba" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1215,7 +1215,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "073a785e-44c7-4e24-9a8a-444d7a020ee7" + "9c607915-3b3e-4ddf-94fa-dc35aa2c5c30" ], "Server": [ "Microsoft-IIS/10.0" @@ -1230,19 +1230,19 @@ "11994" ], "x-ms-correlation-request-id": [ - "997080c5-0623-48fc-a3e1-e443e68ad8a9" + "5554dfab-1cf4-4435-a343-c7f1805020f1" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T113418Z:997080c5-0623-48fc-a3e1-e443e68ad8a9" + "JIOINDIACENTRAL:20230216T044407Z:5554dfab-1cf4-4435-a343-c7f1805020f1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:34:18 GMT" + "Thu, 16 Feb 2023 04:44:07 GMT" ], "Content-Length": [ - "287" + "274" ], "Content-Type": [ "application/json" @@ -1251,28 +1251,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77fd013c-c4f7-4a36-80d8-0bf5c29a8cdd" + "523a8a50-c7da-4505-920c-1612331a5183" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1284,7 +1284,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0d1a3c4d-f1f8-483c-b035-4f7a59975c8c" + "d4f5e928-2eb9-4918-ab1b-030fc51aaebf" ], "Server": [ "Microsoft-IIS/10.0" @@ -1296,22 +1296,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11991" + "11997" ], "x-ms-correlation-request-id": [ - "edf1ae06-fd13-42d4-a113-c8b7e73ef85d" + "c951fdbc-5e82-4157-aa3b-cba3718f0056" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T113434Z:edf1ae06-fd13-42d4-a113-c8b7e73ef85d" + "JIOINDIACENTRAL:20230216T044440Z:c951fdbc-5e82-4157-aa3b-cba3718f0056" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:34:34 GMT" + "Thu, 16 Feb 2023 04:44:40 GMT" ], "Content-Length": [ - "287" + "274" ], "Content-Type": [ "application/json" @@ -1320,28 +1320,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77fd013c-c4f7-4a36-80d8-0bf5c29a8cdd" + "523a8a50-c7da-4505-920c-1612331a5183" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1353,7 +1353,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6c493d45-b9a0-4a59-beee-0f7448daf33c" + "a541afe3-0a9d-43ca-b97c-82993142c891" ], "Server": [ "Microsoft-IIS/10.0" @@ -1365,22 +1365,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11988" + "11994" ], "x-ms-correlation-request-id": [ - "9c783a01-c2d1-42cf-ba68-c06cde524809" + "f4335e6d-e6a7-4754-8a82-89105a30d31c" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T113436Z:9c783a01-c2d1-42cf-ba68-c06cde524809" + "JIOINDIACENTRAL:20230216T044444Z:f4335e6d-e6a7-4754-8a82-89105a30d31c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:34:36 GMT" + "Thu, 16 Feb 2023 04:44:44 GMT" ], "Content-Length": [ - "287" + "274" ], "Content-Type": [ "application/json" @@ -1389,34 +1389,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8fdb9a1f-0c34-450e-859f-ab5f0e67a513" + "f94466e5-00fb-46c6-9c77-48d8d0db8fba" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "314" + "280" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1425,13 +1425,13 @@ "no-cache" ], "ETag": [ - "\"1D7E1271DB7A0EB\"" + "\"1D941C020CEF2A0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8f4b79b9-af7c-4bc9-adc4-968d250f005e" + "72eb5190-0f52-4dfa-ba98-d0615fc5eeb5" ], "Server": [ "Microsoft-IIS/10.0" @@ -1446,19 +1446,19 @@ "499" ], "x-ms-correlation-request-id": [ - "07c226da-b6fe-4d2c-805a-f9d8dae64681" + "6579662e-b256-4b2a-a6f3-98e181cf5a81" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T113431Z:07c226da-b6fe-4d2c-805a-f9d8dae64681" + "JIOINDIACENTRAL:20230216T044413Z:6579662e-b256-4b2a-a6f3-98e181cf5a81" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:34:31 GMT" + "Thu, 16 Feb 2023 04:44:13 GMT" ], "Content-Length": [ - "6130" + "7151" ], "Content-Type": [ "application/json" @@ -1467,34 +1467,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:34:23.1933333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T04:44:09.1866667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "77fd013c-c4f7-4a36-80d8-0bf5c29a8cdd" + "523a8a50-c7da-4505-920c-1612331a5183" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "245" + "211" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"Disabled\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1503,13 +1503,13 @@ "no-cache" ], "ETag": [ - "\"1D7E1273A7C8995\"" + "\"1D941C14EDEEE2B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "de349a70-271b-4ef2-8c5f-6916dbb31d4d" + "3f6826a3-2ee3-4a54-9fd7-960f814e7e89" ], "Server": [ "Microsoft-IIS/10.0" @@ -1521,22 +1521,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "498" + "499" ], "x-ms-correlation-request-id": [ - "9ca2dc68-bc3b-425c-82e1-fd374c8b30c7" + "6d4d90bf-39e6-4a27-bd52-00c9e857ebdf" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T113441Z:9ca2dc68-bc3b-425c-82e1-fd374c8b30c7" + "JIOINDIACENTRAL:20230216T044450Z:6d4d90bf-39e6-4a27-bd52-00c9e857ebdf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:34:40 GMT" + "Thu, 16 Feb 2023 04:44:50 GMT" ], "Content-Length": [ - "6085" + "7111" ], "Content-Type": [ "application/json" @@ -1545,28 +1545,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:34:39.25\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T04:44:46.1366667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcmVzb3VyY2VzPyRmaWx0ZXI9cmVzb3VyY2VUeXBlJTIwZXElMjAnTWljcm9zb2Z0LldlYiUyRkNlcnRpZmljYXRlcycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5XZWIlMkZDZXJ0aWZpY2F0ZXMnJmFwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a38976a4-60c1-4d64-8f8d-8bb30990e3d9" + "af70ada5-c80c-46d4-a9bf-321e04ab4b04" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.51" + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1578,13 +1578,13 @@ "11999" ], "x-ms-request-id": [ - "5940eb85-c0f1-473a-9bda-eaad756b2394" + "49aceb2a-ae9e-4202-8b37-7de6e913e2c5" ], "x-ms-correlation-request-id": [ - "5940eb85-c0f1-473a-9bda-eaad756b2394" + "49aceb2a-ae9e-4202-8b37-7de6e913e2c5" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T113431Z:5940eb85-c0f1-473a-9bda-eaad756b2394" + "JIOINDIACENTRAL:20230216T044414Z:49aceb2a-ae9e-4202-8b37-7de6e913e2c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1593,7 +1593,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:34:31 GMT" + "Thu, 16 Feb 2023 04:44:14 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1602,31 +1602,31 @@ "-1" ], "Content-Length": [ - "297" + "587" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"name\": \"adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"name\": \"PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"name\": \"psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcmVzb3VyY2VzPyRmaWx0ZXI9cmVzb3VyY2VUeXBlJTIwZXElMjAnTWljcm9zb2Z0LldlYiUyRkNlcnRpZmljYXRlcycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5XZWIlMkZDZXJ0aWZpY2F0ZXMnJmFwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40672d9f-cc53-499d-9d32-4aa5dc3b1c6b" + "0108e4f1-06a9-4c13-ac82-342de1e66f0c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.51" + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1635,16 +1635,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-request-id": [ - "806e831c-de65-45b0-8be7-2e8296b56129" + "c3637530-2f3c-442a-a1c8-4ee7b723a16e" ], "x-ms-correlation-request-id": [ - "806e831c-de65-45b0-8be7-2e8296b56129" + "c3637530-2f3c-442a-a1c8-4ee7b723a16e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T113432Z:806e831c-de65-45b0-8be7-2e8296b56129" + "JIOINDIACENTRAL:20230216T044425Z:c3637530-2f3c-442a-a1c8-4ee7b723a16e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1653,7 +1653,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:34:31 GMT" + "Thu, 16 Feb 2023 04:44:24 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1662,31 +1662,31 @@ "-1" ], "Content-Length": [ - "297" + "587" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"name\": \"adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"name\": \"PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"name\": \"psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcmVzb3VyY2VzPyRmaWx0ZXI9cmVzb3VyY2VUeXBlJTIwZXElMjAnTWljcm9zb2Z0LldlYiUyRkNlcnRpZmljYXRlcycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5XZWIlMkZDZXJ0aWZpY2F0ZXMnJmFwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77fd013c-c4f7-4a36-80d8-0bf5c29a8cdd" + "523a8a50-c7da-4505-920c-1612331a5183" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.51" + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1695,16 +1695,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-request-id": [ - "137e4d9e-0362-40db-a8c0-b7f2f846b1e4" + "d14beb70-9536-4b08-bcca-707821b267bc" ], "x-ms-correlation-request-id": [ - "137e4d9e-0362-40db-a8c0-b7f2f846b1e4" + "d14beb70-9536-4b08-bcca-707821b267bc" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T113441Z:137e4d9e-0362-40db-a8c0-b7f2f846b1e4" + "JIOINDIACENTRAL:20230216T044455Z:d14beb70-9536-4b08-bcca-707821b267bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1713,7 +1713,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:34:41 GMT" + "Thu, 16 Feb 2023 04:44:54 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1722,31 +1722,100 @@ "-1" ], "Content-Length": [ - "297" + "587" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"name\": \"adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"name\": \"PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"name\": \"psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL2Fkb3Jlbm93LWxrZXRtdGVzdGFudHBzMTAtQ2VudHJhbFVTd2Vic3BhY2U/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/PS-UnitTesting-Keyvault-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy9QUy1Vbml0VGVzdGluZy1LZXl2YXVsdC1QUy1Vbml0VGVzdGluZz9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "af70ada5-c80c-46d4-a9bf-321e04ab4b04" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" + ] + }, "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "41557b13-bb47-4d37-958f-370f8e4854eb" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "04814481-77a5-4efe-be64-80114f8fa39b" + ], + "x-ms-routing-request-id": [ + "JIOINDIACENTRAL:20230216T044419Z:04814481-77a5-4efe-be64-80114f8fa39b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Feb 2023 04:44:18 GMT" + ], + "Content-Length": [ + "1081" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"name\": \"PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"password\": null,\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"psunittesting\",\r\n \"hostNames\": [\r\n \"psunittesting\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"psunittesting\",\r\n \"issueDate\": \"2022-07-28T07:11:04+05:30\",\r\n \"expirationDate\": \"2023-07-28T07:21:04+05:30\",\r\n \"thumbprint\": \"E4E04D3CE912AB34F0B94CBC27042E5022C961E1\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourcegroups/rg-ps-unittesting/providers/microsoft.keyvault/vaults/ps-unittesting-keyvault\",\r\n \"keyVaultSecretName\": \"ps-unittesting\",\r\n \"keyVaultSecretStatus\": \"KeyVaultSecretDoesNotExist\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/PS-UnitTesting-Keyvault-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy9QUy1Vbml0VGVzdGluZy1LZXl2YXVsdC1QUy1Vbml0VGVzdGluZz9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "a38976a4-60c1-4d64-8f8d-8bb30990e3d9" + "0108e4f1-06a9-4c13-ac82-342de1e66f0c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1758,7 +1827,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "114f9de2-66ab-42ff-aa07-1a22932b9884" + "2ef02988-a4f9-4016-accd-f290b8372e38" ], "Server": [ "Microsoft-IIS/10.0" @@ -1770,22 +1839,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11999" ], "x-ms-correlation-request-id": [ - "dbc0dfd4-5cfb-4f98-9166-59371e4ca4ff" + "2ba1df60-aef7-47a2-ad0d-d52251825bde" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T113431Z:dbc0dfd4-5cfb-4f98-9166-59371e4ca4ff" + "JIOINDIACENTRAL:20230216T044430Z:2ba1df60-aef7-47a2-ad0d-d52251825bde" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:34:31 GMT" + "Thu, 16 Feb 2023 04:44:29 GMT" ], "Content-Length": [ - "1157" + "1081" ], "Content-Type": [ "application/json" @@ -1794,28 +1863,97 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"name\": \"adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"password\": null,\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.adorenow.net,adorenow.net\",\r\n \"hostNames\": [\r\n \"*.adorenow.net\",\r\n \"adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"Go Daddy Secure Certificate Authority - G2\",\r\n \"issueDate\": \"2021-08-30T09:36:25+05:30\",\r\n \"expirationDate\": \"2022-09-29T12:46:02+05:30\",\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/lketmtestantps10/providers/microsoft.keyvault/vaults/ssltesting\",\r\n \"keyVaultSecretName\": \"adorenowadb85164-4f85-4ba7-8721-7071bbc3ecb1\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"lketmtestantps10\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"name\": \"PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"password\": null,\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"psunittesting\",\r\n \"hostNames\": [\r\n \"psunittesting\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"psunittesting\",\r\n \"issueDate\": \"2022-07-28T07:11:04+05:30\",\r\n \"expirationDate\": \"2023-07-28T07:21:04+05:30\",\r\n \"thumbprint\": \"E4E04D3CE912AB34F0B94CBC27042E5022C961E1\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourcegroups/rg-ps-unittesting/providers/microsoft.keyvault/vaults/ps-unittesting-keyvault\",\r\n \"keyVaultSecretName\": \"ps-unittesting\",\r\n \"keyVaultSecretStatus\": \"KeyVaultSecretDoesNotExist\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL2Fkb3Jlbm93LWxrZXRtdGVzdGFudHBzMTAtQ2VudHJhbFVTd2Vic3BhY2U/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/PS-UnitTesting-Keyvault-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy9QUy1Vbml0VGVzdGluZy1LZXl2YXVsdC1QUy1Vbml0VGVzdGluZz9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "523a8a50-c7da-4505-920c-1612331a5183" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" + ] + }, "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "cf4914ba-5e5b-4986-a26f-a3f571e7a2be" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "5d1e76a2-18bb-4e3b-9240-d7e609d3a98c" + ], + "x-ms-routing-request-id": [ + "JIOINDIACENTRAL:20230216T044455Z:5d1e76a2-18bb-4e3b-9240-d7e609d3a98c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Feb 2023 04:44:54 GMT" + ], + "Content-Length": [ + "1081" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"name\": \"PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"password\": null,\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"psunittesting\",\r\n \"hostNames\": [\r\n \"psunittesting\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"psunittesting\",\r\n \"issueDate\": \"2022-07-28T07:11:04+05:30\",\r\n \"expirationDate\": \"2023-07-28T07:21:04+05:30\",\r\n \"thumbprint\": \"E4E04D3CE912AB34F0B94CBC27042E5022C961E1\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourcegroups/rg-ps-unittesting/providers/microsoft.keyvault/vaults/ps-unittesting-keyvault\",\r\n \"keyVaultSecretName\": \"ps-unittesting\",\r\n \"keyVaultSecretStatus\": \"KeyVaultSecretDoesNotExist\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy9wc3VuaXR0ZXN0aW5nLVJHLVBTLVVuaXRUZXN0aW5nLUNlbnRyYWxVU3dlYnNwYWNlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "40672d9f-cc53-499d-9d32-4aa5dc3b1c6b" + "af70ada5-c80c-46d4-a9bf-321e04ab4b04" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1827,7 +1965,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a58e0868-b1a9-4976-9df3-169cbc281e3b" + "dca3379d-d5e8-4d3f-9a05-411267be77c2" ], "Server": [ "Microsoft-IIS/10.0" @@ -1839,22 +1977,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11998" ], "x-ms-correlation-request-id": [ - "11f78ddd-921b-47b8-b9a4-16d957df0b38" + "c8dd085e-dae1-4e8a-8df2-9c08ffe922a5" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T113432Z:11f78ddd-921b-47b8-b9a4-16d957df0b38" + "JIOINDIACENTRAL:20230216T044420Z:c8dd085e-dae1-4e8a-8df2-9c08ffe922a5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:34:32 GMT" + "Thu, 16 Feb 2023 04:44:19 GMT" ], "Content-Length": [ - "1157" + "1211" ], "Content-Type": [ "application/json" @@ -1863,28 +2001,97 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"name\": \"adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"password\": null,\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.adorenow.net,adorenow.net\",\r\n \"hostNames\": [\r\n \"*.adorenow.net\",\r\n \"adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"Go Daddy Secure Certificate Authority - G2\",\r\n \"issueDate\": \"2021-08-30T09:36:25+05:30\",\r\n \"expirationDate\": \"2022-09-29T12:46:02+05:30\",\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/lketmtestantps10/providers/microsoft.keyvault/vaults/ssltesting\",\r\n \"keyVaultSecretName\": \"adorenowadb85164-4f85-4ba7-8721-7071bbc3ecb1\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"lketmtestantps10\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"name\": \"psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"password\": null,\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.psunittesting.com,psunittesting.com\",\r\n \"hostNames\": [\r\n \"*.psunittesting.com\",\r\n \"psunittesting.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"Go Daddy Secure Certificate Authority - G2\",\r\n \"issueDate\": \"2023-02-16T07:42:44+05:30\",\r\n \"expirationDate\": \"2024-02-16T07:42:44+05:30\",\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourcegroups/rg-ps-unittesting/providers/microsoft.keyvault/vaults/ps-unittesting-keyvault\",\r\n \"keyVaultSecretName\": \"psunittestingaa142621-b4d5-445e-b940-7b9a0cc4e414\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL2Fkb3Jlbm93LWxrZXRtdGVzdGFudHBzMTAtQ2VudHJhbFVTd2Vic3BhY2U/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy9wc3VuaXR0ZXN0aW5nLVJHLVBTLVVuaXRUZXN0aW5nLUNlbnRyYWxVU3dlYnNwYWNlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0108e4f1-06a9-4c13-ac82-342de1e66f0c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" + ] + }, "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "15f6c349-cfc9-4a0f-bb78-b4a97b691a48" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "f29ce9cf-a61b-478e-81e1-8e861c167c3f" + ], + "x-ms-routing-request-id": [ + "JIOINDIACENTRAL:20230216T044431Z:f29ce9cf-a61b-478e-81e1-8e861c167c3f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Feb 2023 04:44:30 GMT" + ], + "Content-Length": [ + "1211" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"name\": \"psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"password\": null,\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.psunittesting.com,psunittesting.com\",\r\n \"hostNames\": [\r\n \"*.psunittesting.com\",\r\n \"psunittesting.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"Go Daddy Secure Certificate Authority - G2\",\r\n \"issueDate\": \"2023-02-16T07:42:44+05:30\",\r\n \"expirationDate\": \"2024-02-16T07:42:44+05:30\",\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourcegroups/rg-ps-unittesting/providers/microsoft.keyvault/vaults/ps-unittesting-keyvault\",\r\n \"keyVaultSecretName\": \"psunittestingaa142621-b4d5-445e-b940-7b9a0cc4e414\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy9wc3VuaXR0ZXN0aW5nLVJHLVBTLVVuaXRUZXN0aW5nLUNlbnRyYWxVU3dlYnNwYWNlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "77fd013c-c4f7-4a36-80d8-0bf5c29a8cdd" + "523a8a50-c7da-4505-920c-1612331a5183" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1896,7 +2103,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "41e357f1-adbe-440d-b61c-0b79d0a2381e" + "b29b4370-b711-4fe5-b409-31aa4d043c9b" ], "Server": [ "Microsoft-IIS/10.0" @@ -1908,22 +2115,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11994" ], "x-ms-correlation-request-id": [ - "7f165b7a-378d-403c-9be3-fc0e3a502ed1" + "b6c18af4-cb04-463c-8edf-95cde04e32fa" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T113442Z:7f165b7a-378d-403c-9be3-fc0e3a502ed1" + "JIOINDIACENTRAL:20230216T044456Z:b6c18af4-cb04-463c-8edf-95cde04e32fa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:34:41 GMT" + "Thu, 16 Feb 2023 04:44:55 GMT" ], "Content-Length": [ - "1157" + "1211" ], "Content-Type": [ "application/json" @@ -1932,28 +2139,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"name\": \"adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"password\": null,\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.adorenow.net,adorenow.net\",\r\n \"hostNames\": [\r\n \"*.adorenow.net\",\r\n \"adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"Go Daddy Secure Certificate Authority - G2\",\r\n \"issueDate\": \"2021-08-30T09:36:25+05:30\",\r\n \"expirationDate\": \"2022-09-29T12:46:02+05:30\",\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/lketmtestantps10/providers/microsoft.keyvault/vaults/ssltesting\",\r\n \"keyVaultSecretName\": \"adorenowadb85164-4f85-4ba7-8721-7071bbc3ecb1\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"lketmtestantps10\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"name\": \"psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"password\": null,\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.psunittesting.com,psunittesting.com\",\r\n \"hostNames\": [\r\n \"*.psunittesting.com\",\r\n \"psunittesting.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"Go Daddy Secure Certificate Authority - G2\",\r\n \"issueDate\": \"2023-02-16T07:42:44+05:30\",\r\n \"expirationDate\": \"2024-02-16T07:42:44+05:30\",\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourcegroups/rg-ps-unittesting/providers/microsoft.keyvault/vaults/ps-unittesting-keyvault\",\r\n \"keyVaultSecretName\": \"psunittestingaa142621-b4d5-445e-b940-7b9a0cc4e414\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL2Fkb3Jlbm93LWxrZXRtdGVzdGFudHBzMTAtQ2VudHJhbFVTd2Vic3BhY2U/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy9wc3VuaXR0ZXN0aW5nLVJHLVBTLVVuaXRUZXN0aW5nLUNlbnRyYWxVU3dlYnNwYWNlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77fd013c-c4f7-4a36-80d8-0bf5c29a8cdd" + "523a8a50-c7da-4505-920c-1612331a5183" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1965,7 +2172,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "90afc734-62f2-4c8a-8f5c-ca4e0527c9d0" + "508dc4b0-0198-440e-8157-a479b18cee59" ], "Server": [ "Microsoft-IIS/10.0" @@ -1980,16 +2187,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "f76fa8f7-7215-4a81-a32d-c111486dcd46" + "2c765d87-8322-41b0-84a4-08f2f16c8b47" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T113445Z:f76fa8f7-7215-4a81-a32d-c111486dcd46" + "JIOINDIACENTRAL:20230216T044500Z:2c765d87-8322-41b0-84a4-08f2f16c8b47" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:34:44 GMT" + "Thu, 16 Feb 2023 04:44:59 GMT" ], "Expires": [ "-1" @@ -2004,6 +2211,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "04b0639d-85d8-445a-bada-8da78e50ff30" + "SubscriptionId": "3e929699-b7a4-46cc-97cf-8a95e04318b8" } } \ No newline at end of file diff --git a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TestRemoveNewWebAppSSLBinding.json b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TestRemoveNewWebAppSSLBinding.json index 3433eb78d0e7..fc8037a6720c 100644 --- a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TestRemoveNewWebAppSSLBinding.json +++ b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TestRemoveNewWebAppSSLBinding.json @@ -1,24 +1,24 @@ { "Entries": [ { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5849f6e1-0d0b-45ed-a84b-30d158ef8303" + "3d27e739-4588-435a-b317-2f59ecb49727" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -27,13 +27,13 @@ "no-cache" ], "ETag": [ - "\"1D7E125781B17C0\"" + "\"1D941C57286B315\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "aab5c7d0-56b4-498a-86de-cb466a5331ad" + "33bf5edb-65cb-4a43-9255-8fb10d589e55" ], "Server": [ "Microsoft-IIS/10.0" @@ -48,19 +48,19 @@ "11999" ], "x-ms-correlation-request-id": [ - "fdc74db9-5729-4f8f-a7a6-4703fc4a78a1" + "08c39a25-3584-4f2b-ba32-33bbe31de50a" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112217Z:fdc74db9-5729-4f8f-a7a6-4703fc4a78a1" + "JIOINDIACENTRAL:20230216T051633Z:08c39a25-3584-4f2b-ba32-33bbe31de50a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:22:16 GMT" + "Thu, 16 Feb 2023 05:16:33 GMT" ], "Content-Length": [ - "5940" + "6933" ], "Content-Type": [ "application/json" @@ -69,28 +69,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"IpBasedEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": \"52.165.151.82\",\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:21:47.58\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:13:46.9933333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5849f6e1-0d0b-45ed-a84b-30d158ef8303" + "3d27e739-4588-435a-b317-2f59ecb49727" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -99,13 +99,13 @@ "no-cache" ], "ETag": [ - "\"1D7E125781B17C0\"" + "\"1D941C57286B315\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8bb4c48b-4da9-429d-992f-f52c0e4864d8" + "20da9039-fffd-414b-8332-1510bccfef3a" ], "Server": [ "Microsoft-IIS/10.0" @@ -120,19 +120,19 @@ "11997" ], "x-ms-correlation-request-id": [ - "82e5fdf6-5874-4e76-94d9-7d28d66e7200" + "e4455ae6-0dd6-4e30-a49a-da1fde480963" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112220Z:82e5fdf6-5874-4e76-94d9-7d28d66e7200" + "JIOINDIACENTRAL:20230216T051638Z:e4455ae6-0dd6-4e30-a49a-da1fde480963" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:22:19 GMT" + "Thu, 16 Feb 2023 05:16:38 GMT" ], "Content-Length": [ - "5940" + "6933" ], "Content-Type": [ "application/json" @@ -141,28 +141,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"IpBasedEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": \"52.165.151.82\",\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:21:47.58\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:13:46.9933333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25501db1-7df3-4c02-a530-e38e41349045" + "839ea374-65cc-4fbd-abd0-5739c2c161f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -171,13 +171,13 @@ "no-cache" ], "ETag": [ - "\"1D7E1258FB79B95\"" + "\"1D941C5DC4D748B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "86a9a003-28eb-412c-bdef-c4acd47c31a5" + "fbbfd6ff-2803-4ce3-a4e1-5ee873fd3d67" ], "Server": [ "Microsoft-IIS/10.0" @@ -189,22 +189,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11997" ], "x-ms-correlation-request-id": [ - "d7123904-285f-456f-a8a6-eb2b0662531e" + "fba355ba-ec45-4e13-90be-d4b3d9a39a2b" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112247Z:d7123904-285f-456f-a8a6-eb2b0662531e" + "JIOINDIACENTRAL:20230216T051717Z:fba355ba-ec45-4e13-90be-d4b3d9a39a2b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:22:47 GMT" + "Thu, 16 Feb 2023 05:17:17 GMT" ], "Content-Length": [ - "5930" + "6933" ], "Content-Type": [ "application/json" @@ -213,28 +213,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:22:27.1933333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:16:44.4566667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25501db1-7df3-4c02-a530-e38e41349045" + "839ea374-65cc-4fbd-abd0-5739c2c161f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -243,13 +243,13 @@ "no-cache" ], "ETag": [ - "\"1D7E1258FB79B95\"" + "\"1D941C5DC4D748B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6de521ca-70cd-4231-99cb-af641c7bd9f6" + "ae1f9def-02ac-4a7c-86a7-a66ed720d1ad" ], "Server": [ "Microsoft-IIS/10.0" @@ -261,22 +261,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11995" ], "x-ms-correlation-request-id": [ - "5d9ce623-d944-43c3-b41d-692430648bfe" + "2e9aa90f-6415-4362-9f05-20b17558000e" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112250Z:5d9ce623-d944-43c3-b41d-692430648bfe" + "JIOINDIACENTRAL:20230216T051721Z:2e9aa90f-6415-4362-9f05-20b17558000e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:22:49 GMT" + "Thu, 16 Feb 2023 05:17:21 GMT" ], "Content-Length": [ - "5930" + "6933" ], "Content-Type": [ "application/json" @@ -285,28 +285,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:22:27.1933333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:16:44.4566667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "716edc5f-5dd9-4146-843c-96398c1d0175" + "04f5505d-e0f7-4040-8744-0e572a4f6be1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -315,13 +315,13 @@ "no-cache" ], "ETag": [ - "\"1D7E1259F988C95\"" + "\"1D941C5F568750B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b1bfdc2e-70f9-4012-9509-817cacab9b48" + "79500a03-86a0-4ea7-8a31-04244e838ad2" ], "Server": [ "Microsoft-IIS/10.0" @@ -333,22 +333,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11999" ], "x-ms-correlation-request-id": [ - "20d5f6e1-479e-44c9-8b9b-08e7c547ffb6" + "12888df5-1044-486a-a9a4-ca8debafc738" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112313Z:20d5f6e1-479e-44c9-8b9b-08e7c547ffb6" + "JIOINDIACENTRAL:20230216T051805Z:12888df5-1044-486a-a9a4-ca8debafc738" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:23:13 GMT" + "Thu, 16 Feb 2023 05:18:05 GMT" ], "Content-Length": [ - "5890" + "6893" ], "Content-Type": [ "application/json" @@ -357,28 +357,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:22:53.8333333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:17:26.5766667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a6cf5569-ace7-4413-b966-a0ff3d28920b" + "dcdc66d6-8951-4f6f-a7cc-2543e153f154" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -387,13 +387,13 @@ "no-cache" ], "ETag": [ - "\"1D7E1259F988C95\"" + "\"1D941C5F568750B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cd4a39bf-1d55-4905-be61-5424ffa2df89" + "8eeae0b5-33c0-4532-8a65-f91c09a33788" ], "Server": [ "Microsoft-IIS/10.0" @@ -405,22 +405,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11988" ], "x-ms-correlation-request-id": [ - "a2d8acdf-6a22-4b53-b74f-bdd813281620" + "38530194-7081-4edc-a493-4b5c4e718b41" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112319Z:a2d8acdf-6a22-4b53-b74f-bdd813281620" + "JIOINDIACENTRAL:20230216T051815Z:38530194-7081-4edc-a493-4b5c4e718b41" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:23:19 GMT" + "Thu, 16 Feb 2023 05:18:14 GMT" ], "Content-Length": [ - "5890" + "6893" ], "Content-Type": [ "application/json" @@ -429,28 +429,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:22:53.8333333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:17:26.5766667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5849f6e1-0d0b-45ed-a84b-30d158ef8303" + "3d27e739-4588-435a-b317-2f59ecb49727" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -462,7 +462,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f27ec55c-6f97-4979-9a83-98704a87b6ff" + "c85cf117-5646-4a14-b959-b056b1459a6b" ], "Server": [ "Microsoft-IIS/10.0" @@ -477,19 +477,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "283b8af0-d2ca-43b3-b28f-a8e73f54295f" + "70809a54-96d9-4d7a-8713-d05fe071cf40" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112218Z:283b8af0-d2ca-43b3-b28f-a8e73f54295f" + "JIOINDIACENTRAL:20230216T051635Z:70809a54-96d9-4d7a-8713-d05fe071cf40" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:22:17 GMT" + "Thu, 16 Feb 2023 05:16:34 GMT" ], "Content-Length": [ - "4196" + "4017" ], "Content-Type": [ "application/json" @@ -498,28 +498,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$AppService-PS-UnitTesting\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5849f6e1-0d0b-45ed-a84b-30d158ef8303" + "3d27e739-4588-435a-b317-2f59ecb49727" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -531,7 +531,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b70361bb-f3bd-4aa7-b8ef-6e6920cf656a" + "c41dc6b6-ab32-487b-a295-e708ebc59bdd" ], "Server": [ "Microsoft-IIS/10.0" @@ -546,19 +546,19 @@ "11996" ], "x-ms-correlation-request-id": [ - "31c0a6a8-83d7-47ff-a5cb-3e73576bbfac" + "e21bb221-9e46-4e39-834f-bf07b98ea759" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112221Z:31c0a6a8-83d7-47ff-a5cb-3e73576bbfac" + "JIOINDIACENTRAL:20230216T051639Z:e21bb221-9e46-4e39-834f-bf07b98ea759" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:22:21 GMT" + "Thu, 16 Feb 2023 05:16:38 GMT" ], "Content-Length": [ - "4196" + "4017" ], "Content-Type": [ "application/json" @@ -567,28 +567,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$AppService-PS-UnitTesting\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25501db1-7df3-4c02-a530-e38e41349045" + "839ea374-65cc-4fbd-abd0-5739c2c161f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -600,7 +600,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "734e6701-2420-4157-bb7b-110ee632616e" + "812cf874-24de-48f1-99bf-32b8155053ea" ], "Server": [ "Microsoft-IIS/10.0" @@ -612,22 +612,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11996" ], "x-ms-correlation-request-id": [ - "3b0c16e7-3e24-4747-997f-e1ed567ace5e" + "c2116447-c9b3-4c9c-8ddc-3851b47f11da" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112248Z:3b0c16e7-3e24-4747-997f-e1ed567ace5e" + "JIOINDIACENTRAL:20230216T051717Z:c2116447-c9b3-4c9c-8ddc-3851b47f11da" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:22:47 GMT" + "Thu, 16 Feb 2023 05:17:17 GMT" ], "Content-Length": [ - "4196" + "4017" ], "Content-Type": [ "application/json" @@ -636,28 +636,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$AppService-PS-UnitTesting\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25501db1-7df3-4c02-a530-e38e41349045" + "839ea374-65cc-4fbd-abd0-5739c2c161f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -669,7 +669,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3f3739f0-90ef-4314-b310-b88ead3f57a1" + "daaefdda-70a0-4125-8e27-c04639318a20" ], "Server": [ "Microsoft-IIS/10.0" @@ -681,22 +681,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11994" ], "x-ms-correlation-request-id": [ - "fbadfaba-acfc-4fc3-a0f9-edfd7623ae22" + "94e7a646-fcd5-4fe3-baaf-36662f8c36fa" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112250Z:fbadfaba-acfc-4fc3-a0f9-edfd7623ae22" + "JIOINDIACENTRAL:20230216T051722Z:94e7a646-fcd5-4fe3-baaf-36662f8c36fa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:22:50 GMT" + "Thu, 16 Feb 2023 05:17:22 GMT" ], "Content-Length": [ - "4196" + "4017" ], "Content-Type": [ "application/json" @@ -705,28 +705,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$AppService-PS-UnitTesting\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "716edc5f-5dd9-4146-843c-96398c1d0175" + "04f5505d-e0f7-4040-8744-0e572a4f6be1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -738,7 +738,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b012ce6f-29be-4851-9c0e-ac8506141ab1" + "3fb8baed-1310-41b7-af01-fa6ac97eb155" ], "Server": [ "Microsoft-IIS/10.0" @@ -750,22 +750,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11998" ], "x-ms-correlation-request-id": [ - "6f577b1f-9502-49b5-b608-2b28ada8ced9" + "db79ebbd-60ba-4c4c-bafe-e7314520c77e" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112314Z:6f577b1f-9502-49b5-b608-2b28ada8ced9" + "JIOINDIACENTRAL:20230216T051805Z:db79ebbd-60ba-4c4c-bafe-e7314520c77e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:23:13 GMT" + "Thu, 16 Feb 2023 05:18:05 GMT" ], "Content-Length": [ - "4196" + "4017" ], "Content-Type": [ "application/json" @@ -774,28 +774,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$AppService-PS-UnitTesting\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a6cf5569-ace7-4413-b966-a0ff3d28920b" + "dcdc66d6-8951-4f6f-a7cc-2543e153f154" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -807,7 +807,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "35d916f2-fc62-4c1e-85f0-e5735e58cfe7" + "114caad6-f755-42eb-b2c6-02c26277e9e6" ], "Server": [ "Microsoft-IIS/10.0" @@ -819,22 +819,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11987" ], "x-ms-correlation-request-id": [ - "3fc3a303-56cf-4dbf-a0b6-2455a0d7a671" + "a1e3e175-5552-4e7c-bbc5-343360a955d8" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112320Z:3fc3a303-56cf-4dbf-a0b6-2455a0d7a671" + "JIOINDIACENTRAL:20230216T051815Z:a1e3e175-5552-4e7c-bbc5-343360a955d8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:23:20 GMT" + "Thu, 16 Feb 2023 05:18:14 GMT" ], "Content-Length": [ - "4196" + "4017" ], "Content-Type": [ "application/json" @@ -843,28 +843,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$AppService-PS-UnitTesting\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5849f6e1-0d0b-45ed-a84b-30d158ef8303" + "3d27e739-4588-435a-b317-2f59ecb49727" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -876,7 +876,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "302306e9-d563-4d09-a8d8-f989d19874fa" + "838c1c1b-0707-466b-ac3d-282b372ca6bd" ], "Server": [ "Microsoft-IIS/10.0" @@ -891,19 +891,19 @@ "11999" ], "x-ms-correlation-request-id": [ - "a393e890-1dae-4a65-810e-f79e8401c8c3" + "f8b78183-a9f9-426e-99a2-637eb6969a45" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112218Z:a393e890-1dae-4a65-810e-f79e8401c8c3" + "JIOINDIACENTRAL:20230216T051636Z:f8b78183-a9f9-426e-99a2-637eb6969a45" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:22:17 GMT" + "Thu, 16 Feb 2023 05:16:35 GMT" ], "Content-Length": [ - "740" + "676" ], "Content-Type": [ "application/json" @@ -912,28 +912,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5849f6e1-0d0b-45ed-a84b-30d158ef8303" + "3d27e739-4588-435a-b317-2f59ecb49727" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -945,7 +945,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2ffb24ab-e1f9-4d21-a3bd-04176a5c7fb8" + "38eab3ca-2de6-470f-b5e3-60dc39ef19be" ], "Server": [ "Microsoft-IIS/10.0" @@ -960,19 +960,19 @@ "11996" ], "x-ms-correlation-request-id": [ - "781bd718-d8f2-499e-a45d-6432c400a858" + "16bb1ce2-9fae-49d8-8c22-7f8b6614e4e9" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112221Z:781bd718-d8f2-499e-a45d-6432c400a858" + "JIOINDIACENTRAL:20230216T051640Z:16bb1ce2-9fae-49d8-8c22-7f8b6614e4e9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:22:21 GMT" + "Thu, 16 Feb 2023 05:16:39 GMT" ], "Content-Length": [ - "740" + "676" ], "Content-Type": [ "application/json" @@ -981,28 +981,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25501db1-7df3-4c02-a530-e38e41349045" + "839ea374-65cc-4fbd-abd0-5739c2c161f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1014,7 +1014,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c2d2316e-1bd6-40ad-9881-e99309335195" + "15f7fe70-745e-493d-9068-5beeba22316d" ], "Server": [ "Microsoft-IIS/10.0" @@ -1026,22 +1026,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11993" + "11999" ], "x-ms-correlation-request-id": [ - "cc6abbbf-c780-4b8c-9716-20ef9be50a33" + "856a0d26-4bfc-4af1-91f8-44cf03a3b472" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112248Z:cc6abbbf-c780-4b8c-9716-20ef9be50a33" + "JIOINDIACENTRAL:20230216T051718Z:856a0d26-4bfc-4af1-91f8-44cf03a3b472" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:22:48 GMT" + "Thu, 16 Feb 2023 05:17:18 GMT" ], "Content-Length": [ - "740" + "676" ], "Content-Type": [ "application/json" @@ -1050,28 +1050,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25501db1-7df3-4c02-a530-e38e41349045" + "839ea374-65cc-4fbd-abd0-5739c2c161f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1083,7 +1083,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "87b44879-fc80-4a68-995e-5824ed72867f" + "d6341002-828a-409c-ba32-1abfdf1f569a" ], "Server": [ "Microsoft-IIS/10.0" @@ -1095,22 +1095,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11990" + "11996" ], "x-ms-correlation-request-id": [ - "a1fc1e60-8dfc-4d1a-85b1-613fee142f16" + "20a726cb-1c71-45c0-9375-bf445e2b59f2" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112251Z:a1fc1e60-8dfc-4d1a-85b1-613fee142f16" + "JIOINDIACENTRAL:20230216T051723Z:20a726cb-1c71-45c0-9375-bf445e2b59f2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:22:50 GMT" + "Thu, 16 Feb 2023 05:17:22 GMT" ], "Content-Length": [ - "740" + "676" ], "Content-Type": [ "application/json" @@ -1119,28 +1119,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "716edc5f-5dd9-4146-843c-96398c1d0175" + "04f5505d-e0f7-4040-8744-0e572a4f6be1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1152,7 +1152,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a0f95604-75a8-45b7-b54c-b6afe2d8234c" + "9f56087c-9d4c-43a2-8341-94fe1d454509" ], "Server": [ "Microsoft-IIS/10.0" @@ -1164,22 +1164,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11987" + "11999" ], "x-ms-correlation-request-id": [ - "a6245819-4421-4683-8760-f17d753b10e1" + "898fa746-ad9c-47f7-890d-40d42eae8a00" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112314Z:a6245819-4421-4683-8760-f17d753b10e1" + "JIOINDIACENTRAL:20230216T051806Z:898fa746-ad9c-47f7-890d-40d42eae8a00" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:23:14 GMT" + "Thu, 16 Feb 2023 05:18:06 GMT" ], "Content-Length": [ - "740" + "676" ], "Content-Type": [ "application/json" @@ -1188,28 +1188,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a6cf5569-ace7-4413-b966-a0ff3d28920b" + "dcdc66d6-8951-4f6f-a7cc-2543e153f154" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1221,7 +1221,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c7c7417f-b27f-4512-afe7-9940219a28f1" + "c653d154-5b21-43b1-ba8d-274c3ee214e1" ], "Server": [ "Microsoft-IIS/10.0" @@ -1233,22 +1233,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11984" + "11993" ], "x-ms-correlation-request-id": [ - "08abe7a8-3671-4fb2-94e1-b379c2edba25" + "c6b89730-b01e-4e05-b92c-90e051cb0840" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112320Z:08abe7a8-3671-4fb2-94e1-b379c2edba25" + "JIOINDIACENTRAL:20230216T051816Z:c6b89730-b01e-4e05-b92c-90e051cb0840" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:23:20 GMT" + "Thu, 16 Feb 2023 05:18:15 GMT" ], "Content-Length": [ - "740" + "676" ], "Content-Type": [ "application/json" @@ -1257,28 +1257,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5849f6e1-0d0b-45ed-a84b-30d158ef8303" + "3d27e739-4588-435a-b317-2f59ecb49727" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1290,7 +1290,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "12c40aa3-7977-4b35-99ec-15d1585c0af8" + "8a32b8ea-40f1-464a-8151-255c8fb30626" ], "Server": [ "Microsoft-IIS/10.0" @@ -1305,19 +1305,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "c797c89f-2a5e-47e5-8826-ab66ac218148" + "8ef1a6e2-ef45-486c-8a44-8b02a0c9f617" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112219Z:c797c89f-2a5e-47e5-8826-ab66ac218148" + "JIOINDIACENTRAL:20230216T051637Z:8ef1a6e2-ef45-486c-8a44-8b02a0c9f617" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:22:18 GMT" + "Thu, 16 Feb 2023 05:16:36 GMT" ], "Content-Length": [ - "290" + "277" ], "Content-Type": [ "application/json" @@ -1326,28 +1326,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5849f6e1-0d0b-45ed-a84b-30d158ef8303" + "3d27e739-4588-435a-b317-2f59ecb49727" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1359,7 +1359,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3a376d20-ef3f-4d6d-882b-f132c8eced83" + "8ea5caee-b4d8-4208-aa40-9e45948900c2" ], "Server": [ "Microsoft-IIS/10.0" @@ -1374,19 +1374,19 @@ "11995" ], "x-ms-correlation-request-id": [ - "8c65d45f-3929-4a4f-9029-5545c7f366a3" + "67e9b045-4790-43bc-b1de-1c32180b873f" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112222Z:8c65d45f-3929-4a4f-9029-5545c7f366a3" + "JIOINDIACENTRAL:20230216T051641Z:67e9b045-4790-43bc-b1de-1c32180b873f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:22:22 GMT" + "Thu, 16 Feb 2023 05:16:40 GMT" ], "Content-Length": [ - "290" + "277" ], "Content-Type": [ "application/json" @@ -1395,28 +1395,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25501db1-7df3-4c02-a530-e38e41349045" + "839ea374-65cc-4fbd-abd0-5739c2c161f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1428,7 +1428,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fd352231-702b-45b9-9d65-443c1242cac0" + "29d56d04-11ff-4d95-bed9-14362ddbd658" ], "Server": [ "Microsoft-IIS/10.0" @@ -1440,22 +1440,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11992" + "11998" ], "x-ms-correlation-request-id": [ - "e2742b0f-5e5b-465b-a132-c547ef5169ba" + "868122c3-4254-47be-9aba-5978dc6768ab" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112249Z:e2742b0f-5e5b-465b-a132-c547ef5169ba" + "JIOINDIACENTRAL:20230216T051720Z:868122c3-4254-47be-9aba-5978dc6768ab" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:22:48 GMT" + "Thu, 16 Feb 2023 05:17:19 GMT" ], "Content-Length": [ - "290" + "277" ], "Content-Type": [ "application/json" @@ -1464,28 +1464,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25501db1-7df3-4c02-a530-e38e41349045" + "839ea374-65cc-4fbd-abd0-5739c2c161f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1497,7 +1497,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f5860dac-60f2-461a-9227-7323a1defcfb" + "5911a58f-4d99-419c-9e52-03380a45cab6" ], "Server": [ "Microsoft-IIS/10.0" @@ -1509,22 +1509,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11989" + "11995" ], "x-ms-correlation-request-id": [ - "1d8a8be6-41b9-4f33-addb-70e853e59631" + "995a0bbd-ad41-4353-a2ca-2fe0b6de0d2d" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112251Z:1d8a8be6-41b9-4f33-addb-70e853e59631" + "JIOINDIACENTRAL:20230216T051723Z:995a0bbd-ad41-4353-a2ca-2fe0b6de0d2d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:22:51 GMT" + "Thu, 16 Feb 2023 05:17:23 GMT" ], "Content-Length": [ - "290" + "277" ], "Content-Type": [ "application/json" @@ -1533,28 +1533,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "716edc5f-5dd9-4146-843c-96398c1d0175" + "04f5505d-e0f7-4040-8744-0e572a4f6be1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1566,7 +1566,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "14b07bfb-59d7-40d7-b667-a931f097dfca" + "3018661b-c458-48db-85e1-1cb8fbb701bc" ], "Server": [ "Microsoft-IIS/10.0" @@ -1578,22 +1578,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11986" + "11998" ], "x-ms-correlation-request-id": [ - "6fb20715-64e0-4f44-b2df-c50dd2d55e6d" + "8433bf02-8b3d-4f00-84aa-0ab858a73e99" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112315Z:6fb20715-64e0-4f44-b2df-c50dd2d55e6d" + "JIOINDIACENTRAL:20230216T051807Z:8433bf02-8b3d-4f00-84aa-0ab858a73e99" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:23:15 GMT" + "Thu, 16 Feb 2023 05:18:07 GMT" ], "Content-Length": [ - "290" + "277" ], "Content-Type": [ "application/json" @@ -1602,28 +1602,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a6cf5569-ace7-4413-b966-a0ff3d28920b" + "dcdc66d6-8951-4f6f-a7cc-2543e153f154" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1635,7 +1635,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a2b20c91-88ee-414e-99d9-bfe3da43f10b" + "f2737f95-22ca-4bab-82d4-f7e3569ef64f" ], "Server": [ "Microsoft-IIS/10.0" @@ -1647,22 +1647,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11983" + "11992" ], "x-ms-correlation-request-id": [ - "6613152f-7b97-4879-89e9-14544745f015" + "b7617704-65ab-484d-9415-2a9981653f43" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112321Z:6613152f-7b97-4879-89e9-14544745f015" + "JIOINDIACENTRAL:20230216T051817Z:b7617704-65ab-484d-9415-2a9981653f43" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:23:21 GMT" + "Thu, 16 Feb 2023 05:18:17 GMT" ], "Content-Length": [ - "290" + "277" ], "Content-Type": [ "application/json" @@ -1671,28 +1671,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5849f6e1-0d0b-45ed-a84b-30d158ef8303" + "3d27e739-4588-435a-b317-2f59ecb49727" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1704,7 +1704,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "396bf831-24c3-48e5-a94f-f51d9329783d" + "4c1fa858-7912-4e58-b7ab-f0476b578d83" ], "Server": [ "Microsoft-IIS/10.0" @@ -1719,19 +1719,19 @@ "11997" ], "x-ms-correlation-request-id": [ - "477ea76d-b7e7-48b8-9329-f71914b5e425" + "c3e16622-e20e-49da-83ad-ad3fc97ccda8" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112220Z:477ea76d-b7e7-48b8-9329-f71914b5e425" + "JIOINDIACENTRAL:20230216T051638Z:c3e16622-e20e-49da-83ad-ad3fc97ccda8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:22:19 GMT" + "Thu, 16 Feb 2023 05:16:37 GMT" ], "Content-Length": [ - "287" + "274" ], "Content-Type": [ "application/json" @@ -1740,28 +1740,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5849f6e1-0d0b-45ed-a84b-30d158ef8303" + "3d27e739-4588-435a-b317-2f59ecb49727" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1773,7 +1773,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "18496415-2446-40c2-865c-1e7a745b5658" + "f805111a-12e8-4242-9ac1-70afcef011c9" ], "Server": [ "Microsoft-IIS/10.0" @@ -1788,19 +1788,19 @@ "11994" ], "x-ms-correlation-request-id": [ - "05cd6e89-8144-465d-a842-147d38519bdc" + "71a833d7-4007-43a4-b5f1-046d405e39c8" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112223Z:05cd6e89-8144-465d-a842-147d38519bdc" + "JIOINDIACENTRAL:20230216T051642Z:71a833d7-4007-43a4-b5f1-046d405e39c8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:22:22 GMT" + "Thu, 16 Feb 2023 05:16:41 GMT" ], "Content-Length": [ - "287" + "274" ], "Content-Type": [ "application/json" @@ -1809,28 +1809,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25501db1-7df3-4c02-a530-e38e41349045" + "839ea374-65cc-4fbd-abd0-5739c2c161f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1842,7 +1842,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cd680631-7a05-42b6-8fee-e3afaeebf958" + "6f123bf7-676e-4e74-9d00-bbba13600f95" ], "Server": [ "Microsoft-IIS/10.0" @@ -1854,22 +1854,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11991" + "11997" ], "x-ms-correlation-request-id": [ - "562853c4-3f6f-4a70-8931-935e560aa612" + "96f20286-b921-4d3c-a340-e7fb13cea4b9" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112249Z:562853c4-3f6f-4a70-8931-935e560aa612" + "JIOINDIACENTRAL:20230216T051721Z:96f20286-b921-4d3c-a340-e7fb13cea4b9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:22:49 GMT" + "Thu, 16 Feb 2023 05:17:20 GMT" ], "Content-Length": [ - "287" + "274" ], "Content-Type": [ "application/json" @@ -1878,28 +1878,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25501db1-7df3-4c02-a530-e38e41349045" + "839ea374-65cc-4fbd-abd0-5739c2c161f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1911,7 +1911,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "737b03e0-ad73-4f6a-9a0c-df92a1d1a968" + "8e45f94d-f255-46ec-a010-72fd8855d067" ], "Server": [ "Microsoft-IIS/10.0" @@ -1923,22 +1923,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11988" + "11994" ], "x-ms-correlation-request-id": [ - "706459e4-b448-4065-92fe-a5d93c729ba4" + "3219104c-60a8-4562-a5be-b31b0d7f1b24" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112252Z:706459e4-b448-4065-92fe-a5d93c729ba4" + "JIOINDIACENTRAL:20230216T051724Z:3219104c-60a8-4562-a5be-b31b0d7f1b24" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:22:51 GMT" + "Thu, 16 Feb 2023 05:17:24 GMT" ], "Content-Length": [ - "287" + "274" ], "Content-Type": [ "application/json" @@ -1947,28 +1947,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "716edc5f-5dd9-4146-843c-96398c1d0175" + "04f5505d-e0f7-4040-8744-0e572a4f6be1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1980,7 +1980,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5542f216-66e0-49a4-bbfd-aae2122bebae" + "c5855031-b25b-4a38-a627-d2ef72445fa4" ], "Server": [ "Microsoft-IIS/10.0" @@ -1992,22 +1992,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11985" + "11997" ], "x-ms-correlation-request-id": [ - "eac18fc6-ca5c-42e1-b703-6b393a1221bf" + "335dd1ca-e258-4923-83d8-0f0be7fce2a2" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112316Z:eac18fc6-ca5c-42e1-b703-6b393a1221bf" + "JIOINDIACENTRAL:20230216T051808Z:335dd1ca-e258-4923-83d8-0f0be7fce2a2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:23:15 GMT" + "Thu, 16 Feb 2023 05:18:08 GMT" ], "Content-Length": [ - "287" + "274" ], "Content-Type": [ "application/json" @@ -2016,28 +2016,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a6cf5569-ace7-4413-b966-a0ff3d28920b" + "dcdc66d6-8951-4f6f-a7cc-2543e153f154" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2049,7 +2049,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6d2a00e3-a377-423c-86ff-99e6d7c1bff2" + "e49245b1-a50e-4daa-a1c0-eb9a567f3c42" ], "Server": [ "Microsoft-IIS/10.0" @@ -2061,22 +2061,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11982" + "11991" ], "x-ms-correlation-request-id": [ - "e0c35397-3d61-48ae-af9b-b81d69fa88aa" + "5af324af-cde4-42ab-bbeb-418e25533807" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112321Z:e0c35397-3d61-48ae-af9b-b81d69fa88aa" + "JIOINDIACENTRAL:20230216T051818Z:5af324af-cde4-42ab-bbeb-418e25533807" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:23:21 GMT" + "Thu, 16 Feb 2023 05:18:18 GMT" ], "Content-Length": [ - "287" + "274" ], "Content-Type": [ "application/json" @@ -2085,34 +2085,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5849f6e1-0d0b-45ed-a84b-30d158ef8303" + "3d27e739-4588-435a-b317-2f59ecb49727" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "314" + "280" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2121,13 +2121,13 @@ "no-cache" ], "ETag": [ - "\"1D7E125781B17C0\"" + "\"1D941C57286B315\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5a4ef706-3c12-40da-8df5-40105bc353d9" + "ce7764e3-4608-43e5-bad9-66539dbba682" ], "Server": [ "Microsoft-IIS/10.0" @@ -2142,19 +2142,19 @@ "499" ], "x-ms-correlation-request-id": [ - "9e31943b-14e3-4390-b65c-9af27fe40c0a" + "eccb71b6-af74-493e-b31c-7d6eddaa9c64" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112235Z:9e31943b-14e3-4390-b65c-9af27fe40c0a" + "JIOINDIACENTRAL:20230216T051649Z:eccb71b6-af74-493e-b31c-7d6eddaa9c64" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:22:34 GMT" + "Thu, 16 Feb 2023 05:16:48 GMT" ], "Content-Length": [ - "6130" + "7151" ], "Content-Type": [ "application/json" @@ -2163,34 +2163,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:22:27.1933333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:16:44.4566667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "25501db1-7df3-4c02-a530-e38e41349045" + "839ea374-65cc-4fbd-abd0-5739c2c161f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "245" + "211" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"Disabled\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2199,13 +2199,13 @@ "no-cache" ], "ETag": [ - "\"1D7E1258FB79B95\"" + "\"1D941C5DC4D748B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "42f80420-1d1f-46ce-bef7-859e614e670f" + "42bf8ddb-f394-4f3f-9d27-d75d766a0b57" ], "Server": [ "Microsoft-IIS/10.0" @@ -2217,22 +2217,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "498" + "499" ], "x-ms-correlation-request-id": [ - "e0a67007-34c7-4679-8300-b41bd1324ce9" + "f92a7d1b-c488-4080-b1f3-4360a2ff5c97" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112256Z:e0a67007-34c7-4679-8300-b41bd1324ce9" + "JIOINDIACENTRAL:20230216T051731Z:f92a7d1b-c488-4080-b1f3-4360a2ff5c97" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:22:55 GMT" + "Thu, 16 Feb 2023 05:17:30 GMT" ], "Content-Length": [ - "6090" + "7111" ], "Content-Type": [ "application/json" @@ -2241,28 +2241,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:22:53.8333333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:17:26.5766667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "027d3f8d-9fae-432f-92cc-9f440ce8934e" + "0e12cd0f-63db-4c30-8e25-bdedb730036f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2271,13 +2271,13 @@ "no-cache" ], "ETag": [ - "\"1D7E1058F8B27EB\"" + "\"1D941C5BF80688B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "96266611-1202-4aab-b451-48ee57a4e1c5" + "4efbe9b8-a717-4433-938f-f225977ce971" ], "Server": [ "Microsoft-IIS/10.0" @@ -2289,22 +2289,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11998" ], "x-ms-correlation-request-id": [ - "9b5d86f3-f190-4e00-a532-409b415d24b1" + "968308f4-2a40-4d22-8ba3-7cb59d2cdef4" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112236Z:9b5d86f3-f190-4e00-a532-409b415d24b1" + "JIOINDIACENTRAL:20230216T051655Z:968308f4-2a40-4d22-8ba3-7cb59d2cdef4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:22:36 GMT" + "Thu, 16 Feb 2023 05:16:55 GMT" ], "Content-Length": [ - "6025" + "7068" ], "Content-Type": [ "application/json" @@ -2313,28 +2313,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T07:33:23.0066667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot\",\r\n \"name\": \"AppService-PS-UnitTesting/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"appservice-ps-unittesting(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/appservice-ps-unittesting\",\r\n \"repositorySiteName\": \"appservice-ps-unittesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:15:56.1366667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"appservice-ps-unittesting__5e7e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"appservice-ps-unittesting__testslot\\\\$appservice-ps-unittesting__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "027d3f8d-9fae-432f-92cc-9f440ce8934e" + "0e12cd0f-63db-4c30-8e25-bdedb730036f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2343,13 +2343,13 @@ "no-cache" ], "ETag": [ - "\"1D7E1058F8B27EB\"" + "\"1D941C5BF80688B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5586ea4c-40d7-4140-97bf-e29098ea9f9e" + "7bd8ea21-5aa0-4440-8603-ed33c674c5cf" ], "Server": [ "Microsoft-IIS/10.0" @@ -2361,22 +2361,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11996" ], "x-ms-correlation-request-id": [ - "c4a2bb0a-4fc6-467b-917f-5f639086de74" + "f00f4bda-c922-4498-b528-dae4afafe212" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112239Z:c4a2bb0a-4fc6-467b-917f-5f639086de74" + "JIOINDIACENTRAL:20230216T051700Z:f00f4bda-c922-4498-b528-dae4afafe212" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:22:39 GMT" + "Thu, 16 Feb 2023 05:17:00 GMT" ], "Content-Length": [ - "6025" + "7068" ], "Content-Type": [ "application/json" @@ -2385,28 +2385,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T07:33:23.0066667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot\",\r\n \"name\": \"AppService-PS-UnitTesting/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"appservice-ps-unittesting(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/appservice-ps-unittesting\",\r\n \"repositorySiteName\": \"appservice-ps-unittesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:15:56.1366667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"appservice-ps-unittesting__5e7e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"appservice-ps-unittesting__testslot\\\\$appservice-ps-unittesting__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e53827ef-f2ae-4c4a-a0af-e9fde781ae73" + "12390cf7-be21-43d4-ba41-e067f79fe6d7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2415,13 +2415,13 @@ "no-cache" ], "ETag": [ - "\"1D7E12599FBAE0B\"" + "\"1D941C5E9390D55\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1107d6fc-7a22-4a69-a199-5591136184b8" + "d7d3ef2f-63a7-4e9b-859b-f02aadbad6d0" ], "Server": [ "Microsoft-IIS/10.0" @@ -2433,22 +2433,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11995" ], "x-ms-correlation-request-id": [ - "a74e3c4e-8b1a-46c3-bf49-3efc3da1a5f4" + "644fcd07-b8f2-40b0-ab77-e2af4624268c" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112258Z:a74e3c4e-8b1a-46c3-bf49-3efc3da1a5f4" + "JIOINDIACENTRAL:20230216T051740Z:644fcd07-b8f2-40b0-ab77-e2af4624268c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:22:58 GMT" + "Thu, 16 Feb 2023 05:17:39 GMT" ], "Content-Length": [ - "6065" + "7068" ], "Content-Type": [ "application/json" @@ -2457,28 +2457,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:22:44.4166667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot\",\r\n \"name\": \"AppService-PS-UnitTesting/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"appservice-ps-unittesting(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/appservice-ps-unittesting\",\r\n \"repositorySiteName\": \"appservice-ps-unittesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:17:06.1333333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"appservice-ps-unittesting__5e7e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"appservice-ps-unittesting__testslot\\\\$appservice-ps-unittesting__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e53827ef-f2ae-4c4a-a0af-e9fde781ae73" + "12390cf7-be21-43d4-ba41-e067f79fe6d7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2487,13 +2487,13 @@ "no-cache" ], "ETag": [ - "\"1D7E12599FBAE0B\"" + "\"1D941C5E9390D55\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "007fa7bb-2d6b-4147-bdca-959906f96993" + "b8dc6f87-aee7-4327-8ed6-f01b3e4e21b0" ], "Server": [ "Microsoft-IIS/10.0" @@ -2505,22 +2505,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11993" ], "x-ms-correlation-request-id": [ - "1ed8f45f-f1e3-4f93-a8cb-429789fa8c7b" + "279a517a-50e9-4664-be32-ead788cd6ff0" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112301Z:1ed8f45f-f1e3-4f93-a8cb-429789fa8c7b" + "JIOINDIACENTRAL:20230216T051744Z:279a517a-50e9-4664-be32-ead788cd6ff0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:23:00 GMT" + "Thu, 16 Feb 2023 05:17:43 GMT" ], "Content-Length": [ - "6065" + "7068" ], "Content-Type": [ "application/json" @@ -2529,28 +2529,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:22:44.4166667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot\",\r\n \"name\": \"AppService-PS-UnitTesting/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"appservice-ps-unittesting(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/appservice-ps-unittesting\",\r\n \"repositorySiteName\": \"appservice-ps-unittesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:17:06.1333333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"appservice-ps-unittesting__5e7e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"appservice-ps-unittesting__testslot\\\\$appservice-ps-unittesting__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9ada3a8-017f-4d13-9813-f66f0a5eec30" + "9e82debf-16af-47a9-b98e-cc1da904ca1f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2559,13 +2559,13 @@ "no-cache" ], "ETag": [ - "\"1D7E125A69B7DCB\"" + "\"1D941C6030DB3E0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ddbd8fe9-aa3e-4caa-b038-891b6d38cccc" + "159275a5-57a8-4245-980d-139950b22a00" ], "Server": [ "Microsoft-IIS/10.0" @@ -2577,22 +2577,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11991" ], "x-ms-correlation-request-id": [ - "8d36e646-fa80-4e0d-b39a-bb2f6f0a6c87" + "1a7a2198-fb53-4dc7-82ad-c44806f591fd" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112316Z:8d36e646-fa80-4e0d-b39a-bb2f6f0a6c87" + "JIOINDIACENTRAL:20230216T051809Z:1a7a2198-fb53-4dc7-82ad-c44806f591fd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:23:16 GMT" + "Thu, 16 Feb 2023 05:18:08 GMT" ], "Content-Length": [ - "6025" + "7023" ], "Content-Type": [ "application/json" @@ -2601,28 +2601,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:23:05.5966667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot\",\r\n \"name\": \"AppService-PS-UnitTesting/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"appservice-ps-unittesting(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/appservice-ps-unittesting\",\r\n \"repositorySiteName\": \"appservice-ps-unittesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:17:49.47\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"appservice-ps-unittesting__5e7e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"appservice-ps-unittesting__testslot\\\\$appservice-ps-unittesting__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8ee46204-6927-4795-9691-8f998f252dad" + "60392274-7c90-4341-8003-11b7dbf8d76d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2631,13 +2631,13 @@ "no-cache" ], "ETag": [ - "\"1D7E125A69B7DCB\"" + "\"1D941C6030DB3E0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d3619620-51ac-4389-bc48-21ced5b75362" + "ac62a19c-df1b-4381-843f-4970790b39f7" ], "Server": [ "Microsoft-IIS/10.0" @@ -2649,22 +2649,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11989" ], "x-ms-correlation-request-id": [ - "8b42b8a1-6644-4bfc-a11f-b6f41bffa9a8" + "9f3ad3e4-4118-4779-a4ba-1d933cd9cd7e" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112322Z:8b42b8a1-6644-4bfc-a11f-b6f41bffa9a8" + "JIOINDIACENTRAL:20230216T051819Z:9f3ad3e4-4118-4779-a4ba-1d933cd9cd7e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:23:22 GMT" + "Thu, 16 Feb 2023 05:18:19 GMT" ], "Content-Length": [ - "6025" + "7023" ], "Content-Type": [ "application/json" @@ -2673,28 +2673,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:23:05.5966667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot\",\r\n \"name\": \"AppService-PS-UnitTesting/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"appservice-ps-unittesting(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/appservice-ps-unittesting\",\r\n \"repositorySiteName\": \"appservice-ps-unittesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:17:49.47\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"appservice-ps-unittesting__5e7e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"appservice-ps-unittesting__testslot\\\\$appservice-ps-unittesting__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "027d3f8d-9fae-432f-92cc-9f440ce8934e" + "0e12cd0f-63db-4c30-8e25-bdedb730036f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2706,7 +2706,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fcb7fb85-8d3d-4685-8a08-0d90d5318bad" + "ff031783-8c16-44ed-b1c5-341e9874aab0" ], "Server": [ "Microsoft-IIS/10.0" @@ -2718,22 +2718,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11997" ], "x-ms-correlation-request-id": [ - "3fe6366e-22ac-423b-8037-0a7e18b9c8c7" + "5af617f2-9713-4d32-a7b4-59281e0343f9" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112236Z:3fe6366e-22ac-423b-8037-0a7e18b9c8c7" + "JIOINDIACENTRAL:20230216T051657Z:5af617f2-9713-4d32-a7b4-59281e0343f9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:22:36 GMT" + "Thu, 16 Feb 2023 05:16:57 GMT" ], "Content-Length": [ - "3731" + "4046" ], "Content-Type": [ "application/json" @@ -2742,28 +2742,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$appservice-ps-unittesting__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "027d3f8d-9fae-432f-92cc-9f440ce8934e" + "0e12cd0f-63db-4c30-8e25-bdedb730036f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2775,7 +2775,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ea9681f0-9417-4197-a75d-9473ed77ebaa" + "64339fee-d18e-452e-a94d-f35b425c826d" ], "Server": [ "Microsoft-IIS/10.0" @@ -2787,22 +2787,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11995" ], "x-ms-correlation-request-id": [ - "dd0bc2b0-21cb-40a7-84d6-ac3eac43786c" + "bc858f56-8653-418c-8f0f-2c50aed97c06" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112239Z:dd0bc2b0-21cb-40a7-84d6-ac3eac43786c" + "JIOINDIACENTRAL:20230216T051701Z:bc858f56-8653-418c-8f0f-2c50aed97c06" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:22:39 GMT" + "Thu, 16 Feb 2023 05:17:01 GMT" ], "Content-Length": [ - "3731" + "4046" ], "Content-Type": [ "application/json" @@ -2811,28 +2811,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$appservice-ps-unittesting__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e53827ef-f2ae-4c4a-a0af-e9fde781ae73" + "12390cf7-be21-43d4-ba41-e067f79fe6d7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2844,7 +2844,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c34ffe0c-0d44-4b2b-9c52-afd7237f6d73" + "1b01ce80-7ce4-47aa-bfc3-438819fcfb31" ], "Server": [ "Microsoft-IIS/10.0" @@ -2856,22 +2856,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11994" ], "x-ms-correlation-request-id": [ - "5ccd10a3-5d62-4c9b-a7f7-edea39ddcbb8" + "b087d016-4710-4d1b-926c-3e4039a42488" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112259Z:5ccd10a3-5d62-4c9b-a7f7-edea39ddcbb8" + "JIOINDIACENTRAL:20230216T051741Z:b087d016-4710-4d1b-926c-3e4039a42488" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:22:58 GMT" + "Thu, 16 Feb 2023 05:17:40 GMT" ], "Content-Length": [ - "3731" + "4046" ], "Content-Type": [ "application/json" @@ -2880,28 +2880,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$appservice-ps-unittesting__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e53827ef-f2ae-4c4a-a0af-e9fde781ae73" + "12390cf7-be21-43d4-ba41-e067f79fe6d7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2913,7 +2913,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "90d9a0b9-2e46-495b-8142-35f410126541" + "4a85bfa7-356d-4213-b263-86659f500eb4" ], "Server": [ "Microsoft-IIS/10.0" @@ -2925,22 +2925,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11992" ], "x-ms-correlation-request-id": [ - "1e841c1a-9261-4663-a9dd-c7f65d027abc" + "62a1ae56-338c-4bbd-b442-7d9ffb62fa1d" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112301Z:1e841c1a-9261-4663-a9dd-c7f65d027abc" + "JIOINDIACENTRAL:20230216T051745Z:62a1ae56-338c-4bbd-b442-7d9ffb62fa1d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:23:01 GMT" + "Thu, 16 Feb 2023 05:17:44 GMT" ], "Content-Length": [ - "3731" + "4046" ], "Content-Type": [ "application/json" @@ -2949,28 +2949,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$appservice-ps-unittesting__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9ada3a8-017f-4d13-9813-f66f0a5eec30" + "9e82debf-16af-47a9-b98e-cc1da904ca1f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2982,7 +2982,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "383e7855-15da-4221-a988-265bb7f0ebbe" + "a561a30e-35b8-4b59-8b56-50a647c72599" ], "Server": [ "Microsoft-IIS/10.0" @@ -2994,22 +2994,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11990" ], "x-ms-correlation-request-id": [ - "964bbd7f-c17f-41a3-93dc-d11bf2844736" + "bb6714d5-9857-4dbb-9c9e-02e2391da483" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112317Z:964bbd7f-c17f-41a3-93dc-d11bf2844736" + "JIOINDIACENTRAL:20230216T051809Z:bb6714d5-9857-4dbb-9c9e-02e2391da483" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:23:16 GMT" + "Thu, 16 Feb 2023 05:18:09 GMT" ], "Content-Length": [ - "3731" + "4046" ], "Content-Type": [ "application/json" @@ -3018,28 +3018,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$appservice-ps-unittesting__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8ee46204-6927-4795-9691-8f998f252dad" + "60392274-7c90-4341-8003-11b7dbf8d76d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3051,7 +3051,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3bb0379a-f147-4413-a90b-d72e0998428c" + "3f1904c4-ff9c-412f-beae-5a20e38b60f6" ], "Server": [ "Microsoft-IIS/10.0" @@ -3063,22 +3063,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11988" ], "x-ms-correlation-request-id": [ - "51da61ee-ef34-4e29-9dc6-22d0fdf87645" + "5ca2774f-9bbe-4591-8819-ab1c3cd50d3f" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112322Z:51da61ee-ef34-4e29-9dc6-22d0fdf87645" + "JIOINDIACENTRAL:20230216T051820Z:5ca2774f-9bbe-4591-8819-ab1c3cd50d3f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:23:22 GMT" + "Thu, 16 Feb 2023 05:18:19 GMT" ], "Content-Length": [ - "3731" + "4046" ], "Content-Type": [ "application/json" @@ -3087,28 +3087,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$appservice-ps-unittesting__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "027d3f8d-9fae-432f-92cc-9f440ce8934e" + "0e12cd0f-63db-4c30-8e25-bdedb730036f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3120,7 +3120,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ef8d2da4-b8b6-4fe8-b44a-ef1639e7057b" + "8a976a4f-c597-4ab4-9115-218a707be027" ], "Server": [ "Microsoft-IIS/10.0" @@ -3135,19 +3135,19 @@ "11999" ], "x-ms-correlation-request-id": [ - "f50a009a-cc51-4189-bda7-ec78d462d09e" + "ff542efa-2c7c-494d-bdbb-a9efd45cb3a1" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112237Z:f50a009a-cc51-4189-bda7-ec78d462d09e" + "JIOINDIACENTRAL:20230216T051658Z:ff542efa-2c7c-494d-bdbb-a9efd45cb3a1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:22:37 GMT" + "Thu, 16 Feb 2023 05:16:58 GMT" ], "Content-Length": [ - "755" + "691" ], "Content-Type": [ "application/json" @@ -3156,28 +3156,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "027d3f8d-9fae-432f-92cc-9f440ce8934e" + "0e12cd0f-63db-4c30-8e25-bdedb730036f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3189,7 +3189,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "62170774-f0b2-42f6-ac2c-b171c752ff23" + "c178ce55-6786-494b-95f0-ac928f2f853b" ], "Server": [ "Microsoft-IIS/10.0" @@ -3204,19 +3204,19 @@ "11996" ], "x-ms-correlation-request-id": [ - "ca456185-3612-46db-824d-7a7e42ee6dc4" + "c8f94885-c67c-422e-9341-18fad9af84b8" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112240Z:ca456185-3612-46db-824d-7a7e42ee6dc4" + "JIOINDIACENTRAL:20230216T051702Z:c8f94885-c67c-422e-9341-18fad9af84b8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:22:40 GMT" + "Thu, 16 Feb 2023 05:17:02 GMT" ], "Content-Length": [ - "755" + "691" ], "Content-Type": [ "application/json" @@ -3225,28 +3225,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e53827ef-f2ae-4c4a-a0af-e9fde781ae73" + "12390cf7-be21-43d4-ba41-e067f79fe6d7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3258,7 +3258,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "86a2c7b2-154a-4ef0-b434-529325829e96" + "fb6c8105-8c4e-4655-943b-cc689f13c4cc" ], "Server": [ "Microsoft-IIS/10.0" @@ -3270,22 +3270,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11993" + "11999" ], "x-ms-correlation-request-id": [ - "c958908c-6d81-4d73-a9e0-76c27bcaf150" + "bf3f1a53-899b-4718-9f2c-d33ae6e48fa3" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112259Z:c958908c-6d81-4d73-a9e0-76c27bcaf150" + "JIOINDIACENTRAL:20230216T051742Z:bf3f1a53-899b-4718-9f2c-d33ae6e48fa3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:22:59 GMT" + "Thu, 16 Feb 2023 05:17:41 GMT" ], "Content-Length": [ - "755" + "691" ], "Content-Type": [ "application/json" @@ -3294,28 +3294,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e53827ef-f2ae-4c4a-a0af-e9fde781ae73" + "12390cf7-be21-43d4-ba41-e067f79fe6d7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3327,7 +3327,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "be90fb70-0a17-40bb-b588-40629d936664" + "4626c9f5-5661-407a-9668-e8d9c6301355" ], "Server": [ "Microsoft-IIS/10.0" @@ -3339,22 +3339,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11990" + "11996" ], "x-ms-correlation-request-id": [ - "76d3c901-34e6-4425-a3df-c895d58172e3" + "67f8bc21-94eb-426c-bb66-0491c3ad4627" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112302Z:76d3c901-34e6-4425-a3df-c895d58172e3" + "JIOINDIACENTRAL:20230216T051746Z:67f8bc21-94eb-426c-bb66-0491c3ad4627" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:23:01 GMT" + "Thu, 16 Feb 2023 05:17:46 GMT" ], "Content-Length": [ - "755" + "691" ], "Content-Type": [ "application/json" @@ -3363,28 +3363,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9ada3a8-017f-4d13-9813-f66f0a5eec30" + "9e82debf-16af-47a9-b98e-cc1da904ca1f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3396,7 +3396,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "275c76c1-82a0-40a2-a8c6-5a9ff46aea03" + "add9889f-d60f-47b5-ae4a-1d876e5735ad" ], "Server": [ "Microsoft-IIS/10.0" @@ -3408,22 +3408,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11987" + "11999" ], "x-ms-correlation-request-id": [ - "da827010-6e00-40b2-867d-9ca4edf6dc48" + "cc5ef8d7-8eb7-4bc1-9db2-ed4dd2fd4a08" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112317Z:da827010-6e00-40b2-867d-9ca4edf6dc48" + "JIOINDIACENTRAL:20230216T051811Z:cc5ef8d7-8eb7-4bc1-9db2-ed4dd2fd4a08" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:23:16 GMT" + "Thu, 16 Feb 2023 05:18:10 GMT" ], "Content-Length": [ - "755" + "691" ], "Content-Type": [ "application/json" @@ -3432,28 +3432,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8ee46204-6927-4795-9691-8f998f252dad" + "60392274-7c90-4341-8003-11b7dbf8d76d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3465,7 +3465,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c223c2f7-0da4-4943-b5ec-a45c4f2d3298" + "cc3612e5-b8f0-4e7b-a4dd-0a6b43345412" ], "Server": [ "Microsoft-IIS/10.0" @@ -3477,22 +3477,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11984" + "11996" ], "x-ms-correlation-request-id": [ - "30678f13-7cf5-44a8-b58b-23b47197706b" + "4db964e7-6a2d-4f5f-827b-d00a302d6ff5" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112323Z:30678f13-7cf5-44a8-b58b-23b47197706b" + "JIOINDIACENTRAL:20230216T051820Z:4db964e7-6a2d-4f5f-827b-d00a302d6ff5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:23:23 GMT" + "Thu, 16 Feb 2023 05:18:20 GMT" ], "Content-Length": [ - "755" + "691" ], "Content-Type": [ "application/json" @@ -3501,28 +3501,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "027d3f8d-9fae-432f-92cc-9f440ce8934e" + "0e12cd0f-63db-4c30-8e25-bdedb730036f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3534,7 +3534,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a6dce3db-c44e-461a-b737-19c76a01129c" + "4fdbf17c-de1f-4e57-8135-4609d65d5ab0" ], "Server": [ "Microsoft-IIS/10.0" @@ -3549,19 +3549,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "9df17b30-9673-4274-b6fe-4c92649e4659" + "7ea63ab9-9461-4df6-a9b8-c9b2b3d6314e" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112238Z:9df17b30-9673-4274-b6fe-4c92649e4659" + "JIOINDIACENTRAL:20230216T051659Z:7ea63ab9-9461-4df6-a9b8-c9b2b3d6314e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:22:37 GMT" + "Thu, 16 Feb 2023 05:16:58 GMT" ], "Content-Length": [ - "305" + "292" ], "Content-Type": [ "application/json" @@ -3570,28 +3570,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "027d3f8d-9fae-432f-92cc-9f440ce8934e" + "0e12cd0f-63db-4c30-8e25-bdedb730036f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3603,7 +3603,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0ab51b5c-1120-4b35-a9e7-c4c6a77fa7b9" + "86241d98-b8f2-408c-985d-7bd47c639341" ], "Server": [ "Microsoft-IIS/10.0" @@ -3618,19 +3618,19 @@ "11995" ], "x-ms-correlation-request-id": [ - "61e18df2-9b7f-4339-b2e2-10a6327da756" + "798b8858-136f-48f7-967c-efdcbcdc0af6" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112240Z:61e18df2-9b7f-4339-b2e2-10a6327da756" + "JIOINDIACENTRAL:20230216T051703Z:798b8858-136f-48f7-967c-efdcbcdc0af6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:22:40 GMT" + "Thu, 16 Feb 2023 05:17:03 GMT" ], "Content-Length": [ - "305" + "292" ], "Content-Type": [ "application/json" @@ -3639,28 +3639,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e53827ef-f2ae-4c4a-a0af-e9fde781ae73" + "12390cf7-be21-43d4-ba41-e067f79fe6d7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3672,7 +3672,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "48e4e069-817d-4645-a391-96382f73d314" + "fed8f10d-753f-4e5d-9422-7b53898c08c7" ], "Server": [ "Microsoft-IIS/10.0" @@ -3684,22 +3684,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11992" + "11998" ], "x-ms-correlation-request-id": [ - "928feac3-a05e-40a1-b101-afced5e69c14" + "8aa05982-7e0e-429e-a4ea-34e853ca6ea7" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112300Z:928feac3-a05e-40a1-b101-afced5e69c14" + "JIOINDIACENTRAL:20230216T051743Z:8aa05982-7e0e-429e-a4ea-34e853ca6ea7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:22:59 GMT" + "Thu, 16 Feb 2023 05:17:42 GMT" ], "Content-Length": [ - "305" + "292" ], "Content-Type": [ "application/json" @@ -3708,28 +3708,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e53827ef-f2ae-4c4a-a0af-e9fde781ae73" + "12390cf7-be21-43d4-ba41-e067f79fe6d7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3741,7 +3741,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3fd6688d-73d5-4de8-a5b1-fd22da658fbc" + "dacc533e-e46d-4ec1-8746-3a16cf7fc8b1" ], "Server": [ "Microsoft-IIS/10.0" @@ -3753,22 +3753,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11989" + "11995" ], "x-ms-correlation-request-id": [ - "774c0f9c-0c46-491f-b65a-9e77e3dfa8f2" + "662600e2-3673-4607-9afa-0b36d894954b" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112303Z:774c0f9c-0c46-491f-b65a-9e77e3dfa8f2" + "JIOINDIACENTRAL:20230216T051747Z:662600e2-3673-4607-9afa-0b36d894954b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:23:02 GMT" + "Thu, 16 Feb 2023 05:17:47 GMT" ], "Content-Length": [ - "305" + "292" ], "Content-Type": [ "application/json" @@ -3777,28 +3777,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9ada3a8-017f-4d13-9813-f66f0a5eec30" + "9e82debf-16af-47a9-b98e-cc1da904ca1f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3810,7 +3810,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a5451113-15eb-4126-ae7f-63929d18b411" + "3eb24e07-4e33-4e69-a009-20a7bc262245" ], "Server": [ "Microsoft-IIS/10.0" @@ -3822,22 +3822,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11986" + "11998" ], "x-ms-correlation-request-id": [ - "eb75e228-bd89-4cde-9361-de8a31aa2ef0" + "df42f13f-6453-4b4f-ba32-b2efe99458b9" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112318Z:eb75e228-bd89-4cde-9361-de8a31aa2ef0" + "JIOINDIACENTRAL:20230216T051812Z:df42f13f-6453-4b4f-ba32-b2efe99458b9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:23:18 GMT" + "Thu, 16 Feb 2023 05:18:11 GMT" ], "Content-Length": [ - "305" + "292" ], "Content-Type": [ "application/json" @@ -3846,28 +3846,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8ee46204-6927-4795-9691-8f998f252dad" + "60392274-7c90-4341-8003-11b7dbf8d76d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3879,7 +3879,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "59d7db52-b364-4048-b25d-31fe48276eb6" + "8e64edfa-ed79-4940-a071-6b420dbfeb09" ], "Server": [ "Microsoft-IIS/10.0" @@ -3891,22 +3891,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11983" + "11995" ], "x-ms-correlation-request-id": [ - "a5224b26-f578-4377-9631-d758a99097af" + "8476bd6f-e054-477f-80a8-d3016221517b" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112323Z:a5224b26-f578-4377-9631-d758a99097af" + "JIOINDIACENTRAL:20230216T051823Z:8476bd6f-e054-477f-80a8-d3016221517b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:23:23 GMT" + "Thu, 16 Feb 2023 05:18:23 GMT" ], "Content-Length": [ - "305" + "292" ], "Content-Type": [ "application/json" @@ -3915,28 +3915,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "027d3f8d-9fae-432f-92cc-9f440ce8934e" + "0e12cd0f-63db-4c30-8e25-bdedb730036f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3948,7 +3948,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "66cfdb69-6966-4923-8777-f4f839988206" + "fddece34-927a-44bf-9216-bc27ccf1543c" ], "Server": [ "Microsoft-IIS/10.0" @@ -3963,19 +3963,19 @@ "11997" ], "x-ms-correlation-request-id": [ - "74cf4d0b-7a00-40bf-b41a-e50a62cca37e" + "6e254f3b-29ec-43a4-9704-7880d0441fe8" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112238Z:74cf4d0b-7a00-40bf-b41a-e50a62cca37e" + "JIOINDIACENTRAL:20230216T051700Z:6e254f3b-29ec-43a4-9704-7880d0441fe8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:22:38 GMT" + "Thu, 16 Feb 2023 05:17:00 GMT" ], "Content-Length": [ - "302" + "289" ], "Content-Type": [ "application/json" @@ -3984,28 +3984,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "027d3f8d-9fae-432f-92cc-9f440ce8934e" + "0e12cd0f-63db-4c30-8e25-bdedb730036f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4017,7 +4017,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "efeca1b6-d103-4617-a493-435a1988bf31" + "f9a6115e-20f1-4ddb-9059-cc2ab572ec91" ], "Server": [ "Microsoft-IIS/10.0" @@ -4032,19 +4032,19 @@ "11994" ], "x-ms-correlation-request-id": [ - "c97cd69b-45cc-422f-91a2-4d784d19b006" + "7d9cfe20-5bc3-46f3-a414-2b1e0bcbc1fa" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112241Z:c97cd69b-45cc-422f-91a2-4d784d19b006" + "JIOINDIACENTRAL:20230216T051704Z:7d9cfe20-5bc3-46f3-a414-2b1e0bcbc1fa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:22:41 GMT" + "Thu, 16 Feb 2023 05:17:04 GMT" ], "Content-Length": [ - "302" + "289" ], "Content-Type": [ "application/json" @@ -4053,28 +4053,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e53827ef-f2ae-4c4a-a0af-e9fde781ae73" + "12390cf7-be21-43d4-ba41-e067f79fe6d7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4086,7 +4086,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ab8ee0d4-b677-4fa1-9ded-586e1c3e732e" + "a69b0694-12e4-4cee-b3d6-b44ffb58e5c6" ], "Server": [ "Microsoft-IIS/10.0" @@ -4098,22 +4098,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11991" + "11997" ], "x-ms-correlation-request-id": [ - "b9cf3851-a9b0-46de-b8d3-c8c9a8d4ea2c" + "d355c0f6-9310-4968-8436-beefb8ed51be" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112301Z:b9cf3851-a9b0-46de-b8d3-c8c9a8d4ea2c" + "JIOINDIACENTRAL:20230216T051744Z:d355c0f6-9310-4968-8436-beefb8ed51be" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:23:00 GMT" + "Thu, 16 Feb 2023 05:17:43 GMT" ], "Content-Length": [ - "302" + "289" ], "Content-Type": [ "application/json" @@ -4122,28 +4122,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e53827ef-f2ae-4c4a-a0af-e9fde781ae73" + "12390cf7-be21-43d4-ba41-e067f79fe6d7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4155,7 +4155,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b52f87e3-c7c7-487d-a046-1886ed6b6199" + "7de33a7a-11a5-41b0-a0a0-8289f9a7d93a" ], "Server": [ "Microsoft-IIS/10.0" @@ -4167,22 +4167,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11988" + "11994" ], "x-ms-correlation-request-id": [ - "a75ad6b0-6178-41dd-962e-c52eb1ab7469" + "aa062f24-820d-44b3-a1f4-83e719de0b04" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112304Z:a75ad6b0-6178-41dd-962e-c52eb1ab7469" + "JIOINDIACENTRAL:20230216T051748Z:aa062f24-820d-44b3-a1f4-83e719de0b04" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:23:03 GMT" + "Thu, 16 Feb 2023 05:17:48 GMT" ], "Content-Length": [ - "302" + "289" ], "Content-Type": [ "application/json" @@ -4191,28 +4191,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9ada3a8-017f-4d13-9813-f66f0a5eec30" + "9e82debf-16af-47a9-b98e-cc1da904ca1f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4224,7 +4224,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a1c60a68-76cd-45db-844a-7caefe985ce2" + "09642a7e-752d-4be4-835e-6391442424d5" ], "Server": [ "Microsoft-IIS/10.0" @@ -4236,22 +4236,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11985" + "11997" ], "x-ms-correlation-request-id": [ - "79470b08-4203-4905-b545-e8cd87258316" + "31d3a21e-8a32-4794-ba83-e963562e2e78" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112319Z:79470b08-4203-4905-b545-e8cd87258316" + "JIOINDIACENTRAL:20230216T051813Z:31d3a21e-8a32-4794-ba83-e963562e2e78" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:23:19 GMT" + "Thu, 16 Feb 2023 05:18:12 GMT" ], "Content-Length": [ - "302" + "289" ], "Content-Type": [ "application/json" @@ -4260,28 +4260,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8ee46204-6927-4795-9691-8f998f252dad" + "60392274-7c90-4341-8003-11b7dbf8d76d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4293,7 +4293,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0da75cd9-ad8f-48b6-86e2-959b225bea3b" + "6cb023c5-d502-4744-80a3-ac011a0564ba" ], "Server": [ "Microsoft-IIS/10.0" @@ -4305,22 +4305,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11982" + "11994" ], "x-ms-correlation-request-id": [ - "7be3a963-47ff-4b43-be60-2c1a9e74d1b9" + "d3ada270-4bc1-47d7-9b96-89ab9817628d" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112324Z:7be3a963-47ff-4b43-be60-2c1a9e74d1b9" + "JIOINDIACENTRAL:20230216T051823Z:d3ada270-4bc1-47d7-9b96-89ab9817628d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:23:24 GMT" + "Thu, 16 Feb 2023 05:18:23 GMT" ], "Content-Length": [ - "302" + "289" ], "Content-Type": [ "application/json" @@ -4329,34 +4329,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "027d3f8d-9fae-432f-92cc-9f440ce8934e" + "0e12cd0f-63db-4c30-8e25-bdedb730036f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "319" + "285" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4365,13 +4365,13 @@ "no-cache" ], "ETag": [ - "\"1D7E1058F8B27EB\"" + "\"1D941C5BF80688B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "942a3257-2c44-4800-a302-93e342e561e6" + "58e203b0-2c62-41a5-9a30-b1d5259b6f1c" ], "Server": [ "Microsoft-IIS/10.0" @@ -4386,19 +4386,19 @@ "499" ], "x-ms-correlation-request-id": [ - "9e8812c8-5db7-44af-ad00-82e77f72661f" + "7134b168-a313-45f5-b0ce-d5308f6f7e64" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112247Z:9e8812c8-5db7-44af-ad00-82e77f72661f" + "JIOINDIACENTRAL:20230216T051710Z:7134b168-a313-45f5-b0ce-d5308f6f7e64" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:22:46 GMT" + "Thu, 16 Feb 2023 05:17:10 GMT" ], "Content-Length": [ - "6265" + "7286" ], "Content-Type": [ "application/json" @@ -4407,34 +4407,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:22:44.4166667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot\",\r\n \"name\": \"AppService-PS-UnitTesting/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"appservice-ps-unittesting(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/appservice-ps-unittesting\",\r\n \"repositorySiteName\": \"appservice-ps-unittesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:17:06.1333333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"appservice-ps-unittesting__5e7e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"appservice-ps-unittesting__testslot\\\\$appservice-ps-unittesting__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e53827ef-f2ae-4c4a-a0af-e9fde781ae73" + "12390cf7-be21-43d4-ba41-e067f79fe6d7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "250" + "216" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"Disabled\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4443,13 +4443,13 @@ "no-cache" ], "ETag": [ - "\"1D7E12599FBAE0B\"" + "\"1D941C5E9390D55\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4abc633b-7731-4ade-8a84-8e76bf13124b" + "4b6095d5-ec0e-45e7-8d7f-547864f3e9a1" ], "Server": [ "Microsoft-IIS/10.0" @@ -4461,22 +4461,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "498" + "499" ], "x-ms-correlation-request-id": [ - "097a913e-6b6f-4aad-8a08-4e2ba67961b3" + "5946c70a-e4cb-4b15-b73a-65b2a66b0efe" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112308Z:097a913e-6b6f-4aad-8a08-4e2ba67961b3" + "JIOINDIACENTRAL:20230216T051753Z:5946c70a-e4cb-4b15-b73a-65b2a66b0efe" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:23:08 GMT" + "Thu, 16 Feb 2023 05:17:53 GMT" ], "Content-Length": [ - "6225" + "7241" ], "Content-Type": [ "application/json" @@ -4485,28 +4485,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:23:05.5966667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot\",\r\n \"name\": \"AppService-PS-UnitTesting/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"name\": \"appservice-ps-unittesting(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/appservice-ps-unittesting\",\r\n \"repositorySiteName\": \"appservice-ps-unittesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:17:49.47\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"appservice-ps-unittesting__5e7e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"appservice-ps-unittesting__testslot\\\\$appservice-ps-unittesting__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcmVzb3VyY2VzPyRmaWx0ZXI9cmVzb3VyY2VUeXBlJTIwZXElMjAnTWljcm9zb2Z0LldlYiUyRkNlcnRpZmljYXRlcycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5XZWIlMkZDZXJ0aWZpY2F0ZXMnJmFwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25501db1-7df3-4c02-a530-e38e41349045" + "839ea374-65cc-4fbd-abd0-5739c2c161f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.51" + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4518,13 +4518,13 @@ "11999" ], "x-ms-request-id": [ - "f0abae7c-50c4-4f5a-a667-8a34ae5d9762" + "26ea09f5-fc1c-4623-819b-b0a37331f193" ], "x-ms-correlation-request-id": [ - "f0abae7c-50c4-4f5a-a667-8a34ae5d9762" + "26ea09f5-fc1c-4623-819b-b0a37331f193" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T112256Z:f0abae7c-50c4-4f5a-a667-8a34ae5d9762" + "JIOINDIACENTRAL:20230216T051734Z:26ea09f5-fc1c-4623-819b-b0a37331f193" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4533,7 +4533,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:22:56 GMT" + "Thu, 16 Feb 2023 05:17:34 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4542,31 +4542,31 @@ "-1" ], "Content-Length": [ - "297" + "587" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"name\": \"adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"name\": \"PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"name\": \"psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcmVzb3VyY2VzPyRmaWx0ZXI9cmVzb3VyY2VUeXBlJTIwZXElMjAnTWljcm9zb2Z0LldlYiUyRkNlcnRpZmljYXRlcycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5XZWIlMkZDZXJ0aWZpY2F0ZXMnJmFwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e53827ef-f2ae-4c4a-a0af-e9fde781ae73" + "12390cf7-be21-43d4-ba41-e067f79fe6d7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.51" + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4575,16 +4575,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11991" ], "x-ms-request-id": [ - "03eb7a7e-8c14-435a-8bf3-58be3f19ed7b" + "8a24cd72-b3ee-411c-8c3c-92645bde9a40" ], "x-ms-correlation-request-id": [ - "03eb7a7e-8c14-435a-8bf3-58be3f19ed7b" + "8a24cd72-b3ee-411c-8c3c-92645bde9a40" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T112308Z:03eb7a7e-8c14-435a-8bf3-58be3f19ed7b" + "JIOINDIACENTRAL:20230216T051754Z:8a24cd72-b3ee-411c-8c3c-92645bde9a40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4593,7 +4593,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:23:07 GMT" + "Thu, 16 Feb 2023 05:17:53 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4602,31 +4602,100 @@ "-1" ], "Content-Length": [ - "297" + "587" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"name\": \"adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"name\": \"PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"name\": \"psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL2Fkb3Jlbm93LWxrZXRtdGVzdGFudHBzMTAtQ2VudHJhbFVTd2Vic3BhY2U/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/PS-UnitTesting-Keyvault-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy9QUy1Vbml0VGVzdGluZy1LZXl2YXVsdC1QUy1Vbml0VGVzdGluZz9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "839ea374-65cc-4fbd-abd0-5739c2c161f7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" + ] + }, "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c43416a0-1654-435b-8979-a75a37270fa7" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "fe3f9a66-b7d0-45a5-8811-a38d5bcec6ba" + ], + "x-ms-routing-request-id": [ + "JIOINDIACENTRAL:20230216T051735Z:fe3f9a66-b7d0-45a5-8811-a38d5bcec6ba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Feb 2023 05:17:35 GMT" + ], + "Content-Length": [ + "1081" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"name\": \"PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"password\": null,\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"psunittesting\",\r\n \"hostNames\": [\r\n \"psunittesting\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"psunittesting\",\r\n \"issueDate\": \"2022-07-28T07:11:04+05:30\",\r\n \"expirationDate\": \"2023-07-28T07:21:04+05:30\",\r\n \"thumbprint\": \"E4E04D3CE912AB34F0B94CBC27042E5022C961E1\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourcegroups/rg-ps-unittesting/providers/microsoft.keyvault/vaults/ps-unittesting-keyvault\",\r\n \"keyVaultSecretName\": \"ps-unittesting\",\r\n \"keyVaultSecretStatus\": \"KeyVaultSecretDoesNotExist\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/PS-UnitTesting-Keyvault-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy9QUy1Vbml0VGVzdGluZy1LZXl2YXVsdC1QUy1Vbml0VGVzdGluZz9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "25501db1-7df3-4c02-a530-e38e41349045" + "12390cf7-be21-43d4-ba41-e067f79fe6d7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4638,7 +4707,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "afc46550-f047-4d50-90fe-19c6dcceb8f5" + "9b366294-2ac7-476c-ac1f-61ec8910d1ae" ], "Server": [ "Microsoft-IIS/10.0" @@ -4650,22 +4719,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11990" ], "x-ms-correlation-request-id": [ - "d964a576-cd80-48d6-bbdb-1e6497259225" + "77f41c51-e84d-4f60-a615-14613f436d2f" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112257Z:d964a576-cd80-48d6-bbdb-1e6497259225" + "JIOINDIACENTRAL:20230216T051754Z:77f41c51-e84d-4f60-a615-14613f436d2f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:22:56 GMT" + "Thu, 16 Feb 2023 05:17:54 GMT" ], "Content-Length": [ - "1157" + "1081" ], "Content-Type": [ "application/json" @@ -4674,28 +4743,97 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"name\": \"adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"password\": null,\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.adorenow.net,adorenow.net\",\r\n \"hostNames\": [\r\n \"*.adorenow.net\",\r\n \"adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"Go Daddy Secure Certificate Authority - G2\",\r\n \"issueDate\": \"2021-08-30T09:36:25+05:30\",\r\n \"expirationDate\": \"2022-09-29T12:46:02+05:30\",\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/lketmtestantps10/providers/microsoft.keyvault/vaults/ssltesting\",\r\n \"keyVaultSecretName\": \"adorenowadb85164-4f85-4ba7-8721-7071bbc3ecb1\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"lketmtestantps10\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"name\": \"PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"password\": null,\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"psunittesting\",\r\n \"hostNames\": [\r\n \"psunittesting\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"psunittesting\",\r\n \"issueDate\": \"2022-07-28T07:11:04+05:30\",\r\n \"expirationDate\": \"2023-07-28T07:21:04+05:30\",\r\n \"thumbprint\": \"E4E04D3CE912AB34F0B94CBC27042E5022C961E1\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourcegroups/rg-ps-unittesting/providers/microsoft.keyvault/vaults/ps-unittesting-keyvault\",\r\n \"keyVaultSecretName\": \"ps-unittesting\",\r\n \"keyVaultSecretStatus\": \"KeyVaultSecretDoesNotExist\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL2Fkb3Jlbm93LWxrZXRtdGVzdGFudHBzMTAtQ2VudHJhbFVTd2Vic3BhY2U/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy9wc3VuaXR0ZXN0aW5nLVJHLVBTLVVuaXRUZXN0aW5nLUNlbnRyYWxVU3dlYnNwYWNlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "839ea374-65cc-4fbd-abd0-5739c2c161f7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" + ] + }, "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f2130004-fdc6-42bd-8209-2bc03367560c" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "12894f9d-6836-44d0-bf0a-27ab17881a85" + ], + "x-ms-routing-request-id": [ + "JIOINDIACENTRAL:20230216T051736Z:12894f9d-6836-44d0-bf0a-27ab17881a85" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Feb 2023 05:17:36 GMT" + ], + "Content-Length": [ + "1211" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"name\": \"psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"password\": null,\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.psunittesting.com,psunittesting.com\",\r\n \"hostNames\": [\r\n \"*.psunittesting.com\",\r\n \"psunittesting.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"Go Daddy Secure Certificate Authority - G2\",\r\n \"issueDate\": \"2023-02-16T07:42:44+05:30\",\r\n \"expirationDate\": \"2024-02-16T07:42:44+05:30\",\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourcegroups/rg-ps-unittesting/providers/microsoft.keyvault/vaults/ps-unittesting-keyvault\",\r\n \"keyVaultSecretName\": \"psunittestingaa142621-b4d5-445e-b940-7b9a0cc4e414\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy9wc3VuaXR0ZXN0aW5nLVJHLVBTLVVuaXRUZXN0aW5nLUNlbnRyYWxVU3dlYnNwYWNlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "e53827ef-f2ae-4c4a-a0af-e9fde781ae73" + "12390cf7-be21-43d4-ba41-e067f79fe6d7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4707,7 +4845,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5f15e671-cabf-4dea-a41b-40a189e54301" + "1a324f9e-ff4a-4087-ad3e-46390801f98a" ], "Server": [ "Microsoft-IIS/10.0" @@ -4719,22 +4857,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11989" ], "x-ms-correlation-request-id": [ - "be968e0b-c908-47bc-a26d-bef93954f859" + "a94cb3df-eef6-4cbf-94e9-20cba036117c" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112308Z:be968e0b-c908-47bc-a26d-bef93954f859" + "JIOINDIACENTRAL:20230216T051755Z:a94cb3df-eef6-4cbf-94e9-20cba036117c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:23:08 GMT" + "Thu, 16 Feb 2023 05:17:55 GMT" ], "Content-Length": [ - "1157" + "1211" ], "Content-Type": [ "application/json" @@ -4743,28 +4881,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"name\": \"adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"password\": null,\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.adorenow.net,adorenow.net\",\r\n \"hostNames\": [\r\n \"*.adorenow.net\",\r\n \"adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"Go Daddy Secure Certificate Authority - G2\",\r\n \"issueDate\": \"2021-08-30T09:36:25+05:30\",\r\n \"expirationDate\": \"2022-09-29T12:46:02+05:30\",\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/lketmtestantps10/providers/microsoft.keyvault/vaults/ssltesting\",\r\n \"keyVaultSecretName\": \"adorenowadb85164-4f85-4ba7-8721-7071bbc3ecb1\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"lketmtestantps10\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"name\": \"psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"password\": null,\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.psunittesting.com,psunittesting.com\",\r\n \"hostNames\": [\r\n \"*.psunittesting.com\",\r\n \"psunittesting.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"Go Daddy Secure Certificate Authority - G2\",\r\n \"issueDate\": \"2023-02-16T07:42:44+05:30\",\r\n \"expirationDate\": \"2024-02-16T07:42:44+05:30\",\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourcegroups/rg-ps-unittesting/providers/microsoft.keyvault/vaults/ps-unittesting-keyvault\",\r\n \"keyVaultSecretName\": \"psunittestingaa142621-b4d5-445e-b940-7b9a0cc4e414\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL2Fkb3Jlbm93LWxrZXRtdGVzdGFudHBzMTAtQ2VudHJhbFVTd2Vic3BhY2U/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy9wc3VuaXR0ZXN0aW5nLVJHLVBTLVVuaXRUZXN0aW5nLUNlbnRyYWxVU3dlYnNwYWNlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25501db1-7df3-4c02-a530-e38e41349045" + "839ea374-65cc-4fbd-abd0-5739c2c161f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4788,22 +4926,22 @@ "14999" ], "x-ms-request-id": [ - "78b0e237-422a-4a1e-a75d-acbdb17663d9" + "6a26eaed-a574-4a01-84be-0c9572e42792" ], "x-ms-correlation-request-id": [ - "78b0e237-422a-4a1e-a75d-acbdb17663d9" + "6a26eaed-a574-4a01-84be-0c9572e42792" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112258Z:78b0e237-422a-4a1e-a75d-acbdb17663d9" + "JIOINDIACENTRAL:20230216T051737Z:6a26eaed-a574-4a01-84be-0c9572e42792" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:22:57 GMT" + "Thu, 16 Feb 2023 05:17:37 GMT" ], "Content-Length": [ - "779" + "799" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4812,28 +4950,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"Code\": \"Conflict\",\r\n \"Message\": \"Cannot remove certificate with thumbprint 6156D1475113476C55A3064D44DED9ECA0B33864 because it is used for hostname testslot.adorenow.net.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot remove certificate with thumbprint 6156D1475113476C55A3064D44DED9ECA0B33864 because it is used for hostname testslot.adorenow.net.\"\r\n },\r\n {\r\n \"Code\": \"Conflict\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"ExtendedCode\": \"04035\",\r\n \"MessageTemplate\": \"Cannot remove certificate with thumbprint {0} because it is used for hostname {1}.\",\r\n \"Parameters\": [\r\n \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"testslot.adorenow.net\"\r\n ],\r\n \"Code\": \"Conflict\",\r\n \"Message\": \"Cannot remove certificate with thumbprint 6156D1475113476C55A3064D44DED9ECA0B33864 because it is used for hostname testslot.adorenow.net.\"\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}", + "ResponseBody": "{\r\n \"Code\": \"Conflict\",\r\n \"Message\": \"Cannot remove certificate with thumbprint 210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41 because it is used for hostname testslot.psunittesting.com.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot remove certificate with thumbprint 210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41 because it is used for hostname testslot.psunittesting.com.\"\r\n },\r\n {\r\n \"Code\": \"Conflict\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"ExtendedCode\": \"04035\",\r\n \"MessageTemplate\": \"Cannot remove certificate with thumbprint {0} because it is used for hostname {1}.\",\r\n \"Parameters\": [\r\n \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"testslot.psunittesting.com\"\r\n ],\r\n \"Code\": \"Conflict\",\r\n \"Message\": \"Cannot remove certificate with thumbprint 210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41 because it is used for hostname testslot.psunittesting.com.\"\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}", "StatusCode": 409 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL2Fkb3Jlbm93LWxrZXRtdGVzdGFudHBzMTAtQ2VudHJhbFVTd2Vic3BhY2U/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy9wc3VuaXR0ZXN0aW5nLVJHLVBTLVVuaXRUZXN0aW5nLUNlbnRyYWxVU3dlYnNwYWNlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e53827ef-f2ae-4c4a-a0af-e9fde781ae73" + "12390cf7-be21-43d4-ba41-e067f79fe6d7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4845,7 +4983,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7c807c5d-b4ef-40a0-9b1e-7c4def05a3fb" + "601994d3-36a0-45e5-b18f-440bbca40a42" ], "Server": [ "Microsoft-IIS/10.0" @@ -4857,19 +4995,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-correlation-request-id": [ - "a7fb3345-75c5-48bd-98b4-b9df040d3ba3" + "99c0d260-cf0d-495c-ad46-eebc2815fec3" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T112312Z:a7fb3345-75c5-48bd-98b4-b9df040d3ba3" + "JIOINDIACENTRAL:20230216T051758Z:99c0d260-cf0d-495c-ad46-eebc2815fec3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:23:12 GMT" + "Thu, 16 Feb 2023 05:17:58 GMT" ], "Expires": [ "-1" @@ -4884,6 +5022,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "04b0639d-85d8-445a-bada-8da78e50ff30" + "SubscriptionId": "3e929699-b7a4-46cc-97cf-8a95e04318b8" } } \ No newline at end of file diff --git a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TestWebAppSSLBindingPipeSupport.json b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TestWebAppSSLBindingPipeSupport.json index 810ecbb8bbcc..f46789f6b837 100644 --- a/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TestWebAppSSLBindingPipeSupport.json +++ b/src/Websites/Websites.Test/SessionRecords/Microsoft.Azure.Commands.Websites.Test.ScenarioTests.SSLBindingTests/TestWebAppSSLBindingPipeSupport.json @@ -1,24 +1,24 @@ { "Entries": [ { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b3467a83-4422-460e-afca-6699379c497a" + "fdf2b37b-3161-4a64-b4b6-8c6f941d0a93" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -27,13 +27,13 @@ "no-cache" ], "ETag": [ - "\"1D7E1276C802FF5\"" + "\"1D941C8454429E0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ab04a4ec-f8d5-4a16-ad61-f6195ac54c68" + "02bd4a6e-7bc7-40c3-a421-22a70aee0a1c" ], "Server": [ "Microsoft-IIS/10.0" @@ -48,19 +48,19 @@ "11999" ], "x-ms-correlation-request-id": [ - "abe42c49-b20f-4f07-9726-2742c6ae5c62" + "6d4392ce-1d25-4582-b0d5-71ec187ce29a" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113622Z:abe42c49-b20f-4f07-9726-2742c6ae5c62" + "CENTRALINDIA:20230216T053701Z:6d4392ce-1d25-4582-b0d5-71ec187ce29a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:36:21 GMT" + "Thu, 16 Feb 2023 05:37:01 GMT" ], "Content-Length": [ - "5945" + "6978" ], "Content-Type": [ "application/json" @@ -69,28 +69,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"IpBasedEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": \"52.165.151.82\",\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:35:47.1033333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:33:59.55\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "baaf804c-7154-4cc7-9139-281b50ff44c5" + "003a75a1-cf39-4f1d-b9ad-0b9498158cde" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -99,13 +99,13 @@ "no-cache" ], "ETag": [ - "\"1D7E1276C802FF5\"" + "\"1D941C8454429E0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "08f57393-c511-47e3-8070-cc9757a62acf" + "03de330c-b93c-4a36-b78d-9044f0c8e314" ], "Server": [ "Microsoft-IIS/10.0" @@ -120,19 +120,19 @@ "11995" ], "x-ms-correlation-request-id": [ - "e76b3281-2465-486f-a0b5-9297ee88208a" + "b0959124-79e0-4aeb-b86b-9d9a82b01f81" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113628Z:e76b3281-2465-486f-a0b5-9297ee88208a" + "JIOINDIACENTRAL:20230216T053713Z:b0959124-79e0-4aeb-b86b-9d9a82b01f81" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:36:28 GMT" + "Thu, 16 Feb 2023 05:37:13 GMT" ], "Content-Length": [ - "5945" + "6978" ], "Content-Type": [ "application/json" @@ -141,28 +141,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"IpBasedEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": \"52.165.151.82\",\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:35:47.1033333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:33:59.55\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "baaf804c-7154-4cc7-9139-281b50ff44c5" + "003a75a1-cf39-4f1d-b9ad-0b9498158cde" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -171,13 +171,13 @@ "no-cache" ], "ETag": [ - "\"1D7E1276C802FF5\"" + "\"1D941C8454429E0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a6e49148-d95b-49f8-94ed-c320718a19e5" + "68022d09-5ca4-4f43-80f9-b5550f93b979" ], "Server": [ "Microsoft-IIS/10.0" @@ -192,19 +192,19 @@ "11993" ], "x-ms-correlation-request-id": [ - "e457deb5-e0f0-48ae-88c5-dc14553059dc" + "e24ba914-c956-47c6-9b76-804a5e3a792b" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113630Z:e457deb5-e0f0-48ae-88c5-dc14553059dc" + "JIOINDIACENTRAL:20230216T053717Z:e24ba914-c956-47c6-9b76-804a5e3a792b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:36:30 GMT" + "Thu, 16 Feb 2023 05:37:17 GMT" ], "Content-Length": [ - "5945" + "6978" ], "Content-Type": [ "application/json" @@ -213,28 +213,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"IpBasedEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": \"52.165.151.82\",\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:35:47.1033333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:33:59.55\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da5a6789-6ce9-4fbc-b211-5408b5064bdc" + "a6489da9-641f-4029-8f38-431aefd81715" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -243,13 +243,13 @@ "no-cache" ], "ETag": [ - "\"1D7E1278A8A1BC0\"" + "\"1D941C8BE7DFF55\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e5e89714-3f76-4bfe-8d0a-42ab635d9bc3" + "65d2833a-7a84-4265-8046-029b99e40801" ], "Server": [ "Microsoft-IIS/10.0" @@ -261,22 +261,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11999" ], "x-ms-correlation-request-id": [ - "1b258456-8d84-465a-bce9-a3575b3f1c0f" + "395b9b02-db53-4316-9596-dcb057191320" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113658Z:1b258456-8d84-465a-bce9-a3575b3f1c0f" + "JIOINDIACENTRAL:20230216T053747Z:395b9b02-db53-4316-9596-dcb057191320" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:36:57 GMT" + "Thu, 16 Feb 2023 05:37:46 GMT" ], "Content-Length": [ - "5924" + "6983" ], "Content-Type": [ "application/json" @@ -285,28 +285,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:36:37.5\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:37:22.9333333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d75eef29-1e18-4ca5-9706-86886e4d68d8" + "1eb5c0db-8afe-4b76-bef4-d6e51480fb9b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -315,13 +315,13 @@ "no-cache" ], "ETag": [ - "\"1D7E1278A8A1BC0\"" + "\"1D941C8BE7DFF55\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b5d40ff7-65e1-41a8-83af-1230d6f4ff08" + "996b2da0-260a-4033-803b-7da40e86a3b1" ], "Server": [ "Microsoft-IIS/10.0" @@ -333,22 +333,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11993" ], "x-ms-correlation-request-id": [ - "1d032c77-eee1-4ea7-9ef6-8a4b70759cb0" + "05bc599c-d3df-400b-804b-ec1c48019830" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113704Z:1d032c77-eee1-4ea7-9ef6-8a4b70759cb0" + "CENTRALINDIA:20230216T053758Z:05bc599c-d3df-400b-804b-ec1c48019830" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:04 GMT" + "Thu, 16 Feb 2023 05:37:57 GMT" ], "Content-Length": [ - "5924" + "6983" ], "Content-Type": [ "application/json" @@ -357,28 +357,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:36:37.5\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:37:22.9333333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d75eef29-1e18-4ca5-9706-86886e4d68d8" + "1eb5c0db-8afe-4b76-bef4-d6e51480fb9b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -387,13 +387,13 @@ "no-cache" ], "ETag": [ - "\"1D7E1278A8A1BC0\"" + "\"1D941C8BE7DFF55\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4bf3ecea-77e9-4d35-b2ce-3586df3a0859" + "d74aec25-2fc2-4387-b3e5-64d3983dbf7f" ], "Server": [ "Microsoft-IIS/10.0" @@ -405,22 +405,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11991" ], "x-ms-correlation-request-id": [ - "fd1b61d6-4b0c-4bf2-8aff-b3f4b52ac82f" + "f6859367-4100-420f-b2c0-d95baf05afc7" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113707Z:fd1b61d6-4b0c-4bf2-8aff-b3f4b52ac82f" + "CENTRALINDIA:20230216T053802Z:f6859367-4100-420f-b2c0-d95baf05afc7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:06 GMT" + "Thu, 16 Feb 2023 05:38:01 GMT" ], "Content-Length": [ - "5924" + "6983" ], "Content-Type": [ "application/json" @@ -429,28 +429,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:36:37.5\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:37:22.9333333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "471b13f9-5c81-458f-8bb7-ebe4beaa2889" + "a1f07f4b-5f3f-44f5-9555-8cc75e8376d0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -459,13 +459,13 @@ "no-cache" ], "ETag": [ - "\"1D7E1279E5691CB\"" + "\"1D941C8D88A1695\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "970e0544-b29a-4482-8c32-6333e196089f" + "0ff06d24-286e-4d54-84d8-b6594c88f791" ], "Server": [ "Microsoft-IIS/10.0" @@ -477,22 +477,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11980" ], "x-ms-correlation-request-id": [ - "18dfc38b-5025-4eb8-a791-c036e747212d" + "54344a4d-a672-4364-99ac-decc89e2a891" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113715Z:18dfc38b-5025-4eb8-a791-c036e747212d" + "JIOINDIACENTRAL:20230216T053815Z:54344a4d-a672-4364-99ac-decc89e2a891" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:14 GMT" + "Thu, 16 Feb 2023 05:38:14 GMT" ], "Content-Length": [ - "5890" + "6943" ], "Content-Type": [ "application/json" @@ -501,28 +501,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:37:10.7166667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:38:06.6333333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "af83c911-2580-49b0-86cf-68880ba497e3" + "3d1114d9-b861-4e80-81a1-db34bd262480" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -531,13 +531,13 @@ "no-cache" ], "ETag": [ - "\"1D7E1279E5691CB\"" + "\"1D941C8D88A1695\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b11ded31-0828-4161-b992-ac2a27fac627" + "919ff6f8-885f-4dba-b81b-a7c471ef0feb" ], "Server": [ "Microsoft-IIS/10.0" @@ -549,22 +549,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11988" ], "x-ms-correlation-request-id": [ - "5ae299dd-c6a4-4d68-af13-740e22fc86e9" + "c510243f-ba33-4901-bf5b-623f7fe767e9" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113735Z:5ae299dd-c6a4-4d68-af13-740e22fc86e9" + "JIOINDIACENTRAL:20230216T053852Z:c510243f-ba33-4901-bf5b-623f7fe767e9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:34 GMT" + "Thu, 16 Feb 2023 05:38:51 GMT" ], "Content-Length": [ - "5890" + "6943" ], "Content-Type": [ "application/json" @@ -573,28 +573,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:37:10.7166667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:38:06.6333333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b3467a83-4422-460e-afca-6699379c497a" + "fdf2b37b-3161-4a64-b4b6-8c6f941d0a93" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -606,7 +606,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cc12d715-d1b0-442c-86e0-198edaf8cd45" + "4b9959b7-4f22-444f-b4fe-e4f4171779ad" ], "Server": [ "Microsoft-IIS/10.0" @@ -621,19 +621,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "8482a699-32ec-4e98-9b06-8ce3390daea1" + "c93b06a2-d7a9-4b45-89ce-930106616b59" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113623Z:8482a699-32ec-4e98-9b06-8ce3390daea1" + "CENTRALINDIA:20230216T053702Z:c93b06a2-d7a9-4b45-89ce-930106616b59" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:36:22 GMT" + "Thu, 16 Feb 2023 05:37:02 GMT" ], "Content-Length": [ - "4196" + "4048" ], "Content-Type": [ "application/json" @@ -642,28 +642,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$AppService-PS-UnitTesting\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "baaf804c-7154-4cc7-9139-281b50ff44c5" + "003a75a1-cf39-4f1d-b9ad-0b9498158cde" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -675,7 +675,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f0464fc9-842a-4c3e-9267-e2dc0de1ec28" + "4e621452-559f-4b17-968a-04e285110316" ], "Server": [ "Microsoft-IIS/10.0" @@ -690,19 +690,19 @@ "11994" ], "x-ms-correlation-request-id": [ - "1e061156-dbfc-4d23-b317-e14227004d22" + "b5252a98-31c9-4733-8817-cf2f79d51f18" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113628Z:1e061156-dbfc-4d23-b317-e14227004d22" + "JIOINDIACENTRAL:20230216T053714Z:b5252a98-31c9-4733-8817-cf2f79d51f18" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:36:28 GMT" + "Thu, 16 Feb 2023 05:37:14 GMT" ], "Content-Length": [ - "4196" + "4048" ], "Content-Type": [ "application/json" @@ -711,28 +711,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$AppService-PS-UnitTesting\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "baaf804c-7154-4cc7-9139-281b50ff44c5" + "003a75a1-cf39-4f1d-b9ad-0b9498158cde" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -744,7 +744,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c4699558-dd94-43e5-8742-83a4abea7b94" + "b00d2170-c51d-4c2a-9389-eb180f909dee" ], "Server": [ "Microsoft-IIS/10.0" @@ -759,19 +759,19 @@ "11992" ], "x-ms-correlation-request-id": [ - "db183519-272f-4a87-9ec1-17103f7286a3" + "ed7d5a32-f07d-4eab-9542-2ac332dc98fd" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113631Z:db183519-272f-4a87-9ec1-17103f7286a3" + "JIOINDIACENTRAL:20230216T053718Z:ed7d5a32-f07d-4eab-9542-2ac332dc98fd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:36:31 GMT" + "Thu, 16 Feb 2023 05:37:18 GMT" ], "Content-Length": [ - "4196" + "4048" ], "Content-Type": [ "application/json" @@ -780,28 +780,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$AppService-PS-UnitTesting\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da5a6789-6ce9-4fbc-b211-5408b5064bdc" + "a6489da9-641f-4029-8f38-431aefd81715" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -813,7 +813,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "aa108cc4-4e11-4548-8ac3-c478d272de47" + "9e25df70-52f9-475f-ba6e-cb4c41a86865" ], "Server": [ "Microsoft-IIS/10.0" @@ -825,22 +825,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11998" ], "x-ms-correlation-request-id": [ - "21a3e835-49a9-4d83-8d1b-5638ea570544" + "3906186e-318c-4a6f-a7a0-8303296014d1" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113658Z:21a3e835-49a9-4d83-8d1b-5638ea570544" + "JIOINDIACENTRAL:20230216T053749Z:3906186e-318c-4a6f-a7a0-8303296014d1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:36:57 GMT" + "Thu, 16 Feb 2023 05:37:48 GMT" ], "Content-Length": [ - "4196" + "4048" ], "Content-Type": [ "application/json" @@ -849,28 +849,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$AppService-PS-UnitTesting\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d75eef29-1e18-4ca5-9706-86886e4d68d8" + "1eb5c0db-8afe-4b76-bef4-d6e51480fb9b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -882,7 +882,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d6fe53ea-639f-4509-8a7c-6e4a4649b8b4" + "e5473366-3e34-4e17-9659-d8616e5afacf" ], "Server": [ "Microsoft-IIS/10.0" @@ -894,22 +894,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11992" ], "x-ms-correlation-request-id": [ - "9a3661c7-ed2d-4b45-85ce-1c010cc67e9d" + "242c08d3-89f2-449f-9010-5176ed2d2795" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113704Z:9a3661c7-ed2d-4b45-85ce-1c010cc67e9d" + "CENTRALINDIA:20230216T053758Z:242c08d3-89f2-449f-9010-5176ed2d2795" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:04 GMT" + "Thu, 16 Feb 2023 05:37:58 GMT" ], "Content-Length": [ - "4196" + "4048" ], "Content-Type": [ "application/json" @@ -918,28 +918,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$AppService-PS-UnitTesting\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d75eef29-1e18-4ca5-9706-86886e4d68d8" + "1eb5c0db-8afe-4b76-bef4-d6e51480fb9b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -951,7 +951,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e4abba40-94ec-4b8a-85d2-1804599ac70c" + "59807fd2-a681-46b2-9f94-237a4218e04c" ], "Server": [ "Microsoft-IIS/10.0" @@ -963,22 +963,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11990" ], "x-ms-correlation-request-id": [ - "a90cebfe-4b92-411c-bb95-c4f1c6c97f5d" + "faf4ed6c-91aa-44fb-9da6-0bb6a8e7ddf2" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113707Z:a90cebfe-4b92-411c-bb95-c4f1c6c97f5d" + "CENTRALINDIA:20230216T053802Z:faf4ed6c-91aa-44fb-9da6-0bb6a8e7ddf2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:07 GMT" + "Thu, 16 Feb 2023 05:38:02 GMT" ], "Content-Length": [ - "4196" + "4048" ], "Content-Type": [ "application/json" @@ -987,28 +987,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$AppService-PS-UnitTesting\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "471b13f9-5c81-458f-8bb7-ebe4beaa2889" + "a1f07f4b-5f3f-44f5-9555-8cc75e8376d0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1020,7 +1020,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "02101c3f-5705-4a6a-9b4b-4c61612569a8" + "c464dafb-362a-4774-b955-a2cda07fa61f" ], "Server": [ "Microsoft-IIS/10.0" @@ -1032,22 +1032,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11979" ], "x-ms-correlation-request-id": [ - "2b40db51-d5f4-42e1-a19b-80511e0a750e" + "215a78f8-82ff-4560-87ca-ee7381479b8e" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113716Z:2b40db51-d5f4-42e1-a19b-80511e0a750e" + "JIOINDIACENTRAL:20230216T053816Z:215a78f8-82ff-4560-87ca-ee7381479b8e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:15 GMT" + "Thu, 16 Feb 2023 05:38:15 GMT" ], "Content-Length": [ - "4196" + "4048" ], "Content-Type": [ "application/json" @@ -1056,28 +1056,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$AppService-PS-UnitTesting\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "af83c911-2580-49b0-86cf-68880ba497e3" + "3d1114d9-b861-4e80-81a1-db34bd262480" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1089,7 +1089,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "aff7fc56-6762-45d5-820c-ad8239427e8c" + "dc304ef2-f3e6-4b9a-b9ec-198950bb9015" ], "Server": [ "Microsoft-IIS/10.0" @@ -1101,22 +1101,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11987" ], "x-ms-correlation-request-id": [ - "138a5785-d445-4698-b0cf-0decf0aecf37" + "42043dd5-8277-4125-b56a-8bcc7b60e02f" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113735Z:138a5785-d445-4698-b0cf-0decf0aecf37" + "JIOINDIACENTRAL:20230216T053853Z:42043dd5-8277-4125-b56a-8bcc7b60e02f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:35 GMT" + "Thu, 16 Feb 2023 05:38:52 GMT" ], "Content-Length": [ - "4196" + "4048" ], "Content-Type": [ "application/json" @@ -1125,28 +1125,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ],\r\n \"experiments\": {\r\n \"rampUpRules\": [\r\n {\r\n \"actionHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"reroutePercentage\": 10.0,\r\n \"changeStep\": null,\r\n \"changeIntervalInMinutes\": null,\r\n \"minReroutePercentage\": null,\r\n \"maxReroutePercentage\": null,\r\n \"changeDecisionCallbackUrl\": null,\r\n \"name\": \"testslot\"\r\n }\r\n ]\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$AppService-PS-UnitTesting\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b3467a83-4422-460e-afca-6699379c497a" + "fdf2b37b-3161-4a64-b4b6-8c6f941d0a93" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1158,7 +1158,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c0f56bd6-3867-4168-9588-d90d64366847" + "9df472d6-9050-4efc-bde5-146d54d3333f" ], "Server": [ "Microsoft-IIS/10.0" @@ -1173,19 +1173,19 @@ "11999" ], "x-ms-correlation-request-id": [ - "52d8ac25-4ace-4ab6-a317-3c4439b62d92" + "622a5fab-ae16-432d-9e7c-ec36f139091d" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113623Z:52d8ac25-4ace-4ab6-a317-3c4439b62d92" + "CENTRALINDIA:20230216T053703Z:622a5fab-ae16-432d-9e7c-ec36f139091d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:36:22 GMT" + "Thu, 16 Feb 2023 05:37:03 GMT" ], "Content-Length": [ - "740" + "707" ], "Content-Type": [ "application/json" @@ -1194,28 +1194,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "baaf804c-7154-4cc7-9139-281b50ff44c5" + "003a75a1-cf39-4f1d-b9ad-0b9498158cde" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1227,7 +1227,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8f3a24c5-aa16-4d4a-b366-8f3b3b246a49" + "a83e7d2a-f43e-4ec5-93cc-98957f05f3b7" ], "Server": [ "Microsoft-IIS/10.0" @@ -1239,22 +1239,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11996" + "11999" ], "x-ms-correlation-request-id": [ - "9130a661-489d-448f-abfd-19dbbd72d1a0" + "9c12b649-3530-4557-a9c0-b1d7ba7b0bad" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113629Z:9130a661-489d-448f-abfd-19dbbd72d1a0" + "JIOINDIACENTRAL:20230216T053715Z:9c12b649-3530-4557-a9c0-b1d7ba7b0bad" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:36:29 GMT" + "Thu, 16 Feb 2023 05:37:15 GMT" ], "Content-Length": [ - "740" + "707" ], "Content-Type": [ "application/json" @@ -1263,28 +1263,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "baaf804c-7154-4cc7-9139-281b50ff44c5" + "003a75a1-cf39-4f1d-b9ad-0b9498158cde" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1296,7 +1296,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "307b81e0-cdf0-4c6d-bdd9-a8387ccd9cd8" + "6b116a1b-b0fc-4050-b819-6fad9323fc5b" ], "Server": [ "Microsoft-IIS/10.0" @@ -1308,22 +1308,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11993" + "11996" ], "x-ms-correlation-request-id": [ - "83ff97f2-7705-4b9e-b81d-9030266bf166" + "c8aa0881-5875-4f01-b53a-c3136e2656d5" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113631Z:83ff97f2-7705-4b9e-b81d-9030266bf166" + "JIOINDIACENTRAL:20230216T053719Z:c8aa0881-5875-4f01-b53a-c3136e2656d5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:36:31 GMT" + "Thu, 16 Feb 2023 05:37:18 GMT" ], "Content-Length": [ - "740" + "707" ], "Content-Type": [ "application/json" @@ -1332,28 +1332,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da5a6789-6ce9-4fbc-b211-5408b5064bdc" + "a6489da9-641f-4029-8f38-431aefd81715" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1365,7 +1365,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ee97d296-0986-4db9-a499-63dee0ff2409" + "a1a222c8-09bd-414a-afe9-2df805b982c0" ], "Server": [ "Microsoft-IIS/10.0" @@ -1377,22 +1377,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11990" + "11999" ], "x-ms-correlation-request-id": [ - "76d5162d-1652-45fc-b783-4803e7577916" + "0035ede1-cc47-4e1f-8cda-a411950b8b03" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113659Z:76d5162d-1652-45fc-b783-4803e7577916" + "JIOINDIACENTRAL:20230216T053750Z:0035ede1-cc47-4e1f-8cda-a411950b8b03" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:36:58 GMT" + "Thu, 16 Feb 2023 05:37:50 GMT" ], "Content-Length": [ - "740" + "707" ], "Content-Type": [ "application/json" @@ -1401,28 +1401,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d75eef29-1e18-4ca5-9706-86886e4d68d8" + "1eb5c0db-8afe-4b76-bef4-d6e51480fb9b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1434,7 +1434,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f9108f4a-f446-414c-bb12-ee2744625f25" + "94bc545e-8e4f-4b2e-b20e-379d70d7dc83" ], "Server": [ "Microsoft-IIS/10.0" @@ -1446,22 +1446,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11987" + "11993" ], "x-ms-correlation-request-id": [ - "27cb280f-5f43-4324-9b6c-ade640882395" + "6aad31de-07c3-45bf-8b78-e87130f7cd00" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113705Z:27cb280f-5f43-4324-9b6c-ade640882395" + "CENTRALINDIA:20230216T053759Z:6aad31de-07c3-45bf-8b78-e87130f7cd00" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:04 GMT" + "Thu, 16 Feb 2023 05:37:58 GMT" ], "Content-Length": [ - "740" + "707" ], "Content-Type": [ "application/json" @@ -1470,28 +1470,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d75eef29-1e18-4ca5-9706-86886e4d68d8" + "1eb5c0db-8afe-4b76-bef4-d6e51480fb9b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1503,7 +1503,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fefe23de-bda4-4b55-a0a7-7f118bbc387b" + "badd4d92-72b1-448c-8e10-587b09782a50" ], "Server": [ "Microsoft-IIS/10.0" @@ -1515,22 +1515,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11984" + "11990" ], "x-ms-correlation-request-id": [ - "8ac65a89-c24a-4c20-9f35-b612697c7986" + "c12088c6-8316-4244-aae6-1e4e43fd299e" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113707Z:8ac65a89-c24a-4c20-9f35-b612697c7986" + "CENTRALINDIA:20230216T053803Z:c12088c6-8316-4244-aae6-1e4e43fd299e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:07 GMT" + "Thu, 16 Feb 2023 05:38:02 GMT" ], "Content-Length": [ - "740" + "707" ], "Content-Type": [ "application/json" @@ -1539,28 +1539,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "471b13f9-5c81-458f-8bb7-ebe4beaa2889" + "a1f07f4b-5f3f-44f5-9555-8cc75e8376d0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1572,7 +1572,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a517b655-938c-4279-83c8-28291da32225" + "4f10c59d-b96c-4695-9abc-4232002801aa" ], "Server": [ "Microsoft-IIS/10.0" @@ -1584,22 +1584,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11981" + "11984" ], "x-ms-correlation-request-id": [ - "4e2572fc-0894-4759-888d-ad4495d59ff2" + "e92ba587-06e6-406d-8429-8f76d658d4e9" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113716Z:4e2572fc-0894-4759-888d-ad4495d59ff2" + "JIOINDIACENTRAL:20230216T053817Z:e92ba587-06e6-406d-8429-8f76d658d4e9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:15 GMT" + "Thu, 16 Feb 2023 05:38:16 GMT" ], "Content-Length": [ - "740" + "707" ], "Content-Type": [ "application/json" @@ -1608,28 +1608,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "af83c911-2580-49b0-86cf-68880ba497e3" + "3d1114d9-b861-4e80-81a1-db34bd262480" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1641,7 +1641,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a29f2403-6a8f-469f-9f38-59c7ea7412c3" + "bf287857-3d0a-4089-99c3-3a4db7f31ef6" ], "Server": [ "Microsoft-IIS/10.0" @@ -1653,22 +1653,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11978" + "11993" ], "x-ms-correlation-request-id": [ - "d32cedee-dd67-4578-8f40-deb8aa68b5b4" + "3833106a-d1bf-40d7-861e-5085bbfa4af7" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113738Z:d32cedee-dd67-4578-8f40-deb8aa68b5b4" + "JIOINDIACENTRAL:20230216T053854Z:3833106a-d1bf-40d7-861e-5085bbfa4af7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:38 GMT" + "Thu, 16 Feb 2023 05:38:53 GMT" ], "Content-Length": [ - "740" + "707" ], "Content-Type": [ "application/json" @@ -1677,28 +1677,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b3467a83-4422-460e-afca-6699379c497a" + "fdf2b37b-3161-4a64-b4b6-8c6f941d0a93" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1710,7 +1710,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "aedb7ff7-60df-4b49-93b6-acd5d92fa1b1" + "54d5c949-6d27-4f80-8320-01af35337118" ], "Server": [ "Microsoft-IIS/10.0" @@ -1725,19 +1725,19 @@ "11998" ], "x-ms-correlation-request-id": [ - "afee0098-2d9d-4703-a922-9873f57df2af" + "7ccc714c-cdbe-4e37-8acd-c914fee11fea" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113624Z:afee0098-2d9d-4703-a922-9873f57df2af" + "CENTRALINDIA:20230216T053703Z:7ccc714c-cdbe-4e37-8acd-c914fee11fea" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:36:23 GMT" + "Thu, 16 Feb 2023 05:37:03 GMT" ], "Content-Length": [ - "290" + "308" ], "Content-Type": [ "application/json" @@ -1746,28 +1746,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "baaf804c-7154-4cc7-9139-281b50ff44c5" + "003a75a1-cf39-4f1d-b9ad-0b9498158cde" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1779,7 +1779,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "55c57d92-f6df-4a32-8dce-845006108420" + "4666808f-8e7e-4026-a323-b6ac52dbdfb5" ], "Server": [ "Microsoft-IIS/10.0" @@ -1791,22 +1791,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11995" + "11998" ], "x-ms-correlation-request-id": [ - "d4b4bbae-fc83-4495-b1ce-c15f4d5e39a2" + "35cbfcf1-d92c-489e-836e-fccdfc571d09" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113629Z:d4b4bbae-fc83-4495-b1ce-c15f4d5e39a2" + "JIOINDIACENTRAL:20230216T053716Z:35cbfcf1-d92c-489e-836e-fccdfc571d09" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:36:29 GMT" + "Thu, 16 Feb 2023 05:37:15 GMT" ], "Content-Length": [ - "290" + "308" ], "Content-Type": [ "application/json" @@ -1815,28 +1815,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "baaf804c-7154-4cc7-9139-281b50ff44c5" + "003a75a1-cf39-4f1d-b9ad-0b9498158cde" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1848,7 +1848,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "16878259-f305-4d30-9658-a267d9d87f71" + "76bb7d0a-023e-41f1-9651-20634a1ba784" ], "Server": [ "Microsoft-IIS/10.0" @@ -1860,22 +1860,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11992" + "11995" ], "x-ms-correlation-request-id": [ - "e668264b-0599-4fc6-87b3-421ff05a5eab" + "12984e31-332a-4dd9-a249-ef9e6acea078" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113632Z:e668264b-0599-4fc6-87b3-421ff05a5eab" + "JIOINDIACENTRAL:20230216T053720Z:12984e31-332a-4dd9-a249-ef9e6acea078" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:36:32 GMT" + "Thu, 16 Feb 2023 05:37:20 GMT" ], "Content-Length": [ - "290" + "308" ], "Content-Type": [ "application/json" @@ -1884,28 +1884,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da5a6789-6ce9-4fbc-b211-5408b5064bdc" + "a6489da9-641f-4029-8f38-431aefd81715" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1917,7 +1917,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "604b9463-0f15-4cee-b1f0-c9a796198639" + "be287994-61aa-45b3-845c-5844fa8d850c" ], "Server": [ "Microsoft-IIS/10.0" @@ -1929,22 +1929,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11989" + "11998" ], "x-ms-correlation-request-id": [ - "0be0af3c-4b99-440a-81ef-c5b44b41cd24" + "25ab6c48-ad82-48be-8f1d-9723e51cfaea" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113700Z:0be0af3c-4b99-440a-81ef-c5b44b41cd24" + "JIOINDIACENTRAL:20230216T053751Z:25ab6c48-ad82-48be-8f1d-9723e51cfaea" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:00 GMT" + "Thu, 16 Feb 2023 05:37:51 GMT" ], "Content-Length": [ - "290" + "308" ], "Content-Type": [ "application/json" @@ -1953,28 +1953,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d75eef29-1e18-4ca5-9706-86886e4d68d8" + "1eb5c0db-8afe-4b76-bef4-d6e51480fb9b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1986,7 +1986,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "77ecff63-2d2a-472f-826e-665a06fabb00" + "b178838d-2e66-47b1-a4b1-88bb6636632b" ], "Server": [ "Microsoft-IIS/10.0" @@ -1998,22 +1998,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11986" + "11992" ], "x-ms-correlation-request-id": [ - "c329808f-241a-4233-8ead-5cf0de202865" + "7322a236-5d1a-4f43-9276-591589a31199" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113705Z:c329808f-241a-4233-8ead-5cf0de202865" + "CENTRALINDIA:20230216T053800Z:7322a236-5d1a-4f43-9276-591589a31199" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:05 GMT" + "Thu, 16 Feb 2023 05:38:00 GMT" ], "Content-Length": [ - "290" + "308" ], "Content-Type": [ "application/json" @@ -2022,28 +2022,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d75eef29-1e18-4ca5-9706-86886e4d68d8" + "1eb5c0db-8afe-4b76-bef4-d6e51480fb9b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2055,7 +2055,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a76dbd9d-a34f-4ba5-903f-6889b7f0e962" + "14ef6a36-b405-4e3a-a519-d2d9435136d5" ], "Server": [ "Microsoft-IIS/10.0" @@ -2067,22 +2067,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11983" + "11989" ], "x-ms-correlation-request-id": [ - "c4db7cba-add5-426b-b775-19b83d3f1c73" + "989635f3-c918-42e4-af6c-f76fb68843f2" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113708Z:c4db7cba-add5-426b-b775-19b83d3f1c73" + "CENTRALINDIA:20230216T053804Z:989635f3-c918-42e4-af6c-f76fb68843f2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:08 GMT" + "Thu, 16 Feb 2023 05:38:03 GMT" ], "Content-Length": [ - "290" + "308" ], "Content-Type": [ "application/json" @@ -2091,28 +2091,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "471b13f9-5c81-458f-8bb7-ebe4beaa2889" + "a1f07f4b-5f3f-44f5-9555-8cc75e8376d0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2124,7 +2124,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "381f6f96-606b-4e6f-915e-0d76f2a5d9b2" + "84116b77-bd0c-405a-9ec9-84bc3706f9cc" ], "Server": [ "Microsoft-IIS/10.0" @@ -2136,22 +2136,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11980" + "11983" ], "x-ms-correlation-request-id": [ - "ff5a67a0-b970-4aaa-8343-e8d259a2ff11" + "873bdfa1-b727-430f-8398-1e725fefa268" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113717Z:ff5a67a0-b970-4aaa-8343-e8d259a2ff11" + "JIOINDIACENTRAL:20230216T053817Z:873bdfa1-b727-430f-8398-1e725fefa268" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:17 GMT" + "Thu, 16 Feb 2023 05:38:16 GMT" ], "Content-Length": [ - "290" + "308" ], "Content-Type": [ "application/json" @@ -2160,28 +2160,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "af83c911-2580-49b0-86cf-68880ba497e3" + "3d1114d9-b861-4e80-81a1-db34bd262480" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2193,7 +2193,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e183bb71-9f36-41d3-9e9d-e5474f031948" + "72fc3e35-8b80-44a9-9aec-5efcacfddea8" ], "Server": [ "Microsoft-IIS/10.0" @@ -2205,22 +2205,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11977" + "11992" ], "x-ms-correlation-request-id": [ - "6d233cfd-06bc-423e-883b-09bdee850f9d" + "f95c95d5-fa4e-4545-8631-073236b4ff4a" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113739Z:6d233cfd-06bc-423e-883b-09bdee850f9d" + "JIOINDIACENTRAL:20230216T053856Z:f95c95d5-fa4e-4545-8631-073236b4ff4a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:38 GMT" + "Thu, 16 Feb 2023 05:38:55 GMT" ], "Content-Length": [ - "290" + "308" ], "Content-Type": [ "application/json" @@ -2229,28 +2229,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b3467a83-4422-460e-afca-6699379c497a" + "fdf2b37b-3161-4a64-b4b6-8c6f941d0a93" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2262,7 +2262,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b6164834-83dc-40f5-98d1-cd371ee0247b" + "a65c81f4-9d40-4468-8e71-6d0faad5da2c" ], "Server": [ "Microsoft-IIS/10.0" @@ -2277,19 +2277,19 @@ "11997" ], "x-ms-correlation-request-id": [ - "5152dc5c-f093-4b98-8927-a7839020d81b" + "7fac0d35-c7ae-4ec5-84a2-65eecefc8ac9" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113624Z:5152dc5c-f093-4b98-8927-a7839020d81b" + "CENTRALINDIA:20230216T053704Z:7fac0d35-c7ae-4ec5-84a2-65eecefc8ac9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:36:23 GMT" + "Thu, 16 Feb 2023 05:37:04 GMT" ], "Content-Length": [ - "287" + "305" ], "Content-Type": [ "application/json" @@ -2298,28 +2298,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "baaf804c-7154-4cc7-9139-281b50ff44c5" + "003a75a1-cf39-4f1d-b9ad-0b9498158cde" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2331,7 +2331,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dd943a5e-aa39-4b06-b2e1-6880b3f88e28" + "29cd045c-33c2-45c8-8145-33e059ab3df0" ], "Server": [ "Microsoft-IIS/10.0" @@ -2343,22 +2343,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11994" + "11997" ], "x-ms-correlation-request-id": [ - "ce5ea226-cb5e-4fd6-b522-888e06f3a05a" + "1aeb5afc-8750-40fa-9199-29bd04104540" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113630Z:ce5ea226-cb5e-4fd6-b522-888e06f3a05a" + "JIOINDIACENTRAL:20230216T053716Z:1aeb5afc-8750-40fa-9199-29bd04104540" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:36:30 GMT" + "Thu, 16 Feb 2023 05:37:16 GMT" ], "Content-Length": [ - "287" + "305" ], "Content-Type": [ "application/json" @@ -2367,28 +2367,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "baaf804c-7154-4cc7-9139-281b50ff44c5" + "003a75a1-cf39-4f1d-b9ad-0b9498158cde" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2400,7 +2400,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "df3eb3a0-d1c8-4f84-8a8b-ed7d96de8fd3" + "5fa6ef05-5580-4746-b756-23374c15c138" ], "Server": [ "Microsoft-IIS/10.0" @@ -2412,22 +2412,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11991" + "11994" ], "x-ms-correlation-request-id": [ - "14f4838e-b521-47fa-81ad-8cef24b5ed8a" + "30ae010d-6bdf-43ec-ad3d-1ef366c4746a" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113633Z:14f4838e-b521-47fa-81ad-8cef24b5ed8a" + "JIOINDIACENTRAL:20230216T053721Z:30ae010d-6bdf-43ec-ad3d-1ef366c4746a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:36:32 GMT" + "Thu, 16 Feb 2023 05:37:20 GMT" ], "Content-Length": [ - "287" + "305" ], "Content-Type": [ "application/json" @@ -2436,28 +2436,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da5a6789-6ce9-4fbc-b211-5408b5064bdc" + "a6489da9-641f-4029-8f38-431aefd81715" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2469,7 +2469,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cf4d460f-a567-4556-9ecb-473529c5c40f" + "5f8155df-797b-4eef-ac5e-14645da9049b" ], "Server": [ "Microsoft-IIS/10.0" @@ -2481,22 +2481,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11988" + "11997" ], "x-ms-correlation-request-id": [ - "ae95cee6-686e-4164-8336-57e2c34e10e0" + "ebcde903-ef1e-46f1-8635-3ca620519f3c" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113701Z:ae95cee6-686e-4164-8336-57e2c34e10e0" + "JIOINDIACENTRAL:20230216T053752Z:ebcde903-ef1e-46f1-8635-3ca620519f3c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:01 GMT" + "Thu, 16 Feb 2023 05:37:52 GMT" ], "Content-Length": [ - "287" + "305" ], "Content-Type": [ "application/json" @@ -2505,28 +2505,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d75eef29-1e18-4ca5-9706-86886e4d68d8" + "1eb5c0db-8afe-4b76-bef4-d6e51480fb9b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2538,7 +2538,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b39b2aed-7fab-4106-b5a0-8169c62ebbbd" + "4b46954e-040c-4913-ad28-4e852864b9e1" ], "Server": [ "Microsoft-IIS/10.0" @@ -2550,22 +2550,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11985" + "11991" ], "x-ms-correlation-request-id": [ - "65a7fc1d-47ba-4c51-9044-15ea6296f4db" + "a5a250b2-0089-4370-975d-e1a5db58513b" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113706Z:65a7fc1d-47ba-4c51-9044-15ea6296f4db" + "CENTRALINDIA:20230216T053801Z:a5a250b2-0089-4370-975d-e1a5db58513b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:06 GMT" + "Thu, 16 Feb 2023 05:38:00 GMT" ], "Content-Length": [ - "287" + "305" ], "Content-Type": [ "application/json" @@ -2574,28 +2574,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d75eef29-1e18-4ca5-9706-86886e4d68d8" + "1eb5c0db-8afe-4b76-bef4-d6e51480fb9b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2607,7 +2607,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "28877bb6-cd68-4108-b6b6-c551fbd57e05" + "abfd6323-71b3-4c00-ad9b-90547fd50566" ], "Server": [ "Microsoft-IIS/10.0" @@ -2619,22 +2619,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11982" + "11988" ], "x-ms-correlation-request-id": [ - "641355d7-15c0-4f5e-8269-85ef5e522538" + "f5648cee-6f92-463c-984e-710d1dd06c04" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113709Z:641355d7-15c0-4f5e-8269-85ef5e522538" + "CENTRALINDIA:20230216T053805Z:f5648cee-6f92-463c-984e-710d1dd06c04" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:08 GMT" + "Thu, 16 Feb 2023 05:38:04 GMT" ], "Content-Length": [ - "287" + "305" ], "Content-Type": [ "application/json" @@ -2643,28 +2643,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "471b13f9-5c81-458f-8bb7-ebe4beaa2889" + "a1f07f4b-5f3f-44f5-9555-8cc75e8376d0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2676,7 +2676,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ab449fff-4571-46e3-8e36-eb10fc65e319" + "c6b8481e-a291-4f36-ac1c-68e84b1d28cc" ], "Server": [ "Microsoft-IIS/10.0" @@ -2688,22 +2688,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11979" + "11982" ], "x-ms-correlation-request-id": [ - "769ce512-80f9-49c2-962c-489b92e96369" + "8aae6e3a-41af-48f7-bfbe-dfac59dcedc9" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113717Z:769ce512-80f9-49c2-962c-489b92e96369" + "JIOINDIACENTRAL:20230216T053818Z:8aae6e3a-41af-48f7-bfbe-dfac59dcedc9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:17 GMT" + "Thu, 16 Feb 2023 05:38:17 GMT" ], "Content-Length": [ - "287" + "305" ], "Content-Type": [ "application/json" @@ -2712,28 +2712,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3RpbmcvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "af83c911-2580-49b0-86cf-68880ba497e3" + "3d1114d9-b861-4e80-81a1-db34bd262480" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2745,7 +2745,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7d49cc95-a6c0-436a-bd50-888932972388" + "366706b3-66f0-4667-a3c0-f594bd64294a" ], "Server": [ "Microsoft-IIS/10.0" @@ -2757,22 +2757,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11976" + "11991" ], "x-ms-correlation-request-id": [ - "92807de5-3d46-42d9-846e-0402e38ee331" + "2218eaf1-f196-4d45-bf51-b0a3b4146811" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113739Z:92807de5-3d46-42d9-846e-0402e38ee331" + "JIOINDIACENTRAL:20230216T053857Z:2218eaf1-f196-4d45-bf51-b0a3b4146811" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:39 GMT" + "Thu, 16 Feb 2023 05:38:57 GMT" ], "Content-Length": [ - "287" + "305" ], "Content-Type": [ "application/json" @@ -2781,28 +2781,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cf7829b9-ca38-4baf-94c7-8003ad536c0c" + "9add817e-514b-4f0e-9c1d-39f5760bd9b3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2811,13 +2811,13 @@ "no-cache" ], "ETag": [ - "\"1D7E1266BBDE6D5\"" + "\"1D941C8A2A390B5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1b2ab87a-fbab-461e-9fe3-6dcc736123de" + "555284aa-49ee-44ec-ad21-a1ffb49e4b31" ], "Server": [ "Microsoft-IIS/10.0" @@ -2829,22 +2829,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11995" ], "x-ms-correlation-request-id": [ - "3e366548-fc78-4bec-bfe0-8af98668b97f" + "6a301808-c2b2-4206-8d8a-2c203bcf44ba" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113625Z:3e366548-fc78-4bec-bfe0-8af98668b97f" + "JIOINDIACENTRAL:20230216T053707Z:6a301808-c2b2-4206-8d8a-2c203bcf44ba" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:36:24 GMT" + "Thu, 16 Feb 2023 05:37:06 GMT" ], "Content-Length": [ - "6025" + "7138" ], "Content-Type": [ "application/json" @@ -2853,28 +2853,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:28:36.3333333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot\",\r\n \"name\": \"AppService-PS-UnitTesting/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"name\": \"appservice-ps-unittesting(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/appservice-ps-unittesting\",\r\n \"repositorySiteName\": \"appservice-ps-unittesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:36:36.2033333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"appservice-ps-unittesting__5e7e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"appservice-ps-unittesting__testslot\\\\$appservice-ps-unittesting__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7364d77-d680-4fa9-ac69-1c1d33e9c5c5" + "e4284c37-38ed-4253-aa56-5777982752ff" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2883,13 +2883,13 @@ "no-cache" ], "ETag": [ - "\"1D7E1266BBDE6D5\"" + "\"1D941C8A2A390B5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e5301eb5-61b6-42fa-99f6-0513eb5008c3" + "c89590f6-295e-4dad-9147-ba0ba13c118c" ], "Server": [ "Microsoft-IIS/10.0" @@ -2901,22 +2901,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11999" ], "x-ms-correlation-request-id": [ - "676bb97c-75a1-47ba-b34f-c2ab1a6bdacd" + "4b0e0b55-160e-41d7-879a-bea704981724" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113646Z:676bb97c-75a1-47ba-b34f-c2ab1a6bdacd" + "CENTRALINDIA:20230216T053729Z:4b0e0b55-160e-41d7-879a-bea704981724" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:36:45 GMT" + "Thu, 16 Feb 2023 05:37:28 GMT" ], "Content-Length": [ - "6025" + "7138" ], "Content-Type": [ "application/json" @@ -2925,28 +2925,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:28:36.3333333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot\",\r\n \"name\": \"AppService-PS-UnitTesting/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"name\": \"appservice-ps-unittesting(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/appservice-ps-unittesting\",\r\n \"repositorySiteName\": \"appservice-ps-unittesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:36:36.2033333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"appservice-ps-unittesting__5e7e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"appservice-ps-unittesting__testslot\\\\$appservice-ps-unittesting__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7364d77-d680-4fa9-ac69-1c1d33e9c5c5" + "e4284c37-38ed-4253-aa56-5777982752ff" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2955,13 +2955,13 @@ "no-cache" ], "ETag": [ - "\"1D7E1266BBDE6D5\"" + "\"1D941C8A2A390B5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9e484491-16fb-4623-b849-293ad1e1d1cc" + "323ddb07-59c3-410a-bd30-cbd771b55d26" ], "Server": [ "Microsoft-IIS/10.0" @@ -2973,22 +2973,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11997" ], "x-ms-correlation-request-id": [ - "763e0a39-4501-4362-bca5-177e11475838" + "3c832b1b-bce7-479b-8623-dda0e151fb2e" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113648Z:763e0a39-4501-4362-bca5-177e11475838" + "CENTRALINDIA:20230216T053734Z:3c832b1b-bce7-479b-8623-dda0e151fb2e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:36:48 GMT" + "Thu, 16 Feb 2023 05:37:33 GMT" ], "Content-Length": [ - "6025" + "7138" ], "Content-Type": [ "application/json" @@ -2997,28 +2997,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:28:36.3333333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot\",\r\n \"name\": \"AppService-PS-UnitTesting/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"name\": \"appservice-ps-unittesting(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/appservice-ps-unittesting\",\r\n \"repositorySiteName\": \"appservice-ps-unittesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:36:36.2033333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"appservice-ps-unittesting__5e7e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"appservice-ps-unittesting__testslot\\\\$appservice-ps-unittesting__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "06b40cbd-fb9b-4185-9503-ed204dad024a" + "fc2dda0e-0e81-40cc-abf5-076390768dfa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3027,13 +3027,13 @@ "no-cache" ], "ETag": [ - "\"1D7E127944A7240\"" + "\"1D941C8C7C64CAB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "60a1d4dc-93a8-45b9-a2c2-bec7c2d5b6dc" + "859c030c-a2b5-4ef3-b0e7-ba009727a1ad" ], "Server": [ "Microsoft-IIS/10.0" @@ -3045,22 +3045,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11995" ], "x-ms-correlation-request-id": [ - "805a30b3-3b91-42d9-86a9-772260b2ee8a" + "7df2c770-2bc4-4a0d-9948-f72d45d89607" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113701Z:805a30b3-3b91-42d9-86a9-772260b2ee8a" + "CENTRALINDIA:20230216T053753Z:7df2c770-2bc4-4a0d-9948-f72d45d89607" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:01 GMT" + "Thu, 16 Feb 2023 05:37:53 GMT" ], "Content-Length": [ - "6060" + "7138" ], "Content-Type": [ "application/json" @@ -3069,28 +3069,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:36:53.86\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot\",\r\n \"name\": \"AppService-PS-UnitTesting/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"name\": \"appservice-ps-unittesting(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/appservice-ps-unittesting\",\r\n \"repositorySiteName\": \"appservice-ps-unittesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:37:38.5066667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"appservice-ps-unittesting__5e7e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"appservice-ps-unittesting__testslot\\\\$appservice-ps-unittesting__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2200d8df-20d3-41be-99a6-950bd6d42771" + "7acd4123-0c36-4c9d-8961-35e3d6255982" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3099,13 +3099,13 @@ "no-cache" ], "ETag": [ - "\"1D7E127944A7240\"" + "\"1D941C8C7C64CAB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "66ff5961-7cf5-4fb9-a209-00c8b51b1ead" + "b535014b-a587-45a6-adea-def02d2951d0" ], "Server": [ "Microsoft-IIS/10.0" @@ -3117,22 +3117,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11972" ], "x-ms-correlation-request-id": [ - "832bd061-a169-4691-b097-6f01736841f1" + "1b47f373-f53b-41eb-9369-18e5572c7c73" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113718Z:832bd061-a169-4691-b097-6f01736841f1" + "JIOINDIACENTRAL:20230216T053819Z:1b47f373-f53b-41eb-9369-18e5572c7c73" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:18 GMT" + "Thu, 16 Feb 2023 05:38:19 GMT" ], "Content-Length": [ - "6060" + "7138" ], "Content-Type": [ "application/json" @@ -3141,28 +3141,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:36:53.86\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot\",\r\n \"name\": \"AppService-PS-UnitTesting/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"name\": \"appservice-ps-unittesting(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/appservice-ps-unittesting\",\r\n \"repositorySiteName\": \"appservice-ps-unittesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:37:38.5066667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"appservice-ps-unittesting__5e7e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"appservice-ps-unittesting__testslot\\\\$appservice-ps-unittesting__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2200d8df-20d3-41be-99a6-950bd6d42771" + "7acd4123-0c36-4c9d-8961-35e3d6255982" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3171,13 +3171,13 @@ "no-cache" ], "ETag": [ - "\"1D7E127944A7240\"" + "\"1D941C8C7C64CAB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0c8f190b-fbf1-408a-9360-b863904a84ac" + "a6eaa9ae-f50a-441d-a2a8-8d07545d1475" ], "Server": [ "Microsoft-IIS/10.0" @@ -3189,22 +3189,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11970" ], "x-ms-correlation-request-id": [ - "590b9160-ce4e-4808-8bcb-cbb99df69f6e" + "599f5a3a-8c94-4bec-82b0-b0c71eff70b1" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113722Z:590b9160-ce4e-4808-8bcb-cbb99df69f6e" + "JIOINDIACENTRAL:20230216T053825Z:599f5a3a-8c94-4bec-82b0-b0c71eff70b1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:22 GMT" + "Thu, 16 Feb 2023 05:38:25 GMT" ], "Content-Length": [ - "6060" + "7138" ], "Content-Type": [ "application/json" @@ -3213,28 +3213,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:36:53.86\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot\",\r\n \"name\": \"AppService-PS-UnitTesting/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"name\": \"appservice-ps-unittesting(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/appservice-ps-unittesting\",\r\n \"repositorySiteName\": \"appservice-ps-unittesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:37:38.5066667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"appservice-ps-unittesting__5e7e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"appservice-ps-unittesting__testslot\\\\$appservice-ps-unittesting__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69ecf238-998c-43f5-9a1c-4d5549cd5873" + "c0ce99c8-d928-4749-a280-a9b53f67b1a2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3243,13 +3243,13 @@ "no-cache" ], "ETag": [ - "\"1D7E127A766EC35\"" + "\"1D941C8E6F83DB5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "63d127b6-48b2-45d3-a304-bf02d1116369" + "0e2d0a81-e8c4-46e6-9b61-94358e3f4b8e" ], "Server": [ "Microsoft-IIS/10.0" @@ -3261,22 +3261,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11993" ], "x-ms-correlation-request-id": [ - "0fc3a3ad-0940-4776-9aad-e18cb44fcc43" + "1e3a8b87-6ad8-481b-bae0-8fb2719cfa76" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113733Z:0fc3a3ad-0940-4776-9aad-e18cb44fcc43" + "JIOINDIACENTRAL:20230216T053845Z:1e3a8b87-6ad8-481b-bae0-8fb2719cfa76" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:32 GMT" + "Thu, 16 Feb 2023 05:38:45 GMT" ], "Content-Length": [ - "6025" + "7098" ], "Content-Type": [ "application/json" @@ -3285,28 +3285,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:37:25.9233333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot\",\r\n \"name\": \"AppService-PS-UnitTesting/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"name\": \"appservice-ps-unittesting(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/appservice-ps-unittesting\",\r\n \"repositorySiteName\": \"appservice-ps-unittesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:38:30.8433333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"appservice-ps-unittesting__5e7e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"appservice-ps-unittesting__testslot\\\\$appservice-ps-unittesting__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b34f692e-e29e-4b6c-9f9e-eeca7f12f28d" + "62928cb7-9bad-4f80-997c-32c942604287" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3315,13 +3315,13 @@ "no-cache" ], "ETag": [ - "\"1D7E127A766EC35\"" + "\"1D941C8E6F83DB5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c8e2ed22-a5ce-410f-a223-04f9aaf082bc" + "ee4c2b81-3cae-4ad6-b9d3-4baf380d29ce" ], "Server": [ "Microsoft-IIS/10.0" @@ -3333,22 +3333,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11966" ], "x-ms-correlation-request-id": [ - "bd367247-5ec5-439a-b2f3-8734b4f53fbc" + "452a5a2b-f5b3-4505-82eb-ed8c7bcf6c69" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113740Z:bd367247-5ec5-439a-b2f3-8734b4f53fbc" + "JIOINDIACENTRAL:20230216T053858Z:452a5a2b-f5b3-4505-82eb-ed8c7bcf6c69" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:39 GMT" + "Thu, 16 Feb 2023 05:38:57 GMT" ], "Content-Length": [ - "6025" + "7098" ], "Content-Type": [ "application/json" @@ -3357,28 +3357,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:37:25.9233333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot\",\r\n \"name\": \"AppService-PS-UnitTesting/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"name\": \"appservice-ps-unittesting(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/appservice-ps-unittesting\",\r\n \"repositorySiteName\": \"appservice-ps-unittesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:38:30.8433333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": null,\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": null,\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"elasticWebAppScaleLimit\": null,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"appservice-ps-unittesting__5e7e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"appservice-ps-unittesting__testslot\\\\$appservice-ps-unittesting__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": [],\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cf7829b9-ca38-4baf-94c7-8003ad536c0c" + "9add817e-514b-4f0e-9c1d-39f5760bd9b3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3390,7 +3390,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3bc44235-0ba0-4195-a2f2-4f976cd1cda5" + "f1cab42f-5ad2-4c84-a8c5-cb8829b42621" ], "Server": [ "Microsoft-IIS/10.0" @@ -3402,22 +3402,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11994" ], "x-ms-correlation-request-id": [ - "d21008cc-a8c9-41f9-8f0d-2e6821d89a2a" + "03653a97-2e7a-4444-b5b2-5d77cfe97d2c" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113625Z:d21008cc-a8c9-41f9-8f0d-2e6821d89a2a" + "JIOINDIACENTRAL:20230216T053708Z:03653a97-2e7a-4444-b5b2-5d77cfe97d2c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:36:24 GMT" + "Thu, 16 Feb 2023 05:37:07 GMT" ], "Content-Length": [ - "3731" + "4087" ], "Content-Type": [ "application/json" @@ -3426,28 +3426,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$appservice-ps-unittesting__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7364d77-d680-4fa9-ac69-1c1d33e9c5c5" + "e4284c37-38ed-4253-aa56-5777982752ff" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3459,7 +3459,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b918a5ab-5de8-4e6b-a87e-0ce395f0d8ff" + "8a53b944-5a34-4c8d-b6e8-1f902a15c53e" ], "Server": [ "Microsoft-IIS/10.0" @@ -3471,22 +3471,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11998" ], "x-ms-correlation-request-id": [ - "a000bb73-1d64-4209-826f-494042e650b9" + "703a1615-8401-46f2-8d4c-365b3e698d6c" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113646Z:a000bb73-1d64-4209-826f-494042e650b9" + "CENTRALINDIA:20230216T053730Z:703a1615-8401-46f2-8d4c-365b3e698d6c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:36:45 GMT" + "Thu, 16 Feb 2023 05:37:29 GMT" ], "Content-Length": [ - "3731" + "4087" ], "Content-Type": [ "application/json" @@ -3495,28 +3495,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$appservice-ps-unittesting__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7364d77-d680-4fa9-ac69-1c1d33e9c5c5" + "e4284c37-38ed-4253-aa56-5777982752ff" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3528,7 +3528,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "057c595d-d47a-4a88-a175-9c76d9744a8d" + "65ce4c66-e986-442c-8ed8-65a546c298d6" ], "Server": [ "Microsoft-IIS/10.0" @@ -3540,22 +3540,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11996" ], "x-ms-correlation-request-id": [ - "e0deb3f0-eeeb-4c3a-84c2-fcbbd489b558" + "9e5467e2-0e47-40b5-bf8c-86b017481e7d" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113649Z:e0deb3f0-eeeb-4c3a-84c2-fcbbd489b558" + "CENTRALINDIA:20230216T053734Z:9e5467e2-0e47-40b5-bf8c-86b017481e7d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:36:49 GMT" + "Thu, 16 Feb 2023 05:37:34 GMT" ], "Content-Length": [ - "3731" + "4087" ], "Content-Type": [ "application/json" @@ -3564,28 +3564,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$appservice-ps-unittesting__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "06b40cbd-fb9b-4185-9503-ed204dad024a" + "fc2dda0e-0e81-40cc-abf5-076390768dfa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3597,7 +3597,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ade466b4-b749-4993-9f38-7c54fa29a18f" + "bc479013-ac15-430e-a99e-29aa2d414f16" ], "Server": [ "Microsoft-IIS/10.0" @@ -3609,22 +3609,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11994" ], "x-ms-correlation-request-id": [ - "2c4fa1dc-26fc-45c1-ac4e-4708d763b92b" + "86ae41b5-1afa-4a0e-bd96-18f79b8860e3" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113702Z:2c4fa1dc-26fc-45c1-ac4e-4708d763b92b" + "CENTRALINDIA:20230216T053754Z:86ae41b5-1afa-4a0e-bd96-18f79b8860e3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:02 GMT" + "Thu, 16 Feb 2023 05:37:54 GMT" ], "Content-Length": [ - "3731" + "4087" ], "Content-Type": [ "application/json" @@ -3633,28 +3633,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$appservice-ps-unittesting__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2200d8df-20d3-41be-99a6-950bd6d42771" + "7acd4123-0c36-4c9d-8961-35e3d6255982" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3666,7 +3666,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a441837c-97a6-4f0c-888c-55acf414e58c" + "907eccc3-c048-45c4-bb66-58346a9bde83" ], "Server": [ "Microsoft-IIS/10.0" @@ -3678,22 +3678,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11971" ], "x-ms-correlation-request-id": [ - "285ceae5-6bc3-40c1-bd93-7028a39e611c" + "11df1b33-99be-4d09-ab41-e0dbcfce9a70" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113719Z:285ceae5-6bc3-40c1-bd93-7028a39e611c" + "JIOINDIACENTRAL:20230216T053820Z:11df1b33-99be-4d09-ab41-e0dbcfce9a70" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:19 GMT" + "Thu, 16 Feb 2023 05:38:19 GMT" ], "Content-Length": [ - "3731" + "4087" ], "Content-Type": [ "application/json" @@ -3702,28 +3702,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$appservice-ps-unittesting__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2200d8df-20d3-41be-99a6-950bd6d42771" + "7acd4123-0c36-4c9d-8961-35e3d6255982" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3735,7 +3735,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3c506bf2-e73b-4321-bab0-33706e08fde2" + "5f8f0541-efd8-4036-88e1-5cb993d6c80c" ], "Server": [ "Microsoft-IIS/10.0" @@ -3747,22 +3747,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11969" ], "x-ms-correlation-request-id": [ - "dc35ee42-6adf-41f0-a94a-9a878ce97089" + "3d995e37-eaeb-4721-9228-12bc200e74ba" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113722Z:dc35ee42-6adf-41f0-a94a-9a878ce97089" + "JIOINDIACENTRAL:20230216T053826Z:3d995e37-eaeb-4721-9228-12bc200e74ba" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:22 GMT" + "Thu, 16 Feb 2023 05:38:26 GMT" ], "Content-Length": [ - "3731" + "4087" ], "Content-Type": [ "application/json" @@ -3771,28 +3771,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$appservice-ps-unittesting__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69ecf238-998c-43f5-9a1c-4d5549cd5873" + "c0ce99c8-d928-4749-a280-a9b53f67b1a2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3804,7 +3804,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ef066673-5ec4-46a1-a3d5-04ee8e4f5e10" + "fe53661e-fc13-4c78-9d90-c096e637efc9" ], "Server": [ "Microsoft-IIS/10.0" @@ -3816,22 +3816,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11992" ], "x-ms-correlation-request-id": [ - "bad89907-7869-46fa-86b7-2ebbc81fc1aa" + "e2acce16-6396-47b5-baf4-3744bb35a57a" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113733Z:bad89907-7869-46fa-86b7-2ebbc81fc1aa" + "JIOINDIACENTRAL:20230216T053846Z:e2acce16-6396-47b5-baf4-3744bb35a57a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:33 GMT" + "Thu, 16 Feb 2023 05:38:45 GMT" ], "Content-Length": [ - "3731" + "4087" ], "Content-Type": [ "application/json" @@ -3840,28 +3840,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$appservice-ps-unittesting__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvd2ViP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL3dlYj9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b34f692e-e29e-4b6c-9f9e-eeca7f12f28d" + "62928cb7-9bad-4f80-997c-32c942604287" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3873,7 +3873,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c28ca1f9-6c23-451e-813b-6e2437416e0d" + "fecc66fb-050c-40a6-b00d-d1cb0453aaeb" ], "Server": [ "Microsoft-IIS/10.0" @@ -3885,22 +3885,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11965" ], "x-ms-correlation-request-id": [ - "78837f5b-8dca-4b57-b8cb-722eace564ec" + "252b8017-9252-47e1-9095-7ee61a17fdad" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113740Z:78837f5b-8dca-4b57-b8cb-722eace564ec" + "JIOINDIACENTRAL:20230216T053858Z:252b8017-9252-47e1-9095-7ee61a17fdad" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:40 GMT" + "Thu, 16 Feb 2023 05:38:58 GMT" ], "Content-Length": [ - "3731" + "4087" ], "Content-Type": [ "application/json" @@ -3909,28 +3909,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/web\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v4.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$lketmtestantps10__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": null,\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"scmMinTlsVersion\": \"1.0\",\r\n \"ftpsState\": \"AllAllowed\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"sitePort\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/web\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": [\r\n \"Default.htm\",\r\n \"Default.html\",\r\n \"Default.asp\",\r\n \"index.htm\",\r\n \"index.html\",\r\n \"iisstart.htm\",\r\n \"default.aspx\",\r\n \"index.php\",\r\n \"hostingstart.html\"\r\n ],\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"phpVersion\": \"\",\r\n \"pythonVersion\": \"\",\r\n \"nodeVersion\": \"\",\r\n \"powerShellVersion\": \"\",\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": [],\r\n \"requestTracingEnabled\": false,\r\n \"remoteDebuggingEnabled\": false,\r\n \"remoteDebuggingVersion\": \"VS2019\",\r\n \"httpLoggingEnabled\": false,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": 35,\r\n \"detailedErrorLoggingEnabled\": false,\r\n \"publishingUsername\": \"$appservice-ps-unittesting__testslot\",\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": \"None\",\r\n \"use32BitWorkerProcess\": true,\r\n \"webSocketsEnabled\": false,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": \"\",\r\n \"managedPipelineMode\": \"Integrated\",\r\n \"virtualApplications\": [\r\n {\r\n \"virtualPath\": \"/\",\r\n \"physicalPath\": \"site\\\\wwwroot\",\r\n \"preloadEnabled\": true,\r\n \"virtualDirectories\": null\r\n }\r\n ],\r\n \"winAuthAdminState\": 0,\r\n \"winAuthTenantState\": 0,\r\n \"customAppPoolIdentityAdminState\": false,\r\n \"customAppPoolIdentityTenantState\": false,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": \"LeastRequests\",\r\n \"routingRules\": [],\r\n \"experiments\": {\r\n \"rampUpRules\": []\r\n },\r\n \"limits\": null,\r\n \"autoHealEnabled\": false,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": \"\",\r\n \"vnetRouteAllEnabled\": false,\r\n \"vnetPrivatePortsCount\": 0,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"siteAuthEnabled\": false,\r\n \"siteAuthSettings\": {\r\n \"enabled\": null,\r\n \"unauthenticatedClientAction\": null,\r\n \"tokenStoreEnabled\": null,\r\n \"allowedExternalRedirectUrls\": null,\r\n \"defaultProvider\": null,\r\n \"clientId\": null,\r\n \"clientSecret\": null,\r\n \"clientSecretSettingName\": null,\r\n \"clientSecretCertificateThumbprint\": null,\r\n \"issuer\": null,\r\n \"allowedAudiences\": null,\r\n \"additionalLoginParams\": null,\r\n \"isAadAutoProvisioned\": false,\r\n \"aadClaimsAuthorization\": null,\r\n \"googleClientId\": null,\r\n \"googleClientSecret\": null,\r\n \"googleClientSecretSettingName\": null,\r\n \"googleOAuthScopes\": null,\r\n \"facebookAppId\": null,\r\n \"facebookAppSecret\": null,\r\n \"facebookAppSecretSettingName\": null,\r\n \"facebookOAuthScopes\": null,\r\n \"gitHubClientId\": null,\r\n \"gitHubClientSecret\": null,\r\n \"gitHubClientSecretSettingName\": null,\r\n \"gitHubOAuthScopes\": null,\r\n \"twitterConsumerKey\": null,\r\n \"twitterConsumerSecret\": null,\r\n \"twitterConsumerSecretSettingName\": null,\r\n \"microsoftAccountClientId\": null,\r\n \"microsoftAccountClientSecret\": null,\r\n \"microsoftAccountClientSecretSettingName\": null,\r\n \"microsoftAccountOAuthScopes\": null,\r\n \"configVersion\": null\r\n },\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": false,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": false,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": \"1.2\",\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": \"1.2\",\r\n \"ftpsState\": \"FtpsOnly\",\r\n \"preWarmedInstanceCount\": 0,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": false,\r\n \"functionsRuntimeScaleMonitoringEnabled\": false,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": {},\r\n \"http20ProxyFlag\": 0,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": false,\r\n \"storageType\": \"StorageVolume\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cf7829b9-ca38-4baf-94c7-8003ad536c0c" + "9add817e-514b-4f0e-9c1d-39f5760bd9b3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3942,7 +3942,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "89918f2e-58da-41d6-a5ec-7f98fb821c06" + "7b374162-5800-4cfb-80c3-7b5f992d0af3" ], "Server": [ "Microsoft-IIS/10.0" @@ -3954,22 +3954,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11999" + "11996" ], "x-ms-correlation-request-id": [ - "bfdaf2d8-1258-439d-a19e-a88fbedfe2cb" + "3f57cc84-0ffc-4a11-85a7-ae9d85fa6f1b" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113626Z:bfdaf2d8-1258-439d-a19e-a88fbedfe2cb" + "JIOINDIACENTRAL:20230216T053709Z:3f57cc84-0ffc-4a11-85a7-ae9d85fa6f1b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:36:25 GMT" + "Thu, 16 Feb 2023 05:37:08 GMT" ], "Content-Length": [ - "755" + "732" ], "Content-Type": [ "application/json" @@ -3978,28 +3978,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7364d77-d680-4fa9-ac69-1c1d33e9c5c5" + "e4284c37-38ed-4253-aa56-5777982752ff" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4011,7 +4011,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "09ff9d34-f8f5-451e-9a04-67155c3b1ade" + "1baee371-dae5-4858-b316-ebc6e5ed565a" ], "Server": [ "Microsoft-IIS/10.0" @@ -4023,22 +4023,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11996" + "11999" ], "x-ms-correlation-request-id": [ - "c24f259f-0b29-4795-8649-a9345f642999" + "cc359bc5-f192-482b-a608-2c77b0c89e51" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113647Z:c24f259f-0b29-4795-8649-a9345f642999" + "CENTRALINDIA:20230216T053731Z:cc359bc5-f192-482b-a608-2c77b0c89e51" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:36:47 GMT" + "Thu, 16 Feb 2023 05:37:30 GMT" ], "Content-Length": [ - "755" + "732" ], "Content-Type": [ "application/json" @@ -4047,28 +4047,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7364d77-d680-4fa9-ac69-1c1d33e9c5c5" + "e4284c37-38ed-4253-aa56-5777982752ff" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4080,7 +4080,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5b104b02-b3f5-4a98-81b6-13ee9e3f708b" + "7055f79c-8ad8-4349-81f2-202020de5126" ], "Server": [ "Microsoft-IIS/10.0" @@ -4092,22 +4092,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11993" + "11996" ], "x-ms-correlation-request-id": [ - "e7647789-8b19-473a-aee2-c68d22921ba2" + "e631d7aa-8ee8-4e1a-a8cc-67b6e5a872c5" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113650Z:e7647789-8b19-473a-aee2-c68d22921ba2" + "CENTRALINDIA:20230216T053735Z:e631d7aa-8ee8-4e1a-a8cc-67b6e5a872c5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:36:50 GMT" + "Thu, 16 Feb 2023 05:37:34 GMT" ], "Content-Length": [ - "755" + "732" ], "Content-Type": [ "application/json" @@ -4116,28 +4116,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "06b40cbd-fb9b-4185-9503-ed204dad024a" + "fc2dda0e-0e81-40cc-abf5-076390768dfa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4149,7 +4149,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "95daa570-9875-4d79-9610-19189fe96a3e" + "b79b3ac8-5517-43b1-ae1f-92581c6db1ec" ], "Server": [ "Microsoft-IIS/10.0" @@ -4161,22 +4161,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11990" + "11999" ], "x-ms-correlation-request-id": [ - "7b66b731-1fa2-485c-92ad-cfeed60c6030" + "8c995c1c-5079-4ecf-b246-b9a28cc57a82" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113702Z:7b66b731-1fa2-485c-92ad-cfeed60c6030" + "CENTRALINDIA:20230216T053755Z:8c995c1c-5079-4ecf-b246-b9a28cc57a82" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:02 GMT" + "Thu, 16 Feb 2023 05:37:54 GMT" ], "Content-Length": [ - "755" + "732" ], "Content-Type": [ "application/json" @@ -4185,28 +4185,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2200d8df-20d3-41be-99a6-950bd6d42771" + "7acd4123-0c36-4c9d-8961-35e3d6255982" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4218,7 +4218,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "da209556-34e6-4e9d-a112-a03b01783281" + "4c2291e2-b882-4720-bf1f-5f0854ce70ed" ], "Server": [ "Microsoft-IIS/10.0" @@ -4230,22 +4230,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11987" + "11981" ], "x-ms-correlation-request-id": [ - "dd4d9773-449c-44e6-a09c-d16f40640abe" + "da0d12d1-50a8-4198-ae09-a12d13aa7213" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113720Z:dd4d9773-449c-44e6-a09c-d16f40640abe" + "JIOINDIACENTRAL:20230216T053821Z:da0d12d1-50a8-4198-ae09-a12d13aa7213" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:20 GMT" + "Thu, 16 Feb 2023 05:38:20 GMT" ], "Content-Length": [ - "755" + "732" ], "Content-Type": [ "application/json" @@ -4254,28 +4254,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2200d8df-20d3-41be-99a6-950bd6d42771" + "7acd4123-0c36-4c9d-8961-35e3d6255982" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4287,7 +4287,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ec2c2b63-7d75-4b6a-b60e-1df90d849ad5" + "8d9ac5ea-8299-47e0-83ea-92d5837543ca" ], "Server": [ "Microsoft-IIS/10.0" @@ -4299,22 +4299,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11984" + "11978" ], "x-ms-correlation-request-id": [ - "af837c26-d819-44bd-9f98-ae56328c5631" + "9fac8b94-8aa2-42cf-8e7b-850eaba4a0df" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113723Z:af837c26-d819-44bd-9f98-ae56328c5631" + "JIOINDIACENTRAL:20230216T053826Z:9fac8b94-8aa2-42cf-8e7b-850eaba4a0df" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:23 GMT" + "Thu, 16 Feb 2023 05:38:26 GMT" ], "Content-Length": [ - "755" + "732" ], "Content-Type": [ "application/json" @@ -4323,28 +4323,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69ecf238-998c-43f5-9a1c-4d5549cd5873" + "c0ce99c8-d928-4749-a280-a9b53f67b1a2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4356,7 +4356,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3855d799-925a-443c-b087-1c30af59ff68" + "cb2b55a3-0313-4e2d-9dc0-b6d1a72cba59" ], "Server": [ "Microsoft-IIS/10.0" @@ -4368,22 +4368,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11981" + "11993" ], "x-ms-correlation-request-id": [ - "4b124073-6613-442f-a852-6a3b899d5f07" + "6b4ff46f-fbeb-4249-bfdf-55dee2affb51" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113733Z:4b124073-6613-442f-a852-6a3b899d5f07" + "JIOINDIACENTRAL:20230216T053847Z:6b4ff46f-fbeb-4249-bfdf-55dee2affb51" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:33 GMT" + "Thu, 16 Feb 2023 05:38:47 GMT" ], "Content-Length": [ - "755" + "732" ], "Content-Type": [ "application/json" @@ -4392,28 +4392,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXBwc2V0dGluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2FwcHNldHRpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b34f692e-e29e-4b6c-9f9e-eeca7f12f28d" + "62928cb7-9bad-4f80-997c-32c942604287" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4425,7 +4425,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "469f1663-667b-4ddc-9068-bd37cbeedc46" + "f7fc49c2-a2e2-4b9c-96eb-36a1afa7577b" ], "Server": [ "Microsoft-IIS/10.0" @@ -4437,22 +4437,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11978" + "11975" ], "x-ms-correlation-request-id": [ - "5e036f77-7fd9-4e6b-8e20-7e470b346817" + "edb9a05c-6fe1-4af0-9b09-3e140995f078" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113741Z:5e036f77-7fd9-4e6b-8e20-7e470b346817" + "JIOINDIACENTRAL:20230216T053900Z:edb9a05c-6fe1-4af0-9b09-3e140995f078" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:40 GMT" + "Thu, 16 Feb 2023 05:39:00 GMT" ], "Content-Length": [ - "755" + "732" ], "Content-Type": [ "application/json" @@ -4461,28 +4461,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"cf82fff5-8e7a-4726-8ccb-8f67e9f320a6\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=cf82fff5-8e7a-4726-8ccb-8f67e9f320a6;IngestionEndpoint=https://centralus-0.in.applicationinsights.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~2\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"default\",\r\n \"ANCM_ADDITIONAL_ERROR_PAGE_LINK\": \"https://lketmtestantps10.scm.azurewebsites.net/detectors?type=tools&name=eventviewer\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"appsettings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"APPINSIGHTS_INSTRUMENTATIONKEY\": \"c201c097-9801-469f-8e61-6af3fef348da\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=c201c097-9801-469f-8e61-6af3fef348da;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/\",\r\n \"ApplicationInsightsAgent_EXTENSION_VERSION\": \"~3\",\r\n \"XDT_MicrosoftApplicationInsights_Mode\": \"Recommended\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cf7829b9-ca38-4baf-94c7-8003ad536c0c" + "9add817e-514b-4f0e-9c1d-39f5760bd9b3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4494,7 +4494,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6f4e7550-88d8-4cca-a449-20c2f56694cf" + "7d262c94-3a6c-4722-b6a7-43a5964d9b21" ], "Server": [ "Microsoft-IIS/10.0" @@ -4506,22 +4506,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11998" + "11995" ], "x-ms-correlation-request-id": [ - "65a52d06-407b-4d4a-86e6-d6c89859f17e" + "c1ec4a9e-77b9-4b23-97c3-93772a205f2a" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113627Z:65a52d06-407b-4d4a-86e6-d6c89859f17e" + "JIOINDIACENTRAL:20230216T053710Z:c1ec4a9e-77b9-4b23-97c3-93772a205f2a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:36:27 GMT" + "Thu, 16 Feb 2023 05:37:09 GMT" ], "Content-Length": [ - "305" + "333" ], "Content-Type": [ "application/json" @@ -4530,28 +4530,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7364d77-d680-4fa9-ac69-1c1d33e9c5c5" + "e4284c37-38ed-4253-aa56-5777982752ff" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4563,7 +4563,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "585d64e1-d686-4f8b-989c-c7866cdc9dcf" + "7abc50b5-662d-4194-8b06-f364433bb6da" ], "Server": [ "Microsoft-IIS/10.0" @@ -4575,22 +4575,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11995" + "11998" ], "x-ms-correlation-request-id": [ - "3dec4841-f3f7-4851-8ccb-3032a9dbf418" + "c4ef69cb-9e5c-403c-ba27-678571d4feac" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113647Z:3dec4841-f3f7-4851-8ccb-3032a9dbf418" + "CENTRALINDIA:20230216T053732Z:c4ef69cb-9e5c-403c-ba27-678571d4feac" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:36:47 GMT" + "Thu, 16 Feb 2023 05:37:31 GMT" ], "Content-Length": [ - "305" + "333" ], "Content-Type": [ "application/json" @@ -4599,28 +4599,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7364d77-d680-4fa9-ac69-1c1d33e9c5c5" + "e4284c37-38ed-4253-aa56-5777982752ff" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4632,7 +4632,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "413a9194-33e9-408a-a81e-db726ba12fd6" + "e6eae781-b728-402a-9b6f-9ec1b10db414" ], "Server": [ "Microsoft-IIS/10.0" @@ -4644,22 +4644,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11992" + "11995" ], "x-ms-correlation-request-id": [ - "0d5f8ec6-824f-4d5d-a3a8-63aefa2c6e76" + "79b17cb7-2464-4da3-9961-05dd1b189f37" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113650Z:0d5f8ec6-824f-4d5d-a3a8-63aefa2c6e76" + "CENTRALINDIA:20230216T053736Z:79b17cb7-2464-4da3-9961-05dd1b189f37" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:36:50 GMT" + "Thu, 16 Feb 2023 05:37:35 GMT" ], "Content-Length": [ - "305" + "333" ], "Content-Type": [ "application/json" @@ -4668,28 +4668,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "06b40cbd-fb9b-4185-9503-ed204dad024a" + "fc2dda0e-0e81-40cc-abf5-076390768dfa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4701,7 +4701,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0af5c2bf-7ea0-47b2-be35-22d33d72c08e" + "d1f2ca3f-a290-4034-a6c7-959be1eab451" ], "Server": [ "Microsoft-IIS/10.0" @@ -4713,22 +4713,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11989" + "11998" ], "x-ms-correlation-request-id": [ - "8b111387-f232-4275-b503-335651b9c47d" + "f6f685ed-afa9-47e6-b1e6-340e77302e6f" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113703Z:8b111387-f232-4275-b503-335651b9c47d" + "CENTRALINDIA:20230216T053756Z:f6f685ed-afa9-47e6-b1e6-340e77302e6f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:03 GMT" + "Thu, 16 Feb 2023 05:37:55 GMT" ], "Content-Length": [ - "305" + "333" ], "Content-Type": [ "application/json" @@ -4737,28 +4737,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2200d8df-20d3-41be-99a6-950bd6d42771" + "7acd4123-0c36-4c9d-8961-35e3d6255982" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4770,7 +4770,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e3d65b49-fbb0-44a9-af9c-e4cc900fb6ee" + "da6aeab9-6227-469d-ae0e-a734727a2b9f" ], "Server": [ "Microsoft-IIS/10.0" @@ -4782,22 +4782,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11986" + "11980" ], "x-ms-correlation-request-id": [ - "09f168d5-7aa0-4c95-b6d7-d836f7ca93cf" + "00a235bc-523a-4e52-a862-b1363a190c53" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113721Z:09f168d5-7aa0-4c95-b6d7-d836f7ca93cf" + "JIOINDIACENTRAL:20230216T053823Z:00a235bc-523a-4e52-a862-b1363a190c53" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:20 GMT" + "Thu, 16 Feb 2023 05:38:23 GMT" ], "Content-Length": [ - "305" + "333" ], "Content-Type": [ "application/json" @@ -4806,28 +4806,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2200d8df-20d3-41be-99a6-950bd6d42771" + "7acd4123-0c36-4c9d-8961-35e3d6255982" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4839,7 +4839,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f40ca979-df9c-4aa4-a64d-7bad870609ec" + "24fe646f-e094-4d25-9a33-01702802a9ea" ], "Server": [ "Microsoft-IIS/10.0" @@ -4851,22 +4851,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11983" + "11977" ], "x-ms-correlation-request-id": [ - "e918fcdc-5f21-4926-ae99-906755a9a4cd" + "4da06ddb-1ff9-496c-8716-9d2a9858802a" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113723Z:e918fcdc-5f21-4926-ae99-906755a9a4cd" + "JIOINDIACENTRAL:20230216T053828Z:4da06ddb-1ff9-496c-8716-9d2a9858802a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:23 GMT" + "Thu, 16 Feb 2023 05:38:28 GMT" ], "Content-Length": [ - "305" + "333" ], "Content-Type": [ "application/json" @@ -4875,28 +4875,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69ecf238-998c-43f5-9a1c-4d5549cd5873" + "c0ce99c8-d928-4749-a280-a9b53f67b1a2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4908,7 +4908,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "abb473f8-62fa-40c2-819f-68a2cd8748ca" + "ad922735-19cf-479c-a61f-fbfeca137da6" ], "Server": [ "Microsoft-IIS/10.0" @@ -4920,22 +4920,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11980" + "11992" ], "x-ms-correlation-request-id": [ - "215e6b6f-d3ba-473c-998d-9c847678b69c" + "29693aea-4cdc-41d9-925f-e6513592cb5f" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113734Z:215e6b6f-d3ba-473c-998d-9c847678b69c" + "JIOINDIACENTRAL:20230216T053848Z:29693aea-4cdc-41d9-925f-e6513592cb5f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:34 GMT" + "Thu, 16 Feb 2023 05:38:48 GMT" ], "Content-Length": [ - "305" + "333" ], "Content-Type": [ "application/json" @@ -4944,28 +4944,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvY29ubmVjdGlvbnN0cmluZ3MvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2Nvbm5lY3Rpb25zdHJpbmdzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b34f692e-e29e-4b6c-9f9e-eeca7f12f28d" + "62928cb7-9bad-4f80-997c-32c942604287" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4977,7 +4977,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "aa9a3148-1673-4317-87c5-80ad97f597f7" + "7a2f6d82-6ee6-4929-aa62-c6eb301d5127" ], "Server": [ "Microsoft-IIS/10.0" @@ -4989,22 +4989,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11977" + "11974" ], "x-ms-correlation-request-id": [ - "f4d097ef-8619-426c-8649-cefd83459c99" + "b4a3b900-7bdc-49c4-ae6c-e91129873207" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113741Z:f4d097ef-8619-426c-8649-cefd83459c99" + "JIOINDIACENTRAL:20230216T053901Z:b4a3b900-7bdc-49c4-ae6c-e91129873207" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:41 GMT" + "Thu, 16 Feb 2023 05:39:00 GMT" ], "Content-Length": [ - "305" + "333" ], "Content-Type": [ "application/json" @@ -5013,28 +5013,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/connectionstrings\",\r\n \"name\": \"connectionstrings\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cf7829b9-ca38-4baf-94c7-8003ad536c0c" + "9add817e-514b-4f0e-9c1d-39f5760bd9b3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -5046,7 +5046,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ad0fac84-f787-4729-bd84-45bcf1575f92" + "339adf89-e5e7-47f8-bf17-a397e54aac0d" ], "Server": [ "Microsoft-IIS/10.0" @@ -5058,22 +5058,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11997" + "11994" ], "x-ms-correlation-request-id": [ - "2777752a-b261-4d07-abe7-9a899d624217" + "98cb4700-497f-4a8a-b46d-9b3bdf14e754" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113627Z:2777752a-b261-4d07-abe7-9a899d624217" + "JIOINDIACENTRAL:20230216T053711Z:98cb4700-497f-4a8a-b46d-9b3bdf14e754" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:36:27 GMT" + "Thu, 16 Feb 2023 05:37:10 GMT" ], "Content-Length": [ - "302" + "330" ], "Content-Type": [ "application/json" @@ -5082,28 +5082,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7364d77-d680-4fa9-ac69-1c1d33e9c5c5" + "e4284c37-38ed-4253-aa56-5777982752ff" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -5115,7 +5115,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a01eb7fe-64b9-4372-b2ea-ece71ce11f1f" + "e7adac9f-887f-4c23-b1be-d678b7dbe458" ], "Server": [ "Microsoft-IIS/10.0" @@ -5127,22 +5127,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11994" + "11997" ], "x-ms-correlation-request-id": [ - "9579fd22-15b7-44ec-8733-ed6bd79a066f" + "c6fb9ecf-c7e9-45b3-890e-ac4099da5e21" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113648Z:9579fd22-15b7-44ec-8733-ed6bd79a066f" + "CENTRALINDIA:20230216T053733Z:c6fb9ecf-c7e9-45b3-890e-ac4099da5e21" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:36:48 GMT" + "Thu, 16 Feb 2023 05:37:33 GMT" ], "Content-Length": [ - "302" + "330" ], "Content-Type": [ "application/json" @@ -5151,28 +5151,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7364d77-d680-4fa9-ac69-1c1d33e9c5c5" + "e4284c37-38ed-4253-aa56-5777982752ff" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -5184,7 +5184,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b5d90f06-165d-4ec1-afc7-e702f3a46c46" + "284b3a69-bb7c-4c20-bc77-d34a4f13cc4e" ], "Server": [ "Microsoft-IIS/10.0" @@ -5196,22 +5196,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11991" + "11994" ], "x-ms-correlation-request-id": [ - "cb152668-95d6-4545-92c4-875b009b39f3" + "25beb0f9-2fe3-4741-80bd-52c7f1cc7e70" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113651Z:cb152668-95d6-4545-92c4-875b009b39f3" + "CENTRALINDIA:20230216T053737Z:25beb0f9-2fe3-4741-80bd-52c7f1cc7e70" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:36:51 GMT" + "Thu, 16 Feb 2023 05:37:36 GMT" ], "Content-Length": [ - "302" + "330" ], "Content-Type": [ "application/json" @@ -5220,28 +5220,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "06b40cbd-fb9b-4185-9503-ed204dad024a" + "fc2dda0e-0e81-40cc-abf5-076390768dfa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -5253,7 +5253,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8cdf7e09-9793-4775-9814-2d1013f9c75a" + "e7078f84-b648-432a-95ec-f3fdf3aea20f" ], "Server": [ "Microsoft-IIS/10.0" @@ -5265,22 +5265,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11988" + "11997" ], "x-ms-correlation-request-id": [ - "1bc8c50a-b7b2-4021-83b3-ad1dea40a43a" + "57c11527-af1b-48ed-89ae-a668438d37e6" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113703Z:1bc8c50a-b7b2-4021-83b3-ad1dea40a43a" + "CENTRALINDIA:20230216T053757Z:57c11527-af1b-48ed-89ae-a668438d37e6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:03 GMT" + "Thu, 16 Feb 2023 05:37:56 GMT" ], "Content-Length": [ - "302" + "330" ], "Content-Type": [ "application/json" @@ -5289,28 +5289,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2200d8df-20d3-41be-99a6-950bd6d42771" + "7acd4123-0c36-4c9d-8961-35e3d6255982" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -5322,7 +5322,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9c730699-a899-420e-8b73-9259326550a9" + "909e9cd6-4738-45d8-a048-c32e74a24871" ], "Server": [ "Microsoft-IIS/10.0" @@ -5334,22 +5334,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11985" + "11979" ], "x-ms-correlation-request-id": [ - "798deda8-4f36-4ca1-929c-15f1df616f5d" + "53a7d975-9223-452d-b64d-bfa92b3333b2" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113721Z:798deda8-4f36-4ca1-929c-15f1df616f5d" + "JIOINDIACENTRAL:20230216T053824Z:53a7d975-9223-452d-b64d-bfa92b3333b2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:21 GMT" + "Thu, 16 Feb 2023 05:38:24 GMT" ], "Content-Length": [ - "302" + "330" ], "Content-Type": [ "application/json" @@ -5358,28 +5358,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2200d8df-20d3-41be-99a6-950bd6d42771" + "7acd4123-0c36-4c9d-8961-35e3d6255982" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -5391,7 +5391,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6674347c-ba71-45ad-95b4-72f9823dbc9c" + "66622ffe-49e3-49a3-80fc-a588efb98d13" ], "Server": [ "Microsoft-IIS/10.0" @@ -5403,22 +5403,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11982" + "11976" ], "x-ms-correlation-request-id": [ - "c60da906-fab1-4b38-ac10-bff5ae8f47a4" + "819d586f-a3a8-4c24-bf7d-46165ed67844" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113724Z:c60da906-fab1-4b38-ac10-bff5ae8f47a4" + "JIOINDIACENTRAL:20230216T053829Z:819d586f-a3a8-4c24-bf7d-46165ed67844" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:24 GMT" + "Thu, 16 Feb 2023 05:38:29 GMT" ], "Content-Length": [ - "302" + "330" ], "Content-Type": [ "application/json" @@ -5427,28 +5427,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69ecf238-998c-43f5-9a1c-4d5549cd5873" + "c0ce99c8-d928-4749-a280-a9b53f67b1a2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -5460,7 +5460,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b3775010-149e-4414-8357-90fd0990cb3e" + "7299d7c8-ec69-4569-b185-9cd03872db18" ], "Server": [ "Microsoft-IIS/10.0" @@ -5472,22 +5472,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11979" + "11991" ], "x-ms-correlation-request-id": [ - "f3ed0485-25c8-47a1-995a-9cb5c2af2fd5" + "0ed33fd8-8f69-4e4f-8375-9cd3b050e4f6" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113734Z:f3ed0485-25c8-47a1-995a-9cb5c2af2fd5" + "JIOINDIACENTRAL:20230216T053849Z:0ed33fd8-8f69-4e4f-8375-9cd3b050e4f6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:34 GMT" + "Thu, 16 Feb 2023 05:38:49 GMT" ], "Content-Length": [ - "302" + "330" ], "Content-Type": [ "application/json" @@ -5496,28 +5496,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdC9jb25maWcvYXp1cmVzdG9yYWdlYWNjb3VudHMvbGlzdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/azurestorageaccounts/list?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3QvY29uZmlnL2F6dXJlc3RvcmFnZWFjY291bnRzL2xpc3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b34f692e-e29e-4b6c-9f9e-eeca7f12f28d" + "62928cb7-9bad-4f80-997c-32c942604287" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -5529,7 +5529,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cdae3ac7-f171-41e4-9f58-b14a0a8a4655" + "0710b065-b4c0-4bb9-bdb5-9bb9d16d8fe4" ], "Server": [ "Microsoft-IIS/10.0" @@ -5541,22 +5541,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11976" + "11973" ], "x-ms-correlation-request-id": [ - "da0ef263-c994-4c40-8490-ca2412cac8a0" + "a26ea721-2706-47c0-a8d6-98ec2c418d83" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113742Z:da0ef263-c994-4c40-8490-ca2412cac8a0" + "JIOINDIACENTRAL:20230216T053902Z:a26ea721-2706-47c0-a8d6-98ec2c418d83" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:41 GMT" + "Thu, 16 Feb 2023 05:39:01 GMT" ], "Content-Length": [ - "302" + "330" ], "Content-Type": [ "application/json" @@ -5565,34 +5565,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {}\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot/config/appsettings\",\r\n \"name\": \"azurestorageaccounts\",\r\n \"type\": \"Microsoft.Web/sites/config\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {}\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "baaf804c-7154-4cc7-9139-281b50ff44c5" + "003a75a1-cf39-4f1d-b9ad-0b9498158cde" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "314" + "327" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -5601,13 +5601,13 @@ "no-cache" ], "ETag": [ - "\"1D7E1276C802FF5\"" + "\"1D941C8454429E0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "538b85ac-e307-4a80-98d3-a78314dfd230" + "3f2d5f85-f033-40ba-9c67-8c132f59dd70" ], "Server": [ "Microsoft-IIS/10.0" @@ -5622,19 +5622,19 @@ "499" ], "x-ms-correlation-request-id": [ - "1d72a612-2ef3-48a4-b51e-2503eec60fc4" + "20904e68-0dd9-4aad-a001-570c982fe009" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113645Z:1d72a612-2ef3-48a4-b51e-2503eec60fc4" + "JIOINDIACENTRAL:20230216T053727Z:20904e68-0dd9-4aad-a001-570c982fe009" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:36:44 GMT" + "Thu, 16 Feb 2023 05:37:26 GMT" ], "Content-Length": [ - "6124" + "7201" ], "Content-Type": [ "application/json" @@ -5643,34 +5643,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:36:37.5\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:37:22.9333333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmc/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d75eef29-1e18-4ca5-9706-86886e4d68d8" + "1eb5c0db-8afe-4b76-bef4-d6e51480fb9b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "245" + "258" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"Disabled\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -5679,13 +5679,13 @@ "no-cache" ], "ETag": [ - "\"1D7E1278A8A1BC0\"" + "\"1D941C8BE7DFF55\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d182e7a4-9fd9-4243-9542-d5b889624abd" + "8c503ff9-d076-46bf-9e66-58a10549ab52" ], "Server": [ "Microsoft-IIS/10.0" @@ -5700,19 +5700,19 @@ "498" ], "x-ms-correlation-request-id": [ - "e154616c-54f6-41a5-ae79-c2b069c8be14" + "688a9b69-8b70-4acf-804e-ab28a96cf089" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113713Z:e154616c-54f6-41a5-ae79-c2b069c8be14" + "CENTRALINDIA:20230216T053809Z:688a9b69-8b70-4acf-804e-ab28a96cf089" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:12 GMT" + "Thu, 16 Feb 2023 05:38:08 GMT" ], "Content-Length": [ - "6090" + "7161" ], "Content-Type": [ "application/json" @@ -5721,34 +5721,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10\",\r\n \"name\": \"lketmtestantps10\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.adorenow.net\",\r\n \"lketmtestantps10.azurewebsites.net\",\r\n \"lketmtestantps10.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:37:10.7166667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10\\\\$lketmtestantps10\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting\",\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/sites\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"properties\": {\r\n \"name\": \"AppService-PS-UnitTesting\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/AppService-PS-UnitTesting\",\r\n \"repositorySiteName\": \"AppService-PS-UnitTesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"www.psunittesting.com\",\r\n \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"appservice-ps-unittesting.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"www.psunittesting.com\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:38:06.6333333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"AppService-PS-UnitTesting\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"AppService-PS-UnitTesting\\\\$AppService-PS-UnitTesting\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"testkey\": \"testvalue\"\r\n },\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f7364d77-d680-4fa9-ac69-1c1d33e9c5c5" + "e4284c37-38ed-4253-aa56-5777982752ff" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "319" + "342" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -5757,13 +5757,13 @@ "no-cache" ], "ETag": [ - "\"1D7E1266BBDE6D5\"" + "\"1D941C8A2A390B5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "eed9960d-e215-4145-b927-14648eaeb34c" + "65780105-40e7-4b4c-bfad-9e3f90d2c805" ], "Server": [ "Microsoft-IIS/10.0" @@ -5778,19 +5778,19 @@ "499" ], "x-ms-correlation-request-id": [ - "4008716c-ef20-4bc1-80e6-aa7ac0586250" + "94ac62d6-6920-4c14-9b3b-621f7be951cd" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113657Z:4008716c-ef20-4bc1-80e6-aa7ac0586250" + "CENTRALINDIA:20230216T053742Z:94ac62d6-6920-4c14-9b3b-621f7be951cd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:36:56 GMT" + "Thu, 16 Feb 2023 05:37:41 GMT" ], "Content-Length": [ - "6260" + "7356" ], "Content-Type": [ "application/json" @@ -5799,34 +5799,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:36:53.86\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot\",\r\n \"name\": \"AppService-PS-UnitTesting/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"name\": \"appservice-ps-unittesting(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/appservice-ps-unittesting\",\r\n \"repositorySiteName\": \"appservice-ps-unittesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"SniEnabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:37:38.5066667\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"appservice-ps-unittesting__5e7e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"appservice-ps-unittesting__testslot\\\\$appservice-ps-unittesting__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvbGtldG10ZXN0YW50cHMxMC9zbG90cy90ZXN0c2xvdD9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL3NpdGVzL0FwcFNlcnZpY2UtUFMtVW5pdFRlc3Rpbmcvc2xvdHMvdGVzdHNsb3Q/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2200d8df-20d3-41be-99a6-950bd6d42771" + "7acd4123-0c36-4c9d-8961-35e3d6255982" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "250" + "273" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"Disabled\",\r\n \"toUpdate\": true\r\n }\r\n ]\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -5835,13 +5835,13 @@ "no-cache" ], "ETag": [ - "\"1D7E127944A7240\"" + "\"1D941C8C7C64CAB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0dd55951-d1d6-4a53-b0db-d8f0f33635bc" + "e9f79fdd-ebbd-4562-aedb-6a6710b16035" ], "Server": [ "Microsoft-IIS/10.0" @@ -5856,19 +5856,19 @@ "498" ], "x-ms-correlation-request-id": [ - "8454953d-5bc5-42e9-ba81-e84f82789899" + "ca7d12be-b29d-4842-ac92-598ba633307f" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113728Z:8454953d-5bc5-42e9-ba81-e84f82789899" + "JIOINDIACENTRAL:20230216T053833Z:ca7d12be-b29d-4842-ac92-598ba633307f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:27 GMT" + "Thu, 16 Feb 2023 05:38:33 GMT" ], "Content-Length": [ - "6225" + "7316" ], "Content-Type": [ "application/json" @@ -5877,28 +5877,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/sites/lketmtestantps10/slots/testslot\",\r\n \"name\": \"lketmtestantps10/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"properties\": {\r\n \"name\": \"lketmtestantps10(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-057.api.azurewebsites.windows.net:454/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/webspaces/lketmtestantps10-CentralUSwebspace/sites/lketmtestantps10\",\r\n \"repositorySiteName\": \"lketmtestantps10\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.adorenow.net\",\r\n \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"lketmtestantps10-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.adorenow.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"lketmtestantps10-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/serverfarms/lketmtestantps10ASP\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2021-11-24T11:37:25.9233333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 1,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"sitePort\": null\r\n },\r\n \"deploymentId\": \"lketmtestantps10__7b9e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"C3E7C05FE8A97695B3AE08C1935F4251C48E338FE439627B2E788D9D718C8A70\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"52.165.155.237\",\r\n \"possibleInboundIpAddresses\": \"52.165.155.237\",\r\n \"ftpUsername\": \"lketmtestantps10__testslot\\\\$lketmtestantps10__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"possibleOutboundIpAddresses\": \"52.165.155.237,52.165.163.74,52.165.156.51,52.165.153.226,52.173.23.151\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-057\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"test\": \"test\"\r\n },\r\n \"resourceGroup\": \"lketmtestantps10\",\r\n \"defaultHostName\": \"lketmtestantps10-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": false,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/sites/AppService-PS-UnitTesting/slots/testslot\",\r\n \"name\": \"AppService-PS-UnitTesting/testslot\",\r\n \"type\": \"Microsoft.Web/sites/slots\",\r\n \"kind\": \"app\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"properties\": {\r\n \"name\": \"appservice-ps-unittesting(testslot)\",\r\n \"state\": \"Running\",\r\n \"hostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\"\r\n ],\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"selfLink\": \"https://waws-prod-dm1-287.api.azurewebsites.windows.net:454/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/webspaces/RG-PS-UnitTesting-CentralUSwebspace/sites/appservice-ps-unittesting\",\r\n \"repositorySiteName\": \"appservice-ps-unittesting\",\r\n \"owner\": null,\r\n \"usageState\": \"Normal\",\r\n \"enabled\": true,\r\n \"adminEnabled\": true,\r\n \"enabledHostNames\": [\r\n \"testslot.psunittesting.com\",\r\n \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\"\r\n ],\r\n \"siteProperties\": {\r\n \"metadata\": null,\r\n \"properties\": [\r\n {\r\n \"name\": \"LinuxFxVersion\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"WindowsFxVersion\",\r\n \"value\": null\r\n }\r\n ],\r\n \"appSettings\": null\r\n },\r\n \"availabilityState\": \"Normal\",\r\n \"sslCertificates\": null,\r\n \"csrs\": [],\r\n \"cers\": null,\r\n \"siteMode\": null,\r\n \"hostNameSslStates\": [\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"testslot.psunittesting.com\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Standard\"\r\n },\r\n {\r\n \"name\": \"appservice-ps-unittesting-testslot.scm.azurewebsites.net\",\r\n \"sslState\": \"Disabled\",\r\n \"ipBasedSslResult\": null,\r\n \"virtualIP\": null,\r\n \"thumbprint\": null,\r\n \"toUpdate\": null,\r\n \"toUpdateIpBasedSsl\": null,\r\n \"ipBasedSslState\": \"NotConfigured\",\r\n \"hostType\": \"Repository\"\r\n }\r\n ],\r\n \"computeMode\": null,\r\n \"serverFarm\": null,\r\n \"serverFarmId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/serverfarms/ASP-PS-UnitTesting\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"hyperV\": false,\r\n \"lastModifiedTimeUtc\": \"2023-02-16T05:38:30.8433333\",\r\n \"storageRecoveryDefaultState\": \"Running\",\r\n \"contentAvailabilityState\": \"Normal\",\r\n \"runtimeAvailabilityState\": \"Normal\",\r\n \"dnsConfiguration\": {},\r\n \"vnetRouteAllEnabled\": false,\r\n \"containerAllocationSubnet\": null,\r\n \"useContainerLocalhostBindings\": null,\r\n \"vnetImagePullEnabled\": false,\r\n \"vnetContentShareEnabled\": false,\r\n \"siteConfig\": {\r\n \"numberOfWorkers\": 1,\r\n \"defaultDocuments\": null,\r\n \"netFrameworkVersion\": null,\r\n \"phpVersion\": null,\r\n \"pythonVersion\": null,\r\n \"nodeVersion\": null,\r\n \"powerShellVersion\": null,\r\n \"linuxFxVersion\": \"\",\r\n \"windowsFxVersion\": null,\r\n \"windowsConfiguredStacks\": null,\r\n \"requestTracingEnabled\": null,\r\n \"remoteDebuggingEnabled\": null,\r\n \"remoteDebuggingVersion\": null,\r\n \"httpLoggingEnabled\": null,\r\n \"azureMonitorLogCategories\": null,\r\n \"acrUseManagedIdentityCreds\": false,\r\n \"acrUserManagedIdentityID\": null,\r\n \"logsDirectorySizeLimit\": null,\r\n \"detailedErrorLoggingEnabled\": null,\r\n \"publishingUsername\": null,\r\n \"publishingPassword\": null,\r\n \"appSettings\": null,\r\n \"metadata\": null,\r\n \"connectionStrings\": null,\r\n \"machineKey\": null,\r\n \"handlerMappings\": null,\r\n \"documentRoot\": null,\r\n \"scmType\": null,\r\n \"use32BitWorkerProcess\": null,\r\n \"webSocketsEnabled\": null,\r\n \"alwaysOn\": true,\r\n \"javaVersion\": null,\r\n \"javaContainer\": null,\r\n \"javaContainerVersion\": null,\r\n \"appCommandLine\": null,\r\n \"managedPipelineMode\": null,\r\n \"virtualApplications\": null,\r\n \"winAuthAdminState\": null,\r\n \"winAuthTenantState\": null,\r\n \"customAppPoolIdentityAdminState\": null,\r\n \"customAppPoolIdentityTenantState\": null,\r\n \"runtimeADUser\": null,\r\n \"runtimeADUserPassword\": null,\r\n \"loadBalancing\": null,\r\n \"routingRules\": null,\r\n \"experiments\": null,\r\n \"limits\": null,\r\n \"autoHealEnabled\": null,\r\n \"autoHealRules\": null,\r\n \"tracingOptions\": null,\r\n \"vnetName\": null,\r\n \"vnetRouteAllEnabled\": null,\r\n \"vnetPrivatePortsCount\": null,\r\n \"publicNetworkAccess\": null,\r\n \"cors\": null,\r\n \"push\": null,\r\n \"apiDefinition\": null,\r\n \"apiManagementConfig\": null,\r\n \"autoSwapSlotName\": null,\r\n \"localMySqlEnabled\": null,\r\n \"managedServiceIdentityId\": null,\r\n \"xManagedServiceIdentityId\": null,\r\n \"keyVaultReferenceIdentity\": null,\r\n \"ipSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"ipSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictions\": [\r\n {\r\n \"ipAddress\": \"Any\",\r\n \"action\": \"Allow\",\r\n \"priority\": 2147483647,\r\n \"name\": \"Allow all\",\r\n \"description\": \"Allow all access\"\r\n }\r\n ],\r\n \"scmIpSecurityRestrictionsDefaultAction\": null,\r\n \"scmIpSecurityRestrictionsUseMain\": null,\r\n \"http20Enabled\": false,\r\n \"minTlsVersion\": null,\r\n \"minTlsCipherSuite\": null,\r\n \"supportedTlsCipherSuites\": null,\r\n \"scmMinTlsVersion\": null,\r\n \"ftpsState\": null,\r\n \"preWarmedInstanceCount\": null,\r\n \"functionAppScaleLimit\": null,\r\n \"elasticWebAppScaleLimit\": 0,\r\n \"healthCheckPath\": null,\r\n \"fileChangeAuditEnabled\": null,\r\n \"functionsRuntimeScaleMonitoringEnabled\": null,\r\n \"websiteTimeZone\": null,\r\n \"minimumElasticInstanceCount\": 0,\r\n \"azureStorageAccounts\": null,\r\n \"http20ProxyFlag\": null,\r\n \"sitePort\": null,\r\n \"antivirusScanEnabled\": null,\r\n \"storageType\": null\r\n },\r\n \"deploymentId\": \"appservice-ps-unittesting__5e7e\",\r\n \"slotName\": null,\r\n \"trafficManagerHostNames\": null,\r\n \"sku\": \"Standard\",\r\n \"scmSiteAlsoStopped\": false,\r\n \"targetSwapSlot\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"clientAffinityEnabled\": true,\r\n \"clientCertEnabled\": false,\r\n \"clientCertMode\": \"Required\",\r\n \"clientCertExclusionPaths\": null,\r\n \"hostNamesDisabled\": false,\r\n \"domainVerificationIdentifiers\": null,\r\n \"customDomainVerificationId\": \"171070FA7C9D42A74204DF83EC3E071EC66B87DED2A58ED0299A7250CF94F5ED\",\r\n \"kind\": \"app\",\r\n \"inboundIpAddress\": \"20.118.56.4\",\r\n \"possibleInboundIpAddresses\": \"20.118.56.4\",\r\n \"ftpUsername\": \"appservice-ps-unittesting__testslot\\\\$appservice-ps-unittesting__testslot\",\r\n \"ftpsHostName\": \"ftps://waws-prod-dm1-287.ftp.azurewebsites.windows.net/site/wwwroot\",\r\n \"outboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.118.56.4\",\r\n \"possibleOutboundIpAddresses\": \"20.98.173.236,20.106.0.193,20.106.1.219,20.106.3.144,20.106.3.159,20.106.3.192,20.106.4.73,20.106.1.198,20.106.1.223,20.98.172.237,20.106.4.81,20.98.171.237,20.106.4.83,20.106.4.95,20.106.4.97,20.98.175.141,20.106.1.60,20.106.4.99,20.106.4.103,20.98.168.175,20.106.1.67,20.106.4.105,20.106.4.141,20.106.4.148,20.106.4.175,20.106.4.186,20.106.1.239,20.106.3.20,20.98.173.218,20.106.1.117,20.118.56.4\",\r\n \"containerSize\": 0,\r\n \"dailyMemoryTimeQuota\": 0,\r\n \"suspendedTill\": null,\r\n \"siteDisabledReason\": 0,\r\n \"functionExecutionUnitsCache\": null,\r\n \"maxNumberOfWorkers\": null,\r\n \"homeStamp\": \"waws-prod-dm1-287\",\r\n \"cloningInfo\": null,\r\n \"hostingEnvironmentId\": null,\r\n \"tags\": {\r\n \"testkey-slot\": \"testvalue-slot\"\r\n },\r\n \"resourceGroup\": \"RG-PS-UnitTesting\",\r\n \"defaultHostName\": \"appservice-ps-unittesting-testslot.azurewebsites.net\",\r\n \"slotSwapStatus\": null,\r\n \"httpsOnly\": true,\r\n \"redundancyMode\": \"None\",\r\n \"inProgressOperationId\": null,\r\n \"geoDistributions\": null,\r\n \"privateEndpointConnections\": null,\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"buildVersion\": null,\r\n \"targetBuildVersion\": null,\r\n \"migrationState\": null,\r\n \"eligibleLogCategories\": \"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs\",\r\n \"storageAccountRequired\": false,\r\n \"virtualNetworkSubnetId\": null,\r\n \"keyVaultReferenceIdentity\": \"SystemAssigned\",\r\n \"defaultHostNameScope\": \"Global\",\r\n \"privateLinkIdentifiers\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcmVzb3VyY2VzPyRmaWx0ZXI9cmVzb3VyY2VUeXBlJTIwZXElMjAnTWljcm9zb2Z0LldlYiUyRkNlcnRpZmljYXRlcycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5XZWIlMkZDZXJ0aWZpY2F0ZXMnJmFwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d75eef29-1e18-4ca5-9706-86886e4d68d8" + "1eb5c0db-8afe-4b76-bef4-d6e51480fb9b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.51" + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -5907,16 +5907,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11989" ], "x-ms-request-id": [ - "a8d9860e-c22c-447f-a0e0-f9005f84e7d1" + "bf8efee0-8af3-48ba-8ece-5e331feeb2c5" ], "x-ms-correlation-request-id": [ - "a8d9860e-c22c-447f-a0e0-f9005f84e7d1" + "bf8efee0-8af3-48ba-8ece-5e331feeb2c5" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T113713Z:a8d9860e-c22c-447f-a0e0-f9005f84e7d1" + "JIOINDIACENTRAL:20230216T053810Z:bf8efee0-8af3-48ba-8ece-5e331feeb2c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5925,7 +5925,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:12 GMT" + "Thu, 16 Feb 2023 05:38:09 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5934,31 +5934,31 @@ "-1" ], "Content-Length": [ - "297" + "587" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"name\": \"adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"name\": \"PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"name\": \"psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcmVzb3VyY2VzPyRmaWx0ZXI9cmVzb3VyY2VUeXBlJTIwZXElMjAnTWljcm9zb2Z0LldlYiUyRkNlcnRpZmljYXRlcycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/resources?$filter=resourceType%20eq%20'Microsoft.Web%2FCertificates'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5XZWIlMkZDZXJ0aWZpY2F0ZXMnJmFwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2200d8df-20d3-41be-99a6-950bd6d42771" + "7acd4123-0c36-4c9d-8961-35e3d6255982" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.51" + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.68" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -5967,16 +5967,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11993" ], "x-ms-request-id": [ - "68401d46-c1b1-4a9c-addd-b89d5a5a2585" + "eb9a0aa6-0585-4305-94cd-8ee00e0f7876" ], "x-ms-correlation-request-id": [ - "68401d46-c1b1-4a9c-addd-b89d5a5a2585" + "eb9a0aa6-0585-4305-94cd-8ee00e0f7876" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20211124T113728Z:68401d46-c1b1-4a9c-addd-b89d5a5a2585" + "JIOINDIACENTRAL:20230216T053837Z:eb9a0aa6-0585-4305-94cd-8ee00e0f7876" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5985,7 +5985,7 @@ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:28 GMT" + "Thu, 16 Feb 2023 05:38:37 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5994,31 +5994,100 @@ "-1" ], "Content-Length": [ - "297" + "587" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"name\": \"adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"name\": \"psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"location\": \"centralus\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL2Fkb3Jlbm93LWxrZXRtdGVzdGFudHBzMTAtQ2VudHJhbFVTd2Vic3BhY2U/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/PS-UnitTesting-Keyvault-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy9QUy1Vbml0VGVzdGluZy1LZXl2YXVsdC1QUy1Vbml0VGVzdGluZz9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1eb5c0db-8afe-4b76-bef4-d6e51480fb9b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" + ] + }, "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8e2df394-c39a-49ff-bdd5-cd46d26b5179" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "35756592-dae9-4b8f-a957-02d0c2fb44bc" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20230216T053811Z:35756592-dae9-4b8f-a957-02d0c2fb44bc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Feb 2023 05:38:11 GMT" + ], + "Content-Length": [ + "1081" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"name\": \"PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"password\": null,\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"psunittesting\",\r\n \"hostNames\": [\r\n \"psunittesting\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"psunittesting\",\r\n \"issueDate\": \"2022-07-28T07:11:04+05:30\",\r\n \"expirationDate\": \"2023-07-28T07:21:04+05:30\",\r\n \"thumbprint\": \"E4E04D3CE912AB34F0B94CBC27042E5022C961E1\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourcegroups/rg-ps-unittesting/providers/microsoft.keyvault/vaults/ps-unittesting-keyvault\",\r\n \"keyVaultSecretName\": \"ps-unittesting\",\r\n \"keyVaultSecretStatus\": \"KeyVaultSecretDoesNotExist\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/PS-UnitTesting-Keyvault-PS-UnitTesting?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy9QUy1Vbml0VGVzdGluZy1LZXl2YXVsdC1QUy1Vbml0VGVzdGluZz9hcGktdmVyc2lvbj0yMDIxLTAxLTE1", + "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "d75eef29-1e18-4ca5-9706-86886e4d68d8" + "7acd4123-0c36-4c9d-8961-35e3d6255982" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -6030,7 +6099,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "35d52051-e2f7-4f07-8771-f73c547e52a9" + "e4c95d24-947b-46ef-9736-c46113905d91" ], "Server": [ "Microsoft-IIS/10.0" @@ -6042,22 +6111,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11968" ], "x-ms-correlation-request-id": [ - "7477d261-500c-467d-bbff-da4518b43f6e" + "1154c2dd-2b13-4ba6-99c7-41b794089af3" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113713Z:7477d261-500c-467d-bbff-da4518b43f6e" + "JIOINDIACENTRAL:20230216T053838Z:1154c2dd-2b13-4ba6-99c7-41b794089af3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:13 GMT" + "Thu, 16 Feb 2023 05:38:37 GMT" ], "Content-Length": [ - "1157" + "1081" ], "Content-Type": [ "application/json" @@ -6066,28 +6135,97 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"name\": \"adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"password\": null,\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.adorenow.net,adorenow.net\",\r\n \"hostNames\": [\r\n \"*.adorenow.net\",\r\n \"adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"Go Daddy Secure Certificate Authority - G2\",\r\n \"issueDate\": \"2021-08-30T09:36:25+05:30\",\r\n \"expirationDate\": \"2022-09-29T12:46:02+05:30\",\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/lketmtestantps10/providers/microsoft.keyvault/vaults/ssltesting\",\r\n \"keyVaultSecretName\": \"adorenowadb85164-4f85-4ba7-8721-7071bbc3ecb1\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"lketmtestantps10\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"name\": \"PS-UnitTesting-Keyvault-PS-UnitTesting\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"password\": null,\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"psunittesting\",\r\n \"hostNames\": [\r\n \"psunittesting\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"psunittesting\",\r\n \"issueDate\": \"2022-07-28T07:11:04+05:30\",\r\n \"expirationDate\": \"2023-07-28T07:21:04+05:30\",\r\n \"thumbprint\": \"E4E04D3CE912AB34F0B94CBC27042E5022C961E1\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourcegroups/rg-ps-unittesting/providers/microsoft.keyvault/vaults/ps-unittesting-keyvault\",\r\n \"keyVaultSecretName\": \"ps-unittesting\",\r\n \"keyVaultSecretStatus\": \"KeyVaultSecretDoesNotExist\",\r\n \"webSpace\": \"RG-W-CUS-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL2Fkb3Jlbm93LWxrZXRtdGVzdGFudHBzMTAtQ2VudHJhbFVTd2Vic3BhY2U/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy9wc3VuaXR0ZXN0aW5nLVJHLVBTLVVuaXRUZXN0aW5nLUNlbnRyYWxVU3dlYnNwYWNlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1eb5c0db-8afe-4b76-bef4-d6e51480fb9b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19045", + "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" + ] + }, "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "94ce0fe2-b51c-4308-8d7d-a933b97f409d" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "5a9b8f12-c75c-4213-8646-3bdbc1ee3c5a" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20230216T053811Z:5a9b8f12-c75c-4213-8646-3bdbc1ee3c5a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 16 Feb 2023 05:38:11 GMT" + ], + "Content-Length": [ + "1211" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"name\": \"psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"password\": null,\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.psunittesting.com,psunittesting.com\",\r\n \"hostNames\": [\r\n \"*.psunittesting.com\",\r\n \"psunittesting.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"Go Daddy Secure Certificate Authority - G2\",\r\n \"issueDate\": \"2023-02-16T07:42:44+05:30\",\r\n \"expirationDate\": \"2024-02-16T07:42:44+05:30\",\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourcegroups/rg-ps-unittesting/providers/microsoft.keyvault/vaults/ps-unittesting-keyvault\",\r\n \"keyVaultSecretName\": \"psunittestingaa142621-b4d5-445e-b940-7b9a0cc4e414\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy9wc3VuaXR0ZXN0aW5nLVJHLVBTLVVuaXRUZXN0aW5nLUNlbnRyYWxVU3dlYnNwYWNlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", + "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "2200d8df-20d3-41be-99a6-950bd6d42771" + "7acd4123-0c36-4c9d-8961-35e3d6255982" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -6099,7 +6237,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "32676449-008c-472f-a343-24258f151d47" + "37bd4319-727c-489f-b3b0-3dce5f6dfe7b" ], "Server": [ "Microsoft-IIS/10.0" @@ -6111,22 +6249,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11967" ], "x-ms-correlation-request-id": [ - "ef579211-6254-4cb8-88d2-74ad47c3ead3" + "fb2bdf39-9c8d-4b83-afe2-9ccbe31da574" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113729Z:ef579211-6254-4cb8-88d2-74ad47c3ead3" + "JIOINDIACENTRAL:20230216T053839Z:fb2bdf39-9c8d-4b83-afe2-9ccbe31da574" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:28 GMT" + "Thu, 16 Feb 2023 05:38:39 GMT" ], "Content-Length": [ - "1157" + "1211" ], "Content-Type": [ "application/json" @@ -6135,28 +6273,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"name\": \"adorenow-lketmtestantps10-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"password\": null,\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.adorenow.net,adorenow.net\",\r\n \"hostNames\": [\r\n \"*.adorenow.net\",\r\n \"adorenow.net\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"Go Daddy Secure Certificate Authority - G2\",\r\n \"issueDate\": \"2021-08-30T09:36:25+05:30\",\r\n \"expirationDate\": \"2022-09-29T12:46:02+05:30\",\r\n \"thumbprint\": \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourcegroups/lketmtestantps10/providers/microsoft.keyvault/vaults/ssltesting\",\r\n \"keyVaultSecretName\": \"adorenowadb85164-4f85-4ba7-8721-7071bbc3ecb1\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"lketmtestantps10-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"lketmtestantps10\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"name\": \"psunittesting-RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"type\": \"Microsoft.Web/certificates\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"password\": null,\r\n \"friendlyName\": \"\",\r\n \"subjectName\": \"*.psunittesting.com,psunittesting.com\",\r\n \"hostNames\": [\r\n \"*.psunittesting.com\",\r\n \"psunittesting.com\"\r\n ],\r\n \"pfxBlob\": null,\r\n \"siteName\": null,\r\n \"selfLink\": null,\r\n \"issuer\": \"Go Daddy Secure Certificate Authority - G2\",\r\n \"issueDate\": \"2023-02-16T07:42:44+05:30\",\r\n \"expirationDate\": \"2024-02-16T07:42:44+05:30\",\r\n \"thumbprint\": \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"valid\": null,\r\n \"toDelete\": null,\r\n \"cerBlob\": null,\r\n \"publicKeyHash\": null,\r\n \"hostingEnvironment\": null,\r\n \"hostingEnvironmentProfile\": null,\r\n \"keyVaultId\": \"/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourcegroups/rg-ps-unittesting/providers/microsoft.keyvault/vaults/ps-unittesting-keyvault\",\r\n \"keyVaultSecretName\": \"psunittestingaa142621-b4d5-445e-b940-7b9a0cc4e414\",\r\n \"keyVaultSecretStatus\": \"Initialized\",\r\n \"webSpace\": \"RG-PS-UnitTesting-CentralUSwebspace\",\r\n \"serverFarmId\": null,\r\n \"tags\": null,\r\n \"resourceGroup\": \"RG-PS-UnitTesting\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL2Fkb3Jlbm93LWxrZXRtdGVzdGFudHBzMTAtQ2VudHJhbFVTd2Vic3BhY2U/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy9wc3VuaXR0ZXN0aW5nLVJHLVBTLVVuaXRUZXN0aW5nLUNlbnRyYWxVU3dlYnNwYWNlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d75eef29-1e18-4ca5-9706-86886e4d68d8" + "1eb5c0db-8afe-4b76-bef4-d6e51480fb9b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -6177,25 +6315,25 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-request-id": [ - "4ec8dc35-044e-414d-a81d-aca126bdf318" + "2222a4aa-e3ba-408c-88bc-f18ebcbe2535" ], "x-ms-correlation-request-id": [ - "4ec8dc35-044e-414d-a81d-aca126bdf318" + "2222a4aa-e3ba-408c-88bc-f18ebcbe2535" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113715Z:4ec8dc35-044e-414d-a81d-aca126bdf318" + "CENTRALINDIA:20230216T053813Z:2222a4aa-e3ba-408c-88bc-f18ebcbe2535" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:14 GMT" + "Thu, 16 Feb 2023 05:38:13 GMT" ], "Content-Length": [ - "779" + "799" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6204,28 +6342,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"Code\": \"Conflict\",\r\n \"Message\": \"Cannot remove certificate with thumbprint 6156D1475113476C55A3064D44DED9ECA0B33864 because it is used for hostname testslot.adorenow.net.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot remove certificate with thumbprint 6156D1475113476C55A3064D44DED9ECA0B33864 because it is used for hostname testslot.adorenow.net.\"\r\n },\r\n {\r\n \"Code\": \"Conflict\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"ExtendedCode\": \"04035\",\r\n \"MessageTemplate\": \"Cannot remove certificate with thumbprint {0} because it is used for hostname {1}.\",\r\n \"Parameters\": [\r\n \"6156D1475113476C55A3064D44DED9ECA0B33864\",\r\n \"testslot.adorenow.net\"\r\n ],\r\n \"Code\": \"Conflict\",\r\n \"Message\": \"Cannot remove certificate with thumbprint 6156D1475113476C55A3064D44DED9ECA0B33864 because it is used for hostname testslot.adorenow.net.\"\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}", + "ResponseBody": "{\r\n \"Code\": \"Conflict\",\r\n \"Message\": \"Cannot remove certificate with thumbprint 210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41 because it is used for hostname testslot.psunittesting.com.\",\r\n \"Target\": null,\r\n \"Details\": [\r\n {\r\n \"Message\": \"Cannot remove certificate with thumbprint 210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41 because it is used for hostname testslot.psunittesting.com.\"\r\n },\r\n {\r\n \"Code\": \"Conflict\"\r\n },\r\n {\r\n \"ErrorEntity\": {\r\n \"ExtendedCode\": \"04035\",\r\n \"MessageTemplate\": \"Cannot remove certificate with thumbprint {0} because it is used for hostname {1}.\",\r\n \"Parameters\": [\r\n \"210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41\",\r\n \"testslot.psunittesting.com\"\r\n ],\r\n \"Code\": \"Conflict\",\r\n \"Message\": \"Cannot remove certificate with thumbprint 210C5A1BBF7BC63F8733C3CB5E612FCFF3643E41 because it is used for hostname testslot.psunittesting.com.\"\r\n }\r\n }\r\n ],\r\n \"Innererror\": null\r\n}", "StatusCode": 409 }, { - "RequestUri": "/subscriptions/04b0639d-85d8-445a-bada-8da78e50ff30/resourceGroups/lketmtestantps10/providers/Microsoft.Web/certificates/adorenow-lketmtestantps10-CentralUSwebspace?api-version=2021-01-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDRiMDYzOWQtODVkOC00NDVhLWJhZGEtOGRhNzhlNTBmZjMwL3Jlc291cmNlR3JvdXBzL2xrZXRtdGVzdGFudHBzMTAvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvY2VydGlmaWNhdGVzL2Fkb3Jlbm93LWxrZXRtdGVzdGFudHBzMTAtQ2VudHJhbFVTd2Vic3BhY2U/YXBpLXZlcnNpb249MjAyMS0wMS0xNQ==", + "RequestUri": "/subscriptions/3e929699-b7a4-46cc-97cf-8a95e04318b8/resourceGroups/RG-PS-UnitTesting/providers/Microsoft.Web/certificates/psunittesting-RG-PS-UnitTesting-CentralUSwebspace?api-version=2021-01-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5Mjk2OTktYjdhNC00NmNjLTk3Y2YtOGE5NWUwNDMxOGI4L3Jlc291cmNlR3JvdXBzL1JHLVBTLVVuaXRUZXN0aW5nL3Byb3ZpZGVycy9NaWNyb3NvZnQuV2ViL2NlcnRpZmljYXRlcy9wc3VuaXR0ZXN0aW5nLVJHLVBTLVVuaXRUZXN0aW5nLUNlbnRyYWxVU3dlYnNwYWNlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMTU=", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2200d8df-20d3-41be-99a6-950bd6d42771" + "7acd4123-0c36-4c9d-8961-35e3d6255982" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", + "OSVersion/Microsoft.Windows.10.0.19045", "Microsoft.Azure.Management.WebSites.WebSiteManagementClient/3.1.2" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -6237,7 +6375,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "629c8e05-465f-459b-960c-93814fd0bd4c" + "14e82069-8eaf-48e4-b84a-78d4b73ba7b6" ], "Server": [ "Microsoft-IIS/10.0" @@ -6249,19 +6387,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14996" ], "x-ms-correlation-request-id": [ - "fb06be27-95f4-47c8-964b-7d11ae724fee" + "92af418a-758f-4908-a1ac-941f97b1825a" ], "x-ms-routing-request-id": [ - "JIOINDIACENTRAL:20211124T113732Z:fb06be27-95f4-47c8-964b-7d11ae724fee" + "JIOINDIACENTRAL:20230216T053843Z:92af418a-758f-4908-a1ac-941f97b1825a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 24 Nov 2021 11:37:32 GMT" + "Thu, 16 Feb 2023 05:38:42 GMT" ], "Expires": [ "-1" @@ -6276,6 +6414,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "04b0639d-85d8-445a-bada-8da78e50ff30" + "SubscriptionId": "3e929699-b7a4-46cc-97cf-8a95e04318b8" } } \ No newline at end of file diff --git a/src/Websites/Websites/ChangeLog.md b/src/Websites/Websites/ChangeLog.md index c5b631b96445..d9dcab81bce8 100644 --- a/src/Websites/Websites/ChangeLog.md +++ b/src/Websites/Websites/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Updated `New-AzWebAppSSLBinding` to support -WhatIf parameter ## Version 2.12.1 * Fixed `Import-AzWebAppKeyVaultCertificate` to use certificate naming convention same as portal [#19592] diff --git a/src/Websites/Websites/Cmdlets/Certificates/NewAzureWebAppSSLBinding.cs b/src/Websites/Websites/Cmdlets/Certificates/NewAzureWebAppSSLBinding.cs index b267d53b0c8e..4d6eac9b0328 100644 --- a/src/Websites/Websites/Cmdlets/Certificates/NewAzureWebAppSSLBinding.cs +++ b/src/Websites/Websites/Cmdlets/Certificates/NewAzureWebAppSSLBinding.cs @@ -29,7 +29,7 @@ namespace Microsoft.Azure.Commands.WebApps.Cmdlets.WebApps /// /// this commandlet will let you create a new Azure Web app using ARM APIs /// - [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "WebAppSSLBinding"), OutputType(typeof(HostNameSslState))] + [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "WebAppSSLBinding", SupportsShouldProcess = true), OutputType(typeof(HostNameSslState))] public class NewAzureWebAppSSLBinding : WebAppBaseClientCmdLet { const string CertNamePostFixSeparator = "_"; @@ -130,7 +130,10 @@ protected override void ProcessRecord() try { - Certificate cert= WebsitesClient.CreateCertificate(resourceGroupName, certificateName, certificate); + if (this.ShouldProcess(this.WebAppName, string.Format("Creating a new certificate - '{0}' in Web Application - {1}.", certificateName, this.WebAppName))) + { + Certificate cert = WebsitesClient.CreateCertificate(resourceGroupName, certificateName, certificate); + } } catch (CloudException e) { @@ -149,8 +152,9 @@ protected override void ProcessRecord() thumbPrint = Thumbprint; break; } - - WriteObject(CmdletHelpers.GetHostNameSslStatesFromSiteResponse( + if (this.ShouldProcess(this.WebAppName, string.Format("Binding the certificate with thumbprint- '{0}' to Web Application - {1}.", thumbPrint, this.WebAppName))) + { + WriteObject(CmdletHelpers.GetHostNameSslStatesFromSiteResponse( WebsitesClient.UpdateHostNameSslState( resourceGroupName, webAppName, @@ -160,6 +164,7 @@ protected override void ProcessRecord() SslState.HasValue ? SslState.Value : Management.WebSites.Models.SslState.SniEnabled, thumbPrint), Name)); + } } private string GenerateCertName(string thumbPrint, string hostingEnv, string location, string resourceGroupName) diff --git a/src/Websites/Websites/help/New-AzWebAppSSLBinding.md b/src/Websites/Websites/help/New-AzWebAppSSLBinding.md index d94ec32efa08..425e70f9a645 100644 --- a/src/Websites/Websites/help/New-AzWebAppSSLBinding.md +++ b/src/Websites/Websites/help/New-AzWebAppSSLBinding.md @@ -17,21 +17,21 @@ Creates an SSL certificate binding for an Azure Web App. ``` New-AzWebAppSSLBinding [-ResourceGroupName] [-WebAppName] [[-Slot] ] [-Name] [[-SslState] ] [-CertificateFilePath] [-CertificatePassword] - [-DefaultProfile ] [] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### S2 ``` New-AzWebAppSSLBinding [-ResourceGroupName] [-WebAppName] [[-Slot] ] [-Name] [[-SslState] ] [-Thumbprint] [-DefaultProfile ] - [] + [-WhatIf] [-Confirm] [] ``` ### S3 ``` New-AzWebAppSSLBinding [-WebApp] [-Name] [[-SslState] ] [-CertificateFilePath] [-CertificatePassword] [-DefaultProfile ] - [] + [-WhatIf] [-Confirm] [] ``` ### S4 @@ -117,6 +117,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with azure. @@ -246,6 +261,22 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### CommonParameters This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). diff --git a/tools/AzPreview/AzPreview.psd1 b/tools/AzPreview/AzPreview.psd1 index dcf4b6211366..17ecd1e624ed 100644 --- a/tools/AzPreview/AzPreview.psd1 +++ b/tools/AzPreview/AzPreview.psd1 @@ -79,7 +79,7 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.11.2'; }, @{ModuleName = 'Az.Compute'; RequiredVersion = '5.4.0'; }, @{ModuleName = 'Az.ConfidentialLedger'; RequiredVersion = '1.0.0'; }, @{ModuleName = 'Az.Confluent'; RequiredVersion = '0.2.0'; }, - @{ModuleName = 'Az.ConnectedKubernetes'; RequiredVersion = '0.7.0'; }, + @{ModuleName = 'Az.ConnectedKubernetes'; RequiredVersion = '0.8.0'; }, @{ModuleName = 'Az.ConnectedMachine'; RequiredVersion = '0.4.1'; }, @{ModuleName = 'Az.ConnectedNetwork'; RequiredVersion = '0.1.0'; }, @{ModuleName = 'Az.ContainerInstance'; RequiredVersion = '3.1.0'; }, diff --git a/tools/BuildPackagesTask/Microsoft.Azure.Build.Tasks/CIFilterTask.cs b/tools/BuildPackagesTask/Microsoft.Azure.Build.Tasks/CIFilterTask.cs index a0eb5b540d27..a2cafa31fe94 100644 --- a/tools/BuildPackagesTask/Microsoft.Azure.Build.Tasks/CIFilterTask.cs +++ b/tools/BuildPackagesTask/Microsoft.Azure.Build.Tasks/CIFilterTask.cs @@ -70,7 +70,7 @@ public class CIFilterTask : Task private const string BUILD_PHASE = "build"; private const string TEST_PHASE = "test"; - private readonly List ANALYSIS_PHASE_LIST = new List() { "breaking-change", "help-example", "help", "dependency", "signature", "file-change", "ux" }; + private readonly List ANALYSIS_PHASE_LIST = new List() { "breaking-change", "help-example", "help", "dependency", "signature", "file-change", "ux", "cmdlet-diff" }; private const string ACCOUNT_MODULE_NAME = "Accounts"; private const string MODULE_NAME_PLACEHOLDER = "ModuleName"; @@ -173,7 +173,7 @@ private List GetSelectedModuleList() private List GetTestCsprojList(string moduleName, Dictionary csprojMap) { return GetRelatedCsprojList(moduleName, csprojMap) - .Where(x => x.Contains("Test")).ToList();; + .Where(x => x.Contains("Test")).ToList(); } private bool ProcessTargetModule(Dictionary csprojMap) @@ -196,7 +196,7 @@ private bool ProcessTargetModule(Dictionary csprojMap) Console.WriteLine("--------------------------------------------------------"); FilterTaskResult.PhaseInfo = influencedModuleInfo; - + return true; } @@ -388,7 +388,7 @@ private bool ProcessFileChanged(Dictionary csprojMap) influencedModuleInfo = CalculateCsprojForBuildAndTest(influencedModuleInfo, csprojMap); DateTime endTime = DateTime.Now; Console.WriteLine(string.Format("Takes {0} seconds for RE match, {1} seconds for phase config.", (endOfRegularExpressionTime - startTime).TotalSeconds, (endTime - endOfRegularExpressionTime).TotalSeconds)); - + FilterTaskResult.PhaseInfo = influencedModuleInfo; if (!Directory.Exists(config.ArtifactPipelineInfoFolder)) diff --git a/tools/Docs/az-ps-latest.csv b/tools/Docs/az-ps-latest.csv index 18f3a7512809..d09b681fd517 100644 --- a/tools/Docs/az-ps-latest.csv +++ b/tools/Docs/az-ps-latest.csv @@ -25,7 +25,7 @@ pac23,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-relea pac24,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Compute.5.4.0.nupkg;sourceType=sa]Az.Compute,5.4.0 pac25,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ConfidentialLedger.1.0.0.nupkg;sourceType=sa]Az.ConfidentialLedger,1.0.0 pac26,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Confluent.0.2.0.nupkg;sourceType=sa]Az.Confluent,0.2.0 -pac27,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ConnectedKubernetes.0.7.0.nupkg;sourceType=sa]Az.ConnectedKubernetes,0.7.0 +pac27,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ConnectedKubernetes.0.8.0.nupkg;sourceType=sa]Az.ConnectedKubernetes,0.8.0 pac28,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ConnectedMachine.0.4.1.nupkg;sourceType=sa]Az.ConnectedMachine,0.4.1 pac29,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ConnectedNetwork.0.1.0.nupkg;sourceType=sa]Az.ConnectedNetwork,0.1.0 pac30,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ContainerInstance.3.1.0.nupkg;sourceType=sa]Az.ContainerInstance,3.1.0 diff --git a/tools/ExecuteCIStep.ps1 b/tools/ExecuteCIStep.ps1 index 5f305fd0f7cb..d5c73ea54f0f 100644 --- a/tools/ExecuteCIStep.ps1 +++ b/tools/ExecuteCIStep.ps1 @@ -50,6 +50,9 @@ Param( [Switch] $StaticAnalysisUX, + [Switch] + $StaticAnalysisCmdletDiff, + [String] $RepoArtifacts='artifacts', @@ -239,6 +242,7 @@ If ($StaticAnalysis) .("$PSScriptRoot/ExecuteCIStep.ps1") -StaticAnalysisSignature @Parameters .("$PSScriptRoot/ExecuteCIStep.ps1") -StaticAnalysisHelp @Parameters .("$PSScriptRoot/ExecuteCIStep.ps1") -StaticAnalysisUX @Parameters + .("$PSScriptRoot/ExecuteCIStep.ps1") -StaticAnalysisCmdletDiff @Parameters Return } @@ -331,3 +335,21 @@ If ($StaticAnalysisUX) } Return } + +If ($StaticAnalysisCmdletDiff) +{ + If ($PSBoundParameters.ContainsKey("TargetModule")) + { + $CmdletDiffModuleList = $TargetModule + } + Else + { + $CmdletDiffModuleList = Join-String -Separator ';' -InputObject $CIPlan.'cmdlet-diff' + } + If ("" -Ne $CmdletDiffModuleList) + { + Write-Host "Running static analysis for cmdlet diff..." + dotnet $RepoArtifacts/StaticAnalysis/StaticAnalysis.Netcore.dll -p $RepoArtifacts/$Configuration -r $StaticAnalysisOutputDirectory --analyzers cmdlet-diff -u -m $CmdletDiffModuleList + } + Return +} \ No newline at end of file diff --git a/tools/HelpGeneration/HelpGeneration.psm1 b/tools/HelpGeneration/HelpGeneration.psm1 index 8bd3eabe9054..8ffc885d2d42 100644 --- a/tools/HelpGeneration/HelpGeneration.psm1 +++ b/tools/HelpGeneration/HelpGeneration.psm1 @@ -91,7 +91,7 @@ function Test-AzMarkdownHelp $HelpFolder = Get-Item $HelpFolderPath $Exceptions = Import-Csv "$SuppressedExceptionsPath\ValidateHelpIssues.csv" [String[]]$errors = @() - $MarkdownFiles = Get-ChildItem -Path $HelpFolder -Include "*.md" + $MarkdownFiles = Get-ChildItem -Path $HelpFolder -Filter "*.md" $ModuleName = ($MarkdownFiles | where { $_.Name -notlike "*-*" }).Name -replace ".md","" foreach ($file in $MarkdownFiles) { @@ -196,7 +196,7 @@ function Test-AzMarkdownHelp # PS C:\> {{ Add example code here }} # ``` # - if ($content[$idx+1] -contains "PS C:\> {{ Add example code here }}") + if ($content[$idx+1] -contains "{{ Add example code here }}") { $fileErrors += "No examples found" } diff --git a/tools/PipelineResultTemplate.json b/tools/PipelineResultTemplate.json index 20c823271da3..1895e4ad752c 100644 --- a/tools/PipelineResultTemplate.json +++ b/tools/PipelineResultTemplate.json @@ -35,6 +35,12 @@ "Details": [ ] }, + "cmdlet-diff": { + "PhaseName": "Cmdlet Diff Check", + "Order": 7, + "Details": [ + ] + }, "test": { "PhaseName": "Test", "Order": 100, diff --git a/tools/StaticAnalysis/CmdletDiffAnalyzer/CmdletDiffAnalyzer.cs b/tools/StaticAnalysis/CmdletDiffAnalyzer/CmdletDiffAnalyzer.cs new file mode 100644 index 000000000000..6165709d474d --- /dev/null +++ b/tools/StaticAnalysis/CmdletDiffAnalyzer/CmdletDiffAnalyzer.cs @@ -0,0 +1,858 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Reflection; +using System.Text; +using Tools.Common.Issues; +using Tools.Common.Loaders; +using Tools.Common.Loggers; +using Tools.Common.Models; +using Tools.Common.Utilities; + +namespace StaticAnalysis.CmdletDiffAnalyzer +{ + public class CmdletDiffAnalyzer : IStaticAnalyzer + { + public AnalysisLogger Logger { get; set; } + public string Name { get; set; } + public string CmdletDiffIssueReportLoggerName { get; set; } + private List _ignoreParameters = new List + { + "AzureRMContext", "Break", "Debug", "DefaultProfile", "EnableTestCoverage", + "ErrorAction", "ErrorVariable", "HttpPipelineAppend", "HttpPipelinePrepend", "InformationAction", + "InformationVariable", "OutBuffer", "OutVariable", "PipelineVariable", "Proxy", + "ProxyCredential", "ProxyUseDefaultCredentials", "Verbose", "WarningAction", "WarningVariable" + }; + private List diffInfo; + public CmdletDiffAnalyzer() + { + Name = "Cmdlet Diff Analyzer"; + CmdletDiffIssueReportLoggerName = "CmdletDiffIssues.csv"; + } + + public void Analyze(IEnumerable cmdletProbingDirs) + { + Analyze(cmdletProbingDirs, null, null); + } + public void Analyze(IEnumerable cmdletProbingDirs, IEnumerable modulesToAnalyze) + { + Analyze(cmdletProbingDirs, null, null, modulesToAnalyze); + } + + public void Analyze( + IEnumerable cmdletProbingDirs, + Func, IEnumerable> directoryFilter, + Func cmdletFilter) + { + Analyze(cmdletProbingDirs, directoryFilter, cmdletFilter, null); + } + + public void Analyze( + IEnumerable cmdletProbingDirs, + Func, IEnumerable> directoryFilter, + Func cmdletFilter, + IEnumerable modulesToAnalyze) + { + + var processedHelpFiles = new List(); + if (directoryFilter != null) + { + cmdletProbingDirs = directoryFilter(cmdletProbingDirs); + } + + var savedDirectory = Directory.GetCurrentDirectory(); + foreach (var baseDirectory in cmdletProbingDirs.Where(s => !s.Contains("ServiceManagement") && + !ModuleFilter.IsAzureStackModule(s) && Directory.Exists(Path.GetFullPath(s)))) + { + var probingDirectories = new List { baseDirectory }; + // Add current directory for probing: .\artifacts\Debug\ && dirs under \Debug. + probingDirectories.AddRange(Directory.EnumerateDirectories(Path.GetFullPath(baseDirectory))); + diffInfo = new List(); + + foreach (var directory in probingDirectories) + { + if (modulesToAnalyze != null && + modulesToAnalyze.Any() && + !modulesToAnalyze.Any(m => directory.EndsWith(m))) + { + continue; + } + + // find psd1 file in every dir + var service = Path.GetFileName(directory); + + var manifestFiles = Directory.EnumerateFiles(directory, "*.psd1").ToList(); + + if (manifestFiles.Count > 1) + { + manifestFiles = manifestFiles.Where(f => Path.GetFileName(f).IndexOf(service) >= 0).ToList(); + } + + if (manifestFiles.Count == 0) + { + continue; + } + // psd1: \artifacts\Debug\Az.Compute\Az.Compute.psd1 + var psd1 = manifestFiles.FirstOrDefault(); + + // find module info + var parentDirectory = Directory.GetParent(psd1).FullName; + var psd1FileName = Path.GetFileName(psd1); + + string moduleName = psd1FileName.Replace(".psd1", ""); + Directory.SetCurrentDirectory(directory); + + Console.WriteLine("Analysing module: {0}", moduleName); + processedHelpFiles.Add(moduleName); + + var newModuleMetadata = MetadataLoader.GetModuleMetadata(moduleName); + var fileName = $"{moduleName}.json"; + // \artifacts\StaticAnalysis + var executingPath = Path.GetDirectoryName(new Uri(Assembly.GetExecutingAssembly().CodeBase).AbsolutePath); + var filePath = Path.Combine(executingPath, "SerializedCmdlets", fileName); + + if (!File.Exists(filePath)) + { + continue; + } + + var oldModuleMetadata = ModuleMetadata.DeserializeCmdlets(filePath); + CmdletLoader.ModuleMetadata = newModuleMetadata; + CompareModuleMetedata(oldModuleMetadata, newModuleMetadata, moduleName); + } + } + Directory.SetCurrentDirectory(savedDirectory); + var reportsDirectory = Path.GetDirectoryName(Logger.CreateLogger("CmdletDiffIssues.csv").FileName); + var markDownPath = Path.Combine(reportsDirectory, "CmdletChangeResult.md"); + var csvPath = Path.Combine(reportsDirectory, "CmdletDiffInformation.csv"); + + GenerateMarkdown(markDownPath); + // write infomation to csv + GenerateCsv(csvPath); + Console.WriteLine("Cmdlets Differences written to {0}", markDownPath); + } + + private void CompareModuleMetedata(ModuleMetadata oldModuleMetadata, + ModuleMetadata newModuleMetadata, + string moduleName) + { + var newCmdletList = newModuleMetadata.Cmdlets; + Dictionary newCmdletMetadataMap = new Dictionary(); + foreach (var cmdlet in newCmdletList) + { + newCmdletMetadataMap.Add(cmdlet.Name, cmdlet); + } + + var oldCmdletList = oldModuleMetadata.Cmdlets; + Dictionary oldCmdletMetadataMap = new Dictionary(); + foreach (var cmdlet in oldCmdletList) + { + oldCmdletMetadataMap.Add(cmdlet.Name, cmdlet); + } + foreach (string cmdletName in oldCmdletMetadataMap.Keys) + { + if (!newCmdletMetadataMap.ContainsKey(cmdletName)) + { + diffInfo.Add(new CmdletDiffInformation() + { + ModuleName = moduleName, + CmdletName = cmdletName, + Type = ChangeType.CmdletRemove, + Before = new List { cmdletName }, + }); + oldCmdletMetadataMap.Remove(cmdletName); + } + else + // both old and new module have the same cmdlet + { + if (oldCmdletMetadataMap[cmdletName] == null || oldCmdletMetadataMap[cmdletName]?.Equals(newCmdletMetadataMap[cmdletName]) == false) + { + CompareCmdletsAlias(oldCmdletMetadataMap[cmdletName], newCmdletMetadataMap[cmdletName], + moduleName); + CompareCmdletsSupportsShouldProcess(oldCmdletMetadataMap[cmdletName], newCmdletMetadataMap[cmdletName], + moduleName); + CompareCmdletsSupportsPaging(oldCmdletMetadataMap[cmdletName], newCmdletMetadataMap[cmdletName], + moduleName); + CompareCmdletsParameter(oldCmdletMetadataMap[cmdletName], newCmdletMetadataMap[cmdletName], + moduleName); + CompareCmdletsOutputChange(oldCmdletMetadataMap[cmdletName], newCmdletMetadataMap[cmdletName], + moduleName); + CompareParameterSetMetadata(oldCmdletMetadataMap[cmdletName], oldCmdletMetadataMap[cmdletName].ParameterSets, newCmdletMetadataMap[cmdletName].ParameterSets, moduleName); + } + oldCmdletMetadataMap.Remove(cmdletName); + newCmdletMetadataMap.Remove(cmdletName); + } + } + foreach (string cmdletName in newCmdletMetadataMap.Keys) + { + diffInfo.Add(new CmdletDiffInformation() + { + ModuleName = moduleName, + CmdletName = cmdletName, + Type = ChangeType.CmdletAdd, + After = new List { cmdletName }, + }); + } + } + + private void CompareCmdletsAlias( + CmdletMetadata oldCmdletMetadata, + CmdletMetadata newCmdletMetadata, + string moduleName) + { + var removedAliases = oldCmdletMetadata.AliasList.Except(newCmdletMetadata.AliasList).ToList(); + var addedAliases = newCmdletMetadata.AliasList.Except(oldCmdletMetadata.AliasList).ToList(); + + AddAliasChangeInfo(moduleName, oldCmdletMetadata.Name, ChangeType.AliasRemove, removedAliases); + AddAliasChangeInfo(moduleName, oldCmdletMetadata.Name, ChangeType.AliasAdd, addedAliases); + } + private void AddAliasChangeInfo(string moduleName, string cmdletName, ChangeType changeType, List aliases) + { + if (aliases.Any()) + { + if (changeType == ChangeType.AliasAdd) + { + diffInfo.Add(new CmdletDiffInformation() + { + ModuleName = moduleName, + CmdletName = cmdletName, + Type = changeType, + After = aliases, + }); + } + else + { + diffInfo.Add(new CmdletDiffInformation() + { + ModuleName = moduleName, + CmdletName = cmdletName, + Type = changeType, + Before = aliases, + }); + } + } + } + + private void CompareCmdletsSupportsShouldProcess( + CmdletMetadata oldCmdlet, + CmdletMetadata newCmdlet, + string moduleName) + { + if (oldCmdlet.SupportsShouldProcess != newCmdlet.SupportsShouldProcess) + { + diffInfo.Add(new CmdletDiffInformation() + { + ModuleName = moduleName, + CmdletName = oldCmdlet.Name, + Type = ChangeType.CmdletSupportsShouldProcessChange, + Before = new List { oldCmdlet.SupportsShouldProcess.ToString() }, + After = new List { newCmdlet.SupportsShouldProcess.ToString() }, + }); + } + } + private void CompareCmdletsSupportsPaging( + CmdletMetadata oldCmdlet, + CmdletMetadata newCmdlet, + string moduleName) + { + if (oldCmdlet.SupportsPaging != newCmdlet.SupportsPaging) + { + diffInfo.Add(new CmdletDiffInformation() + { + ModuleName = moduleName, + CmdletName = oldCmdlet.Name, + Type = ChangeType.CmdletSupportsPagingChange, + Before = new List { oldCmdlet.SupportsPaging.ToString() }, + After = new List { newCmdlet.SupportsPaging.ToString() }, + }); + } + } + private void CompareCmdletsParameter(CmdletMetadata oldCmdletMetadata, + CmdletMetadata newCmdletMetadata, + string moduleName) + { + // Parameter remove/ add + List oldParameterNames = new List(); + List newParameterNames = new List(); + foreach (var parameterMetadata in oldCmdletMetadata.Parameters) + { + if (_ignoreParameters.Contains(parameterMetadata.Name)) + { + continue; + } + oldParameterNames.Add(parameterMetadata.Name); + } + foreach (var parameterMetadata in newCmdletMetadata.Parameters) + { + if (_ignoreParameters.Contains(parameterMetadata.Name)) + { + continue; + } + newParameterNames.Add(parameterMetadata.Name); + } + if (!(oldParameterNames.Count == newParameterNames.Count && oldParameterNames.Count(t => !newParameterNames.Contains(t)) == 0)) + { + CompareChangedParameter(moduleName, oldCmdletMetadata.Name, oldParameterNames, newParameterNames); + } + CompareCmdletsParamProperties(oldCmdletMetadata, newCmdletMetadata, moduleName); + } + + private void CompareChangedParameter(string moduleName, string cmdletName, List oldParameterNames, List newParameterNames) + { + var removedParameters = oldParameterNames.Except(newParameterNames).ToList(); + var addedParameters = newParameterNames.Except(oldParameterNames).ToList(); + + AddParameterChangeInfo(moduleName, cmdletName, ChangeType.ParameterRemove, removedParameters); + AddParameterChangeInfo(moduleName, cmdletName, ChangeType.ParameterAdd, addedParameters); + } + + private void AddParameterChangeInfo(string moduleName, string cmdletName, ChangeType changeType, List parameters) + { + if (!parameters.Any()) + { + return; + } + if (changeType == ChangeType.ParameterAdd) + { + diffInfo.Add(new CmdletDiffInformation() + { + ModuleName = moduleName, + CmdletName = cmdletName, + Type = changeType, + ParameterName = String.Join(", ", parameters), + After = parameters, + }); + } + else + { + diffInfo.Add(new CmdletDiffInformation() + { + ModuleName = moduleName, + CmdletName = cmdletName, + Type = changeType, + ParameterName = String.Join(", ", parameters), + Before = parameters, + }); + } + } + + private void CompareCmdletsParamProperties(CmdletMetadata oldCmdletMetadata, + CmdletMetadata newCmdletMetadata, + string moduleName) + { + // ParameterAlias remove/ add && ParameterTypeChange, + List oldParameterMetadatas = oldCmdletMetadata.Parameters; + List newParameterMetadatas = newCmdletMetadata.Parameters; + + var compareParameterMetadatas = + from oldParam in oldParameterMetadatas + where !_ignoreParameters.Contains(oldParam.Name) + join newParam in newParameterMetadatas on oldParam.Name equals newParam.Name + where !_ignoreParameters.Contains(newParam.Name) + select (oldParam, newParam); + + foreach (var (oldParameterMetadata, newParameterMetadata) in compareParameterMetadatas) + { + CompareChangedParameterAliases(moduleName, oldCmdletMetadata.Name, oldParameterMetadata, newParameterMetadata); + CompareChangedParameterType(moduleName, oldCmdletMetadata, oldParameterMetadata, newParameterMetadata); + CompareChangedParameterAttribute(moduleName, oldCmdletMetadata, oldParameterMetadata, newParameterMetadata); + } + } + + private void CompareChangedParameterAliases(string moduleName, string cmdletName, ParameterMetadata oldParameterMetadata, ParameterMetadata newParameterMetadata) + { + if (!(oldParameterMetadata.AliasList.Count == newParameterMetadata.AliasList.Count + && oldParameterMetadata.AliasList.Count(t => !newParameterMetadata.AliasList.Contains(t)) == 0)) + { + List addedAliases = newParameterMetadata.AliasList.Except(oldParameterMetadata.AliasList).ToList(); + ProcessChangedParameterAliases(moduleName, cmdletName, ChangeType.ParameterAliasAdd, oldParameterMetadata, addedAliases); + List removedAliases = oldParameterMetadata.AliasList.Except(newParameterMetadata.AliasList).ToList(); + ProcessChangedParameterAliases(moduleName, cmdletName, ChangeType.ParameterAliasRemove, oldParameterMetadata, removedAliases); + } + } + private void ProcessChangedParameterAliases(string moduleName, string cmdletName, ChangeType changeType, + ParameterMetadata oldParameterMetadata, + List addedOrRemovedAliases) + { + if (!addedOrRemovedAliases.Any()) + { + return; + } + if (changeType == ChangeType.ParameterAliasAdd) + { + diffInfo.Add(new CmdletDiffInformation() + { + ModuleName = moduleName, + CmdletName = cmdletName, + Type = changeType, + ParameterName = oldParameterMetadata.Name, + After = addedOrRemovedAliases, + }); + } + else + { + diffInfo.Add(new CmdletDiffInformation() + { + ModuleName = moduleName, + CmdletName = cmdletName, + Type = changeType, + ParameterName = oldParameterMetadata.Name, + Before = addedOrRemovedAliases, + }); + } + } + void CompareChangedParameterType(string moduleName, CmdletMetadata oldCmdletMetadata, ParameterMetadata oldParameterMetadata, + ParameterMetadata newParameterMetadata) + { + string oldParameterTypeName = GetSimplifiedParameterTypeName(oldParameterMetadata); + string newParameterTypeName = GetSimplifiedParameterTypeName(newParameterMetadata); + if (oldParameterTypeName != newParameterTypeName) + { + diffInfo.Add(new CmdletDiffInformation() + { + ModuleName = moduleName, + CmdletName = oldCmdletMetadata.Name, + Type = ChangeType.ParameterTypeChange, + ParameterName = oldParameterMetadata.Name, + Before = new List { oldParameterTypeName }, + After = new List { newParameterTypeName }, + }); + } + } + + void CompareChangedParameterAttribute(string moduleName, CmdletMetadata oldCmdletMetadata, ParameterMetadata oldParameterMetadata, + ParameterMetadata newParameterMetadata) + { + if (oldParameterMetadata.ValidateNotNullOrEmpty != newParameterMetadata.ValidateNotNullOrEmpty) + { + diffInfo.Add(new CmdletDiffInformation() + { + ModuleName = moduleName, + CmdletName = oldCmdletMetadata.Name, + Type = ChangeType.ParameterAttributeChange, + ParameterName = newParameterMetadata.Name, + Before = new List { oldParameterMetadata.ValidateNotNullOrEmpty.ToString() }, + After = new List { newParameterMetadata.ValidateNotNullOrEmpty.ToString() }, + }); + } + } + + private void CompareCmdletsOutputChange(CmdletMetadata oldCmd, + CmdletMetadata newCmd, + string moduleName) + { + // OutputTypeChange + bool outputTypeChanged = false; + List oldOutputType = new List(); + List newOutputType = new List(); + + foreach (var outputMetadata in oldCmd.OutputTypes) + { + string oldOutputTypeName = GetSimplifiedOutputTypeName(outputMetadata); + oldOutputType.Add($"`{oldOutputTypeName}`"); + } + + foreach (var outputMetadata in newCmd.OutputTypes) + { + string newOutputTypeName = GetSimplifiedOutputTypeName(outputMetadata); + newOutputType.Add($"`{newOutputTypeName}`"); + } + + outputTypeChanged = oldOutputType.Any(x => !newOutputType.Contains(x)); + + if (outputTypeChanged) + { + diffInfo.Add(new CmdletDiffInformation() + { + ModuleName = moduleName, + CmdletName = oldCmd.Name, + Type = ChangeType.OutputTypeChange, + Before = oldOutputType, + After = newOutputType, + }); + } + } + + private void CompareParameterSetMetadata( + CmdletMetadata cmdlet, + List oldParameterSets, + List newParameterSets, + string moduleName) + { + foreach (var oldParameterSet in oldParameterSets) + { + if (oldParameterSet.Name == "__AllParameterSets") + { + continue; + } + var newSet = newParameterSets.FirstOrDefault(t => t.Name == oldParameterSet.Name); + if (newSet == null) + { + diffInfo.Add(new CmdletDiffInformation() + { + ModuleName = moduleName, + CmdletName = cmdlet.Name, + Type = ChangeType.ParameterSetRemove, + ParameterSetName = oldParameterSet.Name + }); + continue; + } + foreach (var oldParam in oldParameterSet.Parameters) + { + var newParam = newSet.Parameters.FirstOrDefault(p => p.ParameterMetadata.Name == oldParam.ParameterMetadata.Name); + if (newParam == null) + { + diffInfo.Add(new CmdletDiffInformation() + { + ModuleName = moduleName, + CmdletName = cmdlet.Name, + Type = ChangeType.ParameterSetAttributePropertyChange, + ParameterSetName = oldParameterSet.Name, + ParameterName = oldParam.ParameterMetadata.Name, + PropertyName = "ParameterRemoved" + }); + continue; + } + + if (oldParam.Position != newParam.Position) + { + diffInfo.Add(new CmdletDiffInformation() + { + ModuleName = moduleName, + CmdletName = cmdlet.Name, + Type = ChangeType.ParameterSetAttributePropertyChange, + ParameterSetName = oldParameterSet.Name, + ParameterName = oldParam.ParameterMetadata.Name, + Before = new List { oldParam.Position.ToString() }, + After = new List { newParam.Position.ToString() }, + PropertyName = "Position" + }); + } + if (oldParam.Mandatory != newParam.Mandatory) + { + diffInfo.Add(new CmdletDiffInformation() + { + ModuleName = moduleName, + CmdletName = cmdlet.Name, + Type = ChangeType.ParameterSetAttributePropertyChange, + ParameterSetName = oldParameterSet.Name, + ParameterName = oldParam.ParameterMetadata.Name, + Before = new List { oldParam.Mandatory.ToString() }, + After = new List { newParam.Mandatory.ToString() }, + PropertyName = "Mandatory" + }); + } + if (oldParam.ValueFromPipeline != newParam.ValueFromPipeline) + { + diffInfo.Add(new CmdletDiffInformation() + { + ModuleName = moduleName, + CmdletName = cmdlet.Name, + Type = ChangeType.ParameterSetAttributePropertyChange, + ParameterSetName = oldParameterSet.Name, + ParameterName = oldParam.ParameterMetadata.Name, + Before = new List { oldParam.ValueFromPipeline.ToString() }, + After = new List { newParam.ValueFromPipeline.ToString() }, + PropertyName = "ValueFromPipeline" + }); + } + if (oldParam.ValueFromPipelineByPropertyName != newParam.ValueFromPipelineByPropertyName) + { + diffInfo.Add(new CmdletDiffInformation() + { + ModuleName = moduleName, + CmdletName = cmdlet.Name, + Type = ChangeType.ParameterSetAttributePropertyChange, + ParameterSetName = oldParameterSet.Name, + ParameterName = oldParam.ParameterMetadata.Name, + Before = new List { oldParam.ValueFromPipelineByPropertyName.ToString() }, + After = new List { newParam.ValueFromPipelineByPropertyName.ToString() }, + PropertyName = "ValueFromPipelineByPropertyName" + }); + } + } + foreach (var newParam in newSet.Parameters) + { + var oldParam = oldParameterSet.Parameters.FirstOrDefault(p => p.ParameterMetadata.Name == newParam.ParameterMetadata.Name); + if (oldParam == null) + { + diffInfo.Add(new CmdletDiffInformation() + { + ModuleName = moduleName, + CmdletName = cmdlet.Name, + Type = ChangeType.ParameterSetAttributePropertyChange, + ParameterSetName = oldParameterSet.Name, + ParameterName = newParam.ParameterMetadata.Name, + PropertyName = "ParameterAdded" + }); + } + } + + } + foreach (var newSet in newParameterSets) + { + if (newSet.Name == "__AllParameterSets") + { + continue; + } + var oldSet = oldParameterSets.FirstOrDefault(t => t.Name == newSet.Name); + if (oldSet == null) + { + diffInfo.Add(new CmdletDiffInformation() + { + ModuleName = moduleName, + CmdletName = cmdlet.Name, + Type = ChangeType.ParameterSetAdd, + ParameterSetName = newSet.Name, + }); + } + } + } + public AnalysisReport GetAnalysisReport() + { + var analysisReport = new AnalysisReport(); + var reportLog = Logger.GetReportLogger(CmdletDiffIssueReportLoggerName); + if (!reportLog.Records.Any()) return analysisReport; + + foreach (var rec in reportLog.Records) + { + analysisReport.ProblemIdList.Add(rec.ProblemId); + } + + return analysisReport; + } + + public void GenerateMarkdown(string filePath) + { + var sb = new StringBuilder(); + if (diffInfo == null) + { + return; + } + for (int i = 0; i < diffInfo.Count; i++) + { + if (i == 0 || diffInfo[i].ModuleName != diffInfo[i - 1].ModuleName) + { + sb.AppendFormat("* {0}\n", diffInfo[i].ModuleName); + } + if (i == 0 || diffInfo[i].CmdletName != diffInfo[i - 1].CmdletName) + { + if (diffInfo[i].Type == ChangeType.CmdletAdd) + { + sb.AppendFormat(" * Added cmdlet `{0}`.\n", diffInfo[i].CmdletName); + } + else if (diffInfo[i].Type == ChangeType.CmdletRemove) + { + sb.AppendFormat(" * Removed cmdlet `{0}`.\n", diffInfo[i].CmdletName); + } + else + { + sb.AppendFormat(" * Modified cmdlet `{0}`:", diffInfo[i].CmdletName); + } + } + if (GetDescription(diffInfo[i]) != "") + { + sb.Append(" " + GetDescription(diffInfo[i])); + if (i < diffInfo.Count - 1 && diffInfo[i + 1].CmdletName != diffInfo[i].CmdletName) + { + sb.Append("\n"); + } + } + } + File.WriteAllText(filePath, sb.ToString()); + } + private string FormatListString(List list, Func formatter) + { + var builder = new StringBuilder(); + for (int i = 0; i < list.Count; i++) + { + builder.Append(formatter(list[i])); + if (i == list.Count - 2) + { + builder.Append(" and "); + } + else if (i != list.Count - 1) + { + builder.Append(", "); + } + } + return builder.ToString(); + } + private string GetDescription_CmdletAdd(CmdletDiffInformation info) + { + return ""; + } + private string GetDescription_CmdletRemove(CmdletDiffInformation info) + { + return ""; + } + private string GetDescription_CmdletSupportsShouldProcessChange(CmdletDiffInformation info) + { + return $"`SupportsShouldProcess` changed from {info.Before[0]} to {info.After[0]}"; + } + private string GetDescription_CmdletSupportsPagingChange(CmdletDiffInformation info) + { + return $"`SupportsPaging` changed from {info.Before[0]} to {info.After[0]}"; + } + private string GetDescription_AliasAdd(CmdletDiffInformation info) + { + var aliasString = info.After.Count() == 1 ? "alias" : "aliases"; + var aliasListString = FormatListString(info.After, t => $"`{t}`"); + return $"Added {aliasString} {aliasListString} to `{info.CmdletName}`."; + } + private string GetDescription_AliasRemove(CmdletDiffInformation info) + { + var aliasString = info.Before.Count() == 1 ? "alias" : "aliases"; + var aliasListString = FormatListString(info.Before, t => $"`{t}`"); + return $"Removed {aliasString} {aliasListString} from `{info.CmdletName}`."; + } + private string GetDescription_ParameterAdd(CmdletDiffInformation info) + { + var parameterString = info.After.Count == 1 ? "parameter" : "parameters"; + var parameterListString = FormatListString(info.After, t => $"`-{t}`"); + return $"Added {parameterString} {parameterListString}."; + } + private string GetDescription_ParameterRemove(CmdletDiffInformation info) + { + var parameterString = info.Before.Count == 1 ? "parameter" : "parameters"; + var parameterListString = FormatListString(info.Before, t => $"`-{t}`"); + return $"Removed {parameterString} {parameterListString}."; + } + private string GetDescription_ParameterAliasAdd(CmdletDiffInformation info) + { + var aliasString = info.After.Count == 1 ? "alias" : "aliases"; + var aliasListString = FormatListString(info.After, t => $"`{t}`"); + return $"Added parameter {aliasString} {aliasListString} to parameter `-{info.ParameterName}`."; + } + private string GetDescription_ParameterAliasRemove(CmdletDiffInformation info) + { + var aliasString = info.Before.Count == 1 ? "alias" : "aliases"; + var aliasListString = FormatListString(info.Before, t => $"`{t}`"); + return $"Removed parameter {aliasString} {aliasListString} from parameter `-{info.ParameterName}`."; + } + private string GetDescription_ParameterTypeChange(CmdletDiffInformation info) + { + return $"Changed the type of parameter `-{info.ParameterName}` from `{info.Before[0]}` to `{info.After[0]}`."; + } + private string GetDescription_ParameterAttributeChange(CmdletDiffInformation info) + { + return $"Parameter `-{info.ParameterName}` ValidateNotNullOrEmpty changed from {info.Before[0]} to {info.After[0]}"; + } + + private string GetDescription_ParameterSetAdd(CmdletDiffInformation info) + { + return $"Added parameter set `{info.ParameterSetName}`."; + } + private string GetDescription_ParameterSetRemove(CmdletDiffInformation info) + { + return $"Removed parameter set `{info.ParameterSetName}`."; + } + private string GetDescription_ParameterSetAttributePropertyChange(CmdletDiffInformation info) + { + if (info.PropertyName == "ParameterRemoved") + { + return $"Parameter set `{info.ParameterSetName}` removed parameter `-{info.ParameterName}`."; + } + else if (info.PropertyName == "Position") + { + return $"The `position` of parameter `{info.ParameterName}` in parameter set `{info.ParameterSetName}` changed from {info.Before[0]} to {info.After[0]}."; + } + else if (info.PropertyName == "Mandatory") + { + return $"The `mandatory` of parameter `{info.ParameterName}` in parameter set `{info.ParameterSetName}` changed from {info.Before[0]} to {info.After[0]}."; + } + else if (info.PropertyName == "ValueFromPipeline") + { + return $"The `ValueFromPipeline` of parameter `{info.ParameterName}` in parameter set `{info.ParameterSetName}` changed from {info.Before[0]} to {info.After[0]}."; + } + else if (info.PropertyName == "ValueFromPipelineByPropertyName") + { + return $"The `ValueFromPipelineByPropertyName` of parameter `{info.ParameterName}` in parameter set `{info.ParameterSetName}` changed from {info.Before[0]} to {info.After[0]}."; + } + else + { + return $"Parameter set `{info.ParameterSetName}` added parameter `-{info.ParameterName}`."; + } + } + + private string GetDescription_OutputTypeChange(CmdletDiffInformation info) + { + return $"Output type changed from {FormatListString(info.Before, t => $"`{t}`")} to {FormatListString(info.After, t => $"`{t}`")}."; + } + public string GetDescription(CmdletDiffInformation info) + { + Dictionary> mapper = new Dictionary>(); + mapper.Add(ChangeType.CmdletAdd, GetDescription_CmdletAdd); + mapper.Add(ChangeType.CmdletRemove, GetDescription_CmdletRemove); + mapper.Add(ChangeType.CmdletSupportsShouldProcessChange, GetDescription_CmdletSupportsShouldProcessChange); + mapper.Add(ChangeType.CmdletSupportsPagingChange, GetDescription_CmdletSupportsPagingChange); + mapper.Add(ChangeType.AliasAdd, GetDescription_AliasAdd); + mapper.Add(ChangeType.AliasRemove, GetDescription_AliasRemove); + mapper.Add(ChangeType.ParameterAdd, GetDescription_ParameterAdd); + mapper.Add(ChangeType.ParameterRemove, GetDescription_ParameterRemove); + mapper.Add(ChangeType.ParameterAliasAdd, GetDescription_ParameterAliasAdd); + mapper.Add(ChangeType.ParameterAliasRemove, GetDescription_ParameterAliasRemove); + mapper.Add(ChangeType.ParameterTypeChange, GetDescription_ParameterTypeChange); + mapper.Add(ChangeType.ParameterAttributeChange, GetDescription_ParameterAttributeChange); + mapper.Add(ChangeType.ParameterSetAdd, GetDescription_ParameterSetAdd); + mapper.Add(ChangeType.ParameterSetRemove, GetDescription_ParameterSetRemove); + mapper.Add(ChangeType.ParameterSetAttributePropertyChange, GetDescription_ParameterSetAttributePropertyChange); + mapper.Add(ChangeType.OutputTypeChange, GetDescription_OutputTypeChange); + + if (mapper.ContainsKey(info.Type)) + { + return mapper[info.Type](info); + } + return ""; + } + + public void GenerateCsv(string filePath) + { + var csv = new StringBuilder(); + csv.AppendLine("\"ModuleName\",\"CmdletName\",\"ChangeType\",\"ParameterSetName\",\"ParameterName\",\"PropertyName\",\"Before\",\"After\""); + if (diffInfo == null) + { + return; + } + foreach (var info in diffInfo) + { + string newLine = string.Format("{0},{1},{2},{3},{4},{5},{6},{7}", info.ModuleName, info.CmdletName, info.Type, info.ParameterSetName, info.ParameterName, info.PropertyName, info.Before == null ? "" : string.Join("; ", info.Before), info.After == null ? "" : string.Join("; ", info.After)); + csv.AppendLine(newLine); + } + File.WriteAllText(filePath, csv.ToString()); + } + string GetSimplifiedParameterTypeName(ParameterMetadata parameterMetadata) + { + string parameterTypeName = parameterMetadata.Type.Name; + if (parameterTypeName.StartsWith(parameterMetadata.Type.Namespace + ".")) + { + parameterTypeName = parameterTypeName.Substring(parameterMetadata.Type.Namespace.Length + 1); + } + return parameterTypeName; + } + string GetSimplifiedOutputTypeName(OutputMetadata outputMetadata) + { + string outputTypeName = outputMetadata.Type.Name; + if (outputTypeName.StartsWith(outputMetadata.Type.Namespace + ".")) + { + outputTypeName = outputTypeName.Substring(outputMetadata.Type.Namespace.Length + 1); + } + return outputTypeName; + } + } +} \ No newline at end of file diff --git a/tools/StaticAnalysis/CmdletDiffAnalyzer/CmdletDiffInfomation.cs b/tools/StaticAnalysis/CmdletDiffAnalyzer/CmdletDiffInfomation.cs new file mode 100644 index 000000000000..f6ddfb2c6f77 --- /dev/null +++ b/tools/StaticAnalysis/CmdletDiffAnalyzer/CmdletDiffInfomation.cs @@ -0,0 +1,49 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System.Collections.Generic; + +namespace StaticAnalysis.CmdletDiffAnalyzer +{ + public enum ChangeType + { + CmdletAdd, + CmdletRemove, + CmdletSupportsShouldProcessChange, + CmdletSupportsPagingChange, + AliasAdd, + AliasRemove, + ParameterAdd, + ParameterRemove, + ParameterAliasAdd, + ParameterAliasRemove, + ParameterTypeChange, + ParameterAttributeChange, + ParameterSetAdd, + ParameterSetRemove, + ParameterSetAttributePropertyChange, + OutputTypeChange + } + public class CmdletDiffInformation + { + public string ModuleName { get; set; } + public string CmdletName { get; set; } + public ChangeType Type { get; set; } + public string ParameterSetName { get; set; } + public string ParameterName { get; set;} + public List Before { get; set; } + public List After { get; set; } + public string PropertyName { get; set; } + } +} \ No newline at end of file diff --git a/tools/StaticAnalysis/CollectStaticAnalysisPipelineResult.ps1 b/tools/StaticAnalysis/CollectStaticAnalysisPipelineResult.ps1 index 45a183747e6a..52e5ad274c69 100644 --- a/tools/StaticAnalysis/CollectStaticAnalysisPipelineResult.ps1 +++ b/tools/StaticAnalysis/CollectStaticAnalysisPipelineResult.ps1 @@ -15,36 +15,30 @@ Param( [String] - $StaticAnalysisOutputDirectory='artifacts/StaticAnalysisResults' + $StaticAnalysisOutputDirectory = 'artifacts/StaticAnalysisResults' ) $ArtifactPipelineInfoFolder = (Get-Content "$PSScriptRoot/../../.ci-config.json" | ConvertFrom-Json).artifactPipelineInfoFolder $ArtifactPipelineInfoFolder = "$PSScriptRoot/../../$ArtifactPipelineInfoFolder" -If ($IsWindows) -{ +If ($IsWindows) { $OS = "Windows" } -ElseIf ($IsLinux) -{ +ElseIf ($IsLinux) { $OS = "Linux" } -ElseIf ($IsMacOS) -{ +ElseIf ($IsMacOS) { $OS = "MacOS" } -Else -{ +Else { $OS = "Others" } $Platform = "$($Env:PowerShellPlatform) - $OS" $Template = Get-Content "$ArtifactPipelineInfoFolder/PipelineResult.json" | ConvertFrom-Json $DependencyStepList = $Template | Get-Member -MemberType NoteProperty | Select-Object -ExpandProperty Name | Where-Object { $_ -Ne "build" -And $_ -Ne "test" } -ForEach ($Step In $DependencyStepList) -{ - If ($Template.$Step.Details.Length -Ne 0) - { +ForEach ($Step In $DependencyStepList) { + If ($Template.$Step.Details.Length -Ne 0) { $Template.$Step.Details[0] | Add-Member -NotePropertyName Platform -NotePropertyValue $Platform -Force } } @@ -70,78 +64,92 @@ $Steps = @( PhaseName = "file-change" IssuePath = "$StaticAnalysisOutputDirectory/FileChangeIssue.csv" } + @{ + PhaseName = "cmdlet-diff" + IssuePath = "$StaticAnalysisOutputDirectory/CmdletChangeResult.md" + } ) -ForEach ($Step In $Steps) -{ +ForEach ($Step In $Steps) { $PhaseName = $Step.PhaseName $IssuePath = $Step.IssuePath $Details = $Template.$PhaseName.Details - If ($Details.Length -Ne 0) - { + If ($Details.Length -Ne 0) { $Details = $Details[0] - If (Test-Path -Path $IssuePath) - { + If ($PhaseName -eq "cmdlet-diff") { + $content = Get-Content -Path $IssuePath + $markdownContent = @{} + foreach ($line in $content) { + # Check if the line starts with an asterisk followed by a space + if ($line -match '^\*\s') { + $title = $line -replace '^\*\s' + $contentArray = @() + for ($i = $content.IndexOf($line) + 1; $i -lt $content.Count; $i++) { + if ($content[$i] -match '^\*\s') { + break + } + else { + $contentArray += $content[$i] + } + } + $markdownContent.Add($title, $contentArray) + } + } + foreach ($moduleInfo in $Details.Modules) { + $moduleInfo.Status = "Succeeded" + if ($markdownContent.ContainsKey($moduleInfo.Module)) { + $moduleInfo.Content = $markdownContent[$moduleInfo.Module] -join "
" + } + } + continue; + } + If (Test-Path -Path $IssuePath) { $Issues = Get-Content -Path $IssuePath | ConvertFrom-Csv } - Else - { + Else { $Issues = @() } - ForEach ($ModuleInfo In $Details.Modules) - { + ForEach ($ModuleInfo In $Details.Modules) { $ModuleName = $ModuleInfo.Module $ErrorIssues = $Issues | Where-Object { $_.Module -Eq $ModuleName -And $_.Severity -Lt 2 } $WaringIssues = $Issues | Where-Object { $_.Module -Eq $ModuleName -And $_.Severity -Ge 2 } - If ($ErrorIssues.Length -Eq 0) - { - If ($WaringIssues.Length -Eq 0) - { + If ($ErrorIssues.Length -Eq 0) { + If ($WaringIssues.Length -Eq 0) { $ModuleInfo.Status = "Succeeded" } - Else - { + Else { $ModuleInfo.Status = "Warning" } } - Else - { + Else { $ModuleInfo.Status = "Failed" } $MatchedIssues = $Issues | Where-Object { $_.Module -Eq $ModuleName } - If ($MatchedIssues.Length -Ne 0) - { + If ($MatchedIssues.Length -Ne 0) { #Region generate table head of each step $NormalSteps = [System.Collections.Generic.HashSet[String]]@("breaking-change", "help", "signature", "file-change") - If ($NormalSteps.Contains($PhaseName)) - { + If ($NormalSteps.Contains($PhaseName)) { $Content = "|Type|Cmdlet|Description|Remediation|`n|---|---|---|---|`n" } - ElseIf ($PhaseName -Eq "help-example") - { + ElseIf ($PhaseName -Eq "help-example") { $Content = "|Type|Cmdlet|Example|Line|RuleName|Description|Extent|Remediation|`n|---|---|---|---|---|---|---|---|`n" } #EndRegion - ForEach ($Issue In $MatchedIssues) - { - If ($Issue.Severity -Lt 2) - { + ForEach ($Issue In $MatchedIssues) { + If ($Issue.Severity -Lt 2) { $ErrorTypeEmoji = "❌" } - Else - { + Else { $ErrorTypeEmoji = "⚠️" } #Region generate table content of each step - If ($NormalSteps.Contains($PhaseName)) - { + If ($NormalSteps.Contains($PhaseName)) { $Content += "|$ErrorTypeEmoji|$($Issue.Target)|$($Issue.Description)|$($Issue.Remediation)|`n" } - ElseIf ($PhaseName -Eq "help-example") - { + ElseIf ($PhaseName -Eq "help-example") { $Content += "|$ErrorTypeEmoji|$($Issue.Target)|$($Issue.Example)|$($Issue.Line)|$($Issue.RuleName)|$($Issue.Description)|$($Issue.Extent)|$($Issue.Remediation)|`n" } #EndRegion diff --git a/tools/StaticAnalysis/Exceptions/Az.Compute/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Compute/SignatureIssues.csv index a490a9a0d70c..060e686c6e43 100644 --- a/tools/StaticAnalysis/Exceptions/Az.Compute/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.Compute/SignatureIssues.csv @@ -156,3 +156,4 @@ "Az.Compute","Get-AzGalleryApplication","Get-AzGalleryApplication","2","8200","Get-AzGalleryApplication changes the confirm impact. Please ensure that the change in ConfirmImpact is justified","Verify that ConfirmImpact is changed appropriately by the cmdlet. It is very rare for a cmdlet to change the ConfirmImpact." "Az.Compute","Get-AzGalleryApplicationVersion","Get-AzGalleryApplicationVersion","2","8010","Get-AzGalleryApplicationVersion Changes the ConfirmImpact but does not set the SupportsShouldProcess property to true in the cmdlet attribute.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "Az.Compute","Get-AzGalleryApplicationVersion","Get-AzGalleryApplicationVersion","2","8200","Get-AzGalleryApplicationVersion changes the confirm impact. Please ensure that the change in ConfirmImpact is justified","Verify that ConfirmImpact is changed appropriately by the cmdlet. It is very rare for a cmdlet to change the ConfirmImpact." +"Az.Compute","Microsoft.Azure.Commands.Compute.Automation.NewAzureRmDiskConfigCommand","New-AzDiskConfig","1","8410","Parameter PerformancePlus of cmdlet New-AzDiskConfig does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." diff --git a/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv index 40e394f238c0..45044844c308 100644 --- a/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv @@ -428,3 +428,4 @@ "Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayPolicyGroupCommand","New-AzVirtualNetworkGatewayPolicyGroup","1","8100","New-AzVirtualNetworkGatewayPolicyGroup Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayPolicyGroupMemberCommand","New-AzVirtualNetworkGatewayPolicyGroupMember","1","8100","New-AzVirtualNetworkGatewayPolicyGroupMember Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureVpnClientConnectionConfigurationCommand","New-AzVpnClientConnectionConfiguration","1","8100","New-AzVpnClientConnectionConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Az.Network","Microsoft.Azure.Commands.Network.NewAzureFirewallPolicySNATCommand","New-AzFirewallPolicySnat","1","8100","New-AzFirewallPolicySnat Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" diff --git a/tools/StaticAnalysis/Program.cs b/tools/StaticAnalysis/Program.cs index 4476fef0aca4..e19dc88e3d64 100644 --- a/tools/StaticAnalysis/Program.cs +++ b/tools/StaticAnalysis/Program.cs @@ -139,6 +139,10 @@ public static void Main(string[] args) { Analyzers.Add(new SignatureVerifier.SignatureVerifier()); } + if (analyzerName.ToLower().Equals("cmdlet-diff")) + { + Analyzers.Add(new CmdletDiffAnalyzer.CmdletDiffAnalyzer()); + } if (analyzerName.ToLower().Equals("help")) { Analyzers.Add(new HelpAnalyzer.HelpAnalyzer()); @@ -158,6 +162,7 @@ public static void Main(string[] args) Analyzers.Add(new BreakingChangeAnalyzer.BreakingChangeAnalyzer()); Analyzers.Add(new DependencyAnalyzer.DependencyAnalyzer()); Analyzers.Add(new SignatureVerifier.SignatureVerifier()); + Analyzers.Add(new CmdletDiffAnalyzer.CmdletDiffAnalyzer()); Analyzers.Add(new HelpAnalyzer.HelpAnalyzer()); Analyzers.Add(new UXMetadataAnalyzer.UXMetadataAnalyzer()); needToCheckIssue = true; diff --git a/tools/SyncDocsToMicrosoftDocsOrg.ps1 b/tools/SyncDocsToMicrosoftDocsOrg.ps1 new file mode 100644 index 000000000000..71f7d934b172 --- /dev/null +++ b/tools/SyncDocsToMicrosoftDocsOrg.ps1 @@ -0,0 +1,64 @@ +# Sync doc from Azure/azure-powershell to MicrosoftDocs/azure-docs-powershell +[CmdletBinding()] +param( + [Parameter()] + [string]$RepoName = "azure-docs-powershell", + [Parameter()] + [string]$OrgName = "MicrosoftDocs", + [Parameter()] + [string]$BranchName, + [Parameter()] + [string]$WorkSpace, + [Parameter()] + [string]$GithubToken +) + +# The absolute location of repos +$WorkSpace = (Resolve-Path (Join-Path $PSScriptRoot "../../")).Path +$RepoCloneLink = "https://github.com/$OrgName/$RepoName.git" +$Config = Get-Content (Join-Path $PSScriptRoot "../.azure-pipelines/SyncDocsConfig.json") | ConvertFrom-Json +$TmpFolder = Resolve-Path (New-Item -ItemType Directory -Path tmp) +# Get az version to match target folder +$AzVersion = (Import-PowerShellDataFile -Path "$PSScriptRoot\Az\Az.psd1").ModuleVersion + +foreach ($SyncPath in $Config.SyncPath) +{ + Write-Host "Back up $SyncPath from main branch." + Copy-Item -Path $SyncPath -Destination $TmpFolder -Recurse -Force +} + +$SyncFile = Split-Path $SyncPath -Leaf + +git config user.email "65331932+azure-powershell-bot@users.noreply.github.com" +git config user.name "azure-powershell-bot" + +cd $WorkSpace +git clone $RepoCloneLink +cd $RepoName +git checkout -b $BranchName + + +foreach ($SyncPath in $Config.SyncPath) +{ + $Date = Get-Date -Format MM/dd/yyyy + $Header = @" +--- +description: Learn about upcoming breaking changes to the Azure Az PowerShell module +ms.custom: devx-track-azurepowershell +ms.date: $Date +ms.devlang: powershell +ms.service: azure-powershell +ms.topic: conceptual +title: Upcoming breaking changes in Azure PowerShell +--- + +"@ + + $Header + (Get-Content $TmpFolder\$SyncFile -Raw) | Set-Content $TmpFolder\$SyncFile + Copy-Item $TmpFolder\$SyncFile (Join-Path $WorkSpace $RepoName/docs-conceptual/azps-$AzVersion) -Force + git add (Join-Path $WorkSpace $RepoName/docs-conceptual/azps-$AzVersion) +} + +git commit -m "Sync upcoming breaking changes doc from azure-powershell repo." +git remote set-url origin "https://$GithubToken@github.com/$OrgName/$RepoName.git" +git push origin "$BranchName" --force diff --git a/tools/Tools.Common/SerializedCmdlets/Az.CustomProviders.json b/tools/Tools.Common/SerializedCmdlets/Az.CustomProviders.json index 983f83bf2a58..9bca32bd2c5c 100644 --- a/tools/Tools.Common/SerializedCmdlets/Az.CustomProviders.json +++ b/tools/Tools.Common/SerializedCmdlets/Az.CustomProviders.json @@ -7,7 +7,7 @@ "Name": "Get-AzCustomProvider", "ClassName": "Get-AzCustomProvider", "SupportsShouldProcess": false, - "ConfirmImpact": 2, + "ConfirmImpact": 0, "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "List1", @@ -16,7 +16,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpManifest", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpManifest, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpManifest, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Action": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpActionRouteDefinition[]", "ResourceType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpResourceTypeRouteDefinition[]", @@ -42,7 +42,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -60,7 +60,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -78,7 +78,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -96,7 +96,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.ICustomProvidersIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.ICustomProvidersIdentity, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.ICustomProvidersIdentity, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AssociationName": "System.String", "Id": "System.String", @@ -124,7 +124,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -142,7 +142,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -160,7 +160,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -178,7 +178,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -196,7 +196,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -214,7 +214,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -232,7 +232,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -258,7 +258,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -282,7 +282,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -306,7 +306,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -333,7 +333,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -357,7 +357,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -381,7 +381,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -405,7 +405,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -429,7 +429,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -453,7 +453,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -477,7 +477,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -506,7 +506,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -530,7 +530,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -557,7 +557,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -581,7 +581,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -605,7 +605,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -629,7 +629,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -653,7 +653,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -677,7 +677,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -701,7 +701,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -730,7 +730,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -757,7 +757,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -781,7 +781,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -805,7 +805,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -829,7 +829,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -853,7 +853,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -877,7 +877,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -901,7 +901,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -930,7 +930,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.ICustomProvidersIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.ICustomProvidersIdentity, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.ICustomProvidersIdentity, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AssociationName": "System.String", "Id": "System.String", @@ -964,7 +964,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -988,7 +988,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1012,7 +1012,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1036,7 +1036,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1060,7 +1060,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1084,7 +1084,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1108,7 +1108,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1140,7 +1140,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1164,7 +1164,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1188,7 +1188,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1212,7 +1212,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1236,7 +1236,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1260,7 +1260,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1284,7 +1284,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1312,7 +1312,7 @@ "Name": "Get-AzCustomProviderAssociation", "ClassName": "Get-AzCustomProviderAssociation", "SupportsShouldProcess": false, - "ConfirmImpact": 2, + "ConfirmImpact": 0, "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "List", @@ -1321,7 +1321,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.IAssociation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.IAssociation, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.IAssociation, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Support.ProvisioningState]", "Id": "System.String", @@ -1348,7 +1348,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1366,7 +1366,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1384,7 +1384,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.ICustomProvidersIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.ICustomProvidersIdentity, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.ICustomProvidersIdentity, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AssociationName": "System.String", "Id": "System.String", @@ -1412,7 +1412,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1430,7 +1430,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1448,7 +1448,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1466,7 +1466,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1484,7 +1484,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1502,7 +1502,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1520,7 +1520,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1546,7 +1546,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1570,7 +1570,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1597,7 +1597,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1621,7 +1621,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1645,7 +1645,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1669,7 +1669,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1693,7 +1693,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1717,7 +1717,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1741,7 +1741,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1770,7 +1770,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1797,7 +1797,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1821,7 +1821,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1845,7 +1845,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1869,7 +1869,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1893,7 +1893,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1917,7 +1917,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1941,7 +1941,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1970,7 +1970,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.ICustomProvidersIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.ICustomProvidersIdentity, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.ICustomProvidersIdentity, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AssociationName": "System.String", "Id": "System.String", @@ -2004,7 +2004,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2028,7 +2028,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2052,7 +2052,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2076,7 +2076,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2100,7 +2100,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2124,7 +2124,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2148,7 +2148,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2180,7 +2180,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2204,7 +2204,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2228,7 +2228,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2252,7 +2252,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2276,7 +2276,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2300,7 +2300,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2324,7 +2324,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2351,7 +2351,7 @@ "NounName": "AzCustomProvider", "Name": "New-AzCustomProvider", "ClassName": "New-AzCustomProvider", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -2361,7 +2361,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpManifest", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpManifest, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpManifest, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Action": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpActionRouteDefinition[]", "ResourceType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpResourceTypeRouteDefinition[]", @@ -2387,7 +2387,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2405,7 +2405,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2423,7 +2423,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2441,7 +2441,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2459,7 +2459,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpActionRouteDefinition[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpActionRouteDefinition[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpActionRouteDefinition[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpActionRouteDefinition", "GenericTypeArguments": [], @@ -2477,7 +2477,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpResourceTypeRouteDefinition[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpResourceTypeRouteDefinition[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpResourceTypeRouteDefinition[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpResourceTypeRouteDefinition", "GenericTypeArguments": [], @@ -2495,7 +2495,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2513,7 +2513,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpValidations[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpValidations[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpValidations[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpValidations", "GenericTypeArguments": [], @@ -2534,7 +2534,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2552,7 +2552,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2570,7 +2570,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2588,7 +2588,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2606,7 +2606,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2624,7 +2624,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2642,7 +2642,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2660,7 +2660,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2678,7 +2678,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2704,7 +2704,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2728,7 +2728,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2752,7 +2752,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2776,7 +2776,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2800,7 +2800,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpActionRouteDefinition[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpActionRouteDefinition[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpActionRouteDefinition[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpActionRouteDefinition", "GenericTypeArguments": [], @@ -2824,7 +2824,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpResourceTypeRouteDefinition[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpResourceTypeRouteDefinition[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpResourceTypeRouteDefinition[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpResourceTypeRouteDefinition", "GenericTypeArguments": [], @@ -2848,7 +2848,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2872,7 +2872,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpValidations[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpValidations[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpValidations[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpValidations", "GenericTypeArguments": [], @@ -2899,7 +2899,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2923,7 +2923,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2947,7 +2947,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2971,7 +2971,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2995,7 +2995,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3019,7 +3019,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3043,7 +3043,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3067,7 +3067,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3091,7 +3091,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3118,7 +3118,7 @@ "NounName": "AzCustomProviderAssociation", "Name": "New-AzCustomProviderAssociation", "ClassName": "New-AzCustomProviderAssociation", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -3128,7 +3128,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.IAssociation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.IAssociation, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.IAssociation, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Support.ProvisioningState]", "Id": "System.String", @@ -3155,7 +3155,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3173,7 +3173,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3191,7 +3191,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3212,7 +3212,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3230,7 +3230,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3248,7 +3248,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3266,7 +3266,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3284,7 +3284,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3302,7 +3302,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3320,7 +3320,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3338,7 +3338,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3356,7 +3356,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3382,7 +3382,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3406,7 +3406,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3430,7 +3430,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3457,7 +3457,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3481,7 +3481,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3505,7 +3505,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3529,7 +3529,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3553,7 +3553,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3577,7 +3577,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3601,7 +3601,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3625,7 +3625,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3649,7 +3649,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3676,7 +3676,7 @@ "NounName": "AzCustomProvider", "Name": "Remove-AzCustomProvider", "ClassName": "Remove-AzCustomProvider", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -3686,7 +3686,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3707,7 +3707,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3725,7 +3725,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3743,7 +3743,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3761,7 +3761,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.ICustomProvidersIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.ICustomProvidersIdentity, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.ICustomProvidersIdentity, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AssociationName": "System.String", "Id": "System.String", @@ -3789,7 +3789,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3807,7 +3807,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3825,7 +3825,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3843,7 +3843,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3861,7 +3861,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3879,7 +3879,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3897,7 +3897,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3915,7 +3915,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3933,7 +3933,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3951,7 +3951,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3977,7 +3977,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4001,7 +4001,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4025,7 +4025,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4052,7 +4052,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4076,7 +4076,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4100,7 +4100,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4124,7 +4124,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4148,7 +4148,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4172,7 +4172,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4196,7 +4196,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4220,7 +4220,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4244,7 +4244,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4268,7 +4268,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4297,7 +4297,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.ICustomProvidersIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.ICustomProvidersIdentity, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.ICustomProvidersIdentity, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AssociationName": "System.String", "Id": "System.String", @@ -4331,7 +4331,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4355,7 +4355,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4379,7 +4379,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4403,7 +4403,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4427,7 +4427,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4451,7 +4451,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4475,7 +4475,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4499,7 +4499,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4523,7 +4523,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4547,7 +4547,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4579,7 +4579,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4603,7 +4603,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4627,7 +4627,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4651,7 +4651,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4675,7 +4675,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4699,7 +4699,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4723,7 +4723,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4747,7 +4747,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4771,7 +4771,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4795,7 +4795,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4822,7 +4822,7 @@ "NounName": "AzCustomProviderAssociation", "Name": "Remove-AzCustomProviderAssociation", "ClassName": "Remove-AzCustomProviderAssociation", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -4832,7 +4832,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4853,7 +4853,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4871,7 +4871,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4889,7 +4889,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.ICustomProvidersIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.ICustomProvidersIdentity, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.ICustomProvidersIdentity, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AssociationName": "System.String", "Id": "System.String", @@ -4917,7 +4917,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4935,7 +4935,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4953,7 +4953,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4971,7 +4971,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4989,7 +4989,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -5007,7 +5007,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5025,7 +5025,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5043,7 +5043,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5061,7 +5061,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5079,7 +5079,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5105,7 +5105,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5129,7 +5129,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5156,7 +5156,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5180,7 +5180,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5204,7 +5204,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5228,7 +5228,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -5252,7 +5252,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -5276,7 +5276,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5300,7 +5300,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5324,7 +5324,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5348,7 +5348,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5372,7 +5372,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5401,7 +5401,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.ICustomProvidersIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.ICustomProvidersIdentity, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.ICustomProvidersIdentity, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AssociationName": "System.String", "Id": "System.String", @@ -5435,7 +5435,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5459,7 +5459,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5483,7 +5483,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5507,7 +5507,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -5531,7 +5531,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -5555,7 +5555,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5579,7 +5579,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5603,7 +5603,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5627,7 +5627,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5651,7 +5651,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5683,7 +5683,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5707,7 +5707,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5731,7 +5731,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5755,7 +5755,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -5779,7 +5779,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -5803,7 +5803,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5827,7 +5827,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5851,7 +5851,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5875,7 +5875,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5899,7 +5899,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5926,7 +5926,7 @@ "NounName": "AzCustomProvider", "Name": "Update-AzCustomProvider", "ClassName": "Update-AzCustomProvider", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -5936,7 +5936,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpManifest", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpManifest, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpManifest, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Action": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpActionRouteDefinition[]", "ResourceType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpResourceTypeRouteDefinition[]", @@ -5962,7 +5962,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5980,7 +5980,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5998,7 +5998,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6016,7 +6016,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.ICustomProvidersIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.ICustomProvidersIdentity, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.ICustomProvidersIdentity, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AssociationName": "System.String", "Id": "System.String", @@ -6041,7 +6041,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6062,7 +6062,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6080,7 +6080,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6098,7 +6098,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -6116,7 +6116,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -6134,7 +6134,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6152,7 +6152,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6170,7 +6170,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6196,7 +6196,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6220,7 +6220,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6244,7 +6244,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6268,7 +6268,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6295,7 +6295,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6319,7 +6319,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6343,7 +6343,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -6367,7 +6367,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -6391,7 +6391,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6415,7 +6415,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6439,7 +6439,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6468,7 +6468,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.ICustomProvidersIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.ICustomProvidersIdentity, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.ICustomProvidersIdentity, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AssociationName": "System.String", "Id": "System.String", @@ -6499,7 +6499,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6526,7 +6526,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6550,7 +6550,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6574,7 +6574,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -6598,7 +6598,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -6622,7 +6622,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6646,7 +6646,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6670,7 +6670,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6699,7 +6699,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6726,7 +6726,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6750,7 +6750,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6774,7 +6774,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -6798,7 +6798,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -6822,7 +6822,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6846,7 +6846,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6870,7 +6870,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7037,7 +7037,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpActionRouteDefinition[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpActionRouteDefinition[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpActionRouteDefinition[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpActionRouteDefinition[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpActionRouteDefinition", "GenericTypeArguments": [], @@ -7047,7 +7047,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpActionRouteDefinition": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpActionRouteDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpActionRouteDefinition, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpActionRouteDefinition, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RoutingType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Support.ActionRouting]" }, @@ -7059,7 +7059,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Support.ActionRouting]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Support.ActionRouting]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Support.ActionRouting, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Support.ActionRouting, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -7071,7 +7071,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Support.ActionRouting": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Support.ActionRouting", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Support.ActionRouting, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Support.ActionRouting, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7143,7 +7143,7 @@ "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]", - "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -7155,7 +7155,7 @@ "System.Management.Automation.CompletionResult": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.CompletionResult", - "AssemblyQualifiedName": "System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7165,7 +7165,7 @@ "System.Type": { "Namespace": "System", "Name": "System.Type", - "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7175,7 +7175,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpResourceTypeRouteDefinition[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpResourceTypeRouteDefinition[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpResourceTypeRouteDefinition[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpResourceTypeRouteDefinition[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpResourceTypeRouteDefinition", "GenericTypeArguments": [], @@ -7185,7 +7185,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpResourceTypeRouteDefinition": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpResourceTypeRouteDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpResourceTypeRouteDefinition, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpResourceTypeRouteDefinition, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "RoutingType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Support.ResourceTypeRouting]" }, @@ -7197,7 +7197,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Support.ResourceTypeRouting]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Support.ResourceTypeRouting]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Support.ResourceTypeRouting, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Support.ResourceTypeRouting, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -7209,7 +7209,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Support.ResourceTypeRouting": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Support.ResourceTypeRouting", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Support.ResourceTypeRouting, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Support.ResourceTypeRouting, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7281,7 +7281,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpValidations[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpValidations[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpValidations[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpValidations[], Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpValidations", "GenericTypeArguments": [], @@ -7291,7 +7291,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpValidations": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpValidations", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpValidations, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Models.Api20180901Preview.ICustomRpValidations, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ValidationType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Support.ValidationType]", "Specification": "System.String" @@ -7304,7 +7304,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Support.ValidationType]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Support.ValidationType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Support.ValidationType, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Support.ValidationType, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -7316,7 +7316,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Support.ValidationType": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Support.ValidationType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Support.ValidationType, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Support.ValidationType, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7388,7 +7388,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Support.ProvisioningState]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Support.ProvisioningState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Support.ProvisioningState, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Support.ProvisioningState, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -7400,7 +7400,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Support.ProvisioningState": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Support.ProvisioningState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Support.ProvisioningState, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Support.ProvisioningState, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7472,7 +7472,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.CustomProviders.Runtime.SendAsyncStep, Az.CustomProviders.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Target": "System.Object", "Method": "System.Reflection.MethodInfo" @@ -7614,7 +7614,7 @@ "System.Object": { "Namespace": "System", "Name": "System.Object", - "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7624,7 +7624,7 @@ "System.Reflection.MethodInfo": { "Namespace": "System.Reflection", "Name": "System.Reflection.MethodInfo", - "AssemblyQualifiedName": "System.Reflection.MethodInfo, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Reflection.MethodInfo, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7634,7 +7634,7 @@ "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]": { "Namespace": "System.Threading.Tasks", "Name": "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]", - "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[System.Net.Http.HttpResponseMessage, System.Net.Http, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[System.Net.Http.HttpResponseMessage, System.Net.Http, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -7646,7 +7646,7 @@ "System.Net.Http.HttpResponseMessage": { "Namespace": "System.Net.Http", "Name": "System.Net.Http.HttpResponseMessage", - "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7656,7 +7656,7 @@ "System.IAsyncResult": { "Namespace": "System", "Name": "System.IAsyncResult", - "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7666,7 +7666,7 @@ "System.Void": { "Namespace": "System", "Name": "System.Void", - "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7676,7 +7676,7 @@ "System.Delegate[]": { "Namespace": "System", "Name": "System.Delegate[]", - "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.Delegate", "GenericTypeArguments": [], @@ -7686,7 +7686,7 @@ "System.Delegate": { "Namespace": "System", "Name": "System.Delegate", - "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], diff --git a/tools/Tools.Common/SerializedCmdlets/Az.GuestConfiguration.json b/tools/Tools.Common/SerializedCmdlets/Az.GuestConfiguration.json index 3546700cc17e..af9c7e46fa8a 100644 --- a/tools/Tools.Common/SerializedCmdlets/Az.GuestConfiguration.json +++ b/tools/Tools.Common/SerializedCmdlets/Az.GuestConfiguration.json @@ -3,75 +3,70 @@ "Cmdlets": [ { "VerbName": "Get", - "NounName": "AzVMGuestPolicyStatus", - "Name": "Get-AzVMGuestPolicyStatus", - "ClassName": "Microsoft.Azure.Commands.GuestConfiguration.Cmdlets.GetAzVMGuestPolicyStatus", + "NounName": "AzGuestConfigurationAssignment", + "Name": "Get-AzGuestConfigurationAssignment", + "ClassName": "Get-AzGuestConfigurationAssignment", "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "HasForceSwitch": null, + "ConfirmImpact": 0, + "HasForceSwitch": true, "SupportsPaging": false, - "DefaultParameterSetName": "VmScope", + "DefaultParameterSetName": "List", "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.Commands.GuestConfiguration.Models", - "Name": "Microsoft.Azure.Commands.GuestConfiguration.Models.PolicyStatusDetailed", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.GuestConfiguration.Models.PolicyStatusDetailed, Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration, Version=0.10.8.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IGuestConfigurationAssignment", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IGuestConfigurationAssignment, Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "Configuration": "Microsoft.Azure.Commands.GuestConfiguration.Models.PolicyData+ConfigurationInfo", - "VM": "Microsoft.Azure.Commands.GuestConfiguration.Models.PolicyStatus+VMInfo", - "ComplianceReasons": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.GuestConfiguration.Models.PolicyStatusDetailed+ComplianceReasonDetails]", - "StartTime": "System.Nullable`1[System.DateTime]", - "EndTime": "System.Nullable`1[System.DateTime]", - "PolicyDisplayName": "System.String", - "ComplianceStatus": "System.String", - "ReportId": "System.String" + "LatestAssignmentReportResource": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IAssignmentReportResource[]", + "GuestConfigurationProtectedParameter": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IConfigurationParameter[]", + "GuestConfigurationParameter": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IConfigurationParameter[]", + "VmssVMList": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IVmssvmInfo[]", + "ConfigurationSettingActionAfterReboot": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ActionAfterReboot]", + "GuestConfigurationAssignmentType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.AssignmentType]", + "ComplianceStatus": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ComplianceStatus]", + "LatestAssignmentReportComplianceStatus": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ComplianceStatus]", + "ConfigurationSettingConfigurationMode": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ConfigurationMode]", + "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.CreatedByType]", + "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.CreatedByType]", + "GuestConfigurationKind": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.Kind]", + "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ProvisioningState]", + "LatestAssignmentReportOperationType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.Type]", + "ConfigurationSettingAllowModuleOverwrite": "System.Nullable`1[System.Boolean]", + "ConfigurationSettingRebootIfNeeded": "System.Nullable`1[System.Boolean]", + "LatestAssignmentReportStartTime": "System.Nullable`1[System.DateTime]", + "LatestAssignmentReportEndTime": "System.Nullable`1[System.DateTime]", + "SystemDataLastModifiedAt": "System.Nullable`1[System.DateTime]", + "SystemDataCreatedAt": "System.Nullable`1[System.DateTime]", + "LastComplianceStatusChecked": "System.Nullable`1[System.DateTime]", + "ConfigurationSettingConfigurationModeFrequencyMin": "System.Nullable`1[System.Single]", + "ConfigurationSettingRefreshFrequencyMin": "System.Nullable`1[System.Single]", + "VMUuid": "System.String", + "VMId": "System.String", + "TargetResourceId": "System.String", + "AssignmentName": "System.String", + "SystemDataLastModifiedBy": "System.String", + "ConfigurationName": "System.String", + "SystemDataCreatedBy": "System.String", + "Source": "System.String", + "GuestConfigurationVersion": "System.String", + "ResourceType": "System.String", + "PropertiesLatestAssignmentReportId": "System.String", + "ParameterHash": "System.String", + "LatestReportId": "System.String", + "Context": "System.String", + "GuestConfigurationContentHash": "System.String", + "GuestConfigurationContentType": "System.String", + "LatestAssignmentReportId": "System.String", + "GuestConfigurationContentUri": "System.String", + "GuestConfigurationName": "System.String", + "ConfigurationVersion": "System.String", + "AssignmentHash": "System.String" }, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "", - "Parameters": [ - { - "Name": "gcrpReport", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "gcPolicyAssignment", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": null - } - ] + "Methods": [], + "Constructors": [] }, "ParameterSets": [ "__AllParameterSets" @@ -80,12 +75,14 @@ ], "Parameters": [ { - "Name": "ResourceGroupName", - "AliasList": [], + "Name": "Name", + "AliasList": [ + "GuestConfigurationAssignmentName" + ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -95,15 +92,15 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "VMName", + "Name": "ResourceGroupName", "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -113,15 +110,33 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false }, { - "Name": "InitiativeName", + "Name": "VMName", "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -131,15 +146,15 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "InitiativeId", + "Name": "MachineName", "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -149,15 +164,15 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "ReportId", + "Name": "VmssName", "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -167,34 +182,148 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { "Name": "DefaultProfile", "AliasList": [ - "AzContext", - "AzureRmContext", + "AzureRMContext", "AzureCredential" ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - }, + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Clear", - "Parameters": [], - "ReturnType": "System.Void" - } - ], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -205,16 +334,18 @@ ], "ParameterSets": [ { - "Name": "VmScope", + "Name": "Get2", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", - "AliasList": [], + "Name": "Name", + "AliasList": [ + "GuestConfigurationAssignmentName" + ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -224,21 +355,21 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, - "Position": 0, + "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VMName", + "Name": "ResourceGroupName", "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -248,40 +379,25 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, - "Position": 1, + "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "VmssName", + "AliasList": [], "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - }, + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Clear", - "Parameters": [], - "ReturnType": "System.Void" - } - ], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -289,26 +405,21 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "InitiativeIdScope", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "SubscriptionId", "AliasList": [], "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, - "ElementType": null, + "ElementType": "System.String", "GenericTypeArguments": [], "Methods": [], "Constructors": [] @@ -316,21 +427,24 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, - "Position": 0, + "Mandatory": false, + "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VMName", - "AliasList": [], + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -340,21 +454,21 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, - "Position": 1, + "Mandatory": false, + "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "InitiativeId", + "Name": "Break", "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -364,40 +478,25 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, - "Position": 2, + "Mandatory": false, + "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "HttpPipelineAppend", + "AliasList": [], "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - }, - "ElementType": null, + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Clear", - "Parameters": [], - "ReturnType": "System.Void" - } - ], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -409,22 +508,17 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "InitiativeNameScope", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "HttpPipelinePrepend", "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, - "ElementType": null, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", "GenericTypeArguments": [], "Methods": [], "Constructors": [] @@ -432,21 +526,21 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, - "Position": 0, + "Mandatory": false, + "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VMName", + "Name": "Proxy", "AliasList": [], "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -456,21 +550,21 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, - "Position": 1, + "Mandatory": false, + "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "InitiativeName", + "Name": "ProxyCredential", "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -480,40 +574,25 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, - "Position": 2, + "Mandatory": false, + "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - }, + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Clear", - "Parameters": [], - "ReturnType": "System.Void" - } - ], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -529,16 +608,18 @@ ] }, { - "Name": "ReportIdScope", + "Name": "Get1", "Parameters": [ { "ParameterMetadata": { - "Name": "ReportId", - "AliasList": [], + "Name": "Name", + "AliasList": [ + "GuestConfigurationAssignmentName" + ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -548,306 +629,13 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, - "Position": 0, + "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Clear", - "Parameters": [], - "ReturnType": "System.Void" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Clear", - "Parameters": [], - "ReturnType": "System.Void" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ], - "AliasList": [] - }, - { - "VerbName": "Get", - "NounName": "AzVMGuestPolicyStatusHistory", - "Name": "Get-AzVMGuestPolicyStatusHistory", - "ClassName": "Microsoft.Azure.Commands.GuestConfiguration.Cmdlets.GetAzVMGuestPolicyStatusHistory", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "HasForceSwitch": true, - "SupportsPaging": false, - "DefaultParameterSetName": "InitiativeIdScope", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.GuestConfiguration.Models", - "Name": "Microsoft.Azure.Commands.GuestConfiguration.Models.PolicyStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.GuestConfiguration.Models.PolicyStatus, Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration, Version=0.10.8.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Configuration": "Microsoft.Azure.Commands.GuestConfiguration.Models.PolicyData+ConfigurationInfo", - "VM": "Microsoft.Azure.Commands.GuestConfiguration.Models.PolicyStatus+VMInfo", - "StartTime": "System.Nullable`1[System.DateTime]", - "EndTime": "System.Nullable`1[System.DateTime]", - "PolicyDisplayName": "System.String", - "ComplianceStatus": "System.String", - "ReportId": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "", - "Parameters": [ - { - "Name": "gcrpReport", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "gcPolicyAssignment", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ], - "ReturnType": null - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "ResourceGroupName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "VMName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "InitiativeName", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "InitiativeId", - "AliasList": [], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ShowOnlyChange", - "AliasList": [], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Clear", - "Parameters": [], - "ReturnType": "System.Void" - } - ], - "Constructors": [] - }, - "ValidateSet": [], - "ValidateRangeMin": null, - "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "InitiativeIdScope", - "Parameters": [ { "ParameterMetadata": { "Name": "ResourceGroupName", @@ -855,7 +643,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -865,21 +653,21 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, - "Position": 0, + "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VMName", + "Name": "MachineName", "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -889,23 +677,23 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, - "Position": 1, + "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "InitiativeId", + "Name": "SubscriptionId", "AliasList": [], "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, - "ElementType": null, + "ElementType": "System.String", "GenericTypeArguments": [], "Methods": [], "Constructors": [] @@ -913,21 +701,24 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, - "Position": 2, + "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ShowOnlyChange", - "AliasList": [], + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -946,31 +737,16 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "Break", + "AliasList": [], "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - }, + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Clear", - "Parameters": [], - "ReturnType": "System.Void" - } - ], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -982,22 +758,17 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "InitiativeNameScope", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "HttpPipelineAppend", "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, - "ElementType": null, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", "GenericTypeArguments": [], "Methods": [], "Constructors": [] @@ -1005,23 +776,23 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, - "Position": 0, + "Mandatory": false, + "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VMName", + "Name": "HttpPipelinePrepend", "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, - "ElementType": null, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", "GenericTypeArguments": [], "Methods": [], "Constructors": [] @@ -1029,21 +800,21 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, - "Position": 1, + "Mandatory": false, + "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "InitiativeName", + "Name": "Proxy", "AliasList": [], "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1053,21 +824,21 @@ "ValidateSet": [], "ValidateRangeMin": null, "ValidateRangeMax": null, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, - "Position": 2, + "Mandatory": false, + "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ShowOnlyChange", + "Name": "ProxyCredential", "AliasList": [], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1086,31 +857,16 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - }, + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Clear", - "Parameters": [], - "ReturnType": "System.Void" - } - ], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -1126,35 +882,22 @@ ] }, { - "Name": "__AllParameterSets", + "Name": "Get", "Parameters": [ { "ParameterMetadata": { - "Name": "DefaultProfile", + "Name": "Name", "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" + "GuestConfigurationAssignmentName" ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - }, + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Clear", - "Parameters": [], - "ReturnType": "System.Void" - } - ], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -1162,7 +905,7704 @@ "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VMName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "List4", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VmssName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "List3", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "MachineName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "List2", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VMName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "List1", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "List", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Get", + "NounName": "AzGuestConfigurationAssignmentReport", + "Name": "Get-AzGuestConfigurationAssignmentReport", + "ClassName": "Get-AzGuestConfigurationAssignmentReport", + "SupportsShouldProcess": false, + "ConfirmImpact": 0, + "HasForceSwitch": true, + "SupportsPaging": false, + "DefaultParameterSetName": "List", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IGuestConfigurationAssignmentReport", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IGuestConfigurationAssignmentReport, Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "DetailResource": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IAssignmentReportResource[]", + "ComplianceStatus": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ComplianceStatus]", + "DetailComplianceStatus": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ComplianceStatus]", + "DetailOperationType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.Type]", + "StartTime": "System.Nullable`1[System.DateTime]", + "DetailEndTime": "System.Nullable`1[System.DateTime]", + "DetailStartTime": "System.Nullable`1[System.DateTime]", + "EndTime": "System.Nullable`1[System.DateTime]", + "VMId": "System.String", + "ReportId": "System.String", + "Name": "System.String", + "AssignmentName": "System.String", + "VMUuid": "System.String", + "DetailJobId": "System.String", + "ConfigurationVersion": "System.String", + "ConfigurationName": "System.String", + "Id": "System.String", + "VmssResourceId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "GuestConfigurationAssignmentName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ReportId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "VMName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "MachineName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Name", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "VmssName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "List1", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "GuestConfigurationAssignmentName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "MachineName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "List", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "GuestConfigurationAssignmentName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VMName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "Get1", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "GuestConfigurationAssignmentName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ReportId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "MachineName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "Get", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "GuestConfigurationAssignmentName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ReportId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VMName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "Get2", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ReportId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VmssName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "List2", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VmssName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "New", + "NounName": "AzGuestConfigurationAssignment", + "Name": "New-AzGuestConfigurationAssignment", + "ClassName": "New-AzGuestConfigurationAssignment", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "HasForceSwitch": true, + "SupportsPaging": false, + "DefaultParameterSetName": "CreateExpanded", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IGuestConfigurationAssignment", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IGuestConfigurationAssignment, Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "LatestAssignmentReportResource": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IAssignmentReportResource[]", + "GuestConfigurationProtectedParameter": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IConfigurationParameter[]", + "GuestConfigurationParameter": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IConfigurationParameter[]", + "VmssVMList": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IVmssvmInfo[]", + "ConfigurationSettingActionAfterReboot": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ActionAfterReboot]", + "GuestConfigurationAssignmentType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.AssignmentType]", + "ComplianceStatus": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ComplianceStatus]", + "LatestAssignmentReportComplianceStatus": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ComplianceStatus]", + "ConfigurationSettingConfigurationMode": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ConfigurationMode]", + "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.CreatedByType]", + "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.CreatedByType]", + "GuestConfigurationKind": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.Kind]", + "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ProvisioningState]", + "LatestAssignmentReportOperationType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.Type]", + "ConfigurationSettingAllowModuleOverwrite": "System.Nullable`1[System.Boolean]", + "ConfigurationSettingRebootIfNeeded": "System.Nullable`1[System.Boolean]", + "LatestAssignmentReportStartTime": "System.Nullable`1[System.DateTime]", + "LatestAssignmentReportEndTime": "System.Nullable`1[System.DateTime]", + "SystemDataLastModifiedAt": "System.Nullable`1[System.DateTime]", + "SystemDataCreatedAt": "System.Nullable`1[System.DateTime]", + "LastComplianceStatusChecked": "System.Nullable`1[System.DateTime]", + "ConfigurationSettingConfigurationModeFrequencyMin": "System.Nullable`1[System.Single]", + "ConfigurationSettingRefreshFrequencyMin": "System.Nullable`1[System.Single]", + "VMUuid": "System.String", + "VMId": "System.String", + "TargetResourceId": "System.String", + "AssignmentName": "System.String", + "SystemDataLastModifiedBy": "System.String", + "ConfigurationName": "System.String", + "SystemDataCreatedBy": "System.String", + "Source": "System.String", + "GuestConfigurationVersion": "System.String", + "ResourceType": "System.String", + "PropertiesLatestAssignmentReportId": "System.String", + "ParameterHash": "System.String", + "LatestReportId": "System.String", + "Context": "System.String", + "GuestConfigurationContentHash": "System.String", + "GuestConfigurationContentType": "System.String", + "LatestAssignmentReportId": "System.String", + "GuestConfigurationContentUri": "System.String", + "GuestConfigurationName": "System.String", + "ConfigurationVersion": "System.String", + "AssignmentHash": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "GuestConfigurationAssignmentName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "VMName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "MachineName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "GuestConfigurationContentHash", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "GuestConfigurationContentUri", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "GuestConfigurationName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "GuestConfigurationVersion", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Context", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "GuestConfigurationAssignmentType", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.AssignmentType", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.AssignmentType, Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "GuestConfigurationKind", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.Kind", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.Kind, Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "GuestConfigurationParameter", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IConfigurationParameter[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IConfigurationParameter[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IConfigurationParameter", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "GuestConfigurationProtectedParameter", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IConfigurationParameter[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IConfigurationParameter[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IConfigurationParameter", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Location", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Name", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "GuestConfigurationAssignmentName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GuestConfigurationContentHash", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GuestConfigurationContentUri", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GuestConfigurationName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GuestConfigurationVersion", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Context", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GuestConfigurationAssignmentType", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.AssignmentType", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.AssignmentType, Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GuestConfigurationKind", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.Kind", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.Kind, Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GuestConfigurationParameter", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IConfigurationParameter[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IConfigurationParameter[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IConfigurationParameter", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GuestConfigurationProtectedParameter", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IConfigurationParameter[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IConfigurationParameter[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IConfigurationParameter", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Location", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "CreateExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "VMName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GuestConfigurationAssignmentName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GuestConfigurationContentHash", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GuestConfigurationContentUri", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GuestConfigurationName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GuestConfigurationVersion", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Context", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GuestConfigurationAssignmentType", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.AssignmentType", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.AssignmentType, Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GuestConfigurationKind", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.Kind", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.Kind, Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GuestConfigurationParameter", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IConfigurationParameter[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IConfigurationParameter[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IConfigurationParameter", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GuestConfigurationProtectedParameter", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IConfigurationParameter[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IConfigurationParameter[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IConfigurationParameter", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Location", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "CreateExpanded1", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "MachineName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GuestConfigurationAssignmentName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GuestConfigurationContentHash", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GuestConfigurationContentUri", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GuestConfigurationName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GuestConfigurationVersion", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Context", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GuestConfigurationAssignmentType", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.AssignmentType", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.AssignmentType, Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GuestConfigurationKind", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.Kind", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.Kind, Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GuestConfigurationParameter", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IConfigurationParameter[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IConfigurationParameter[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IConfigurationParameter", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GuestConfigurationProtectedParameter", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IConfigurationParameter[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IConfigurationParameter[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IConfigurationParameter", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Location", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Remove", + "NounName": "AzGuestConfigurationAssignment", + "Name": "Remove-AzGuestConfigurationAssignment", + "ClassName": "Remove-AzGuestConfigurationAssignment", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "HasForceSwitch": true, + "SupportsPaging": false, + "DefaultParameterSetName": "Delete", + "OutputTypes": [ + { + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + }, + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IGuestConfigurationAssignment", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IGuestConfigurationAssignment, Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "LatestAssignmentReportResource": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IAssignmentReportResource[]", + "GuestConfigurationProtectedParameter": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IConfigurationParameter[]", + "GuestConfigurationParameter": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IConfigurationParameter[]", + "VmssVMList": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IVmssvmInfo[]", + "ConfigurationSettingActionAfterReboot": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ActionAfterReboot]", + "GuestConfigurationAssignmentType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.AssignmentType]", + "ComplianceStatus": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ComplianceStatus]", + "LatestAssignmentReportComplianceStatus": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ComplianceStatus]", + "ConfigurationSettingConfigurationMode": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ConfigurationMode]", + "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.CreatedByType]", + "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.CreatedByType]", + "GuestConfigurationKind": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.Kind]", + "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ProvisioningState]", + "LatestAssignmentReportOperationType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.Type]", + "ConfigurationSettingAllowModuleOverwrite": "System.Nullable`1[System.Boolean]", + "ConfigurationSettingRebootIfNeeded": "System.Nullable`1[System.Boolean]", + "LatestAssignmentReportStartTime": "System.Nullable`1[System.DateTime]", + "LatestAssignmentReportEndTime": "System.Nullable`1[System.DateTime]", + "SystemDataLastModifiedAt": "System.Nullable`1[System.DateTime]", + "SystemDataCreatedAt": "System.Nullable`1[System.DateTime]", + "LastComplianceStatusChecked": "System.Nullable`1[System.DateTime]", + "ConfigurationSettingConfigurationModeFrequencyMin": "System.Nullable`1[System.Single]", + "ConfigurationSettingRefreshFrequencyMin": "System.Nullable`1[System.Single]", + "VMUuid": "System.String", + "VMId": "System.String", + "TargetResourceId": "System.String", + "AssignmentName": "System.String", + "SystemDataLastModifiedBy": "System.String", + "ConfigurationName": "System.String", + "SystemDataCreatedBy": "System.String", + "Source": "System.String", + "GuestConfigurationVersion": "System.String", + "ResourceType": "System.String", + "PropertiesLatestAssignmentReportId": "System.String", + "ParameterHash": "System.String", + "LatestReportId": "System.String", + "Context": "System.String", + "GuestConfigurationContentHash": "System.String", + "GuestConfigurationContentType": "System.String", + "LatestAssignmentReportId": "System.String", + "GuestConfigurationContentUri": "System.String", + "GuestConfigurationName": "System.String", + "ConfigurationVersion": "System.String", + "AssignmentHash": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "GuestConfigurationAssignmentName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "VMName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "VmssName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "MachineName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.IGuestConfigurationIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.IGuestConfigurationIdentity, Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "GuestConfigurationAssignmentName": "System.String", + "Id": "System.String", + "MachineName": "System.String", + "Name": "System.String", + "ReportId": "System.String", + "ResourceGroupName": "System.String", + "SubscriptionId": "System.String", + "VMName": "System.String", + "VmssName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "Delete1", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "GuestConfigurationAssignmentName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "MachineName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "Delete2", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "GuestConfigurationAssignmentName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VmssName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "Delete", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "GuestConfigurationAssignmentName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VMName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "DeleteViaIdentity", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.IGuestConfigurationIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.IGuestConfigurationIdentity, Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "GuestConfigurationAssignmentName": "System.String", + "Id": "System.String", + "MachineName": "System.String", + "Name": "System.String", + "ReportId": "System.String", + "ResourceGroupName": "System.String", + "SubscriptionId": "System.String", + "VMName": "System.String", + "VmssName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -1176,7 +8616,67 @@ "TypeDictionary": { "System.String": { "Namespace": null, - "Name": "System.String", + "Name": "System.String", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Boolean": { + "Namespace": null, + "Name": "System.Boolean", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Byte": { + "Namespace": null, + "Name": "System.Byte", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.SByte": { + "Namespace": null, + "Name": "System.SByte", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Int16": { + "Namespace": null, + "Name": "System.Int16", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.UInt16": { + "Namespace": null, + "Name": "System.UInt16", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Int32": { + "Namespace": null, + "Name": "System.Int32", "AssemblyQualifiedName": null, "Properties": {}, "ElementType": null, @@ -1184,9 +8684,9 @@ "Methods": [], "Constructors": [] }, - "System.Boolean": { + "System.UInt32": { "Namespace": null, - "Name": "System.Boolean", + "Name": "System.UInt32", "AssemblyQualifiedName": null, "Properties": {}, "ElementType": null, @@ -1194,9 +8694,9 @@ "Methods": [], "Constructors": [] }, - "System.Byte": { + "System.Int64": { "Namespace": null, - "Name": "System.Byte", + "Name": "System.Int64", "AssemblyQualifiedName": null, "Properties": {}, "ElementType": null, @@ -1204,9 +8704,9 @@ "Methods": [], "Constructors": [] }, - "System.SByte": { + "System.UInt64": { "Namespace": null, - "Name": "System.SByte", + "Name": "System.UInt64", "AssemblyQualifiedName": null, "Properties": {}, "ElementType": null, @@ -1214,9 +8714,9 @@ "Methods": [], "Constructors": [] }, - "System.Int16": { + "System.Single": { "Namespace": null, - "Name": "System.Int16", + "Name": "System.Single", "AssemblyQualifiedName": null, "Properties": {}, "ElementType": null, @@ -1224,9 +8724,19 @@ "Methods": [], "Constructors": [] }, - "System.UInt16": { + "System.Double": { "Namespace": null, - "Name": "System.UInt16", + "Name": "System.Double", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Decimal": { + "Namespace": null, + "Name": "System.Decimal", "AssemblyQualifiedName": null, "Properties": {}, "ElementType": null, @@ -1234,106 +8744,652 @@ "Methods": [], "Constructors": [] }, - "System.Int32": { - "Namespace": null, - "Name": "System.Int32", - "AssemblyQualifiedName": null, + "System.Char": { + "Namespace": null, + "Name": "System.Char", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IAssignmentReportResource[]": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IAssignmentReportResource[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IAssignmentReportResource[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IAssignmentReportResource", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IAssignmentReportResource": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IAssignmentReportResource", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IAssignmentReportResource, Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Reason": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IAssignmentReportResourceComplianceReason[]", + "Property": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.IAny", + "ComplianceStatus": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ComplianceStatus]", + "ResourceId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IAssignmentReportResourceComplianceReason[]": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IAssignmentReportResourceComplianceReason[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IAssignmentReportResourceComplianceReason[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IAssignmentReportResourceComplianceReason", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IAssignmentReportResourceComplianceReason": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IAssignmentReportResourceComplianceReason", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IAssignmentReportResourceComplianceReason, Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Code": "System.String", + "Phrase": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.IAny": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.IAny", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.IAny, Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ComplianceStatus]": { + "Namespace": "System", + "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ComplianceStatus]", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ComplianceStatus, Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ComplianceStatus" + ], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ComplianceStatus": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ComplianceStatus", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ComplianceStatus, Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "CompleteArgument", + "Parameters": [ + { + "Name": "commandName", + "Type": "System.String" + }, + { + "Name": "parameterName", + "Type": "System.String" + }, + { + "Name": "wordToComplete", + "Type": "System.String" + }, + { + "Name": "commandAst", + "Type": "System.Management.Automation.Language.CommandAst" + }, + { + "Name": "fakeBoundParameters", + "Type": "System.Collections.IDictionary" + } + ], + "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "e", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ComplianceStatus" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]", + "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.Management.Automation.CompletionResult" + ], + "Methods": [], + "Constructors": [] + }, + "System.Management.Automation.CompletionResult": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.CompletionResult", + "AssemblyQualifiedName": "System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Type": { + "Namespace": "System", + "Name": "System.Type", + "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IConfigurationParameter[]": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IConfigurationParameter[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IConfigurationParameter[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IConfigurationParameter", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IConfigurationParameter": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IConfigurationParameter", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IConfigurationParameter, Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Name": "System.String", + "Value": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IVmssvmInfo[]": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IVmssvmInfo[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IVmssvmInfo[], Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IVmssvmInfo", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IVmssvmInfo": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IVmssvmInfo", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Models.Api20220125.IVmssvmInfo, Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ComplianceStatus": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ComplianceStatus]", + "LastComplianceChecked": "System.Nullable`1[System.DateTime]", + "LatestReportId": "System.String", + "VMId": "System.String", + "VMResourceId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Nullable`1[System.DateTime]": { + "Namespace": "System", + "Name": "System.Nullable`1[System.DateTime]", + "AssemblyQualifiedName": "System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.DateTime" + ], + "Methods": [], + "Constructors": [] + }, + "System.DateTime": { + "Namespace": "System", + "Name": "System.DateTime", + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ActionAfterReboot]": { + "Namespace": "System", + "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ActionAfterReboot]", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ActionAfterReboot, Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ActionAfterReboot" + ], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ActionAfterReboot": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ActionAfterReboot", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ActionAfterReboot, Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "CompleteArgument", + "Parameters": [ + { + "Name": "commandName", + "Type": "System.String" + }, + { + "Name": "parameterName", + "Type": "System.String" + }, + { + "Name": "wordToComplete", + "Type": "System.String" + }, + { + "Name": "commandAst", + "Type": "System.Management.Automation.Language.CommandAst" + }, + { + "Name": "fakeBoundParameters", + "Type": "System.Collections.IDictionary" + } + ], + "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "e", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ActionAfterReboot" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.AssignmentType]": { + "Namespace": "System", + "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.AssignmentType]", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.AssignmentType, Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, - "GenericTypeArguments": [], + "GenericTypeArguments": [ + "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.AssignmentType" + ], "Methods": [], "Constructors": [] }, - "System.UInt32": { - "Namespace": null, - "Name": "System.UInt32", - "AssemblyQualifiedName": null, + "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.AssignmentType": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.AssignmentType", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.AssignmentType, Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [], + "Methods": [ + { + "Name": "CompleteArgument", + "Parameters": [ + { + "Name": "commandName", + "Type": "System.String" + }, + { + "Name": "parameterName", + "Type": "System.String" + }, + { + "Name": "wordToComplete", + "Type": "System.String" + }, + { + "Name": "commandAst", + "Type": "System.Management.Automation.Language.CommandAst" + }, + { + "Name": "fakeBoundParameters", + "Type": "System.Collections.IDictionary" + } + ], + "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "e", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.AssignmentType" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], "Constructors": [] }, - "System.Int64": { - "Namespace": null, - "Name": "System.Int64", - "AssemblyQualifiedName": null, + "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ConfigurationMode]": { + "Namespace": "System", + "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ConfigurationMode]", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ConfigurationMode, Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, - "GenericTypeArguments": [], + "GenericTypeArguments": [ + "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ConfigurationMode" + ], "Methods": [], "Constructors": [] }, - "System.UInt64": { - "Namespace": null, - "Name": "System.UInt64", - "AssemblyQualifiedName": null, + "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ConfigurationMode": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ConfigurationMode", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ConfigurationMode, Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [], + "Methods": [ + { + "Name": "CompleteArgument", + "Parameters": [ + { + "Name": "commandName", + "Type": "System.String" + }, + { + "Name": "parameterName", + "Type": "System.String" + }, + { + "Name": "wordToComplete", + "Type": "System.String" + }, + { + "Name": "commandAst", + "Type": "System.Management.Automation.Language.CommandAst" + }, + { + "Name": "fakeBoundParameters", + "Type": "System.Collections.IDictionary" + } + ], + "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "e", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ConfigurationMode" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], "Constructors": [] }, - "System.Single": { - "Namespace": null, - "Name": "System.Single", - "AssemblyQualifiedName": null, + "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.CreatedByType]": { + "Namespace": "System", + "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.CreatedByType]", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.CreatedByType, Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, - "GenericTypeArguments": [], + "GenericTypeArguments": [ + "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.CreatedByType" + ], "Methods": [], "Constructors": [] }, - "System.Double": { - "Namespace": null, - "Name": "System.Double", - "AssemblyQualifiedName": null, + "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.CreatedByType": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.CreatedByType", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.CreatedByType, Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [], + "Methods": [ + { + "Name": "CompleteArgument", + "Parameters": [ + { + "Name": "commandName", + "Type": "System.String" + }, + { + "Name": "parameterName", + "Type": "System.String" + }, + { + "Name": "wordToComplete", + "Type": "System.String" + }, + { + "Name": "commandAst", + "Type": "System.Management.Automation.Language.CommandAst" + }, + { + "Name": "fakeBoundParameters", + "Type": "System.Collections.IDictionary" + } + ], + "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "e", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.CreatedByType" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], "Constructors": [] }, - "System.Decimal": { - "Namespace": null, - "Name": "System.Decimal", - "AssemblyQualifiedName": null, + "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.Kind]": { + "Namespace": "System", + "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.Kind]", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.Kind, Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, - "GenericTypeArguments": [], + "GenericTypeArguments": [ + "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.Kind" + ], "Methods": [], "Constructors": [] }, - "System.Char": { - "Namespace": null, - "Name": "System.Char", - "AssemblyQualifiedName": null, + "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.Kind": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.Kind", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.Kind, Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "Microsoft.Azure.Commands.GuestConfiguration.Models.PolicyData+ConfigurationInfo": { - "Namespace": "Microsoft.Azure.Commands.GuestConfiguration.Models", - "Name": "Microsoft.Azure.Commands.GuestConfiguration.Models.PolicyData+ConfigurationInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.GuestConfiguration.Models.PolicyData+ConfigurationInfo, Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration, Version=0.10.8.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Name": "System.String", - "Version": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], "Methods": [ { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" + "Name": "CompleteArgument", + "Parameters": [ + { + "Name": "commandName", + "Type": "System.String" + }, + { + "Name": "parameterName", + "Type": "System.String" + }, + { + "Name": "wordToComplete", + "Type": "System.String" + }, + { + "Name": "commandAst", + "Type": "System.Management.Automation.Language.CommandAst" + }, + { + "Name": "fakeBoundParameters", + "Type": "System.Collections.IDictionary" + } + ], + "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" }, { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" + "Name": "Equals", + "Parameters": [ + { + "Name": "e", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.Kind" + } + ], + "ReturnType": "System.Boolean" }, { "Name": "Equals", @@ -1349,46 +9405,75 @@ "Name": "GetHashCode", "Parameters": [], "ReturnType": "System.Int32" - } - ], - "Constructors": [ + }, { - "Name": "", + "Name": "ToString", "Parameters": [], - "ReturnType": null + "ReturnType": "System.String" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" } - ] + ], + "Constructors": [] }, - "System.Type": { + "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ProvisioningState]": { "Namespace": "System", - "Name": "System.Type", - "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ProvisioningState]", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ProvisioningState, Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, - "GenericTypeArguments": [], + "GenericTypeArguments": [ + "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ProvisioningState" + ], "Methods": [], "Constructors": [] }, - "Microsoft.Azure.Commands.GuestConfiguration.Models.PolicyStatus+VMInfo": { - "Namespace": "Microsoft.Azure.Commands.GuestConfiguration.Models", - "Name": "Microsoft.Azure.Commands.GuestConfiguration.Models.PolicyStatus+VMInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.GuestConfiguration.Models.PolicyStatus+VMInfo, Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration, Version=0.10.8.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Uuid": "System.String", - "ResourceId": "System.String" - }, + "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ProvisioningState": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ProvisioningState", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ProvisioningState, Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, "ElementType": null, "GenericTypeArguments": [], "Methods": [ { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" + "Name": "CompleteArgument", + "Parameters": [ + { + "Name": "commandName", + "Type": "System.String" + }, + { + "Name": "parameterName", + "Type": "System.String" + }, + { + "Name": "wordToComplete", + "Type": "System.String" + }, + { + "Name": "commandAst", + "Type": "System.Management.Automation.Language.CommandAst" + }, + { + "Name": "fakeBoundParameters", + "Type": "System.Collections.IDictionary" + } + ], + "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" }, { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" + "Name": "Equals", + "Parameters": [ + { + "Name": "e", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.ProvisioningState" + } + ], + "ReturnType": "System.Boolean" }, { "Name": "Equals", @@ -1404,50 +9489,75 @@ "Name": "GetHashCode", "Parameters": [], "ReturnType": "System.Int32" - } - ], - "Constructors": [ + }, { - "Name": "", + "Name": "ToString", "Parameters": [], - "ReturnType": null + "ReturnType": "System.String" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" } - ] + ], + "Constructors": [] }, - "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.GuestConfiguration.Models.PolicyStatusDetailed+ComplianceReasonDetails]": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.GuestConfiguration.Models.PolicyStatusDetailed+ComplianceReasonDetails]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.GuestConfiguration.Models.PolicyStatusDetailed+ComplianceReasonDetails, Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration, Version=0.10.8.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.Type]": { + "Namespace": "System", + "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.Type]", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.Type, Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ - "Microsoft.Azure.Commands.GuestConfiguration.Models.PolicyStatusDetailed+ComplianceReasonDetails" + "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.Type" ], "Methods": [], "Constructors": [] }, - "Microsoft.Azure.Commands.GuestConfiguration.Models.PolicyStatusDetailed+ComplianceReasonDetails": { - "Namespace": "Microsoft.Azure.Commands.GuestConfiguration.Models", - "Name": "Microsoft.Azure.Commands.GuestConfiguration.Models.PolicyStatusDetailed+ComplianceReasonDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.GuestConfiguration.Models.PolicyStatusDetailed+ComplianceReasonDetails, Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration, Version=0.10.8.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Reasons": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.GuestConfiguration.Models.PolicyStatus+ReasonAndCode]", - "Policy": "System.String", - "ResourceId": "System.String", - "ComplianceStatus": "System.String" - }, + "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.Type", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.Type, Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, "ElementType": null, "GenericTypeArguments": [], "Methods": [ { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" + "Name": "CompleteArgument", + "Parameters": [ + { + "Name": "commandName", + "Type": "System.String" + }, + { + "Name": "parameterName", + "Type": "System.String" + }, + { + "Name": "wordToComplete", + "Type": "System.String" + }, + { + "Name": "commandAst", + "Type": "System.Management.Automation.Language.CommandAst" + }, + { + "Name": "fakeBoundParameters", + "Type": "System.Collections.IDictionary" + } + ], + "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" }, { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" + "Name": "Equals", + "Parameters": [ + { + "Name": "e", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Support.Type" + } + ], + "ReturnType": "System.Boolean" }, { "Name": "Equals", @@ -1463,45 +9573,122 @@ "Name": "GetHashCode", "Parameters": [], "ReturnType": "System.Int32" - } - ], - "Constructors": [ + }, { - "Name": "", + "Name": "ToString", "Parameters": [], - "ReturnType": null + "ReturnType": "System.String" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" } - ] + ], + "Constructors": [] }, - "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.GuestConfiguration.Models.PolicyStatus+ReasonAndCode]": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.GuestConfiguration.Models.PolicyStatus+ReasonAndCode]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.GuestConfiguration.Models.PolicyStatus+ReasonAndCode, Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration, Version=0.10.8.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "System.Nullable`1[System.Boolean]": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ - "Microsoft.Azure.Commands.GuestConfiguration.Models.PolicyStatus+ReasonAndCode" + "System.Boolean" ], "Methods": [], "Constructors": [] }, - "Microsoft.Azure.Commands.GuestConfiguration.Models.PolicyStatus+ReasonAndCode": { - "Namespace": "Microsoft.Azure.Commands.GuestConfiguration.Models", - "Name": "Microsoft.Azure.Commands.GuestConfiguration.Models.PolicyStatus+ReasonAndCode", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.GuestConfiguration.Models.PolicyStatus+ReasonAndCode, Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration, Version=0.10.8.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "System.Nullable`1[System.Single]": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Single]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Single, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, + "GenericTypeArguments": [ + "System.Single" + ], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.SendAsyncStep, Az.GuestConfiguration.private, Version=0.11.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Target": "System.Object", + "Method": "System.Reflection.MethodInfo" + }, + "ElementType": null, "GenericTypeArguments": [], "Methods": [ { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" + "Name": "Invoke", + "Parameters": [ + { + "Name": "request", + "Type": "System.Net.Http.HttpRequestMessage" + }, + { + "Name": "callback", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.IEventListener" + }, + { + "Name": "next", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.ISendAsync" + } + ], + "ReturnType": "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]" }, { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" + "Name": "BeginInvoke", + "Parameters": [ + { + "Name": "request", + "Type": "System.Net.Http.HttpRequestMessage" + }, + { + "Name": "callback", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.IEventListener" + }, + { + "Name": "next", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.GuestConfiguration.Runtime.ISendAsync" + }, + { + "Name": "__callback", + "Type": "System.AsyncCallback" + }, + { + "Name": "object", + "Type": "System.Object" + } + ], + "ReturnType": "System.IAsyncResult" + }, + { + "Name": "EndInvoke", + "Parameters": [ + { + "Name": "result", + "Type": "System.IAsyncResult" + } + ], + "ReturnType": "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]" + }, + { + "Name": "GetObjectData", + "Parameters": [ + { + "Name": "info", + "Type": "System.Runtime.Serialization.SerializationInfo" + }, + { + "Name": "context", + "Type": "System.Runtime.Serialization.StreamingContext" + } + ], + "ReturnType": "System.Void" }, { "Name": "Equals", @@ -1513,183 +9700,107 @@ ], "ReturnType": "System.Boolean" }, + { + "Name": "GetInvocationList", + "Parameters": [], + "ReturnType": "System.Delegate[]" + }, { "Name": "GetHashCode", "Parameters": [], "ReturnType": "System.Int32" + }, + { + "Name": "Clone", + "Parameters": [], + "ReturnType": "System.Object" + }, + { + "Name": "DynamicInvoke", + "Parameters": [ + { + "Name": "args", + "Type": "System.Object[]" + } + ], + "ReturnType": "System.Object" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" } ], "Constructors": [ { "Name": "", - "Parameters": [], + "Parameters": [ + { + "Name": "object", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "method", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], "ReturnType": null } ] }, - "System.Nullable`1[System.DateTime]": { - "Namespace": "System", - "Name": "System.Nullable`1[System.DateTime]", - "AssemblyQualifiedName": "System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "System.DateTime" - ], - "Methods": [], - "Constructors": [] - }, - "System.DateTime": { + "System.Object": { "Namespace": "System", - "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Object", + "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], "Methods": [], "Constructors": [] }, - "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Account": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount", - "Environment": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment", - "Subscription": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription", - "Tenant": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTenant", - "TokenCache": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTokenCache", - "VersionProfile": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "TenantMap": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "Id": "System.String", - "Credential": "System.String", - "Type": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "System.Collections.Generic.IDictionary`2[System.String,System.String]": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "System.Reflection.MethodInfo": { + "Namespace": "System.Reflection", + "Name": "System.Reflection.MethodInfo", + "AssemblyQualifiedName": "System.Reflection.MethodInfo, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, - "GenericTypeArguments": [ - "System.String", - "System.String" - ], - "Methods": [], - "Constructors": [] - }, - "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "OnPremise": "System.Boolean", - "VersionProfiles": "System.Collections.Generic.IList`1[System.String]", - "Name": "System.String", - "AdTenant": "System.String", - "AzureDataLakeStoreFileSystemEndpointSuffix": "System.String", - "AzureDataLakeAnalyticsCatalogAndJobEndpointSuffix": "System.String", - "BatchEndpointResourceId": "System.String", - "DataLakeEndpointResourceId": "System.String", - "GraphEndpointResourceId": "System.String", - "AzureKeyVaultServiceEndpointResourceId": "System.String", - "AzureKeyVaultDnsSuffix": "System.String", - "TrafficManagerDnsSuffix": "System.String", - "SqlDatabaseDnsSuffix": "System.String", - "ActiveDirectoryServiceEndpointResourceId": "System.String", - "GraphUrl": "System.String", - "GalleryUrl": "System.String", - "ActiveDirectoryAuthority": "System.String", - "PublishSettingsFileUrl": "System.String", - "ManagementPortalUrl": "System.String", - "ResourceManagerUrl": "System.String", - "ServiceManagementUrl": "System.String", - "StorageEndpointSuffix": "System.String", - "ContainerRegistryEndpointSuffix": "System.String" - }, - "ElementType": null, "GenericTypeArguments": [], "Methods": [], "Constructors": [] }, - "System.Collections.Generic.IList`1[System.String]": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.IList`1[System.String]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]": { + "Namespace": "System.Threading.Tasks", + "Name": "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]", + "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[System.Net.Http.HttpResponseMessage, System.Net.Http, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ - "System.String" + "System.Net.Http.HttpResponseMessage" ], "Methods": [], "Constructors": [] }, - "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Id": "System.String", - "Name": "System.String", - "State": "System.String" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [], - "Constructors": [] - }, - "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTenant": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTenant", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTenant, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Id": "System.String" - }, + "System.Net.Http.HttpResponseMessage": { + "Namespace": "System.Net.Http", + "Name": "System.Net.Http.HttpResponseMessage", + "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, "ElementType": null, "GenericTypeArguments": [], "Methods": [], "Constructors": [] }, - "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTokenCache": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTokenCache", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTokenCache, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "CacheData": "System.Byte[]" - }, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "Clear", - "Parameters": [], - "ReturnType": "System.Void" - } - ], - "Constructors": [] - }, - "System.Byte[]": { + "System.IAsyncResult": { "Namespace": "System", - "Name": "System.Byte[]", - "AssemblyQualifiedName": "System.Byte[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.IAsyncResult", + "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, - "ElementType": "System.Byte", + "ElementType": null, "GenericTypeArguments": [], "Methods": [], "Constructors": [] @@ -1697,46 +9808,30 @@ "System.Void": { "Namespace": "System", "Name": "System.Void", - "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], "Methods": [], "Constructors": [] }, - "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount" - ], - "Methods": [], - "Constructors": [] - }, - "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "System.Delegate[]": { + "Namespace": "System", + "Name": "System.Delegate[]", + "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [ - "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment" - ], + "ElementType": "System.Delegate", + "GenericTypeArguments": [], "Methods": [], "Constructors": [] }, - "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]", - "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "System.Delegate": { + "Namespace": "System", + "Name": "System.Delegate", + "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, - "GenericTypeArguments": [ - "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription" - ], + "GenericTypeArguments": [], "Methods": [], "Constructors": [] } diff --git a/tools/Tools.Common/SerializedCmdlets/Az.HanaOnAzure.json b/tools/Tools.Common/SerializedCmdlets/Az.HanaOnAzure.json index cda48264e84a..72812d75a802 100644 --- a/tools/Tools.Common/SerializedCmdlets/Az.HanaOnAzure.json +++ b/tools/Tools.Common/SerializedCmdlets/Az.HanaOnAzure.json @@ -7,7 +7,7 @@ "Name": "Get-AzSapMonitor", "ClassName": "Get-AzSapMonitor", "SupportsShouldProcess": false, - "ConfirmImpact": 2, + "ConfirmImpact": 0, "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "List", @@ -16,7 +16,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.Api20200207Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.Api20200207Preview.ISapMonitor", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.Api20200207Preview.ISapMonitor, Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.Api20200207Preview.ISapMonitor, Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Support.HanaProvisioningStatesEnum]", "EnableCustomerAnalytic": "System.Nullable`1[System.Boolean]", @@ -46,7 +46,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -64,7 +64,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -82,7 +82,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -100,7 +100,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.IHanaOnAzureIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.IHanaOnAzureIdentity, Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.IHanaOnAzureIdentity, Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OperationKind": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Support.AccessPolicyUpdateKind]", "Id": "System.String", @@ -132,7 +132,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -150,7 +150,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -168,7 +168,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -186,7 +186,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -204,7 +204,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -222,7 +222,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -240,7 +240,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -266,7 +266,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -290,7 +290,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -314,7 +314,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -341,7 +341,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -365,7 +365,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -389,7 +389,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -413,7 +413,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -437,7 +437,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -461,7 +461,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -485,7 +485,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -514,7 +514,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -541,7 +541,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -565,7 +565,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -589,7 +589,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -613,7 +613,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -637,7 +637,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -661,7 +661,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -685,7 +685,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -714,7 +714,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.IHanaOnAzureIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.IHanaOnAzureIdentity, Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.IHanaOnAzureIdentity, Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OperationKind": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Support.AccessPolicyUpdateKind]", "Id": "System.String", @@ -752,7 +752,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -776,7 +776,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -800,7 +800,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -824,7 +824,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -848,7 +848,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -872,7 +872,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -896,7 +896,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -928,7 +928,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -952,7 +952,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -976,7 +976,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1000,7 +1000,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1024,7 +1024,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1048,7 +1048,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1072,7 +1072,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1100,7 +1100,7 @@ "Name": "Get-AzSapMonitorProviderInstance", "ClassName": "Get-AzSapMonitorProviderInstance", "SupportsShouldProcess": false, - "ConfirmImpact": 2, + "ConfirmImpact": 0, "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "List", @@ -1109,7 +1109,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.Api20200207Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.Api20200207Preview.IProviderInstance", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.Api20200207Preview.IProviderInstance, Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.Api20200207Preview.IProviderInstance, Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Support.HanaProvisioningStatesEnum]", "Metadata": "System.String", @@ -1135,7 +1135,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1153,7 +1153,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1171,7 +1171,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1189,7 +1189,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -1207,7 +1207,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.IHanaOnAzureIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.IHanaOnAzureIdentity, Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.IHanaOnAzureIdentity, Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OperationKind": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Support.AccessPolicyUpdateKind]", "Id": "System.String", @@ -1239,7 +1239,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1257,7 +1257,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1275,7 +1275,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1293,7 +1293,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1311,7 +1311,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1329,7 +1329,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1347,7 +1347,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1373,7 +1373,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1397,7 +1397,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1421,7 +1421,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1445,7 +1445,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -1472,7 +1472,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1496,7 +1496,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1520,7 +1520,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1544,7 +1544,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1568,7 +1568,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1592,7 +1592,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1616,7 +1616,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1645,7 +1645,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1669,7 +1669,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1693,7 +1693,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -1720,7 +1720,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1744,7 +1744,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1768,7 +1768,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1792,7 +1792,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1816,7 +1816,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1840,7 +1840,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1864,7 +1864,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1893,7 +1893,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.IHanaOnAzureIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.IHanaOnAzureIdentity, Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.IHanaOnAzureIdentity, Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OperationKind": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Support.AccessPolicyUpdateKind]", "Id": "System.String", @@ -1931,7 +1931,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1955,7 +1955,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1979,7 +1979,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2003,7 +2003,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2027,7 +2027,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2051,7 +2051,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2075,7 +2075,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2107,7 +2107,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2131,7 +2131,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2155,7 +2155,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2179,7 +2179,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2203,7 +2203,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2227,7 +2227,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2251,7 +2251,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2278,7 +2278,7 @@ "NounName": "AzSapMonitor", "Name": "New-AzSapMonitor", "ClassName": "New-AzSapMonitor", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -2288,7 +2288,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.Api20200207Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.Api20200207Preview.ISapMonitor", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.Api20200207Preview.ISapMonitor, Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.Api20200207Preview.ISapMonitor, Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Support.HanaProvisioningStatesEnum]", "EnableCustomerAnalytic": "System.Nullable`1[System.Boolean]", @@ -2318,7 +2318,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2336,7 +2336,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2354,7 +2354,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2372,7 +2372,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2390,7 +2390,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2408,7 +2408,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2426,7 +2426,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2444,7 +2444,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2462,7 +2462,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2480,7 +2480,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2501,7 +2501,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2519,7 +2519,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2537,7 +2537,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2555,7 +2555,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2573,7 +2573,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2591,7 +2591,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2609,7 +2609,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2627,7 +2627,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2645,7 +2645,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2671,7 +2671,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2695,7 +2695,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2719,7 +2719,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2743,7 +2743,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2767,7 +2767,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2791,7 +2791,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2815,7 +2815,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2839,7 +2839,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2863,7 +2863,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2887,7 +2887,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2914,7 +2914,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2938,7 +2938,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2962,7 +2962,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2986,7 +2986,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3010,7 +3010,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3034,7 +3034,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3058,7 +3058,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3082,7 +3082,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3106,7 +3106,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3133,7 +3133,7 @@ "NounName": "AzSapMonitorProviderInstance", "Name": "New-AzSapMonitorProviderInstance", "ClassName": "New-AzSapMonitorProviderInstance", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -3143,7 +3143,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.Api20200207Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.Api20200207Preview.IProviderInstance", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.Api20200207Preview.IProviderInstance, Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.Api20200207Preview.IProviderInstance, Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Support.HanaProvisioningStatesEnum]", "Metadata": "System.String", @@ -3169,7 +3169,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3187,7 +3187,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3205,7 +3205,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3223,7 +3223,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3241,7 +3241,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3259,7 +3259,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3279,7 +3279,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3299,7 +3299,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3319,7 +3319,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3339,7 +3339,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3357,7 +3357,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3378,7 +3378,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3399,7 +3399,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3417,7 +3417,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3438,7 +3438,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3456,7 +3456,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3474,7 +3474,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3492,7 +3492,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3510,7 +3510,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3528,7 +3528,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3546,7 +3546,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3564,7 +3564,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3582,7 +3582,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3608,7 +3608,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3632,7 +3632,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3656,7 +3656,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3680,7 +3680,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3704,7 +3704,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3728,7 +3728,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3755,7 +3755,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3779,7 +3779,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3803,7 +3803,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3827,7 +3827,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3851,7 +3851,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3875,7 +3875,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3899,7 +3899,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3923,7 +3923,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3947,7 +3947,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3976,7 +3976,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4002,7 +4002,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4028,7 +4028,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4054,7 +4054,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4081,7 +4081,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4108,7 +4108,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4134,7 +4134,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4158,7 +4158,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4182,7 +4182,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4206,7 +4206,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4230,7 +4230,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4254,7 +4254,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4281,7 +4281,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4305,7 +4305,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4329,7 +4329,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4353,7 +4353,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4377,7 +4377,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4401,7 +4401,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4425,7 +4425,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4449,7 +4449,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4473,7 +4473,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4502,7 +4502,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4528,7 +4528,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4554,7 +4554,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4580,7 +4580,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4606,7 +4606,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4632,7 +4632,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4656,7 +4656,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4680,7 +4680,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4704,7 +4704,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4728,7 +4728,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4752,7 +4752,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4779,7 +4779,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4803,7 +4803,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4827,7 +4827,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4851,7 +4851,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4875,7 +4875,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4899,7 +4899,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4923,7 +4923,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4947,7 +4947,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4971,7 +4971,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5000,7 +5000,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5026,7 +5026,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5050,7 +5050,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5074,7 +5074,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5098,7 +5098,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5122,7 +5122,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5146,7 +5146,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5173,7 +5173,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5197,7 +5197,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5221,7 +5221,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5245,7 +5245,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -5269,7 +5269,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -5293,7 +5293,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5317,7 +5317,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5341,7 +5341,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5365,7 +5365,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5392,7 +5392,7 @@ "NounName": "AzSapMonitor", "Name": "Remove-AzSapMonitor", "ClassName": "Remove-AzSapMonitor", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -5402,7 +5402,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5423,7 +5423,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5441,7 +5441,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5459,7 +5459,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5477,7 +5477,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.IHanaOnAzureIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.IHanaOnAzureIdentity, Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.IHanaOnAzureIdentity, Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OperationKind": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Support.AccessPolicyUpdateKind]", "Id": "System.String", @@ -5509,7 +5509,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5527,7 +5527,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5545,7 +5545,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5563,7 +5563,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -5581,7 +5581,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -5599,7 +5599,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5617,7 +5617,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5635,7 +5635,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5653,7 +5653,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5671,7 +5671,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5697,7 +5697,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5721,7 +5721,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5745,7 +5745,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5772,7 +5772,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5796,7 +5796,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5820,7 +5820,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5844,7 +5844,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -5868,7 +5868,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -5892,7 +5892,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5916,7 +5916,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5940,7 +5940,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5964,7 +5964,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5988,7 +5988,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6017,7 +6017,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.IHanaOnAzureIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.IHanaOnAzureIdentity, Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.IHanaOnAzureIdentity, Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OperationKind": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Support.AccessPolicyUpdateKind]", "Id": "System.String", @@ -6055,7 +6055,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6079,7 +6079,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6103,7 +6103,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6127,7 +6127,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -6151,7 +6151,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -6175,7 +6175,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6199,7 +6199,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6223,7 +6223,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6247,7 +6247,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6271,7 +6271,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6303,7 +6303,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6327,7 +6327,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6351,7 +6351,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6375,7 +6375,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -6399,7 +6399,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -6423,7 +6423,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6447,7 +6447,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6471,7 +6471,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6495,7 +6495,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6519,7 +6519,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6546,7 +6546,7 @@ "NounName": "AzSapMonitorProviderInstance", "Name": "Remove-AzSapMonitorProviderInstance", "ClassName": "Remove-AzSapMonitorProviderInstance", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -6556,7 +6556,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6577,7 +6577,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6595,7 +6595,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6613,7 +6613,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6631,7 +6631,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6649,7 +6649,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.IHanaOnAzureIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.IHanaOnAzureIdentity, Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.IHanaOnAzureIdentity, Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OperationKind": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Support.AccessPolicyUpdateKind]", "Id": "System.String", @@ -6681,7 +6681,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6699,7 +6699,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6717,7 +6717,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6735,7 +6735,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -6753,7 +6753,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -6771,7 +6771,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6789,7 +6789,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6807,7 +6807,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6825,7 +6825,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6843,7 +6843,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6869,7 +6869,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6893,7 +6893,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6917,7 +6917,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6941,7 +6941,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6968,7 +6968,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6992,7 +6992,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7016,7 +7016,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7040,7 +7040,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -7064,7 +7064,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -7088,7 +7088,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7112,7 +7112,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7136,7 +7136,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7160,7 +7160,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7184,7 +7184,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7213,7 +7213,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.IHanaOnAzureIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.IHanaOnAzureIdentity, Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.IHanaOnAzureIdentity, Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OperationKind": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Support.AccessPolicyUpdateKind]", "Id": "System.String", @@ -7251,7 +7251,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7275,7 +7275,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7299,7 +7299,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7323,7 +7323,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -7347,7 +7347,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -7371,7 +7371,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7395,7 +7395,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7419,7 +7419,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7443,7 +7443,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7467,7 +7467,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7499,7 +7499,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7523,7 +7523,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7547,7 +7547,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7571,7 +7571,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -7595,7 +7595,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -7619,7 +7619,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7643,7 +7643,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7667,7 +7667,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7691,7 +7691,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7715,7 +7715,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7742,7 +7742,7 @@ "NounName": "AzSapMonitor", "Name": "Update-AzSapMonitor", "ClassName": "Update-AzSapMonitor", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -7752,7 +7752,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.Api20200207Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.Api20200207Preview.ISapMonitor", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.Api20200207Preview.ISapMonitor, Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.Api20200207Preview.ISapMonitor, Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Support.HanaProvisioningStatesEnum]", "EnableCustomerAnalytic": "System.Nullable`1[System.Boolean]", @@ -7782,7 +7782,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7800,7 +7800,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7818,7 +7818,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7836,7 +7836,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.IHanaOnAzureIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.IHanaOnAzureIdentity, Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.IHanaOnAzureIdentity, Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OperationKind": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Support.AccessPolicyUpdateKind]", "Id": "System.String", @@ -7865,7 +7865,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7886,7 +7886,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7904,7 +7904,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7922,7 +7922,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -7940,7 +7940,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -7958,7 +7958,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7976,7 +7976,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7994,7 +7994,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8020,7 +8020,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8044,7 +8044,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8068,7 +8068,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8092,7 +8092,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8119,7 +8119,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8143,7 +8143,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8167,7 +8167,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -8191,7 +8191,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -8215,7 +8215,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8239,7 +8239,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8263,7 +8263,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8292,7 +8292,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.IHanaOnAzureIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.IHanaOnAzureIdentity, Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Models.IHanaOnAzureIdentity, Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "OperationKind": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Support.AccessPolicyUpdateKind]", "Id": "System.String", @@ -8327,7 +8327,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8354,7 +8354,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8378,7 +8378,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8402,7 +8402,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -8426,7 +8426,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -8450,7 +8450,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8474,7 +8474,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8498,7 +8498,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8527,7 +8527,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8554,7 +8554,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8578,7 +8578,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8602,7 +8602,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -8626,7 +8626,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep[], Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -8650,7 +8650,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8674,7 +8674,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8698,7 +8698,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8865,7 +8865,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Support.HanaProvisioningStatesEnum]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Support.HanaProvisioningStatesEnum]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Support.HanaProvisioningStatesEnum, Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Support.HanaProvisioningStatesEnum, Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -8877,7 +8877,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Support.HanaProvisioningStatesEnum": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Support.HanaProvisioningStatesEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Support.HanaProvisioningStatesEnum, Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Support.HanaProvisioningStatesEnum, Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8949,7 +8949,7 @@ "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]", - "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -8961,7 +8961,7 @@ "System.Management.Automation.CompletionResult": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.CompletionResult", - "AssemblyQualifiedName": "System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8971,7 +8971,7 @@ "System.Type": { "Namespace": "System", "Name": "System.Type", - "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8981,7 +8981,7 @@ "System.Nullable`1[System.Boolean]": { "Namespace": "System", "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -8993,7 +8993,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Support.AccessPolicyUpdateKind]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Support.AccessPolicyUpdateKind]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Support.AccessPolicyUpdateKind, Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Support.AccessPolicyUpdateKind, Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -9005,7 +9005,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Support.AccessPolicyUpdateKind": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Support.AccessPolicyUpdateKind", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Support.AccessPolicyUpdateKind, Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Support.AccessPolicyUpdateKind, Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9077,7 +9077,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep, Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HanaOnAzure.Runtime.SendAsyncStep, Az.HanaOnAzure.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Target": "System.Object", "Method": "System.Reflection.MethodInfo" @@ -9219,7 +9219,7 @@ "System.Object": { "Namespace": "System", "Name": "System.Object", - "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9229,7 +9229,7 @@ "System.Reflection.MethodInfo": { "Namespace": "System.Reflection", "Name": "System.Reflection.MethodInfo", - "AssemblyQualifiedName": "System.Reflection.MethodInfo, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Reflection.MethodInfo, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9239,7 +9239,7 @@ "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]": { "Namespace": "System.Threading.Tasks", "Name": "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]", - "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[System.Net.Http.HttpResponseMessage, System.Net.Http, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[System.Net.Http.HttpResponseMessage, System.Net.Http, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -9251,7 +9251,7 @@ "System.Net.Http.HttpResponseMessage": { "Namespace": "System.Net.Http", "Name": "System.Net.Http.HttpResponseMessage", - "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9261,7 +9261,7 @@ "System.IAsyncResult": { "Namespace": "System", "Name": "System.IAsyncResult", - "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9271,7 +9271,7 @@ "System.Void": { "Namespace": "System", "Name": "System.Void", - "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9281,7 +9281,7 @@ "System.Delegate[]": { "Namespace": "System", "Name": "System.Delegate[]", - "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.Delegate", "GenericTypeArguments": [], @@ -9291,7 +9291,7 @@ "System.Delegate": { "Namespace": "System", "Name": "System.Delegate", - "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], diff --git a/tools/Tools.Common/SerializedCmdlets/Az.HealthBot.json b/tools/Tools.Common/SerializedCmdlets/Az.HealthBot.json index 6bd4d87332e3..525498bda5e3 100644 --- a/tools/Tools.Common/SerializedCmdlets/Az.HealthBot.json +++ b/tools/Tools.Common/SerializedCmdlets/Az.HealthBot.json @@ -7,7 +7,7 @@ "Name": "Get-AzHealthBot", "ClassName": "Get-AzHealthBot", "SupportsShouldProcess": false, - "ConfirmImpact": 2, + "ConfirmImpact": 0, "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "List1", @@ -16,7 +16,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Models.Api20201208", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Models.Api20201208.IHealthBot", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Models.Api20201208.IHealthBot, Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Models.Api20201208.IHealthBot, Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SkuName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Support.SkuName", "ProvisioningState": "System.String", @@ -41,7 +41,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -59,7 +59,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -77,7 +77,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -95,7 +95,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Models.IHealthBotIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Models.IHealthBotIdentity, Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Models.IHealthBotIdentity, Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BotName": "System.String", "Id": "System.String", @@ -121,7 +121,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -139,7 +139,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -157,7 +157,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -175,7 +175,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -193,7 +193,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -211,7 +211,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -229,7 +229,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -255,7 +255,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -279,7 +279,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -303,7 +303,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -330,7 +330,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -354,7 +354,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -378,7 +378,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -402,7 +402,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -426,7 +426,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -450,7 +450,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -474,7 +474,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -503,7 +503,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -527,7 +527,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -554,7 +554,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -578,7 +578,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -602,7 +602,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -626,7 +626,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -650,7 +650,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -674,7 +674,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -698,7 +698,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -727,7 +727,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -754,7 +754,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -778,7 +778,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -802,7 +802,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -826,7 +826,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -850,7 +850,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -874,7 +874,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -898,7 +898,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -927,7 +927,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Models.IHealthBotIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Models.IHealthBotIdentity, Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Models.IHealthBotIdentity, Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BotName": "System.String", "Id": "System.String", @@ -959,7 +959,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -983,7 +983,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1007,7 +1007,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1031,7 +1031,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1055,7 +1055,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1079,7 +1079,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1103,7 +1103,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1135,7 +1135,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1159,7 +1159,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1183,7 +1183,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1207,7 +1207,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1231,7 +1231,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1255,7 +1255,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1279,7 +1279,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1306,7 +1306,7 @@ "NounName": "AzHealthBot", "Name": "New-AzHealthBot", "ClassName": "New-AzHealthBot", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -1316,7 +1316,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Models.Api20201208", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Models.Api20201208.IHealthBot", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Models.Api20201208.IHealthBot, Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Models.Api20201208.IHealthBot, Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SkuName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Support.SkuName", "ProvisioningState": "System.String", @@ -1341,7 +1341,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1359,7 +1359,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1377,7 +1377,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1395,7 +1395,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1413,73 +1413,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Support.SkuName", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Support.SkuName, Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Support.SkuName, Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Support.SkuName" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -1493,7 +1431,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1514,7 +1452,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1532,7 +1470,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1550,7 +1488,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1568,7 +1506,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1586,7 +1524,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1604,7 +1542,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1622,7 +1560,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1640,7 +1578,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1658,7 +1596,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1684,7 +1622,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1708,7 +1646,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1732,7 +1670,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1756,7 +1694,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1780,73 +1718,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Support.SkuName", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Support.SkuName, Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Support.SkuName, Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Support.SkuName" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -1866,7 +1742,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1893,7 +1769,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1917,7 +1793,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1941,7 +1817,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1965,7 +1841,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1989,7 +1865,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2013,7 +1889,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2037,7 +1913,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2061,7 +1937,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2085,7 +1961,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2112,7 +1988,7 @@ "NounName": "AzHealthBot", "Name": "Remove-AzHealthBot", "ClassName": "Remove-AzHealthBot", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -2122,7 +1998,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2143,7 +2019,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2161,7 +2037,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2179,7 +2055,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2197,7 +2073,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Models.IHealthBotIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Models.IHealthBotIdentity, Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Models.IHealthBotIdentity, Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BotName": "System.String", "Id": "System.String", @@ -2223,7 +2099,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2241,7 +2117,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2259,7 +2135,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2277,7 +2153,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2295,7 +2171,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2313,7 +2189,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2331,7 +2207,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2349,7 +2225,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2367,7 +2243,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2385,7 +2261,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2411,7 +2287,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2435,7 +2311,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2459,7 +2335,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2486,7 +2362,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2510,7 +2386,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2534,7 +2410,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2558,7 +2434,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2582,7 +2458,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2606,7 +2482,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2630,7 +2506,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2654,7 +2530,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2678,7 +2554,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2702,7 +2578,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2731,7 +2607,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Models.IHealthBotIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Models.IHealthBotIdentity, Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Models.IHealthBotIdentity, Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BotName": "System.String", "Id": "System.String", @@ -2763,7 +2639,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2787,7 +2663,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2811,7 +2687,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2835,7 +2711,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2859,7 +2735,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2883,7 +2759,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2907,7 +2783,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2931,7 +2807,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2955,7 +2831,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2979,7 +2855,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3011,7 +2887,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3035,7 +2911,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3059,7 +2935,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3083,7 +2959,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3107,7 +2983,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3131,7 +3007,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3155,7 +3031,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3179,7 +3055,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3203,7 +3079,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3227,7 +3103,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3254,7 +3130,7 @@ "NounName": "AzHealthBot", "Name": "Update-AzHealthBot", "ClassName": "Update-AzHealthBot", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -3264,7 +3140,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Models.Api20201208", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Models.Api20201208.IHealthBot", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Models.Api20201208.IHealthBot, Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Models.Api20201208.IHealthBot, Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SkuName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Support.SkuName", "ProvisioningState": "System.String", @@ -3289,7 +3165,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3307,7 +3183,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3325,7 +3201,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3343,7 +3219,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Models.IHealthBotIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Models.IHealthBotIdentity, Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Models.IHealthBotIdentity, Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BotName": "System.String", "Id": "System.String", @@ -3366,73 +3242,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Support.SkuName", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Support.SkuName, Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Support.SkuName, Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Support.SkuName" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -3446,7 +3260,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3467,7 +3281,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3485,7 +3299,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3503,7 +3317,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3521,7 +3335,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3539,7 +3353,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3557,7 +3371,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3575,7 +3389,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3601,7 +3415,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3625,7 +3439,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3649,7 +3463,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3673,73 +3487,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Support.SkuName", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Support.SkuName, Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Support.SkuName, Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Support.SkuName" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -3759,7 +3511,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3786,7 +3538,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3810,7 +3562,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3834,7 +3586,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3858,7 +3610,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3882,7 +3634,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3906,7 +3658,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3930,7 +3682,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3959,7 +3711,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Models.IHealthBotIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Models.IHealthBotIdentity, Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Models.IHealthBotIdentity, Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "BotName": "System.String", "Id": "System.String", @@ -3988,73 +3740,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Support.SkuName", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Support.SkuName, Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Support.SkuName, Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Support.SkuName" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -4074,7 +3764,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4101,7 +3791,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4125,7 +3815,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4149,7 +3839,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4173,7 +3863,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4197,7 +3887,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4221,7 +3911,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4245,7 +3935,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4274,73 +3964,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Support.SkuName", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Support.SkuName, Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Support.SkuName, Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Support.SkuName" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -4360,7 +3988,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4387,7 +4015,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4411,7 +4039,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4435,7 +4063,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4459,7 +4087,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep[], Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4483,7 +4111,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4507,7 +4135,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4531,7 +4159,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4698,7 +4326,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Support.SkuName": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Support.SkuName", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Support.SkuName, Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Support.SkuName, Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4770,7 +4398,7 @@ "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]", - "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -4782,7 +4410,7 @@ "System.Management.Automation.CompletionResult": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.CompletionResult", - "AssemblyQualifiedName": "System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4792,7 +4420,7 @@ "System.Type": { "Namespace": "System", "Name": "System.Type", - "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4802,7 +4430,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep, Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.HealthBot.Runtime.SendAsyncStep, Az.HealthBot.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Target": "System.Object", "Method": "System.Reflection.MethodInfo" @@ -4944,7 +4572,7 @@ "System.Object": { "Namespace": "System", "Name": "System.Object", - "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4954,7 +4582,7 @@ "System.Reflection.MethodInfo": { "Namespace": "System.Reflection", "Name": "System.Reflection.MethodInfo", - "AssemblyQualifiedName": "System.Reflection.MethodInfo, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Reflection.MethodInfo, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4964,7 +4592,7 @@ "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]": { "Namespace": "System.Threading.Tasks", "Name": "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]", - "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[System.Net.Http.HttpResponseMessage, System.Net.Http, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[System.Net.Http.HttpResponseMessage, System.Net.Http, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -4976,7 +4604,7 @@ "System.Net.Http.HttpResponseMessage": { "Namespace": "System.Net.Http", "Name": "System.Net.Http.HttpResponseMessage", - "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4986,7 +4614,7 @@ "System.IAsyncResult": { "Namespace": "System", "Name": "System.IAsyncResult", - "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4996,7 +4624,7 @@ "System.Void": { "Namespace": "System", "Name": "System.Void", - "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5006,7 +4634,7 @@ "System.Delegate[]": { "Namespace": "System", "Name": "System.Delegate[]", - "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.Delegate", "GenericTypeArguments": [], @@ -5016,7 +4644,7 @@ "System.Delegate": { "Namespace": "System", "Name": "System.Delegate", - "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], diff --git a/tools/Tools.Common/SerializedCmdlets/Az.KubernetesConfiguration.json b/tools/Tools.Common/SerializedCmdlets/Az.KubernetesConfiguration.json index 87cd994c8ab4..22b2a6ad20d3 100644 --- a/tools/Tools.Common/SerializedCmdlets/Az.KubernetesConfiguration.json +++ b/tools/Tools.Common/SerializedCmdlets/Az.KubernetesConfiguration.json @@ -1,47 +1,37 @@ { - "ModuleName": "Az.KubernetesConfiguration", - "ModuleVersion": "0.5.0", + "ProcessedTypes": {}, "Cmdlets": [ { "VerbName": "Get", - "NounName": "AzKubernetesConfiguration", - "Name": "Get-AzKubernetesConfiguration", - "ClassName": "Get-AzKubernetesConfiguration", + "NounName": "AzKubernetesConfigFluxOperationStatus", + "Name": "Get-AzKubernetesConfigFluxOperationStatus", + "ClassName": "Get-AzKubernetesConfigFluxOperationStatus", "SupportsShouldProcess": false, "ConfirmImpact": 0, + "HasForceSwitch": true, "SupportsPaging": false, - "DefaultParameterSetName": "List", + "DefaultParameterSetName": "Get", "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210301", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210301.ISourceControlConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210301.ISourceControlConfiguration, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IOperationStatusResult", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IOperationStatusResult, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "ConfigurationProtectedSetting": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210301.IConfigurationProtectedSettings", - "ComplianceStatusComplianceState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ComplianceStateType]", - "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.CreatedByType]", - "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.CreatedByType]", - "ComplianceStatusMessageLevel": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.MessageLevelType]", - "OperatorScope": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.OperatorScopeType]", - "OperatorType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.OperatorType]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ProvisioningStateType]", - "EnableHelmOperator": "System.Nullable`1[System.Boolean]", - "SystemDataCreatedAt": "System.Nullable`1[System.DateTime]", - "ComplianceStatusLastConfigApplied": "System.Nullable`1[System.DateTime]", - "SystemDataLastModifiedAt": "System.Nullable`1[System.DateTime]", - "OperatorInstanceName": "System.String", - "OperatorNamespace": "System.String", - "OperatorParam": "System.String", - "SystemDataLastModifiedBy": "System.String", - "HelmOperatorPropertyChartValue": "System.String", - "RepositoryPublicKey": "System.String", - "RepositoryUrl": "System.String", - "SshKnownHostsContent": "System.String", - "SystemDataCreatedBy": "System.String", - "HelmOperatorPropertyChartVersion": "System.String", - "ComplianceStatusMessage": "System.String" - } + "AdditionalInfo": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20.IErrorAdditionalInfo[]", + "Detail": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20.IErrorDetail[]", + "Property": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IOperationStatusResultProperties", + "Code": "System.String", + "Id": "System.String", + "Message": "System.String", + "Name": "System.String", + "Status": "System.String", + "Target": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, "ParameterSets": [ "__AllParameterSets" @@ -51,71 +41,139 @@ "Parameters": [ { "Name": "ClusterName", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "ClusterType", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { - "Name": "ResourceGroupName", + "Name": "FluxConfigurationName", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { - "Name": "SubscriptionId", + "Name": "OperationId", + "AliasList": [], "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { - "Name": "Name", - "AliasList": [ - "SourceControlConfigurationName" - ], + "Name": "ResourceGroupName", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "InputObject", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClusterName": "System.String", "ClusterResourceName": "System.String", "ClusterRp": "System.String", "ExtensionName": "System.String", + "FluxConfigurationName": "System.String", "Id": "System.String", "OperationId": "System.String", "ResourceGroupName": "System.String", "SourceControlConfigurationName": "System.String", "SubscriptionId": "System.String" - } + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { @@ -127,64 +185,124 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "Break", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "HttpPipelineAppend", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "HttpPipelinePrepend", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "Proxy", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "ProxyCredential", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "ProxyUseDefaultCredentials", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false } ], @@ -195,11 +313,20 @@ { "ParameterMetadata": { "Name": "ClusterName", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": true, @@ -210,60 +337,20 @@ { "ParameterMetadata": { "Name": "ClusterType", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "SourceControlConfigurationName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": true, @@ -273,128 +360,21 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Break", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyCredential", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "List", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "ClusterName", + "Name": "FluxConfigurationName", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": true, @@ -404,12 +384,21 @@ }, { "ParameterMetadata": { - "Name": "ClusterType", + "Name": "OperationId", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": true, @@ -420,11 +409,20 @@ { "ParameterMetadata": { "Name": "ResourceGroupName", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": true, @@ -435,12 +433,20 @@ { "ParameterMetadata": { "Name": "SubscriptionId", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -458,8 +464,16 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -470,11 +484,20 @@ { "ParameterMetadata": { "Name": "Break", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -485,12 +508,20 @@ { "ParameterMetadata": { "Name": "HttpPipelineAppend", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -501,12 +532,20 @@ { "ParameterMetadata": { "Name": "HttpPipelinePrepend", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -517,11 +556,20 @@ { "ParameterMetadata": { "Name": "Proxy", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -532,11 +580,20 @@ { "ParameterMetadata": { "Name": "ProxyCredential", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -547,11 +604,20 @@ { "ParameterMetadata": { "Name": "ProxyUseDefaultCredentials", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -567,22 +633,31 @@ { "ParameterMetadata": { "Name": "InputObject", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClusterName": "System.String", "ClusterResourceName": "System.String", "ClusterRp": "System.String", "ExtensionName": "System.String", + "FluxConfigurationName": "System.String", "Id": "System.String", "OperationId": "System.String", "ResourceGroupName": "System.String", "SourceControlConfigurationName": "System.String", "SubscriptionId": "System.String" - } + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": true, @@ -600,8 +675,16 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -612,11 +695,20 @@ { "ParameterMetadata": { "Name": "Break", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -627,12 +719,20 @@ { "ParameterMetadata": { "Name": "HttpPipelineAppend", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -643,12 +743,20 @@ { "ParameterMetadata": { "Name": "HttpPipelinePrepend", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -659,11 +767,20 @@ { "ParameterMetadata": { "Name": "Proxy", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -674,11 +791,20 @@ { "ParameterMetadata": { "Name": "ProxyCredential", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -689,11 +815,20 @@ { "ParameterMetadata": { "Name": "ProxyUseDefaultCredentials", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -716,8 +851,16 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -728,11 +871,20 @@ { "ParameterMetadata": { "Name": "Break", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -743,12 +895,20 @@ { "ParameterMetadata": { "Name": "HttpPipelineAppend", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -759,12 +919,20 @@ { "ParameterMetadata": { "Name": "HttpPipelinePrepend", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -775,11 +943,20 @@ { "ParameterMetadata": { "Name": "Proxy", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -790,11 +967,20 @@ { "ParameterMetadata": { "Name": "ProxyCredential", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -805,11 +991,20 @@ { "ParameterMetadata": { "Name": "ProxyUseDefaultCredentials", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -821,55 +1016,54 @@ } ], "AliasList": [ - "Get-AzK8sConfiguration" + "Get-AzK8sConfigFluxOperationStatus" ] }, { "VerbName": "Get", - "NounName": "AzKubernetesExtension", - "Name": "Get-AzKubernetesExtension", - "ClassName": "Get-AzKubernetesExtension", + "NounName": "AzKubernetesConfiguration", + "Name": "Get-AzKubernetesConfiguration", + "ClassName": "Get-AzKubernetesConfiguration", "SupportsShouldProcess": false, "ConfirmImpact": 0, + "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "List", "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210901", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210901.IExtension", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210901.IExtension, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.ISourceControlConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.ISourceControlConfiguration, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "ErrorInfoAdditionalInfo": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20.IErrorAdditionalInfo[]", - "ErrorInfoDetail": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20.IErrorDetail[]", - "ConfigurationProtectedSetting": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210901.IExtensionPropertiesConfigurationProtectedSettings", - "ConfigurationSetting": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210901.IExtensionPropertiesConfigurationSettings", - "CustomLocationSetting": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210901.IExtensionPropertiesCustomLocationSettings", - "Statuses": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210901.IExtensionStatus[]", - "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.CreatedByType]", + "ConfigurationProtectedSetting": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IConfigurationProtectedSettings", + "ComplianceStatusComplianceState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ComplianceStateType]", "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.CreatedByType]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ProvisioningState]", - "AkAssignedIdentityType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ResourceIdentityType]", - "IdentityType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ResourceIdentityType]", - "AutoUpgradeMinorVersion": "System.Nullable`1[System.Boolean]", - "SystemDataLastModifiedAt": "System.Nullable`1[System.DateTime]", + "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.CreatedByType]", + "ComplianceStatusMessageLevel": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.MessageLevelType]", + "OperatorScope": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.OperatorScopeType]", + "OperatorType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.OperatorType]", + "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ProvisioningStateType]", + "EnableHelmOperator": "System.Nullable`1[System.Boolean]", "SystemDataCreatedAt": "System.Nullable`1[System.DateTime]", - "SystemDataCreatedBy": "System.String", + "ComplianceStatusLastConfigApplied": "System.Nullable`1[System.DateTime]", + "SystemDataLastModifiedAt": "System.Nullable`1[System.DateTime]", + "OperatorInstanceName": "System.String", + "OperatorNamespace": "System.String", + "OperatorParam": "System.String", "SystemDataLastModifiedBy": "System.String", - "ReleaseTrain": "System.String", - "AkAssignedIdentityPrincipalId": "System.String", - "IdentityPrincipalId": "System.String", - "NamespaceTargetNamespace": "System.String", - "IdentityTenantId": "System.String", - "ExtensionType": "System.String", - "ErrorInfoTarget": "System.String", - "ErrorInfoMessage": "System.String", - "ErrorInfoCode": "System.String", - "ClusterReleaseNamespace": "System.String", - "AkAssignedIdentityTenantId": "System.String", - "PackageUri": "System.String", - "Version": "System.String" - } + "HelmOperatorPropertyChartValue": "System.String", + "RepositoryPublicKey": "System.String", + "RepositoryUrl": "System.String", + "SshKnownHostsContent": "System.String", + "SystemDataCreatedBy": "System.String", + "HelmOperatorPropertyChartVersion": "System.String", + "ComplianceStatusMessage": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, "ParameterSets": [ "__AllParameterSets" @@ -879,71 +1073,123 @@ "Parameters": [ { "Name": "ClusterName", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "ClusterType", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "ResourceGroupName", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "SubscriptionId", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "Name", "AliasList": [ - "ExtensionName" + "SourceControlConfigurationName" ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "InputObject", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClusterName": "System.String", "ClusterResourceName": "System.String", "ClusterRp": "System.String", "ExtensionName": "System.String", + "FluxConfigurationName": "System.String", "Id": "System.String", "OperationId": "System.String", "ResourceGroupName": "System.String", "SourceControlConfigurationName": "System.String", "SubscriptionId": "System.String" - } + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { @@ -955,64 +1201,124 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "Break", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "HttpPipelineAppend", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "HttpPipelinePrepend", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "Proxy", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "ProxyCredential", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "ProxyUseDefaultCredentials", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false } ], @@ -1023,11 +1329,20 @@ { "ParameterMetadata": { "Name": "ClusterName", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": true, @@ -1038,11 +1353,20 @@ { "ParameterMetadata": { "Name": "ClusterType", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": true, @@ -1053,11 +1377,20 @@ { "ParameterMetadata": { "Name": "ResourceGroupName", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": true, @@ -1068,12 +1401,20 @@ { "ParameterMetadata": { "Name": "SubscriptionId", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -1085,13 +1426,21 @@ "ParameterMetadata": { "Name": "Name", "AliasList": [ - "ExtensionName" + "SourceControlConfigurationName" ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": true, @@ -1109,8 +1458,16 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -1121,11 +1478,20 @@ { "ParameterMetadata": { "Name": "Break", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -1136,12 +1502,20 @@ { "ParameterMetadata": { "Name": "HttpPipelineAppend", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -1152,12 +1526,20 @@ { "ParameterMetadata": { "Name": "HttpPipelinePrepend", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -1168,11 +1550,20 @@ { "ParameterMetadata": { "Name": "Proxy", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -1183,11 +1574,20 @@ { "ParameterMetadata": { "Name": "ProxyCredential", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -1198,11 +1598,20 @@ { "ParameterMetadata": { "Name": "ProxyUseDefaultCredentials", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -1218,11 +1627,20 @@ { "ParameterMetadata": { "Name": "ClusterName", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": true, @@ -1233,11 +1651,20 @@ { "ParameterMetadata": { "Name": "ClusterType", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": true, @@ -1248,11 +1675,20 @@ { "ParameterMetadata": { "Name": "ResourceGroupName", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": true, @@ -1263,12 +1699,20 @@ { "ParameterMetadata": { "Name": "SubscriptionId", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -1286,8 +1730,16 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -1298,11 +1750,20 @@ { "ParameterMetadata": { "Name": "Break", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -1313,12 +1774,20 @@ { "ParameterMetadata": { "Name": "HttpPipelineAppend", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -1329,12 +1798,20 @@ { "ParameterMetadata": { "Name": "HttpPipelinePrepend", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -1345,11 +1822,20 @@ { "ParameterMetadata": { "Name": "Proxy", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -1360,11 +1846,20 @@ { "ParameterMetadata": { "Name": "ProxyCredential", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -1375,11 +1870,20 @@ { "ParameterMetadata": { "Name": "ProxyUseDefaultCredentials", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -1395,22 +1899,31 @@ { "ParameterMetadata": { "Name": "InputObject", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClusterName": "System.String", "ClusterResourceName": "System.String", "ClusterRp": "System.String", "ExtensionName": "System.String", + "FluxConfigurationName": "System.String", "Id": "System.String", "OperationId": "System.String", "ResourceGroupName": "System.String", "SourceControlConfigurationName": "System.String", "SubscriptionId": "System.String" - } + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": true, @@ -1428,8 +1941,16 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -1440,11 +1961,20 @@ { "ParameterMetadata": { "Name": "Break", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -1455,12 +1985,20 @@ { "ParameterMetadata": { "Name": "HttpPipelineAppend", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -1471,12 +2009,20 @@ { "ParameterMetadata": { "Name": "HttpPipelinePrepend", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -1487,11 +2033,20 @@ { "ParameterMetadata": { "Name": "Proxy", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -1502,11 +2057,20 @@ { "ParameterMetadata": { "Name": "ProxyCredential", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -1517,11 +2081,20 @@ { "ParameterMetadata": { "Name": "ProxyUseDefaultCredentials", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -1544,8 +2117,16 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -1556,11 +2137,20 @@ { "ParameterMetadata": { "Name": "Break", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -1571,12 +2161,20 @@ { "ParameterMetadata": { "Name": "HttpPipelineAppend", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -1587,12 +2185,20 @@ { "ParameterMetadata": { "Name": "HttpPipelinePrepend", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -1603,11 +2209,20 @@ { "ParameterMetadata": { "Name": "Proxy", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -1618,11 +2233,20 @@ { "ParameterMetadata": { "Name": "ProxyCredential", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -1633,11 +2257,20 @@ { "ParameterMetadata": { "Name": "ProxyUseDefaultCredentials", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -1649,49 +2282,69 @@ } ], "AliasList": [ - "Get-AzK8sExtension" + "Get-AzK8sConfiguration" ] }, { - "VerbName": "New", - "NounName": "AzKubernetesConfiguration", - "Name": "New-AzKubernetesConfiguration", - "ClassName": "New-AzKubernetesConfiguration", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, + "VerbName": "Get", + "NounName": "AzKubernetesConfigurationFlux", + "Name": "Get-AzKubernetesConfigurationFlux", + "ClassName": "Get-AzKubernetesConfigurationFlux", + "SupportsShouldProcess": false, + "ConfirmImpact": 0, + "HasForceSwitch": true, "SupportsPaging": false, - "DefaultParameterSetName": "CreateExpanded", + "DefaultParameterSetName": "List", "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210301", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210301.ISourceControlConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210301.ISourceControlConfiguration, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IFluxConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IFluxConfiguration, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { - "ConfigurationProtectedSetting": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210301.IConfigurationProtectedSettings", - "ComplianceStatusComplianceState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ComplianceStateType]", - "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.CreatedByType]", + "ConfigurationProtectedSetting": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IFluxConfigurationPropertiesConfigurationProtectedSettings", + "Kustomization": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IFluxConfigurationPropertiesKustomizations", + "Statuses": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IObjectStatusDefinition[]", "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.CreatedByType]", - "ComplianceStatusMessageLevel": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.MessageLevelType]", - "OperatorScope": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.OperatorScopeType]", - "OperatorType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.OperatorType]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ProvisioningStateType]", - "EnableHelmOperator": "System.Nullable`1[System.Boolean]", - "SystemDataCreatedAt": "System.Nullable`1[System.DateTime]", - "ComplianceStatusLastConfigApplied": "System.Nullable`1[System.DateTime]", + "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.CreatedByType]", + "ComplianceState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.FluxComplianceState]", + "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ProvisioningState]", + "Scope": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ScopeType]", + "SourceKind": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.SourceKindType]", + "BucketInsecure": "System.Nullable`1[System.Boolean]", + "Suspend": "System.Nullable`1[System.Boolean]", "SystemDataLastModifiedAt": "System.Nullable`1[System.DateTime]", - "OperatorInstanceName": "System.String", - "OperatorNamespace": "System.String", - "OperatorParam": "System.String", - "SystemDataLastModifiedBy": "System.String", - "HelmOperatorPropertyChartValue": "System.String", + "StatusUpdatedAt": "System.Nullable`1[System.DateTime]", + "SourceUpdatedAt": "System.Nullable`1[System.DateTime]", + "SystemDataCreatedAt": "System.Nullable`1[System.DateTime]", + "BucketTimeoutInSecond": "System.Nullable`1[System.Int64]", + "BucketSyncIntervalInSecond": "System.Nullable`1[System.Int64]", + "GitRepositorySyncIntervalInSecond": "System.Nullable`1[System.Int64]", + "GitRepositoryTimeoutInSecond": "System.Nullable`1[System.Int64]", + "BucketAccessKey": "System.Security.SecureString", "RepositoryPublicKey": "System.String", - "RepositoryUrl": "System.String", - "SshKnownHostsContent": "System.String", + "BucketLocalAuthRef": "System.String", + "BucketName": "System.String", "SystemDataCreatedBy": "System.String", - "HelmOperatorPropertyChartVersion": "System.String", - "ComplianceStatusMessage": "System.String" - } + "BucketUrl": "System.String", + "ErrorMessage": "System.String", + "GitRepositoryHttpsCaCert": "System.String", + "GitRepositoryHttpsUser": "System.String", + "GitRepositoryLocalAuthRef": "System.String", + "SourceSyncedCommitId": "System.String", + "GitRepositorySshKnownHost": "System.String", + "GitRepositoryUrl": "System.String", + "RepositoryRefTag": "System.String", + "RepositoryRefSemver": "System.String", + "RepositoryRefCommit": "System.String", + "RepositoryRefBranch": "System.String", + "SystemDataLastModifiedBy": "System.String", + "Namespace": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, "ParameterSets": [ "__AllParameterSets" @@ -1701,140 +2354,123 @@ "Parameters": [ { "Name": "ClusterName", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { - "Name": "Name", - "AliasList": [ - "SourceControlConfigurationName" - ], + "Name": "ClusterType", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "ResourceGroupName", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ClusterType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "SubscriptionId", + "AliasList": [], "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "RepositoryUrl", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "EnableHelmOperator", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HelmOperatorChartValue", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HelmOperatorChartVersion", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "OperatorInstanceName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "OperatorNamespace", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "OperatorParameter", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ClusterScoped", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { - "Name": "SshKnownHost", + "Name": "Name", + "AliasList": [ + "FluxConfigurationName" + ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { - "Name": "ConfigurationProtectedSetting", + "Name": "InputObject", + "AliasList": [], "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ClusterName": "System.String", + "ClusterResourceName": "System.String", + "ClusterRp": "System.String", + "ExtensionName": "System.String", + "FluxConfigurationName": "System.String", + "Id": "System.String", + "OperationId": "System.String", + "ResourceGroupName": "System.String", + "SourceControlConfigurationName": "System.String", + "SubscriptionId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { @@ -1846,79 +2482,148 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "Break", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "HttpPipelineAppend", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "HttpPipelinePrepend", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "Proxy", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "ProxyCredential", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "ProxyUseDefaultCredentials", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "Get", "Parameters": [ { "ParameterMetadata": { "Name": "ClusterName", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": true, @@ -1928,15 +2633,21 @@ }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "SourceControlConfigurationName" - ], + "Name": "ClusterType", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": true, @@ -1947,11 +2658,20 @@ { "ParameterMetadata": { "Name": "ResourceGroupName", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": true, @@ -1961,12 +2681,21 @@ }, { "ParameterMetadata": { - "Name": "ClusterType", + "Name": "SubscriptionId", + "AliasList": [], "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -1976,42 +2705,74 @@ }, { "ParameterMetadata": { - "Name": "SubscriptionId", + "Name": "Name", + "AliasList": [ + "FluxConfigurationName" + ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RepositoryUrl", + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableHelmOperator", + "Name": "Break", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -2021,12 +2782,21 @@ }, { "ParameterMetadata": { - "Name": "HelmOperatorChartValue", + "Name": "HttpPipelineAppend", + "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -2036,12 +2806,21 @@ }, { "ParameterMetadata": { - "Name": "HelmOperatorChartVersion", + "Name": "HttpPipelinePrepend", + "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -2051,12 +2830,21 @@ }, { "ParameterMetadata": { - "Name": "OperatorInstanceName", + "Name": "Proxy", + "AliasList": [], "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -2066,12 +2854,21 @@ }, { "ParameterMetadata": { - "Name": "OperatorNamespace", + "Name": "ProxyCredential", + "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -2081,57 +2878,122 @@ }, { "ParameterMetadata": { - "Name": "OperatorParameter", + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "List", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ClusterName", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ClusterScoped", + "Name": "ClusterType", + "AliasList": [], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SshKnownHost", + "Name": "ResourceGroupName", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ConfigurationProtectedSetting", + "Name": "SubscriptionId", + "AliasList": [], "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -2149,8 +3011,16 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -2161,11 +3031,20 @@ { "ParameterMetadata": { "Name": "Break", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -2176,12 +3055,20 @@ { "ParameterMetadata": { "Name": "HttpPipelineAppend", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -2192,12 +3079,20 @@ { "ParameterMetadata": { "Name": "HttpPipelinePrepend", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -2208,11 +3103,20 @@ { "ParameterMetadata": { "Name": "Proxy", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -2223,11 +3127,20 @@ { "ParameterMetadata": { "Name": "ProxyCredential", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -2238,11 +3151,20 @@ { "ParameterMetadata": { "Name": "ProxyUseDefaultCredentials", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -2251,48 +3173,4393 @@ "ValueFromPipelineByPropertyName": false } ] - } - ], - "AliasList": [ - "New-AzK8sConfiguration" - ] - }, - { - "VerbName": "New", - "NounName": "AzKubernetesExtension", - "Name": "New-AzKubernetesExtension", - "ClassName": "New-AzKubernetesExtension", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "CreateExpanded", - "OutputTypes": [ + }, { - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210901", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210901.IExtension", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210901.IExtension, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ErrorInfoAdditionalInfo": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20.IErrorAdditionalInfo[]", - "ErrorInfoDetail": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20.IErrorDetail[]", - "ConfigurationProtectedSetting": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210901.IExtensionPropertiesConfigurationProtectedSettings", - "ConfigurationSetting": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210901.IExtensionPropertiesConfigurationSettings", - "CustomLocationSetting": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210901.IExtensionPropertiesCustomLocationSettings", - "Statuses": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210901.IExtensionStatus[]", - "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.CreatedByType]", - "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.CreatedByType]", - "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ProvisioningState]", - "AkAssignedIdentityType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ResourceIdentityType]", - "IdentityType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ResourceIdentityType]", - "AutoUpgradeMinorVersion": "System.Nullable`1[System.Boolean]", - "SystemDataLastModifiedAt": "System.Nullable`1[System.DateTime]", + "Name": "GetViaIdentity", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ClusterName": "System.String", + "ClusterResourceName": "System.String", + "ClusterRp": "System.String", + "ExtensionName": "System.String", + "FluxConfigurationName": "System.String", + "Id": "System.String", + "OperationId": "System.String", + "ResourceGroupName": "System.String", + "SourceControlConfigurationName": "System.String", + "SubscriptionId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [ + "Get-AzK8sConfigurationFlux" + ] + }, + { + "VerbName": "Get", + "NounName": "AzKubernetesExtension", + "Name": "Get-AzKubernetesExtension", + "ClassName": "Get-AzKubernetesExtension", + "SupportsShouldProcess": false, + "ConfirmImpact": 0, + "HasForceSwitch": true, + "SupportsPaging": false, + "DefaultParameterSetName": "List", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IExtension", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IExtension, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ErrorInfoAdditionalInfo": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20.IErrorAdditionalInfo[]", + "ErrorInfoDetail": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20.IErrorDetail[]", + "ConfigurationProtectedSetting": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IExtensionPropertiesConfigurationProtectedSettings", + "ConfigurationSetting": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IExtensionPropertiesConfigurationSettings", + "CustomLocationSetting": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IExtensionPropertiesCustomLocationSettings", + "Statuses": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IExtensionStatus[]", + "AkAssignedIdentityType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.AksIdentityType]", + "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.CreatedByType]", + "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.CreatedByType]", + "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ProvisioningState]", + "IdentityType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ResourceIdentityType]", + "AutoUpgradeMinorVersion": "System.Nullable`1[System.Boolean]", + "SystemDataLastModifiedAt": "System.Nullable`1[System.DateTime]", + "SystemDataCreatedAt": "System.Nullable`1[System.DateTime]", + "ReleaseTrain": "System.String", + "AkAssignedIdentityPrincipalId": "System.String", + "SystemDataLastModifiedBy": "System.String", + "SystemDataCreatedBy": "System.String", + "PackageUri": "System.String", + "IdentityPrincipalId": "System.String", + "InstalledVersion": "System.String", + "IdentityTenantId": "System.String", + "ExtensionType": "System.String", + "ErrorInfoTarget": "System.String", + "ErrorInfoMessage": "System.String", + "ErrorInfoCode": "System.String", + "ClusterReleaseNamespace": "System.String", + "AkAssignedIdentityTenantId": "System.String", + "NamespaceTargetNamespace": "System.String", + "Version": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ClusterName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ClusterType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Name", + "AliasList": [ + "ExtensionName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ClusterName": "System.String", + "ClusterResourceName": "System.String", + "ClusterRp": "System.String", + "ExtensionName": "System.String", + "FluxConfigurationName": "System.String", + "Id": "System.String", + "OperationId": "System.String", + "ResourceGroupName": "System.String", + "SourceControlConfigurationName": "System.String", + "SubscriptionId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "Get", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ClusterName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ClusterType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ExtensionName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "List", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ClusterName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ClusterType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "GetViaIdentity", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ClusterName": "System.String", + "ClusterResourceName": "System.String", + "ClusterRp": "System.String", + "ExtensionName": "System.String", + "FluxConfigurationName": "System.String", + "Id": "System.String", + "OperationId": "System.String", + "ResourceGroupName": "System.String", + "SourceControlConfigurationName": "System.String", + "SubscriptionId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [ + "Get-AzK8sExtension" + ] + }, + { + "VerbName": "New", + "NounName": "AzKubernetesConfiguration", + "Name": "New-AzKubernetesConfiguration", + "ClassName": "New-AzKubernetesConfiguration", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "HasForceSwitch": true, + "SupportsPaging": false, + "DefaultParameterSetName": "CreateExpanded", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.ISourceControlConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.ISourceControlConfiguration, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ConfigurationProtectedSetting": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IConfigurationProtectedSettings", + "ComplianceStatusComplianceState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ComplianceStateType]", + "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.CreatedByType]", + "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.CreatedByType]", + "ComplianceStatusMessageLevel": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.MessageLevelType]", + "OperatorScope": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.OperatorScopeType]", + "OperatorType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.OperatorType]", + "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ProvisioningStateType]", + "EnableHelmOperator": "System.Nullable`1[System.Boolean]", + "SystemDataCreatedAt": "System.Nullable`1[System.DateTime]", + "ComplianceStatusLastConfigApplied": "System.Nullable`1[System.DateTime]", + "SystemDataLastModifiedAt": "System.Nullable`1[System.DateTime]", + "OperatorInstanceName": "System.String", + "OperatorNamespace": "System.String", + "OperatorParam": "System.String", + "SystemDataLastModifiedBy": "System.String", + "HelmOperatorPropertyChartValue": "System.String", + "RepositoryPublicKey": "System.String", + "RepositoryUrl": "System.String", + "SshKnownHostsContent": "System.String", + "SystemDataCreatedBy": "System.String", + "HelmOperatorPropertyChartVersion": "System.String", + "ComplianceStatusMessage": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ClusterName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ClusterType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Name", + "AliasList": [ + "SourceControlConfigurationName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ConfigurationProtectedSetting", + "AliasList": [], + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "EnableHelmOperator", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HelmOperatorChartValue", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HelmOperatorChartVersion", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "OperatorInstanceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "OperatorNamespace", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "OperatorParam", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ClusterScoped", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "RepositoryUrl", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SshKnownHost", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ClusterName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ClusterType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "SourceControlConfigurationName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ConfigurationProtectedSetting", + "AliasList": [], + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableHelmOperator", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HelmOperatorChartValue", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HelmOperatorChartVersion", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "OperatorInstanceName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "OperatorNamespace", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "OperatorParam", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ClusterScoped", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RepositoryUrl", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SshKnownHost", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [ + "New-AzK8sConfiguration" + ] + }, + { + "VerbName": "New", + "NounName": "AzKubernetesConfigurationFlux", + "Name": "New-AzKubernetesConfigurationFlux", + "ClassName": "New-AzKubernetesConfigurationFlux", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "HasForceSwitch": true, + "SupportsPaging": false, + "DefaultParameterSetName": "CreateExpanded", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IFluxConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IFluxConfiguration, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ConfigurationProtectedSetting": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IFluxConfigurationPropertiesConfigurationProtectedSettings", + "Kustomization": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IFluxConfigurationPropertiesKustomizations", + "Statuses": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IObjectStatusDefinition[]", + "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.CreatedByType]", + "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.CreatedByType]", + "ComplianceState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.FluxComplianceState]", + "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ProvisioningState]", + "Scope": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ScopeType]", + "SourceKind": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.SourceKindType]", + "BucketInsecure": "System.Nullable`1[System.Boolean]", + "Suspend": "System.Nullable`1[System.Boolean]", + "SystemDataLastModifiedAt": "System.Nullable`1[System.DateTime]", + "StatusUpdatedAt": "System.Nullable`1[System.DateTime]", + "SourceUpdatedAt": "System.Nullable`1[System.DateTime]", + "SystemDataCreatedAt": "System.Nullable`1[System.DateTime]", + "BucketTimeoutInSecond": "System.Nullable`1[System.Int64]", + "BucketSyncIntervalInSecond": "System.Nullable`1[System.Int64]", + "GitRepositorySyncIntervalInSecond": "System.Nullable`1[System.Int64]", + "GitRepositoryTimeoutInSecond": "System.Nullable`1[System.Int64]", + "BucketAccessKey": "System.Security.SecureString", + "RepositoryPublicKey": "System.String", + "BucketLocalAuthRef": "System.String", + "BucketName": "System.String", + "SystemDataCreatedBy": "System.String", + "BucketUrl": "System.String", + "ErrorMessage": "System.String", + "GitRepositoryHttpsCaCert": "System.String", + "GitRepositoryHttpsUser": "System.String", + "GitRepositoryLocalAuthRef": "System.String", + "SourceSyncedCommitId": "System.String", + "GitRepositorySshKnownHost": "System.String", + "GitRepositoryUrl": "System.String", + "RepositoryRefTag": "System.String", + "RepositoryRefSemver": "System.String", + "RepositoryRefCommit": "System.String", + "RepositoryRefBranch": "System.String", + "SystemDataLastModifiedBy": "System.String", + "Namespace": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ClusterName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ClusterType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Name", + "AliasList": [ + "FluxConfigurationName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "BucketAccessKey", + "AliasList": [], + "Type": { + "Namespace": "System.Security", + "Name": "System.Security.SecureString", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "BucketInsecure", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "BucketLocalAuthRef", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "BucketName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "BucketSyncIntervalInSecond", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Int64", + "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "BucketTimeoutInSecond", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Int64", + "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "BucketUrl", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ConfigurationProtectedSetting", + "AliasList": [], + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "GitRepositoryHttpsCaCert", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "GitRepositoryHttpsUser", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "GitRepositoryLocalAuthRef", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "GitRepositorySshKnownHost", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "GitRepositorySyncIntervalInSecond", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Int64", + "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "GitRepositoryTimeoutInSecond", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Int64", + "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "GitRepositoryUrl", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Kustomization", + "AliasList": [], + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Namespace", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "RepositoryRefBranch", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "RepositoryRefCommit", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "RepositoryRefSemver", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "RepositoryRefTag", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Scope", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ScopeType", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ScopeType, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SourceKind", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.SourceKindType", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.SourceKindType, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Suspend", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "NoWait", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ClusterName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ClusterType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "FluxConfigurationName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "BucketAccessKey", + "AliasList": [], + "Type": { + "Namespace": "System.Security", + "Name": "System.Security.SecureString", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "BucketInsecure", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "BucketLocalAuthRef", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "BucketName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "BucketSyncIntervalInSecond", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Int64", + "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "BucketTimeoutInSecond", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Int64", + "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "BucketUrl", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ConfigurationProtectedSetting", + "AliasList": [], + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GitRepositoryHttpsCaCert", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GitRepositoryHttpsUser", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GitRepositoryLocalAuthRef", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GitRepositorySshKnownHost", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GitRepositorySyncIntervalInSecond", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Int64", + "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GitRepositoryTimeoutInSecond", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Int64", + "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GitRepositoryUrl", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Kustomization", + "AliasList": [], + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Namespace", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RepositoryRefBranch", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RepositoryRefCommit", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RepositoryRefSemver", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RepositoryRefTag", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Scope", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ScopeType", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ScopeType, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SourceKind", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.SourceKindType", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.SourceKindType, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Suspend", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "NoWait", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [ + "New-AzK8sConfigurationFlux" + ] + }, + { + "VerbName": "New", + "NounName": "AzKubernetesExtension", + "Name": "New-AzKubernetesExtension", + "ClassName": "New-AzKubernetesExtension", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "HasForceSwitch": true, + "SupportsPaging": false, + "DefaultParameterSetName": "CreateExpanded", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IExtension", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IExtension, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ErrorInfoAdditionalInfo": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20.IErrorAdditionalInfo[]", + "ErrorInfoDetail": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20.IErrorDetail[]", + "ConfigurationProtectedSetting": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IExtensionPropertiesConfigurationProtectedSettings", + "ConfigurationSetting": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IExtensionPropertiesConfigurationSettings", + "CustomLocationSetting": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IExtensionPropertiesCustomLocationSettings", + "Statuses": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IExtensionStatus[]", + "AkAssignedIdentityType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.AksIdentityType]", + "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.CreatedByType]", + "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.CreatedByType]", + "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ProvisioningState]", + "IdentityType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ResourceIdentityType]", + "AutoUpgradeMinorVersion": "System.Nullable`1[System.Boolean]", + "SystemDataLastModifiedAt": "System.Nullable`1[System.DateTime]", "SystemDataCreatedAt": "System.Nullable`1[System.DateTime]", - "SystemDataCreatedBy": "System.String", - "SystemDataLastModifiedBy": "System.String", "ReleaseTrain": "System.String", "AkAssignedIdentityPrincipalId": "System.String", + "SystemDataLastModifiedBy": "System.String", + "SystemDataCreatedBy": "System.String", + "PackageUri": "System.String", "IdentityPrincipalId": "System.String", - "NamespaceTargetNamespace": "System.String", + "InstalledVersion": "System.String", "IdentityTenantId": "System.String", "ExtensionType": "System.String", "ErrorInfoTarget": "System.String", @@ -2300,9 +7567,3641 @@ "ErrorInfoCode": "System.String", "ClusterReleaseNamespace": "System.String", "AkAssignedIdentityTenantId": "System.String", - "PackageUri": "System.String", + "NamespaceTargetNamespace": "System.String", "Version": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ClusterName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ClusterType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Name", + "AliasList": [ + "ExtensionName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ExtensionType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AkAssignedIdentityType", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.AksIdentityType", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.AksIdentityType, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AutoUpgradeMinorVersion", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ClusterReleaseNamespace", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ConfigurationProtectedSetting", + "AliasList": [], + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ConfigurationSetting", + "AliasList": [], + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "IdentityType", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ResourceIdentityType", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ResourceIdentityType, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "NamespaceTargetNamespace", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ReleaseTrain", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Version", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "NoWait", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ClusterName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ClusterType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ExtensionName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ExtensionType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AkAssignedIdentityType", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.AksIdentityType", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.AksIdentityType, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AutoUpgradeMinorVersion", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ClusterReleaseNamespace", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ConfigurationProtectedSetting", + "AliasList": [], + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ConfigurationSetting", + "AliasList": [], + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IdentityType", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ResourceIdentityType", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ResourceIdentityType, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "NamespaceTargetNamespace", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ReleaseTrain", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Version", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "NoWait", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [ + "New-AzK8sExtension" + ] + }, + { + "VerbName": "Remove", + "NounName": "AzKubernetesConfiguration", + "Name": "Remove-AzKubernetesConfiguration", + "ClassName": "Remove-AzKubernetesConfiguration", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "HasForceSwitch": true, + "SupportsPaging": false, + "DefaultParameterSetName": "Delete", + "OutputTypes": [ + { + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ClusterName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ClusterType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Name", + "AliasList": [ + "SourceControlConfigurationName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ClusterName": "System.String", + "ClusterResourceName": "System.String", + "ClusterRp": "System.String", + "ExtensionName": "System.String", + "FluxConfigurationName": "System.String", + "Id": "System.String", + "OperationId": "System.String", + "ResourceGroupName": "System.String", + "SourceControlConfigurationName": "System.String", + "SubscriptionId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "NoWait", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "Delete", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ClusterName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ClusterType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "SourceControlConfigurationName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "NoWait", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "DeleteViaIdentity", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ClusterName": "System.String", + "ClusterResourceName": "System.String", + "ClusterRp": "System.String", + "ExtensionName": "System.String", + "FluxConfigurationName": "System.String", + "Id": "System.String", + "OperationId": "System.String", + "ResourceGroupName": "System.String", + "SourceControlConfigurationName": "System.String", + "SubscriptionId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "NoWait", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "NoWait", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [ + "Remove-AzK8sConfiguration" + ] + }, + { + "VerbName": "Remove", + "NounName": "AzKubernetesConfigurationFlux", + "Name": "Remove-AzKubernetesConfigurationFlux", + "ClassName": "Remove-AzKubernetesConfigurationFlux", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "HasForceSwitch": true, + "SupportsPaging": false, + "DefaultParameterSetName": "Delete", + "OutputTypes": [ + { + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ClusterName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ClusterType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Name", + "AliasList": [ + "FluxConfigurationName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ClusterName": "System.String", + "ClusterResourceName": "System.String", + "ClusterRp": "System.String", + "ExtensionName": "System.String", + "FluxConfigurationName": "System.String", + "Id": "System.String", + "OperationId": "System.String", + "ResourceGroupName": "System.String", + "SourceControlConfigurationName": "System.String", + "SubscriptionId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ForceDelete", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "NoWait", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "Delete", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ClusterName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ClusterType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "FluxConfigurationName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ForceDelete", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "NoWait", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "DeleteViaIdentity", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ClusterName": "System.String", + "ClusterResourceName": "System.String", + "ClusterRp": "System.String", + "ExtensionName": "System.String", + "FluxConfigurationName": "System.String", + "Id": "System.String", + "OperationId": "System.String", + "ResourceGroupName": "System.String", + "SourceControlConfigurationName": "System.String", + "SubscriptionId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ForceDelete", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "NoWait", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ForceDelete", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "NoWait", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } + ] + } + ], + "AliasList": [ + "Remove-AzK8sConfigurationFlux" + ] + }, + { + "VerbName": "Remove", + "NounName": "AzKubernetesExtension", + "Name": "Remove-AzKubernetesExtension", + "ClassName": "Remove-AzKubernetesExtension", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "HasForceSwitch": true, + "SupportsPaging": false, + "DefaultParameterSetName": "Delete", + "OutputTypes": [ + { + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, "ParameterSets": [ "__AllParameterSets" @@ -2312,20 +11211,38 @@ "Parameters": [ { "Name": "ClusterName", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "ClusterType", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { @@ -2336,116 +11253,99 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "ResourceGroupName", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "SubscriptionId", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ExtensionType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AkAssignedIdentityType", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ResourceIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ResourceIdentityType, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AutoUpgradeMinorVersion", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ClusterReleaseNamespace", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ConfigurationProtectedSetting", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ConfigurationSetting", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "IdentityType", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ResourceIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ResourceIdentityType, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "NamespaceTargetNamespace", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { - "Name": "ReleaseTrain", + "Name": "InputObject", + "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ClusterName": "System.String", + "ClusterResourceName": "System.String", + "ClusterRp": "System.String", + "ExtensionName": "System.String", + "FluxConfigurationName": "System.String", + "Id": "System.String", + "OperationId": "System.String", + "ResourceGroupName": "System.String", + "SourceControlConfigurationName": "System.String", + "SubscriptionId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { - "Name": "Version", + "Name": "ForceDelete", + "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { @@ -2457,97 +11357,202 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "AsJob", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "Break", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "HttpPipelineAppend", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "HttpPipelinePrepend", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "NoWait", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PassThru", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "Proxy", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "ProxyCredential", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "ProxyUseDefaultCredentials", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "Delete", "Parameters": [ { "ParameterMetadata": { "Name": "ClusterName", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": true, @@ -2558,11 +11563,20 @@ { "ParameterMetadata": { "Name": "ClusterType", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": true, @@ -2579,8 +11593,16 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": true, @@ -2591,11 +11613,20 @@ { "ParameterMetadata": { "Name": "ResourceGroupName", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": true, @@ -2606,11 +11637,20 @@ { "ParameterMetadata": { "Name": "SubscriptionId", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -2620,27 +11660,355 @@ }, { "ParameterMetadata": { - "Name": "ExtensionType", + "Name": "ForceDelete", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "NoWait", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "DeleteViaIdentity", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ClusterName": "System.String", + "ClusterResourceName": "System.String", + "ClusterRp": "System.String", + "ExtensionName": "System.String", + "FluxConfigurationName": "System.String", + "Id": "System.String", + "OperationId": "System.String", + "ResourceGroupName": "System.String", + "SourceControlConfigurationName": "System.String", + "SubscriptionId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ForceDelete", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AkAssignedIdentityType", + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ResourceIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ResourceIdentityType, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -2650,12 +12018,21 @@ }, { "ParameterMetadata": { - "Name": "AutoUpgradeMinorVersion", + "Name": "AsJob", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -2665,12 +12042,21 @@ }, { "ParameterMetadata": { - "Name": "ClusterReleaseNamespace", + "Name": "Break", + "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -2680,12 +12066,69 @@ }, { "ParameterMetadata": { - "Name": "ConfigurationProtectedSetting", + "Name": "HttpPipelineAppend", + "AliasList": [], "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "NoWait", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -2695,12 +12138,21 @@ }, { "ParameterMetadata": { - "Name": "ConfigurationSetting", + "Name": "PassThru", + "AliasList": [], "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -2710,12 +12162,21 @@ }, { "ParameterMetadata": { - "Name": "IdentityType", + "Name": "Proxy", + "AliasList": [], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ResourceIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ResourceIdentityType, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -2725,12 +12186,21 @@ }, { "ParameterMetadata": { - "Name": "NamespaceTargetNamespace", + "Name": "ProxyCredential", + "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -2740,27 +12210,50 @@ }, { "ParameterMetadata": { - "Name": "ReleaseTrain", + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "Version", + "Name": "ForceDelete", + "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -2778,8 +12271,16 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -2790,11 +12291,20 @@ { "ParameterMetadata": { "Name": "AsJob", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -2805,11 +12315,20 @@ { "ParameterMetadata": { "Name": "Break", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -2820,12 +12339,20 @@ { "ParameterMetadata": { "Name": "HttpPipelineAppend", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -2836,12 +12363,20 @@ { "ParameterMetadata": { "Name": "HttpPipelinePrepend", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -2852,11 +12387,44 @@ { "ParameterMetadata": { "Name": "NoWait", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -2867,11 +12435,20 @@ { "ParameterMetadata": { "Name": "Proxy", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -2882,11 +12459,20 @@ { "ParameterMetadata": { "Name": "ProxyCredential", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -2897,11 +12483,20 @@ { "ParameterMetadata": { "Name": "ProxyUseDefaultCredentials", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -2913,24 +12508,30 @@ } ], "AliasList": [ - "New-AzK8sExtension" + "Remove-AzK8sExtension" ] }, { - "VerbName": "Remove", - "NounName": "AzKubernetesConfiguration", - "Name": "Remove-AzKubernetesConfiguration", - "ClassName": "Remove-AzKubernetesConfiguration", + "VerbName": "Update", + "NounName": "AzKubernetesConfigurationFlux", + "Name": "Update-AzKubernetesConfigurationFlux", + "ClassName": "Update-AzKubernetesConfigurationFlux", "SupportsShouldProcess": true, "ConfirmImpact": 2, + "HasForceSwitch": true, "SupportsPaging": false, - "DefaultParameterSetName": "Delete", + "DefaultParameterSetName": "UpdateExpanded", "OutputTypes": [ { "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, "ParameterSets": [ "__AllParameterSets" @@ -2940,70 +12541,519 @@ "Parameters": [ { "Name": "ClusterName", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "ClusterType", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "Name", "AliasList": [ - "SourceControlConfigurationName" + "FluxConfigurationName" ], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "ResourceGroupName", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "SubscriptionId", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "InputObject", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClusterName": "System.String", "ClusterResourceName": "System.String", "ClusterRp": "System.String", "ExtensionName": "System.String", + "FluxConfigurationName": "System.String", "Id": "System.String", "OperationId": "System.String", "ResourceGroupName": "System.String", "SourceControlConfigurationName": "System.String", "SubscriptionId": "System.String" - } + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "BucketAccessKey", + "AliasList": [], + "Type": { + "Namespace": "System.Security", + "Name": "System.Security.SecureString", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "BucketInsecure", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "BucketLocalAuthRef", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "BucketName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "BucketSyncIntervalInSecond", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Int64", + "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "BucketTimeoutInSecond", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Int64", + "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "BucketUrl", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ConfigurationProtectedSetting", + "AliasList": [], + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "GitRepositoryHttpsCaCert", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "GitRepositoryHttpsUser", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "GitRepositoryLocalAuthRef", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "GitRepositorySshKnownHost", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "GitRepositorySyncIntervalInSecond", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Int64", + "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "GitRepositoryTimeoutInSecond", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Int64", + "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "GitRepositoryUrl", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Kustomization", + "AliasList": [], + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "RepositoryRefBranch", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "RepositoryRefCommit", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "RepositoryRefSemver", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "RepositoryRefTag", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SourceKind", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.SourceKindType", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.SourceKindType, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Suspend", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { @@ -3015,106 +13065,258 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "AsJob", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "Break", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "HttpPipelineAppend", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "HttpPipelinePrepend", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "NoWait", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PassThru", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "Proxy", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "ProxyCredential", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "ProxyUseDefaultCredentials", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ { - "Name": "Delete", + "Name": "UpdateExpanded", "Parameters": [ { "ParameterMetadata": { - "Name": "ClusterName", + "Name": "ClusterName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ClusterType", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "FluxConfigurationName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": true, @@ -3124,60 +13326,189 @@ }, { "ParameterMetadata": { - "Name": "ClusterType", + "Name": "SubscriptionId", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "SourceControlConfigurationName" - ], + "Name": "BucketAccessKey", + "AliasList": [], + "Type": { + "Namespace": "System.Security", + "Name": "System.Security.SecureString", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "BucketInsecure", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "BucketLocalAuthRef", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "BucketName", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SubscriptionId", + "Name": "BucketSyncIntervalInSecond", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Int64", + "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "BucketTimeoutInSecond", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Int64", + "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "BucketUrl", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -3187,16 +13518,21 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], + "Name": "ConfigurationProtectedSetting", + "AliasList": [], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -3206,12 +13542,21 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "GitRepositoryHttpsCaCert", + "AliasList": [], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -3221,12 +13566,21 @@ }, { "ParameterMetadata": { - "Name": "Break", + "Name": "GitRepositoryHttpsUser", + "AliasList": [], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -3236,13 +13590,21 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelineAppend", + "Name": "GitRepositoryLocalAuthRef", + "AliasList": [], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -3252,13 +13614,21 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "GitRepositorySshKnownHost", + "AliasList": [], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -3268,12 +13638,21 @@ }, { "ParameterMetadata": { - "Name": "NoWait", + "Name": "GitRepositorySyncIntervalInSecond", + "AliasList": [], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Int64", + "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -3283,12 +13662,21 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "GitRepositoryTimeoutInSecond", + "AliasList": [], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Int64", + "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -3298,12 +13686,21 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "GitRepositoryUrl", + "AliasList": [], "Type": { "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -3313,12 +13710,21 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "Kustomization", + "AliasList": [], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -3328,48 +13734,146 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "RepositoryRefBranch", + "AliasList": [], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "DeleteViaIdentity", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "InputObject", + "Name": "RepositoryRefCommit", + "AliasList": [], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ClusterName": "System.String", - "ClusterResourceName": "System.String", - "ClusterRp": "System.String", - "ExtensionName": "System.String", - "Id": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "SourceControlConfigurationName": "System.String", - "SubscriptionId": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RepositoryRefSemver", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RepositoryRefTag", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SourceKind", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.SourceKindType", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.SourceKindType, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Suspend", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { @@ -3382,8 +13886,16 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -3394,11 +13906,20 @@ { "ParameterMetadata": { "Name": "AsJob", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -3409,11 +13930,20 @@ { "ParameterMetadata": { "Name": "Break", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -3424,12 +13954,20 @@ { "ParameterMetadata": { "Name": "HttpPipelineAppend", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -3440,12 +13978,20 @@ { "ParameterMetadata": { "Name": "HttpPipelinePrepend", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -3456,11 +14002,20 @@ { "ParameterMetadata": { "Name": "NoWait", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -3470,12 +14025,45 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -3485,27 +14073,85 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "UpdateViaIdentityExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "ClusterName": "System.String", + "ClusterResourceName": "System.String", + "ClusterRp": "System.String", + "ExtensionName": "System.String", + "FluxConfigurationName": "System.String", + "Id": "System.String", + "OperationId": "System.String", + "ResourceGroupName": "System.String", + "SourceControlConfigurationName": "System.String", + "SubscriptionId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "BucketAccessKey", + "AliasList": [], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Security", + "Name": "System.Security.SecureString", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -3515,36 +14161,45 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "BucketInsecure", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], + "Name": "BucketLocalAuthRef", + "AliasList": [], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -3554,12 +14209,21 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "BucketName", + "AliasList": [], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -3569,12 +14233,21 @@ }, { "ParameterMetadata": { - "Name": "Break", + "Name": "BucketSyncIntervalInSecond", + "AliasList": [], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Int64", + "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -3584,13 +14257,21 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelineAppend", + "Name": "BucketTimeoutInSecond", + "AliasList": [], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.Int64", + "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -3600,13 +14281,21 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "BucketUrl", + "AliasList": [], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -3616,12 +14305,21 @@ }, { "ParameterMetadata": { - "Name": "NoWait", + "Name": "ConfigurationProtectedSetting", + "AliasList": [], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -3631,12 +14329,21 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "GitRepositoryHttpsCaCert", + "AliasList": [], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -3646,12 +14353,21 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "GitRepositoryHttpsUser", + "AliasList": [], "Type": { "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -3661,12 +14377,21 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "GitRepositoryLocalAuthRef", + "AliasList": [], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -3676,297 +14401,213 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "GitRepositorySshKnownHost", + "AliasList": [], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ], - "AliasList": [ - "Remove-AzK8sConfiguration" - ] - }, - { - "VerbName": "Remove", - "NounName": "AzKubernetesExtension", - "Name": "Remove-AzKubernetesExtension", - "ClassName": "Remove-AzKubernetesExtension", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "Delete", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "ClusterName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ClusterType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Name", - "AliasList": [ - "ExtensionName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubscriptionId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ClusterName": "System.String", - "ClusterResourceName": "System.String", - "ClusterRp": "System.String", - "ExtensionName": "System.String", - "Id": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "SourceControlConfigurationName": "System.String", - "SubscriptionId": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ForceDelete", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Break", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelineAppend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpPipelinePrepend", - "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "NoWait", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PassThru", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Proxy", - "Type": { - "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ProxyCredential", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ProxyUseDefaultCredentials", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "Delete", - "Parameters": [ + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { - "Name": "ClusterName", + "Name": "GitRepositorySyncIntervalInSecond", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Int64", + "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GitRepositoryTimeoutInSecond", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Int64", + "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GitRepositoryUrl", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ClusterType", + "Name": "Kustomization", + "AliasList": [], + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RepositoryRefBranch", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ExtensionName" - ], + "Name": "RepositoryRefCommit", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "RepositoryRefSemver", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SubscriptionId", + "Name": "RepositoryRefTag", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -3976,12 +14617,45 @@ }, { "ParameterMetadata": { - "Name": "ForceDelete", + "Name": "SourceKind", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.SourceKindType", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.SourceKindType, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Suspend", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -3999,8 +14673,16 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -4011,11 +14693,20 @@ { "ParameterMetadata": { "Name": "AsJob", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -4026,11 +14717,20 @@ { "ParameterMetadata": { "Name": "Break", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -4041,12 +14741,20 @@ { "ParameterMetadata": { "Name": "HttpPipelineAppend", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -4057,12 +14765,20 @@ { "ParameterMetadata": { "Name": "HttpPipelinePrepend", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -4073,26 +14789,20 @@ { "ParameterMetadata": { "Name": "NoWait", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PassThru", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -4103,11 +14813,20 @@ { "ParameterMetadata": { "Name": "Proxy", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -4118,11 +14837,20 @@ { "ParameterMetadata": { "Name": "ProxyCredential", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -4133,11 +14861,20 @@ { "ParameterMetadata": { "Name": "ProxyUseDefaultCredentials", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -4148,42 +14885,49 @@ ] }, { - "Name": "DeleteViaIdentity", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", + "Name": "BucketAccessKey", + "AliasList": [], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ClusterName": "System.String", - "ClusterResourceName": "System.String", - "ClusterRp": "System.String", - "ExtensionName": "System.String", - "Id": "System.String", - "OperationId": "System.String", - "ResourceGroupName": "System.String", - "SourceControlConfigurationName": "System.String", - "SubscriptionId": "System.String" - } + "Namespace": "System.Security", + "Name": "System.Security.SecureString", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ForceDelete", + "Name": "BucketInsecure", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -4193,16 +14937,21 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzureRMContext", - "AzureCredential" - ], + "Name": "BucketLocalAuthRef", + "AliasList": [], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -4212,12 +14961,21 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "BucketName", + "AliasList": [], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -4227,12 +14985,21 @@ }, { "ParameterMetadata": { - "Name": "Break", + "Name": "BucketSyncIntervalInSecond", + "AliasList": [], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Int64", + "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -4242,13 +15009,21 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelineAppend", + "Name": "BucketTimeoutInSecond", + "AliasList": [], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.Int64", + "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -4258,13 +15033,21 @@ }, { "ParameterMetadata": { - "Name": "HttpPipelinePrepend", + "Name": "BucketUrl", + "AliasList": [], "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -4274,12 +15057,237 @@ }, { "ParameterMetadata": { - "Name": "NoWait", + "Name": "ConfigurationProtectedSetting", + "AliasList": [], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GitRepositoryHttpsCaCert", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GitRepositoryHttpsUser", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GitRepositoryLocalAuthRef", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GitRepositorySshKnownHost", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GitRepositorySyncIntervalInSecond", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Int64", + "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GitRepositoryTimeoutInSecond", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Int64", + "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GitRepositoryUrl", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Kustomization", + "AliasList": [], + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RepositoryRefBranch", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -4289,12 +15297,21 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "RepositoryRefCommit", + "AliasList": [], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -4304,12 +15321,21 @@ }, { "ParameterMetadata": { - "Name": "Proxy", + "Name": "RepositoryRefSemver", + "AliasList": [], "Type": { "Namespace": "System", - "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -4319,12 +15345,21 @@ }, { "ParameterMetadata": { - "Name": "ProxyCredential", + "Name": "RepositoryRefTag", + "AliasList": [], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -4334,32 +15369,45 @@ }, { "ParameterMetadata": { - "Name": "ProxyUseDefaultCredentials", + "Name": "SourceKind", + "AliasList": [], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.SourceKindType", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.SourceKindType, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "ForceDelete", + "Name": "Suspend", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -4377,8 +15425,16 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -4389,11 +15445,20 @@ { "ParameterMetadata": { "Name": "AsJob", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -4404,11 +15469,20 @@ { "ParameterMetadata": { "Name": "Break", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -4419,12 +15493,20 @@ { "ParameterMetadata": { "Name": "HttpPipelineAppend", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -4435,12 +15517,20 @@ { "ParameterMetadata": { "Name": "HttpPipelinePrepend", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -4451,26 +15541,20 @@ { "ParameterMetadata": { "Name": "NoWait", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PassThru", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -4481,11 +15565,20 @@ { "ParameterMetadata": { "Name": "Proxy", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -4496,11 +15589,20 @@ { "ParameterMetadata": { "Name": "ProxyCredential", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -4511,11 +15613,20 @@ { "ParameterMetadata": { "Name": "ProxyUseDefaultCredentials", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -4527,7 +15638,7 @@ } ], "AliasList": [ - "Remove-AzK8sExtension" + "Update-AzK8sConfigurationFlux" ] }, { @@ -4537,35 +15648,37 @@ "ClassName": "Update-AzKubernetesExtension", "SupportsShouldProcess": true, "ConfirmImpact": 2, + "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "UpdateExpanded", "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210901", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210901.IExtension", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210901.IExtension, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IExtension", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IExtension, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ErrorInfoAdditionalInfo": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20.IErrorAdditionalInfo[]", "ErrorInfoDetail": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20.IErrorDetail[]", - "ConfigurationProtectedSetting": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210901.IExtensionPropertiesConfigurationProtectedSettings", - "ConfigurationSetting": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210901.IExtensionPropertiesConfigurationSettings", - "CustomLocationSetting": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210901.IExtensionPropertiesCustomLocationSettings", - "Statuses": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210901.IExtensionStatus[]", - "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.CreatedByType]", + "ConfigurationProtectedSetting": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IExtensionPropertiesConfigurationProtectedSettings", + "ConfigurationSetting": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IExtensionPropertiesConfigurationSettings", + "CustomLocationSetting": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IExtensionPropertiesCustomLocationSettings", + "Statuses": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IExtensionStatus[]", + "AkAssignedIdentityType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.AksIdentityType]", "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.CreatedByType]", + "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.CreatedByType]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ProvisioningState]", - "AkAssignedIdentityType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ResourceIdentityType]", "IdentityType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ResourceIdentityType]", "AutoUpgradeMinorVersion": "System.Nullable`1[System.Boolean]", "SystemDataLastModifiedAt": "System.Nullable`1[System.DateTime]", "SystemDataCreatedAt": "System.Nullable`1[System.DateTime]", - "SystemDataCreatedBy": "System.String", - "SystemDataLastModifiedBy": "System.String", "ReleaseTrain": "System.String", "AkAssignedIdentityPrincipalId": "System.String", + "SystemDataLastModifiedBy": "System.String", + "SystemDataCreatedBy": "System.String", + "PackageUri": "System.String", "IdentityPrincipalId": "System.String", - "NamespaceTargetNamespace": "System.String", + "InstalledVersion": "System.String", "IdentityTenantId": "System.String", "ExtensionType": "System.String", "ErrorInfoTarget": "System.String", @@ -4573,9 +15686,13 @@ "ErrorInfoCode": "System.String", "ClusterReleaseNamespace": "System.String", "AkAssignedIdentityTenantId": "System.String", - "PackageUri": "System.String", + "NamespaceTargetNamespace": "System.String", "Version": "System.String" - } + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, "ParameterSets": [ "__AllParameterSets" @@ -4585,20 +15702,38 @@ "Parameters": [ { "Name": "ClusterName", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "ClusterType", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { @@ -4609,91 +15744,171 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "ResourceGroupName", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "SubscriptionId", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "InputObject", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClusterName": "System.String", "ClusterResourceName": "System.String", "ClusterRp": "System.String", "ExtensionName": "System.String", + "FluxConfigurationName": "System.String", "Id": "System.String", "OperationId": "System.String", "ResourceGroupName": "System.String", "SourceControlConfigurationName": "System.String", "SubscriptionId": "System.String" - } + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "AutoUpgradeMinorVersion", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "ConfigurationProtectedSetting", + "AliasList": [], "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "ConfigurationSetting", + "AliasList": [], "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "ReleaseTrain", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "Version", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { @@ -4705,82 +15920,160 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "AsJob", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "Break", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "HttpPipelineAppend", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "HttpPipelinePrepend", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "NoWait", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "Proxy", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "ProxyCredential", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { "Name": "ProxyUseDefaultCredentials", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false } ], @@ -4791,11 +16084,20 @@ { "ParameterMetadata": { "Name": "ClusterName", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": true, @@ -4806,11 +16108,20 @@ { "ParameterMetadata": { "Name": "ClusterType", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": true, @@ -4827,8 +16138,16 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": true, @@ -4839,11 +16158,20 @@ { "ParameterMetadata": { "Name": "ResourceGroupName", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": true, @@ -4854,11 +16182,20 @@ { "ParameterMetadata": { "Name": "SubscriptionId", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -4869,11 +16206,20 @@ { "ParameterMetadata": { "Name": "AutoUpgradeMinorVersion", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -4884,11 +16230,20 @@ { "ParameterMetadata": { "Name": "ConfigurationProtectedSetting", + "AliasList": [], "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -4899,11 +16254,20 @@ { "ParameterMetadata": { "Name": "ConfigurationSetting", + "AliasList": [], "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -4914,11 +16278,20 @@ { "ParameterMetadata": { "Name": "ReleaseTrain", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -4929,11 +16302,20 @@ { "ParameterMetadata": { "Name": "Version", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -4951,8 +16333,16 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -4963,11 +16353,20 @@ { "ParameterMetadata": { "Name": "AsJob", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -4978,11 +16377,20 @@ { "ParameterMetadata": { "Name": "Break", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -4993,12 +16401,20 @@ { "ParameterMetadata": { "Name": "HttpPipelineAppend", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -5009,12 +16425,20 @@ { "ParameterMetadata": { "Name": "HttpPipelinePrepend", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -5025,11 +16449,20 @@ { "ParameterMetadata": { "Name": "NoWait", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -5040,11 +16473,20 @@ { "ParameterMetadata": { "Name": "Proxy", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -5055,11 +16497,20 @@ { "ParameterMetadata": { "Name": "ProxyCredential", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -5070,11 +16521,20 @@ { "ParameterMetadata": { "Name": "ProxyUseDefaultCredentials", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -5090,22 +16550,31 @@ { "ParameterMetadata": { "Name": "InputObject", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IKubernetesConfigurationIdentity, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClusterName": "System.String", "ClusterResourceName": "System.String", "ClusterRp": "System.String", "ExtensionName": "System.String", + "FluxConfigurationName": "System.String", "Id": "System.String", "OperationId": "System.String", "ResourceGroupName": "System.String", "SourceControlConfigurationName": "System.String", "SubscriptionId": "System.String" - } + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": true, @@ -5116,11 +16585,20 @@ { "ParameterMetadata": { "Name": "AutoUpgradeMinorVersion", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -5131,11 +16609,20 @@ { "ParameterMetadata": { "Name": "ConfigurationProtectedSetting", + "AliasList": [], "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -5146,11 +16633,20 @@ { "ParameterMetadata": { "Name": "ConfigurationSetting", + "AliasList": [], "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -5161,11 +16657,20 @@ { "ParameterMetadata": { "Name": "ReleaseTrain", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -5176,11 +16681,20 @@ { "ParameterMetadata": { "Name": "Version", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -5198,8 +16712,16 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -5210,11 +16732,20 @@ { "ParameterMetadata": { "Name": "AsJob", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -5225,11 +16756,20 @@ { "ParameterMetadata": { "Name": "Break", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -5240,12 +16780,20 @@ { "ParameterMetadata": { "Name": "HttpPipelineAppend", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -5256,12 +16804,20 @@ { "ParameterMetadata": { "Name": "HttpPipelinePrepend", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -5272,11 +16828,20 @@ { "ParameterMetadata": { "Name": "NoWait", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -5287,11 +16852,20 @@ { "ParameterMetadata": { "Name": "Proxy", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -5302,11 +16876,20 @@ { "ParameterMetadata": { "Name": "ProxyCredential", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -5317,11 +16900,20 @@ { "ParameterMetadata": { "Name": "ProxyUseDefaultCredentials", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -5337,11 +16929,20 @@ { "ParameterMetadata": { "Name": "AutoUpgradeMinorVersion", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -5352,11 +16953,20 @@ { "ParameterMetadata": { "Name": "ConfigurationProtectedSetting", + "AliasList": [], "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -5367,11 +16977,20 @@ { "ParameterMetadata": { "Name": "ConfigurationSetting", + "AliasList": [], "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -5382,11 +17001,20 @@ { "ParameterMetadata": { "Name": "ReleaseTrain", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -5397,11 +17025,20 @@ { "ParameterMetadata": { "Name": "Version", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -5419,8 +17056,16 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -5431,11 +17076,20 @@ { "ParameterMetadata": { "Name": "AsJob", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -5446,11 +17100,20 @@ { "ParameterMetadata": { "Name": "Break", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -5461,12 +17124,20 @@ { "ParameterMetadata": { "Name": "HttpPipelineAppend", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -5477,12 +17148,20 @@ { "ParameterMetadata": { "Name": "HttpPipelinePrepend", + "AliasList": [], "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -5493,11 +17172,20 @@ { "ParameterMetadata": { "Name": "NoWait", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -5508,11 +17196,20 @@ { "ParameterMetadata": { "Name": "Proxy", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -5523,11 +17220,20 @@ { "ParameterMetadata": { "Name": "ProxyCredential", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -5538,11 +17244,20 @@ { "ParameterMetadata": { "Name": "ProxyUseDefaultCredentials", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -5560,64 +17275,477 @@ ], "TypeDictionary": { "System.String": { - "Name": "System.String" + "Namespace": null, + "Name": "System.String", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, "System.Boolean": { - "Name": "System.Boolean" + "Namespace": null, + "Name": "System.Boolean", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, "System.Byte": { - "Name": "System.Byte" + "Namespace": null, + "Name": "System.Byte", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, "System.SByte": { - "Name": "System.SByte" + "Namespace": null, + "Name": "System.SByte", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, "System.Int16": { - "Name": "System.Int16" + "Namespace": null, + "Name": "System.Int16", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, "System.UInt16": { - "Name": "System.UInt16" + "Namespace": null, + "Name": "System.UInt16", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, "System.Int32": { - "Name": "System.Int32" + "Namespace": null, + "Name": "System.Int32", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, "System.UInt32": { - "Name": "System.UInt32" + "Namespace": null, + "Name": "System.UInt32", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, "System.Int64": { - "Name": "System.Int64" + "Namespace": null, + "Name": "System.Int64", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, "System.UInt64": { - "Name": "System.UInt64" + "Namespace": null, + "Name": "System.UInt64", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, "System.Single": { - "Name": "System.Single" + "Namespace": null, + "Name": "System.Single", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, "System.Double": { - "Name": "System.Double" + "Namespace": null, + "Name": "System.Double", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, "System.Decimal": { - "Name": "System.Decimal" + "Namespace": null, + "Name": "System.Decimal", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Char": { + "Namespace": null, + "Name": "System.Char", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20.IErrorAdditionalInfo[]": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20.IErrorAdditionalInfo[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20.IErrorAdditionalInfo[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20.IErrorAdditionalInfo", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20.IErrorAdditionalInfo": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20.IErrorAdditionalInfo", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20.IErrorAdditionalInfo, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Info": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IAny", + "Type": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IAny": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IAny", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IAny, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20.IErrorDetail[]": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20.IErrorDetail[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20.IErrorDetail[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20.IErrorDetail", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20.IErrorDetail": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20.IErrorDetail", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20.IErrorDetail, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "AdditionalInfo": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20.IErrorAdditionalInfo[]", + "Detail": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20.IErrorDetail[]", + "Code": "System.String", + "Message": "System.String", + "Target": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IOperationStatusResultProperties": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IOperationStatusResultProperties", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IOperationStatusResultProperties, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Target": "System.Object", + "Method": "System.Reflection.MethodInfo" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Invoke", + "Parameters": [ + { + "Name": "request", + "Type": "System.Net.Http.HttpRequestMessage" + }, + { + "Name": "callback", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.IEventListener" + }, + { + "Name": "next", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.ISendAsync" + } + ], + "ReturnType": "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]" + }, + { + "Name": "BeginInvoke", + "Parameters": [ + { + "Name": "request", + "Type": "System.Net.Http.HttpRequestMessage" + }, + { + "Name": "callback", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.IEventListener" + }, + { + "Name": "next", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.ISendAsync" + }, + { + "Name": "__callback", + "Type": "System.AsyncCallback" + }, + { + "Name": "object", + "Type": "System.Object" + } + ], + "ReturnType": "System.IAsyncResult" + }, + { + "Name": "EndInvoke", + "Parameters": [ + { + "Name": "result", + "Type": "System.IAsyncResult" + } + ], + "ReturnType": "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]" + }, + { + "Name": "GetObjectData", + "Parameters": [ + { + "Name": "info", + "Type": "System.Runtime.Serialization.SerializationInfo" + }, + { + "Name": "context", + "Type": "System.Runtime.Serialization.StreamingContext" + } + ], + "ReturnType": "System.Void" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetInvocationList", + "Parameters": [], + "ReturnType": "System.Delegate[]" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "Clone", + "Parameters": [], + "ReturnType": "System.Object" + }, + { + "Name": "DynamicInvoke", + "Parameters": [ + { + "Name": "args", + "Type": "System.Object[]" + } + ], + "ReturnType": "System.Object" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + } + ], + "Constructors": [ + { + "Name": "", + "Parameters": [ + { + "Name": "object", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "method", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": null + } + ] + }, + "System.Object": { + "Namespace": "System", + "Name": "System.Object", + "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Reflection.MethodInfo": { + "Namespace": "System.Reflection", + "Name": "System.Reflection.MethodInfo", + "AssemblyQualifiedName": "System.Reflection.MethodInfo, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]": { + "Namespace": "System.Threading.Tasks", + "Name": "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]", + "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[System.Net.Http.HttpResponseMessage, System.Net.Http, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.Net.Http.HttpResponseMessage" + ], + "Methods": [], + "Constructors": [] + }, + "System.Net.Http.HttpResponseMessage": { + "Namespace": "System.Net.Http", + "Name": "System.Net.Http.HttpResponseMessage", + "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.IAsyncResult": { + "Namespace": "System", + "Name": "System.IAsyncResult", + "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Void": { + "Namespace": "System", + "Name": "System.Void", + "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Delegate[]": { + "Namespace": "System", + "Name": "System.Delegate[]", + "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.Delegate", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Delegate": { + "Namespace": "System", + "Name": "System.Delegate", + "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, - "System.Char": { - "Name": "System.Char" + "System.Type": { + "Namespace": "System", + "Name": "System.Type", + "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, - "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210301.IConfigurationProtectedSettings": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210301", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210301.IConfigurationProtectedSettings", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210301.IConfigurationProtectedSettings, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IConfigurationProtectedSettings": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IConfigurationProtectedSettings", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IConfigurationProtectedSettings, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ComplianceStateType]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ComplianceStateType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ComplianceStateType, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ComplianceStateType, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ComplianceStateType" - ] + ], + "Methods": [], + "Constructors": [] }, "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ComplianceStateType": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ComplianceStateType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ComplianceStateType, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ComplianceStateType, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], "Methods": [ { "Name": "CompleteArgument", @@ -5667,48 +17795,63 @@ }, { "Name": "GetHashCode", + "Parameters": [], "ReturnType": "System.Int32" }, { "Name": "ToString", + "Parameters": [], "ReturnType": "System.String" }, { "Name": "GetType", + "Parameters": [], "ReturnType": "System.Type" } - ] + ], + "Constructors": [] }, "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]", - "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, "GenericTypeArguments": [ "System.Management.Automation.CompletionResult" - ] + ], + "Methods": [], + "Constructors": [] }, "System.Management.Automation.CompletionResult": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.CompletionResult", - "AssemblyQualifiedName": "System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "System.Type": { - "Namespace": "System", - "Name": "System.Type", - "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.CreatedByType]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.CreatedByType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.CreatedByType, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.CreatedByType, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.CreatedByType" - ] + ], + "Methods": [], + "Constructors": [] }, "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.CreatedByType": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.CreatedByType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.CreatedByType, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.CreatedByType, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], "Methods": [ { "Name": "CompleteArgument", @@ -5758,30 +17901,41 @@ }, { "Name": "GetHashCode", + "Parameters": [], "ReturnType": "System.Int32" }, { "Name": "ToString", + "Parameters": [], "ReturnType": "System.String" }, { "Name": "GetType", + "Parameters": [], "ReturnType": "System.Type" } - ] + ], + "Constructors": [] }, "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.MessageLevelType]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.MessageLevelType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.MessageLevelType, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.MessageLevelType, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.MessageLevelType" - ] + ], + "Methods": [], + "Constructors": [] }, "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.MessageLevelType": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.MessageLevelType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.MessageLevelType, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.MessageLevelType, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], "Methods": [ { "Name": "CompleteArgument", @@ -5831,30 +17985,407 @@ }, { "Name": "GetHashCode", + "Parameters": [], "ReturnType": "System.Int32" }, { "Name": "ToString", + "Parameters": [], "ReturnType": "System.String" }, { "Name": "GetType", + "Parameters": [], "ReturnType": "System.Type" } - ] + ], + "Constructors": [] + }, + "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.OperatorScopeType]": { + "Namespace": "System", + "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.OperatorScopeType]", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.OperatorScopeType, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.OperatorScopeType" + ], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.OperatorScopeType": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.OperatorScopeType", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.OperatorScopeType, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "CompleteArgument", + "Parameters": [ + { + "Name": "commandName", + "Type": "System.String" + }, + { + "Name": "parameterName", + "Type": "System.String" + }, + { + "Name": "wordToComplete", + "Type": "System.String" + }, + { + "Name": "commandAst", + "Type": "System.Management.Automation.Language.CommandAst" + }, + { + "Name": "fakeBoundParameters", + "Type": "System.Collections.IDictionary" + } + ], + "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "e", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.OperatorScopeType" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.OperatorType]": { + "Namespace": "System", + "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.OperatorType]", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.OperatorType, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.OperatorType" + ], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.OperatorType": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.OperatorType", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.OperatorType, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "CompleteArgument", + "Parameters": [ + { + "Name": "commandName", + "Type": "System.String" + }, + { + "Name": "parameterName", + "Type": "System.String" + }, + { + "Name": "wordToComplete", + "Type": "System.String" + }, + { + "Name": "commandAst", + "Type": "System.Management.Automation.Language.CommandAst" + }, + { + "Name": "fakeBoundParameters", + "Type": "System.Collections.IDictionary" + } + ], + "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "e", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.OperatorType" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ProvisioningStateType]": { + "Namespace": "System", + "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ProvisioningStateType]", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ProvisioningStateType, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ProvisioningStateType" + ], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ProvisioningStateType": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ProvisioningStateType", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ProvisioningStateType, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "CompleteArgument", + "Parameters": [ + { + "Name": "commandName", + "Type": "System.String" + }, + { + "Name": "parameterName", + "Type": "System.String" + }, + { + "Name": "wordToComplete", + "Type": "System.String" + }, + { + "Name": "commandAst", + "Type": "System.Management.Automation.Language.CommandAst" + }, + { + "Name": "fakeBoundParameters", + "Type": "System.Collections.IDictionary" + } + ], + "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "e", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ProvisioningStateType" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "System.Nullable`1[System.Boolean]": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.Boolean" + ], + "Methods": [], + "Constructors": [] + }, + "System.Nullable`1[System.DateTime]": { + "Namespace": "System", + "Name": "System.Nullable`1[System.DateTime]", + "AssemblyQualifiedName": "System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.DateTime" + ], + "Methods": [], + "Constructors": [] + }, + "System.DateTime": { + "Namespace": "System", + "Name": "System.DateTime", + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IFluxConfigurationPropertiesConfigurationProtectedSettings": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IFluxConfigurationPropertiesConfigurationProtectedSettings", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IFluxConfigurationPropertiesConfigurationProtectedSettings, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IFluxConfigurationPropertiesKustomizations": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IFluxConfigurationPropertiesKustomizations", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IFluxConfigurationPropertiesKustomizations, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.OperatorScopeType]": { + "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IObjectStatusDefinition[]": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IObjectStatusDefinition[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IObjectStatusDefinition[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IObjectStatusDefinition", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IObjectStatusDefinition": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IObjectStatusDefinition", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IObjectStatusDefinition, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "StatusCondition": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IObjectStatusConditionDefinition[]", + "ComplianceState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.FluxComplianceState]", + "HelmReleasePropertyFailureCount": "System.Nullable`1[System.Int64]", + "HelmReleasePropertyInstallFailureCount": "System.Nullable`1[System.Int64]", + "HelmReleasePropertyLastRevisionApplied": "System.Nullable`1[System.Int64]", + "HelmReleasePropertyUpgradeFailureCount": "System.Nullable`1[System.Int64]", + "AppliedByName": "System.String", + "AppliedByNamespace": "System.String", + "HelmChartRefName": "System.String", + "HelmChartRefNamespace": "System.String", + "Kind": "System.String", + "Name": "System.String", + "Namespace": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IObjectStatusConditionDefinition[]": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IObjectStatusConditionDefinition[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IObjectStatusConditionDefinition[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IObjectStatusConditionDefinition", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IObjectStatusConditionDefinition": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IObjectStatusConditionDefinition", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IObjectStatusConditionDefinition, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "LastTransitionTime": "System.Nullable`1[System.DateTime]", + "Message": "System.String", + "Reason": "System.String", + "Status": "System.String", + "Type": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.FluxComplianceState]": { "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.OperatorScopeType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.OperatorScopeType, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.FluxComplianceState]", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.FluxComplianceState, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.OperatorScopeType" - ] + "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.FluxComplianceState" + ], + "Methods": [], + "Constructors": [] }, - "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.OperatorScopeType": { + "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.FluxComplianceState": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.OperatorScopeType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.OperatorScopeType, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.FluxComplianceState", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.FluxComplianceState, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], "Methods": [ { "Name": "CompleteArgument", @@ -5887,7 +18418,7 @@ "Parameters": [ { "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.OperatorScopeType" + "Type": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.FluxComplianceState" } ], "ReturnType": "System.Boolean" @@ -5904,30 +18435,53 @@ }, { "Name": "GetHashCode", + "Parameters": [], "ReturnType": "System.Int32" }, { "Name": "ToString", + "Parameters": [], "ReturnType": "System.String" }, { "Name": "GetType", + "Parameters": [], "ReturnType": "System.Type" } - ] + ], + "Constructors": [] }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.OperatorType]": { + "System.Nullable`1[System.Int64]": { "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.OperatorType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.OperatorType, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Nullable`1[System.Int64]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.OperatorType" - ] + "System.Int64" + ], + "Methods": [], + "Constructors": [] }, - "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.OperatorType": { + "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ProvisioningState]": { + "Namespace": "System", + "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ProvisioningState]", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ProvisioningState, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ProvisioningState" + ], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ProvisioningState": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.OperatorType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.OperatorType, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ProvisioningState", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ProvisioningState, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], "Methods": [ { "Name": "CompleteArgument", @@ -5960,7 +18514,7 @@ "Parameters": [ { "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.OperatorType" + "Type": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ProvisioningState" } ], "ReturnType": "System.Boolean" @@ -5977,30 +18531,41 @@ }, { "Name": "GetHashCode", + "Parameters": [], "ReturnType": "System.Int32" }, { "Name": "ToString", + "Parameters": [], "ReturnType": "System.String" }, { "Name": "GetType", + "Parameters": [], "ReturnType": "System.Type" } - ] + ], + "Constructors": [] }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ProvisioningStateType]": { + "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ScopeType]": { "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ProvisioningStateType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ProvisioningStateType, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ScopeType]", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ScopeType, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ProvisioningStateType" - ] + "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ScopeType" + ], + "Methods": [], + "Constructors": [] }, - "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ProvisioningStateType": { + "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ScopeType": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ProvisioningStateType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ProvisioningStateType, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ScopeType", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ScopeType, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], "Methods": [ { "Name": "CompleteArgument", @@ -6033,7 +18598,7 @@ "Parameters": [ { "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ProvisioningStateType" + "Type": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ScopeType" } ], "ReturnType": "System.Boolean" @@ -6050,115 +18615,77 @@ }, { "Name": "GetHashCode", + "Parameters": [], "ReturnType": "System.Int32" }, { "Name": "ToString", + "Parameters": [], "ReturnType": "System.String" }, { "Name": "GetType", + "Parameters": [], "ReturnType": "System.Type" } - ] - }, - "System.Nullable`1[System.Boolean]": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + ], + "Constructors": [] }, - "System.Nullable`1[System.DateTime]": { + "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.SourceKindType]": { "Namespace": "System", - "Name": "System.Nullable`1[System.DateTime]", - "AssemblyQualifiedName": "System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.SourceKindType]", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.SourceKindType, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, "GenericTypeArguments": [ - "System.DateTime" - ] - }, - "System.DateTime": { - "Namespace": "System", - "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.SourceKindType" + ], + "Methods": [], + "Constructors": [] }, - "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.SendAsyncStep, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Target": "System.Object", - "Method": "System.Reflection.MethodInfo" - }, + "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.SourceKindType": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.SourceKindType", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.SourceKindType, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], "Methods": [ { - "Name": "Invoke", - "Parameters": [ - { - "Name": "request", - "Type": "System.Net.Http.HttpRequestMessage" - }, - { - "Name": "callback", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.IEventListener" - }, - { - "Name": "next", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.ISendAsync" - } - ], - "ReturnType": "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]" - }, - { - "Name": "BeginInvoke", + "Name": "CompleteArgument", "Parameters": [ { - "Name": "request", - "Type": "System.Net.Http.HttpRequestMessage" + "Name": "commandName", + "Type": "System.String" }, { - "Name": "callback", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.IEventListener" + "Name": "parameterName", + "Type": "System.String" }, { - "Name": "next", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Runtime.ISendAsync" + "Name": "wordToComplete", + "Type": "System.String" }, { - "Name": "__callback", - "Type": "System.AsyncCallback" + "Name": "commandAst", + "Type": "System.Management.Automation.Language.CommandAst" }, { - "Name": "object", - "Type": "System.Object" - } - ], - "ReturnType": "System.IAsyncResult" - }, - { - "Name": "EndInvoke", - "Parameters": [ - { - "Name": "result", - "Type": "System.IAsyncResult" + "Name": "fakeBoundParameters", + "Type": "System.Collections.IDictionary" } ], - "ReturnType": "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]" + "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" }, { - "Name": "GetObjectData", + "Name": "Equals", "Parameters": [ { - "Name": "info", - "Type": "System.Runtime.Serialization.SerializationInfo" - }, - { - "Name": "context", - "Type": "System.Runtime.Serialization.StreamingContext" + "Name": "e", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.SourceKindType" } ], - "ReturnType": "System.Void" + "ReturnType": "System.Boolean" }, { "Name": "Equals", @@ -6170,180 +18697,109 @@ ], "ReturnType": "System.Boolean" }, - { - "Name": "GetInvocationList", - "ReturnType": "System.Delegate[]" - }, { "Name": "GetHashCode", + "Parameters": [], "ReturnType": "System.Int32" }, { - "Name": "Clone", - "ReturnType": "System.Object" - }, - { - "Name": "DynamicInvoke", - "Parameters": [ - { - "Name": "args", - "Type": "System.Object[]" - } - ], - "ReturnType": "System.Object" + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" }, { "Name": "GetType", + "Parameters": [], "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" } ], - "Constructors": [ - { - "Name": "", - "Parameters": [ - { - "Name": "object", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "method", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] - } - ] - }, - "System.Object": { - "Namespace": "System", - "Name": "System.Object", - "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "System.Reflection.MethodInfo": { - "Namespace": "System.Reflection", - "Name": "System.Reflection.MethodInfo", - "AssemblyQualifiedName": "System.Reflection.MethodInfo, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]": { - "Namespace": "System.Threading.Tasks", - "Name": "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]", - "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[System.Net.Http.HttpResponseMessage, System.Net.Http, Version=4.2.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Net.Http.HttpResponseMessage" - ] - }, - "System.Net.Http.HttpResponseMessage": { - "Namespace": "System.Net.Http", - "Name": "System.Net.Http.HttpResponseMessage", - "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=4.2.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - }, - "System.IAsyncResult": { - "Namespace": "System", - "Name": "System.IAsyncResult", - "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "System.Void": { - "Namespace": "System", - "Name": "System.Void", - "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "System.Delegate[]": { - "Namespace": "System", - "Name": "System.Delegate[]", - "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.Delegate" - }, - "System.Delegate": { - "Namespace": "System", - "Name": "System.Delegate", - "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20.IErrorAdditionalInfo[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20.IErrorAdditionalInfo[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20.IErrorAdditionalInfo[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20.IErrorAdditionalInfo" - }, - "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20.IErrorAdditionalInfo": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20.IErrorAdditionalInfo", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20.IErrorAdditionalInfo, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Info": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IAny", - "Type": "System.String" - } - }, - "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IAny": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IAny", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.IAny, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Constructors": [] }, - "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20.IErrorDetail[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20.IErrorDetail[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20.IErrorDetail[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20.IErrorDetail" - }, - "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20.IErrorDetail": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20.IErrorDetail", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20.IErrorDetail, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AdditionalInfo": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20.IErrorAdditionalInfo[]", - "Detail": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20.IErrorDetail[]", - "Code": "System.String", - "Message": "System.String", - "Target": "System.String" - } + "System.Security.SecureString": { + "Namespace": "System.Security", + "Name": "System.Security.SecureString", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, - "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210901.IExtensionPropertiesConfigurationProtectedSettings": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210901", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210901.IExtensionPropertiesConfigurationProtectedSettings", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210901.IExtensionPropertiesConfigurationProtectedSettings, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IExtensionPropertiesConfigurationProtectedSettings": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IExtensionPropertiesConfigurationProtectedSettings", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IExtensionPropertiesConfigurationProtectedSettings, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, - "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210901.IExtensionPropertiesConfigurationSettings": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210901", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210901.IExtensionPropertiesConfigurationSettings", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210901.IExtensionPropertiesConfigurationSettings, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IExtensionPropertiesConfigurationSettings": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IExtensionPropertiesConfigurationSettings", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IExtensionPropertiesConfigurationSettings, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, - "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210901.IExtensionPropertiesCustomLocationSettings": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210901", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210901.IExtensionPropertiesCustomLocationSettings", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210901.IExtensionPropertiesCustomLocationSettings, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IExtensionPropertiesCustomLocationSettings": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IExtensionPropertiesCustomLocationSettings", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IExtensionPropertiesCustomLocationSettings, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, - "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210901.IExtensionStatus[]": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210901", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210901.IExtensionStatus[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210901.IExtensionStatus[], Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210901.IExtensionStatus" + "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IExtensionStatus[]": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IExtensionStatus[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IExtensionStatus[], Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IExtensionStatus", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, - "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210901.IExtensionStatus": { - "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210901", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210901.IExtensionStatus", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20210901.IExtensionStatus, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IExtensionStatus": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IExtensionStatus", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Models.Api20220301.IExtensionStatus, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Level": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.LevelType]", "Code": "System.String", "DisplayStatus": "System.String", "Message": "System.String", "Time": "System.String" - } + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.LevelType]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.LevelType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.LevelType, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.LevelType, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.LevelType" - ] + ], + "Methods": [], + "Constructors": [] }, "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.LevelType": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.LevelType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.LevelType, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.LevelType, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], "Methods": [ { "Name": "CompleteArgument", @@ -6393,30 +18849,41 @@ }, { "Name": "GetHashCode", + "Parameters": [], "ReturnType": "System.Int32" }, { "Name": "ToString", + "Parameters": [], "ReturnType": "System.String" }, { "Name": "GetType", + "Parameters": [], "ReturnType": "System.Type" } - ] + ], + "Constructors": [] }, - "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ProvisioningState]": { + "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.AksIdentityType]": { "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ProvisioningState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ProvisioningState, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.AksIdentityType]", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.AksIdentityType, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, "GenericTypeArguments": [ - "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ProvisioningState" - ] + "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.AksIdentityType" + ], + "Methods": [], + "Constructors": [] }, - "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ProvisioningState": { + "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.AksIdentityType": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support", - "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ProvisioningState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ProvisioningState, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.AksIdentityType", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.AksIdentityType, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], "Methods": [ { "Name": "CompleteArgument", @@ -6449,7 +18916,7 @@ "Parameters": [ { "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ProvisioningState" + "Type": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.AksIdentityType" } ], "ReturnType": "System.Boolean" @@ -6466,30 +18933,41 @@ }, { "Name": "GetHashCode", + "Parameters": [], "ReturnType": "System.Int32" }, { "Name": "ToString", + "Parameters": [], "ReturnType": "System.String" }, { "Name": "GetType", + "Parameters": [], "ReturnType": "System.Type" } - ] + ], + "Constructors": [] }, "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ResourceIdentityType]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ResourceIdentityType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ResourceIdentityType, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ResourceIdentityType, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ResourceIdentityType" - ] + ], + "Methods": [], + "Constructors": [] }, "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ResourceIdentityType": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ResourceIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ResourceIdentityType, Az.KubernetesConfiguration.private, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.KubernetesConfiguration.Support.ResourceIdentityType, Az.KubernetesConfiguration.private, Version=0.6.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], "Methods": [ { "Name": "CompleteArgument", @@ -6539,17 +19017,21 @@ }, { "Name": "GetHashCode", + "Parameters": [], "ReturnType": "System.Int32" }, { "Name": "ToString", + "Parameters": [], "ReturnType": "System.String" }, { "Name": "GetType", + "Parameters": [], "ReturnType": "System.Type" } - ] + ], + "Constructors": [] } } -} \ No newline at end of file +} diff --git a/tools/Tools.Common/SerializedCmdlets/Az.MariaDb.json b/tools/Tools.Common/SerializedCmdlets/Az.MariaDb.json index 434758bae263..f96e1d3f33f6 100644 --- a/tools/Tools.Common/SerializedCmdlets/Az.MariaDb.json +++ b/tools/Tools.Common/SerializedCmdlets/Az.MariaDb.json @@ -7,7 +7,7 @@ "Name": "Get-AzMariaDbConfiguration", "ClassName": "Get-AzMariaDbConfiguration", "SupportsShouldProcess": false, - "ConfirmImpact": 2, + "ConfirmImpact": 0, "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "List", @@ -16,7 +16,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfiguration, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfiguration, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowedValue": "System.String", "DataType": "System.String", @@ -44,7 +44,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -62,7 +62,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -80,7 +80,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -98,7 +98,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -116,7 +116,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -148,7 +148,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -166,7 +166,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -184,7 +184,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -202,7 +202,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -220,7 +220,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -238,7 +238,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -256,7 +256,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -282,7 +282,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -306,7 +306,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -330,7 +330,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -354,7 +354,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -381,7 +381,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -405,7 +405,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -429,7 +429,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -453,7 +453,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -477,7 +477,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -501,7 +501,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -525,7 +525,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -554,7 +554,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -578,7 +578,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -602,7 +602,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -629,7 +629,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -653,7 +653,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -677,7 +677,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -701,7 +701,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -725,7 +725,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -749,7 +749,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -773,7 +773,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -802,7 +802,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -840,7 +840,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -864,7 +864,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -888,7 +888,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -912,7 +912,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -936,7 +936,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -960,7 +960,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -984,7 +984,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1016,7 +1016,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1040,7 +1040,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1064,7 +1064,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1088,7 +1088,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1112,7 +1112,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1136,7 +1136,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1160,7 +1160,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1188,7 +1188,7 @@ "Name": "Get-AzMariaDbConnectionString", "ClassName": "Get-AzMariaDbConnectionString", "SupportsShouldProcess": false, - "ConfirmImpact": 2, + "ConfirmImpact": 0, "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "ServerName", @@ -1197,7 +1197,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1216,7 +1216,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1236,7 +1236,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1254,7 +1254,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1272,7 +1272,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1290,7 +1290,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StorageProfileGeoRedundantBackup": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup]", "IdentityType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.IdentityType]", @@ -1333,7 +1333,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1351,7 +1351,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1369,7 +1369,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1387,7 +1387,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1405,7 +1405,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1423,7 +1423,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1441,7 +1441,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1465,7 +1465,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1492,7 +1492,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1516,7 +1516,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1540,7 +1540,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1564,7 +1564,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1588,7 +1588,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1612,7 +1612,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1636,7 +1636,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1667,7 +1667,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1691,7 +1691,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1715,7 +1715,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1739,7 +1739,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1766,7 +1766,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1790,7 +1790,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1814,7 +1814,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1838,7 +1838,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1862,7 +1862,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1886,7 +1886,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1910,7 +1910,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1939,7 +1939,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StorageProfileGeoRedundantBackup": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup]", "IdentityType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.IdentityType]", @@ -1985,7 +1985,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2012,7 +2012,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2036,7 +2036,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2060,7 +2060,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2084,7 +2084,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2108,7 +2108,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2132,7 +2132,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2156,7 +2156,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2184,7 +2184,7 @@ "Name": "Get-AzMariaDbFirewallRule", "ClassName": "Get-AzMariaDbFirewallRule", "SupportsShouldProcess": false, - "ConfirmImpact": 2, + "ConfirmImpact": 0, "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "List", @@ -2193,7 +2193,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRule", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRule, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRule, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EndIPAddress": "System.String", "StartIPAddress": "System.String" @@ -2217,7 +2217,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2235,7 +2235,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2253,7 +2253,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2271,7 +2271,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -2289,7 +2289,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -2321,7 +2321,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2339,7 +2339,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2357,7 +2357,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2375,7 +2375,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2393,7 +2393,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2411,7 +2411,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2429,7 +2429,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2455,7 +2455,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2479,7 +2479,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2503,7 +2503,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2527,7 +2527,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -2554,7 +2554,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2578,7 +2578,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2602,7 +2602,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2626,7 +2626,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2650,7 +2650,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2674,7 +2674,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2698,7 +2698,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2727,7 +2727,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2751,7 +2751,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2775,7 +2775,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -2802,7 +2802,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2826,7 +2826,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2850,7 +2850,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2874,7 +2874,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2898,7 +2898,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2922,7 +2922,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2946,7 +2946,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2975,7 +2975,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -3013,7 +3013,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3037,7 +3037,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3061,7 +3061,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3085,7 +3085,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3109,7 +3109,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3133,7 +3133,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3157,7 +3157,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3189,7 +3189,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3213,7 +3213,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3237,7 +3237,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3261,7 +3261,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3285,7 +3285,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3309,7 +3309,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3333,7 +3333,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3361,7 +3361,7 @@ "Name": "Get-AzMariaDbReplica", "ClassName": "Get-AzMariaDbReplica", "SupportsShouldProcess": false, - "ConfirmImpact": 2, + "ConfirmImpact": 0, "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "List", @@ -3370,7 +3370,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StorageProfileGeoRedundantBackup": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup]", "IdentityType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.IdentityType]", @@ -3411,7 +3411,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3429,7 +3429,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3447,7 +3447,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -3468,7 +3468,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3486,7 +3486,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3504,7 +3504,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3522,7 +3522,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3540,7 +3540,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3558,7 +3558,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3576,7 +3576,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3600,7 +3600,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3624,7 +3624,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3648,7 +3648,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -3675,7 +3675,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3699,7 +3699,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3723,7 +3723,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3747,7 +3747,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3771,7 +3771,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3795,7 +3795,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3819,7 +3819,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3847,7 +3847,7 @@ "Name": "Get-AzMariaDbServer", "ClassName": "Get-AzMariaDbServer", "SupportsShouldProcess": false, - "ConfirmImpact": 2, + "ConfirmImpact": 0, "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "List1", @@ -3856,7 +3856,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StorageProfileGeoRedundantBackup": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup]", "IdentityType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.IdentityType]", @@ -3899,7 +3899,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3917,7 +3917,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3935,7 +3935,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -3953,7 +3953,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -3985,7 +3985,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4003,7 +4003,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4021,7 +4021,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4039,7 +4039,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4057,7 +4057,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4075,7 +4075,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4093,7 +4093,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4119,7 +4119,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4143,7 +4143,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4167,7 +4167,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -4194,7 +4194,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4218,7 +4218,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4242,7 +4242,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4266,7 +4266,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4290,7 +4290,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4314,7 +4314,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4338,7 +4338,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4367,7 +4367,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4391,7 +4391,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -4418,7 +4418,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4442,7 +4442,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4466,7 +4466,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4490,7 +4490,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4514,7 +4514,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4538,7 +4538,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4562,7 +4562,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4591,7 +4591,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -4618,7 +4618,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4642,7 +4642,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4666,7 +4666,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4690,7 +4690,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4714,7 +4714,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4738,7 +4738,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4762,7 +4762,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4791,7 +4791,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -4829,7 +4829,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4853,7 +4853,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4877,7 +4877,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4901,7 +4901,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4925,7 +4925,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4949,7 +4949,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4973,7 +4973,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5005,7 +5005,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5029,7 +5029,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5053,7 +5053,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -5077,7 +5077,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -5101,7 +5101,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5125,7 +5125,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5149,7 +5149,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5177,7 +5177,7 @@ "Name": "Get-AzMariaDbVirtualNetworkRule", "ClassName": "Get-AzMariaDbVirtualNetworkRule", "SupportsShouldProcess": false, - "ConfirmImpact": 2, + "ConfirmImpact": 0, "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "List", @@ -5186,7 +5186,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRule", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRule, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRule, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "State": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.VirtualNetworkRuleState]", "IgnoreMissingVnetServiceEndpoint": "System.Nullable`1[System.Boolean]", @@ -5211,7 +5211,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5229,7 +5229,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5247,7 +5247,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5265,7 +5265,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -5283,7 +5283,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -5315,7 +5315,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5333,7 +5333,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5351,7 +5351,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -5369,7 +5369,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -5387,7 +5387,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5405,7 +5405,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5423,7 +5423,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5441,7 +5441,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5467,7 +5467,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5491,7 +5491,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5515,7 +5515,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5539,7 +5539,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -5566,7 +5566,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5590,7 +5590,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5614,7 +5614,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -5638,7 +5638,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -5662,7 +5662,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5686,7 +5686,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5710,7 +5710,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5734,7 +5734,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5763,7 +5763,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5787,7 +5787,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5811,7 +5811,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -5838,7 +5838,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5862,7 +5862,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5886,7 +5886,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -5910,7 +5910,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -5934,7 +5934,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5958,7 +5958,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5982,7 +5982,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6006,7 +6006,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6035,7 +6035,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -6073,7 +6073,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6097,7 +6097,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6121,7 +6121,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -6145,7 +6145,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -6169,7 +6169,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6193,7 +6193,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6217,7 +6217,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6241,7 +6241,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6273,7 +6273,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6297,7 +6297,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6321,7 +6321,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -6345,7 +6345,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -6369,7 +6369,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6393,7 +6393,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6417,7 +6417,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6441,7 +6441,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6468,7 +6468,7 @@ "NounName": "AzMariaDbFirewallRule", "Name": "New-AzMariaDbFirewallRule", "ClassName": "New-AzMariaDbFirewallRule", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -6478,7 +6478,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRule", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRule, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRule, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EndIPAddress": "System.String", "StartIPAddress": "System.String" @@ -6500,7 +6500,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6518,7 +6518,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6538,7 +6538,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6556,7 +6556,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6574,7 +6574,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6592,7 +6592,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6610,7 +6610,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6628,7 +6628,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6649,7 +6649,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6667,7 +6667,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6685,7 +6685,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6703,7 +6703,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -6721,7 +6721,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -6739,7 +6739,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6757,7 +6757,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6775,7 +6775,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6793,7 +6793,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6817,7 +6817,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6841,7 +6841,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6867,7 +6867,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6891,7 +6891,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6918,7 +6918,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6942,7 +6942,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6966,7 +6966,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6990,7 +6990,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -7014,7 +7014,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -7038,7 +7038,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7062,7 +7062,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7086,7 +7086,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7110,7 +7110,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7139,7 +7139,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7163,7 +7163,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7187,7 +7187,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7211,7 +7211,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7237,7 +7237,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7261,7 +7261,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7288,7 +7288,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7312,7 +7312,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7336,7 +7336,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7360,7 +7360,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -7384,7 +7384,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -7408,7 +7408,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7432,7 +7432,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7456,7 +7456,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7480,7 +7480,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7509,7 +7509,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7533,7 +7533,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7557,7 +7557,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7583,7 +7583,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7607,7 +7607,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7634,7 +7634,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7658,7 +7658,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7682,7 +7682,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7706,7 +7706,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -7730,7 +7730,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -7754,7 +7754,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7778,7 +7778,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7802,7 +7802,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7826,7 +7826,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7855,7 +7855,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7879,7 +7879,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7903,7 +7903,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7929,7 +7929,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7953,7 +7953,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7980,7 +7980,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8004,7 +8004,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8028,7 +8028,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8052,7 +8052,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -8076,7 +8076,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -8100,7 +8100,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8124,7 +8124,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8148,7 +8148,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8172,7 +8172,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8199,7 +8199,7 @@ "NounName": "AzMariaDbReplica", "Name": "New-AzMariaDbReplica", "ClassName": "New-AzMariaDbReplica", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -8209,7 +8209,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StorageProfileGeoRedundantBackup": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup]", "IdentityType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.IdentityType]", @@ -8253,7 +8253,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8273,7 +8273,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8291,7 +8291,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8309,7 +8309,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8329,7 +8329,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StorageProfileGeoRedundantBackup": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup]", "IdentityType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.IdentityType]", @@ -8369,7 +8369,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8387,7 +8387,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8405,7 +8405,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8426,7 +8426,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8444,7 +8444,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8462,7 +8462,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8480,7 +8480,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -8498,7 +8498,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -8516,7 +8516,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8534,7 +8534,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8552,7 +8552,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8570,7 +8570,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8597,7 +8597,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8621,7 +8621,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8645,7 +8645,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8669,7 +8669,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8693,7 +8693,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8720,7 +8720,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8744,7 +8744,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8768,7 +8768,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8792,7 +8792,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -8816,7 +8816,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -8840,7 +8840,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8864,7 +8864,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8888,7 +8888,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8912,7 +8912,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8943,7 +8943,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8967,7 +8967,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8994,7 +8994,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9018,7 +9018,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9042,7 +9042,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9066,7 +9066,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9090,7 +9090,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9117,7 +9117,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9141,7 +9141,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9165,7 +9165,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9189,7 +9189,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -9213,7 +9213,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -9237,7 +9237,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9261,7 +9261,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9285,7 +9285,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9309,7 +9309,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9340,7 +9340,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StorageProfileGeoRedundantBackup": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup]", "IdentityType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.IdentityType]", @@ -9389,7 +9389,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9413,7 +9413,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9437,7 +9437,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9461,7 +9461,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9485,7 +9485,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9512,7 +9512,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9536,7 +9536,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9560,7 +9560,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9584,7 +9584,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -9608,7 +9608,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -9632,7 +9632,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9656,7 +9656,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9680,7 +9680,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9704,7 +9704,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9731,7 +9731,7 @@ "NounName": "AzMariaDbServer", "Name": "New-AzMariaDbServer", "ClassName": "New-AzMariaDbServer", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -9741,7 +9741,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StorageProfileGeoRedundantBackup": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup]", "IdentityType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.IdentityType]", @@ -9784,7 +9784,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9802,7 +9802,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9820,7 +9820,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9838,7 +9838,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9856,7 +9856,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9874,7 +9874,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9892,7 +9892,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9910,73 +9910,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -9990,7 +9928,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10008,73 +9946,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -10088,73 +9964,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -10168,7 +9982,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10186,7 +10000,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10204,73 +10018,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -10287,7 +10039,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10305,7 +10057,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10323,7 +10075,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10341,7 +10093,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -10359,7 +10111,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -10377,7 +10129,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10395,7 +10147,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10413,7 +10165,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10431,7 +10183,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10457,7 +10209,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10481,7 +10233,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10505,7 +10257,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10529,7 +10281,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10553,7 +10305,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10577,7 +10329,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10601,7 +10353,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10625,73 +10377,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -10711,7 +10401,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10735,73 +10425,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -10821,73 +10449,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -10907,7 +10473,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10931,7 +10497,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10955,73 +10521,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -11044,7 +10548,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11068,7 +10572,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11092,7 +10596,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11116,7 +10620,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -11140,7 +10644,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -11164,7 +10668,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11188,7 +10692,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11212,7 +10716,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11236,7 +10740,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11263,7 +10767,7 @@ "NounName": "AzMariaDbVirtualNetworkRule", "Name": "New-AzMariaDbVirtualNetworkRule", "ClassName": "New-AzMariaDbVirtualNetworkRule", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -11273,7 +10777,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRule", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRule, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRule, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "State": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.VirtualNetworkRuleState]", "IgnoreMissingVnetServiceEndpoint": "System.Nullable`1[System.Boolean]", @@ -11298,7 +10802,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11316,7 +10820,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11334,7 +10838,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11352,7 +10856,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11370,7 +10874,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11388,7 +10892,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11409,7 +10913,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11427,7 +10931,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11445,7 +10949,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11463,7 +10967,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -11481,7 +10985,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -11499,7 +11003,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11517,7 +11021,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11535,7 +11039,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11553,7 +11057,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11571,7 +11075,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11597,7 +11101,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11621,7 +11125,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11645,7 +11149,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11669,7 +11173,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11693,7 +11197,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11717,7 +11221,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11744,7 +11248,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11768,7 +11272,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11792,7 +11296,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11816,7 +11320,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -11840,7 +11344,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -11864,7 +11368,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11888,7 +11392,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11912,7 +11416,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11936,7 +11440,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11960,7 +11464,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11987,7 +11491,7 @@ "NounName": "AzMariaDbFirewallRule", "Name": "Remove-AzMariaDbFirewallRule", "ClassName": "Remove-AzMariaDbFirewallRule", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -11997,7 +11501,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12018,7 +11522,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12036,7 +11540,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12054,7 +11558,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12072,7 +11576,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12090,7 +11594,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -12122,7 +11626,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12140,7 +11644,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12158,7 +11662,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12176,7 +11680,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -12194,7 +11698,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -12212,7 +11716,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12230,7 +11734,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12248,7 +11752,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12266,7 +11770,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12284,7 +11788,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12310,7 +11814,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12334,7 +11838,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12358,7 +11862,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12382,7 +11886,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12409,7 +11913,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12433,7 +11937,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12457,7 +11961,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12481,7 +11985,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -12505,7 +12009,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -12529,7 +12033,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12553,7 +12057,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12577,7 +12081,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12601,7 +12105,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12625,7 +12129,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12654,7 +12158,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -12692,7 +12196,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12716,7 +12220,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12740,7 +12244,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12764,7 +12268,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -12788,7 +12292,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -12812,7 +12316,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12836,7 +12340,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12860,7 +12364,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12884,7 +12388,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12908,7 +12412,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12940,7 +12444,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12964,7 +12468,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12988,7 +12492,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13012,7 +12516,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -13036,7 +12540,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -13060,7 +12564,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13084,7 +12588,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13108,7 +12612,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13132,7 +12636,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13156,7 +12660,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13183,7 +12687,7 @@ "NounName": "AzMariaDbServer", "Name": "Remove-AzMariaDbServer", "ClassName": "Remove-AzMariaDbServer", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -13193,7 +12697,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13214,7 +12718,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13232,7 +12736,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13250,7 +12754,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13268,7 +12772,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -13300,7 +12804,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13318,7 +12822,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13336,7 +12840,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13354,7 +12858,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -13372,7 +12876,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -13390,7 +12894,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13408,7 +12912,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13426,7 +12930,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13444,7 +12948,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13462,7 +12966,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13488,7 +12992,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13512,7 +13016,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13536,7 +13040,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13563,7 +13067,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13587,7 +13091,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13611,7 +13115,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13635,7 +13139,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -13659,7 +13163,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -13683,7 +13187,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13707,7 +13211,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13731,7 +13235,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13755,7 +13259,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13779,7 +13283,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13808,7 +13312,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -13846,7 +13350,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13870,7 +13374,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13894,7 +13398,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13918,7 +13422,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -13942,7 +13446,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -13966,7 +13470,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13990,7 +13494,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14014,7 +13518,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14038,7 +13542,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14062,7 +13566,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14094,7 +13598,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14118,7 +13622,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14142,7 +13646,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14166,7 +13670,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -14190,7 +13694,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -14214,7 +13718,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14238,7 +13742,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14262,7 +13766,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14286,7 +13790,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14310,7 +13814,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14337,7 +13841,7 @@ "NounName": "AzMariaDbVirtualNetworkRule", "Name": "Remove-AzMariaDbVirtualNetworkRule", "ClassName": "Remove-AzMariaDbVirtualNetworkRule", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -14347,7 +13851,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14368,7 +13872,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14386,7 +13890,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14404,7 +13908,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14422,7 +13926,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14440,7 +13944,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -14472,7 +13976,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14490,7 +13994,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14508,7 +14012,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14526,7 +14030,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -14544,7 +14048,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -14562,7 +14066,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14580,7 +14084,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14598,7 +14102,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14616,7 +14120,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14634,7 +14138,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14660,7 +14164,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14684,7 +14188,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14708,7 +14212,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14732,7 +14236,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14759,7 +14263,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14783,7 +14287,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14807,7 +14311,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14831,7 +14335,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -14855,7 +14359,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -14879,7 +14383,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14903,7 +14407,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14927,7 +14431,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14951,7 +14455,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14975,7 +14479,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15004,7 +14508,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -15042,7 +14546,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15066,7 +14570,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15090,7 +14594,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15114,7 +14618,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -15138,7 +14642,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -15162,7 +14666,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15186,7 +14690,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15210,7 +14714,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15234,7 +14738,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15258,7 +14762,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15290,7 +14794,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15314,7 +14818,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15338,7 +14842,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15362,7 +14866,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -15386,7 +14890,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -15410,7 +14914,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15434,7 +14938,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15458,7 +14962,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15482,7 +14986,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15506,7 +15010,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15533,7 +15037,7 @@ "NounName": "AzMariaDbServer", "Name": "Restart-AzMariaDbServer", "ClassName": "Restart-AzMariaDbServer", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -15543,7 +15047,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15564,7 +15068,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15582,7 +15086,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15600,7 +15104,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15618,7 +15122,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -15650,7 +15154,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15668,7 +15172,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15686,7 +15190,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15704,7 +15208,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -15722,7 +15226,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -15740,7 +15244,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15758,7 +15262,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15776,7 +15280,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15794,7 +15298,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15812,7 +15316,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15838,7 +15342,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15862,7 +15366,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15886,7 +15390,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15913,7 +15417,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15937,7 +15441,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15961,7 +15465,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15985,7 +15489,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -16009,7 +15513,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -16033,7 +15537,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16057,7 +15561,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16081,7 +15585,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16105,7 +15609,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16129,7 +15633,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16158,7 +15662,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -16196,7 +15700,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16220,7 +15724,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16244,7 +15748,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16268,7 +15772,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -16292,7 +15796,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -16316,7 +15820,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16340,7 +15844,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16364,7 +15868,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16388,7 +15892,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16412,7 +15916,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16444,7 +15948,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16468,7 +15972,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16492,7 +15996,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16516,7 +16020,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -16540,7 +16044,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -16564,7 +16068,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16588,7 +16092,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16612,7 +16116,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16636,7 +16140,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16660,7 +16164,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16687,7 +16191,7 @@ "NounName": "AzMariaDbServer", "Name": "Restore-AzMariaDbServer", "ClassName": "Restore-AzMariaDbServer", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -16697,7 +16201,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StorageProfileGeoRedundantBackup": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup]", "IdentityType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.IdentityType]", @@ -16738,7 +16242,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16756,7 +16260,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16774,7 +16278,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StorageProfileGeoRedundantBackup": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup]", "IdentityType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.IdentityType]", @@ -16814,7 +16318,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16832,7 +16336,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16850,7 +16354,7 @@ "Type": { "Namespace": "System", "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16868,7 +16372,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16886,7 +16390,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16907,7 +16411,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16925,7 +16429,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16943,7 +16447,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16961,7 +16465,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -16979,7 +16483,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -16997,7 +16501,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17015,7 +16519,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17033,7 +16537,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17051,7 +16555,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17075,7 +16579,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17099,7 +16603,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17123,7 +16627,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StorageProfileGeoRedundantBackup": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup]", "IdentityType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.IdentityType]", @@ -17169,7 +16673,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17193,7 +16697,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17217,7 +16721,7 @@ "Type": { "Namespace": "System", "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17241,7 +16745,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17265,7 +16769,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17292,7 +16796,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17316,7 +16820,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17340,7 +16844,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17364,7 +16868,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -17388,7 +16892,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -17412,7 +16916,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17436,7 +16940,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17460,7 +16964,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17484,7 +16988,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17511,7 +17015,7 @@ "NounName": "AzMariaDbConfiguration", "Name": "Update-AzMariaDbConfiguration", "ClassName": "Update-AzMariaDbConfiguration", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -17521,7 +17025,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfiguration, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IConfiguration, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AllowedValue": "System.String", "DataType": "System.String", @@ -17549,7 +17053,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17567,7 +17071,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17585,7 +17089,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17603,7 +17107,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17621,7 +17125,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -17650,7 +17154,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17668,7 +17172,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17689,7 +17193,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17707,7 +17211,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17725,7 +17229,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17743,7 +17247,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -17761,7 +17265,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -17779,7 +17283,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17797,7 +17301,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17815,7 +17319,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17833,7 +17337,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17859,7 +17363,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17883,7 +17387,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17907,7 +17411,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17931,7 +17435,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17955,7 +17459,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17979,7 +17483,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18006,7 +17510,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18030,7 +17534,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18054,7 +17558,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18078,7 +17582,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -18102,7 +17606,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -18126,7 +17630,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18150,7 +17654,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18174,7 +17678,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18198,7 +17702,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18227,7 +17731,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -18262,7 +17766,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18286,7 +17790,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18313,7 +17817,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18337,7 +17841,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18361,7 +17865,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18385,7 +17889,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -18409,7 +17913,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -18433,7 +17937,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18457,7 +17961,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18481,7 +17985,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18505,7 +18009,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18534,7 +18038,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18558,7 +18062,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18585,7 +18089,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18609,7 +18113,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18633,7 +18137,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18657,7 +18161,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -18681,7 +18185,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -18705,7 +18209,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18729,7 +18233,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18753,7 +18257,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18777,7 +18281,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18804,7 +18308,7 @@ "NounName": "AzMariaDbFirewallRule", "Name": "Update-AzMariaDbFirewallRule", "ClassName": "Update-AzMariaDbFirewallRule", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -18814,7 +18318,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRule", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRule, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IFirewallRule, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "EndIPAddress": "System.String", "StartIPAddress": "System.String" @@ -18838,7 +18342,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18856,7 +18360,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18874,7 +18378,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18892,7 +18396,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18910,7 +18414,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -18939,7 +18443,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18957,7 +18461,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18975,7 +18479,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18996,7 +18500,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19014,7 +18518,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19032,7 +18536,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19050,7 +18554,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -19068,7 +18572,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -19086,7 +18590,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19104,7 +18608,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19122,7 +18626,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19140,7 +18644,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19166,7 +18670,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19190,7 +18694,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19214,7 +18718,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19238,7 +18742,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19262,7 +18766,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19289,7 +18793,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19313,7 +18817,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19337,7 +18841,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19361,7 +18865,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -19385,7 +18889,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -19409,7 +18913,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19433,7 +18937,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19457,7 +18961,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19481,7 +18985,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19512,7 +19016,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19536,7 +19040,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19560,7 +19064,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19584,7 +19088,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19608,7 +19112,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19632,7 +19136,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19659,7 +19163,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19683,7 +19187,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19707,7 +19211,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19731,7 +19235,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -19755,7 +19259,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -19779,7 +19283,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19803,7 +19307,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19827,7 +19331,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19851,7 +19355,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19880,7 +19384,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -19915,7 +19419,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19939,7 +19443,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19966,7 +19470,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19990,7 +19494,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20014,7 +19518,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20038,7 +19542,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -20062,7 +19566,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -20086,7 +19590,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20110,7 +19614,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20134,7 +19638,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20158,7 +19662,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20187,7 +19691,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -20222,7 +19726,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20249,7 +19753,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20273,7 +19777,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20297,7 +19801,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20321,7 +19825,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -20345,7 +19849,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -20369,7 +19873,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20393,7 +19897,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20417,7 +19921,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20441,7 +19945,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20473,7 +19977,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20497,7 +20001,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20521,7 +20025,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20545,7 +20049,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -20569,7 +20073,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -20593,7 +20097,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20617,7 +20121,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20641,7 +20145,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20665,7 +20169,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20692,7 +20196,7 @@ "NounName": "AzMariaDbServer", "Name": "Update-AzMariaDbServer", "ClassName": "Update-AzMariaDbServer", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -20702,7 +20206,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IServer, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StorageProfileGeoRedundantBackup": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup]", "IdentityType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.IdentityType]", @@ -20745,7 +20249,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20763,7 +20267,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20781,7 +20285,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20799,7 +20303,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -20828,7 +20332,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20846,7 +20350,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20864,73 +20368,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -20944,7 +20386,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20962,73 +20404,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -21042,73 +20422,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -21122,7 +20440,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21140,7 +20458,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21158,7 +20476,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21179,7 +20497,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21197,7 +20515,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21215,7 +20533,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21233,7 +20551,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -21251,7 +20569,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -21269,7 +20587,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21287,7 +20605,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21305,7 +20623,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21323,7 +20641,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21349,7 +20667,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21373,7 +20691,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21397,7 +20715,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21421,7 +20739,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21445,7 +20763,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21469,73 +20787,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -21555,7 +20811,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21579,73 +20835,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -21665,73 +20859,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -21751,7 +20883,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21775,7 +20907,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21799,7 +20931,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21826,7 +20958,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21850,7 +20982,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21874,7 +21006,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21898,7 +21030,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -21922,7 +21054,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -21946,7 +21078,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21970,7 +21102,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21994,7 +21126,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22018,7 +21150,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22047,7 +21179,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -22082,7 +21214,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22106,7 +21238,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22130,73 +21262,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -22216,7 +21286,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22240,73 +21310,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -22326,73 +21334,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -22412,7 +21358,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22436,7 +21382,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22460,7 +21406,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22487,7 +21433,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22511,7 +21457,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22535,7 +21481,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22559,7 +21505,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -22583,7 +21529,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -22607,7 +21553,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22631,7 +21577,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22655,7 +21601,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22679,7 +21625,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22708,7 +21654,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22732,7 +21678,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22756,73 +21702,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -22842,7 +21726,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22866,73 +21750,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -22952,73 +21774,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -23038,7 +21798,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23062,7 +21822,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23086,7 +21846,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23113,7 +21873,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23137,7 +21897,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23161,7 +21921,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23185,7 +21945,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -23209,7 +21969,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -23233,7 +21993,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23257,7 +22017,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23281,7 +22041,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23305,7 +22065,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23332,7 +22092,7 @@ "NounName": "AzMariaDbVirtualNetworkRule", "Name": "Update-AzMariaDbVirtualNetworkRule", "ClassName": "Update-AzMariaDbVirtualNetworkRule", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -23342,7 +22102,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRule", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRule, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.Api20180601Preview.IVirtualNetworkRule, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "State": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.VirtualNetworkRuleState]", "IgnoreMissingVnetServiceEndpoint": "System.Nullable`1[System.Boolean]", @@ -23367,7 +22127,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23385,7 +22145,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23403,7 +22163,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23421,7 +22181,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23439,7 +22199,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -23468,7 +22228,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23486,7 +22246,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23507,7 +22267,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23525,7 +22285,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23543,7 +22303,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23561,7 +22321,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -23579,7 +22339,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -23597,7 +22357,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23615,7 +22375,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23633,7 +22393,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23651,7 +22411,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23669,7 +22429,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23695,7 +22455,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23719,7 +22479,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23743,7 +22503,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23767,7 +22527,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23791,7 +22551,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23815,7 +22575,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23842,7 +22602,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23866,7 +22626,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23890,7 +22650,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23914,7 +22674,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -23938,7 +22698,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -23962,7 +22722,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23986,7 +22746,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24010,7 +22770,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24034,7 +22794,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24058,7 +22818,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24087,7 +22847,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Models.IMariaDbIdentity, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SecurityAlertPolicyName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SecurityAlertPolicyName]", "ConfigurationName": "System.String", @@ -24122,7 +22882,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24146,7 +22906,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24173,7 +22933,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24197,7 +22957,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24221,7 +22981,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24245,7 +23005,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -24269,7 +23029,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -24293,7 +23053,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24317,7 +23077,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24341,7 +23101,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24365,7 +23125,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24389,7 +23149,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24418,7 +23178,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24442,7 +23202,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24469,7 +23229,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24493,7 +23253,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24517,7 +23277,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24541,7 +23301,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -24565,7 +23325,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep[], Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -24589,7 +23349,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24613,7 +23373,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24637,7 +23397,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24661,7 +23421,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24685,7 +23445,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24852,7 +23612,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SecurityAlertPolicyName]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SecurityAlertPolicyName]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SecurityAlertPolicyName, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SecurityAlertPolicyName, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -24864,7 +23624,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SecurityAlertPolicyName": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SecurityAlertPolicyName", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SecurityAlertPolicyName, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SecurityAlertPolicyName, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24936,7 +23696,7 @@ "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]", - "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -24948,7 +23708,7 @@ "System.Management.Automation.CompletionResult": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.CompletionResult", - "AssemblyQualifiedName": "System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24958,7 +23718,7 @@ "System.Type": { "Namespace": "System", "Name": "System.Type", - "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24968,7 +23728,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Runtime.SendAsyncStep, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Target": "System.Object", "Method": "System.Reflection.MethodInfo" @@ -25110,7 +23870,7 @@ "System.Object": { "Namespace": "System", "Name": "System.Object", - "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25120,7 +23880,7 @@ "System.Reflection.MethodInfo": { "Namespace": "System.Reflection", "Name": "System.Reflection.MethodInfo", - "AssemblyQualifiedName": "System.Reflection.MethodInfo, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Reflection.MethodInfo, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25130,7 +23890,7 @@ "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]": { "Namespace": "System.Threading.Tasks", "Name": "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]", - "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[System.Net.Http.HttpResponseMessage, System.Net.Http, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[System.Net.Http.HttpResponseMessage, System.Net.Http, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -25142,7 +23902,7 @@ "System.Net.Http.HttpResponseMessage": { "Namespace": "System.Net.Http", "Name": "System.Net.Http.HttpResponseMessage", - "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25152,7 +23912,7 @@ "System.IAsyncResult": { "Namespace": "System", "Name": "System.IAsyncResult", - "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25162,7 +23922,7 @@ "System.Void": { "Namespace": "System", "Name": "System.Void", - "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25172,7 +23932,7 @@ "System.Delegate[]": { "Namespace": "System", "Name": "System.Delegate[]", - "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.Delegate", "GenericTypeArguments": [], @@ -25182,7 +23942,7 @@ "System.Delegate": { "Namespace": "System", "Name": "System.Delegate", - "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25192,7 +23952,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -25204,7 +23964,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.GeoRedundantBackup, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25276,7 +24036,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.IdentityType]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.IdentityType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.IdentityType, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.IdentityType, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -25288,7 +24048,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.IdentityType": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.IdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.IdentityType, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.IdentityType, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25360,7 +24120,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerState]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerState, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerState, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -25372,7 +24132,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerState": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerState, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerState, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25444,7 +24204,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -25456,7 +24216,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.ServerVersion, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25528,7 +24288,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SkuTier]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SkuTier]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SkuTier, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SkuTier, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -25540,7 +24300,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SkuTier": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SkuTier", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SkuTier, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SkuTier, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25612,7 +24372,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -25624,7 +24384,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.SslEnforcementEnum, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25696,7 +24456,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -25708,7 +24468,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.StorageAutogrow, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25780,7 +24540,7 @@ "System.Nullable`1[System.DateTime]": { "Namespace": "System", "Name": "System.Nullable`1[System.DateTime]", - "AssemblyQualifiedName": "System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -25792,7 +24552,7 @@ "System.DateTime": { "Namespace": "System", "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25802,7 +24562,7 @@ "System.Nullable`1[System.Int32]": { "Namespace": "System", "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -25814,7 +24574,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.VirtualNetworkRuleState]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.VirtualNetworkRuleState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.VirtualNetworkRuleState, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.VirtualNetworkRuleState, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -25826,7 +24586,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.VirtualNetworkRuleState": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.VirtualNetworkRuleState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.VirtualNetworkRuleState, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MariaDb.Support.VirtualNetworkRuleState, Az.MariaDb.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25898,7 +24658,7 @@ "System.Nullable`1[System.Boolean]": { "Namespace": "System", "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ diff --git a/tools/Tools.Common/SerializedCmdlets/Az.Marketplace.json b/tools/Tools.Common/SerializedCmdlets/Az.Marketplace.json index dee63a21f121..be00df7abc48 100644 --- a/tools/Tools.Common/SerializedCmdlets/Az.Marketplace.json +++ b/tools/Tools.Common/SerializedCmdlets/Az.Marketplace.json @@ -1,6 +1,5 @@ { - "ModuleName": "Az.Marketplace", - "ModuleVersion": "0.3.0", + "ProcessedTypes": {}, "Cmdlets": [ { "VerbName": "Get", @@ -9,6 +8,7 @@ "ClassName": "Microsoft.Azure.Commands.Marketplace.Cmdlets.GetAzMarketplacePrivateStore", "SupportsShouldProcess": false, "ConfirmImpact": 2, + "HasForceSwitch": null, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ @@ -16,7 +16,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Marketplace.Models.PrivateStore", "Name": "Microsoft.Azure.Commands.Marketplace.Models.PrivateStore.PSPrivateStore", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Marketplace.Models.PrivateStore.PSPrivateStore, Microsoft.Azure.PowerShell.Cmdlets.Marketplace, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Marketplace.Models.PrivateStore.PSPrivateStore, Microsoft.Azure.PowerShell.Cmdlets.Marketplace, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Availability": "System.String", "PrivateStoreId": "System.String", @@ -25,13 +25,17 @@ "Name": "System.String", "Type": "System.String" }, + "ElementType": null, + "GenericTypeArguments": [], "Methods": [ { "Name": "GetType", + "Parameters": [], "ReturnType": "System.Type" }, { "Name": "ToString", + "Parameters": [], "ReturnType": "System.String" }, { @@ -46,12 +50,15 @@ }, { "Name": "GetHashCode", + "Parameters": [], "ReturnType": "System.Int32" } ], "Constructors": [ { - "Name": "" + "Name": "", + "Parameters": [], + "ReturnType": null } ] }, @@ -77,8 +84,15 @@ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false } ], @@ -103,8 +117,15 @@ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -114,7 +135,8 @@ } ] } - ] + ], + "AliasList": [] }, { "VerbName": "Get", @@ -123,6 +145,7 @@ "ClassName": "Microsoft.Azure.Commands.Marketplace.Cmdlets.GetAzMarketplacePrivateStoreOffer", "SupportsShouldProcess": false, "ConfirmImpact": 2, + "HasForceSwitch": null, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ @@ -130,7 +153,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Marketplace.Models.PrivateStore", "Name": "Microsoft.Azure.Commands.Marketplace.Models.PrivateStore.PSPrivateStoreOffer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Marketplace.Models.PrivateStore.PSPrivateStoreOffer, Microsoft.Azure.PowerShell.Cmdlets.Marketplace, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Marketplace.Models.PrivateStore.PSPrivateStoreOffer, Microsoft.Azure.PowerShell.Cmdlets.Marketplace, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SpecificPlanIdsLimitation": "System.Collections.Generic.IList`1[System.String]", "UniqueOfferId": "System.String", @@ -144,13 +167,17 @@ "Name": "System.String", "Type": "System.String" }, + "ElementType": null, + "GenericTypeArguments": [], "Methods": [ { "Name": "GetType", + "Parameters": [], "ReturnType": "System.Type" }, { "Name": "ToString", + "Parameters": [], "ReturnType": "System.String" }, { @@ -165,12 +192,15 @@ }, { "Name": "GetHashCode", + "Parameters": [], "ReturnType": "System.Int32" } ], "Constructors": [ { - "Name": "" + "Name": "", + "Parameters": [], + "ReturnType": null } ] }, @@ -182,29 +212,56 @@ "Parameters": [ { "Name": "PrivateStoreId", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, { "Name": "OfferId", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, { "Name": "SubscriptionId", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, { @@ -223,8 +280,15 @@ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false } ], @@ -235,11 +299,20 @@ { "ParameterMetadata": { "Name": "PrivateStoreId", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -250,11 +323,20 @@ { "ParameterMetadata": { "Name": "OfferId", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, "Mandatory": false, @@ -265,11 +347,20 @@ { "ParameterMetadata": { "Name": "SubscriptionId", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, "Mandatory": false, @@ -294,8 +385,15 @@ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -305,7 +403,8 @@ } ] } - ] + ], + "AliasList": [] }, { "VerbName": "Remove", @@ -314,6 +413,7 @@ "ClassName": "Microsoft.Azure.Commands.Marketplace.Cmdlets.RemoveAzMarketplacePrivateStoreOffer", "SupportsShouldProcess": true, "ConfirmImpact": 2, + "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ @@ -321,7 +421,12 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, "ParameterSets": [ "__AllParameterSets" @@ -331,29 +436,56 @@ "Parameters": [ { "Name": "PrivateStoreId", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, { "Name": "OfferId", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, { "Name": "PassThru", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, { @@ -372,8 +504,15 @@ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false } ], @@ -384,11 +523,20 @@ { "ParameterMetadata": { "Name": "PrivateStoreId", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -399,11 +547,20 @@ { "ParameterMetadata": { "Name": "OfferId", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -414,11 +571,20 @@ { "ParameterMetadata": { "Name": "PassThru", + "AliasList": [], "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.0.6.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -443,8 +609,15 @@ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -454,7 +627,8 @@ } ] } - ] + ], + "AliasList": [] }, { "VerbName": "Set", @@ -463,6 +637,7 @@ "ClassName": "Microsoft.Azure.Commands.Marketplace.Cmdlets.SetAzMarketplacePrivateStoreOffer", "SupportsShouldProcess": true, "ConfirmImpact": 2, + "HasForceSwitch": null, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ @@ -470,7 +645,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Marketplace.Models.PrivateStore", "Name": "Microsoft.Azure.Commands.Marketplace.Models.PrivateStore.PSPrivateStoreOffer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Marketplace.Models.PrivateStore.PSPrivateStoreOffer, Microsoft.Azure.PowerShell.Cmdlets.Marketplace, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Marketplace.Models.PrivateStore.PSPrivateStoreOffer, Microsoft.Azure.PowerShell.Cmdlets.Marketplace, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SpecificPlanIdsLimitation": "System.Collections.Generic.IList`1[System.String]", "UniqueOfferId": "System.String", @@ -484,13 +659,17 @@ "Name": "System.String", "Type": "System.String" }, + "ElementType": null, + "GenericTypeArguments": [], "Methods": [ { "Name": "GetType", + "Parameters": [], "ReturnType": "System.Type" }, { "Name": "ToString", + "Parameters": [], "ReturnType": "System.String" }, { @@ -505,12 +684,15 @@ }, { "Name": "GetHashCode", + "Parameters": [], "ReturnType": "System.Int32" } ], "Constructors": [ { - "Name": "" + "Name": "", + "Parameters": [], + "ReturnType": null } ] }, @@ -522,50 +704,94 @@ "Parameters": [ { "Name": "PrivateStoreId", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, { "Name": "OfferId", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, { "Name": "SpecificPlanIdsLimitation", + "AliasList": [], "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[System.String]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, "GenericTypeArguments": [ "System.String" - ] + ], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, { "Name": "ETag", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, { "Name": "SubscriptionId", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, { @@ -584,8 +810,15 @@ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false } ], @@ -596,11 +829,20 @@ { "ParameterMetadata": { "Name": "PrivateStoreId", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -611,11 +853,20 @@ { "ParameterMetadata": { "Name": "OfferId", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -626,14 +877,22 @@ { "ParameterMetadata": { "Name": "SpecificPlanIdsLimitation", + "AliasList": [], "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[System.String]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, "GenericTypeArguments": [ "System.String" - ] + ], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -644,11 +903,20 @@ { "ParameterMetadata": { "Name": "ETag", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, "Mandatory": false, @@ -659,11 +927,20 @@ { "ParameterMetadata": { "Name": "SubscriptionId", + "AliasList": [], "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": true }, "Mandatory": false, @@ -688,8 +965,15 @@ "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -699,194 +983,15553 @@ } ] } - ] - } - ], - "TypeDictionary": { - "System.String": { - "Name": "System.String" - }, - "System.Boolean": { - "Name": "System.Boolean" - }, - "System.Byte": { - "Name": "System.Byte" - }, - "System.SByte": { - "Name": "System.SByte" - }, - "System.Int16": { - "Name": "System.Int16" - }, - "System.UInt16": { - "Name": "System.UInt16" - }, - "System.Int32": { - "Name": "System.Int32" - }, - "System.UInt32": { - "Name": "System.UInt32" - }, - "System.Int64": { - "Name": "System.Int64" - }, - "System.UInt64": { - "Name": "System.UInt64" - }, - "System.Single": { - "Name": "System.Single" - }, - "System.Double": { - "Name": "System.Double" - }, - "System.Decimal": { - "Name": "System.Decimal" - }, - "System.Char": { - "Name": "System.Char" - }, - "System.Type": { - "Namespace": "System", - "Name": "System.Type", - "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Account": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount", - "Environment": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment", - "Subscription": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription", - "Tenant": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTenant", - "TokenCache": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTokenCache", - "VersionProfile": "System.String" - } - }, - "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "TenantMap": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "Id": "System.String", - "Credential": "System.String", - "Type": "System.String" - } - }, - "System.Collections.Generic.IDictionary`2[System.String,System.String]": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.String", - "System.String" - ] - }, - "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "OnPremise": "System.Boolean", - "VersionProfiles": "System.Collections.Generic.IList`1[System.String]", - "Name": "System.String", - "AdTenant": "System.String", - "AzureDataLakeStoreFileSystemEndpointSuffix": "System.String", - "AzureDataLakeAnalyticsCatalogAndJobEndpointSuffix": "System.String", - "BatchEndpointResourceId": "System.String", - "DataLakeEndpointResourceId": "System.String", - "GraphEndpointResourceId": "System.String", - "AzureKeyVaultServiceEndpointResourceId": "System.String", - "AzureKeyVaultDnsSuffix": "System.String", - "TrafficManagerDnsSuffix": "System.String", - "SqlDatabaseDnsSuffix": "System.String", - "ActiveDirectoryServiceEndpointResourceId": "System.String", - "GraphUrl": "System.String", - "GalleryUrl": "System.String", - "ActiveDirectoryAuthority": "System.String", - "PublishSettingsFileUrl": "System.String", - "ManagementPortalUrl": "System.String", - "ResourceManagerUrl": "System.String", - "ServiceManagementUrl": "System.String", - "StorageEndpointSuffix": "System.String", - "ContainerRegistryEndpointSuffix": "System.String" - } - }, - "System.Collections.Generic.IList`1[System.String]": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.IList`1[System.String]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.String" - ] - }, - "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Id": "System.String", - "Name": "System.String", - "State": "System.String" - } - }, - "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTenant": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTenant", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTenant, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Id": "System.String" - } + ], + "AliasList": [] }, - "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTokenCache": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTokenCache", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTokenCache, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "CacheData": "System.Byte[]" - }, - "Methods": [ + { + "VerbName": "Copy", + "NounName": "AzMarketplacePrivateStoreCollectionOffer", + "Name": "Copy-AzMarketplacePrivateStoreCollectionOffer", + "ClassName": "Copy-AzMarketplacePrivateStoreCollectionOffer", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "HasForceSwitch": true, + "SupportsPaging": false, + "DefaultParameterSetName": "TransferExpanded", + "OutputTypes": [ { - "Name": "Clear", - "ReturnType": "System.Void" + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.ITransferOffersResponse", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.ITransferOffersResponse, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Failed": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.ICollectionsDetails[]", + "Succeeded": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.ICollectionsDetails[]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ParameterSets": [ + "__AllParameterSets" + ] } - ] - }, - "System.Byte[]": { - "Namespace": "System", - "Name": "System.Byte[]", - "AssemblyQualifiedName": "System.Byte[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.Byte" - }, - "System.Void": { - "Namespace": "System", - "Name": "System.Void", - "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount" - ] - }, - "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment" - ] - }, - "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]", - "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription" - ] + ], + "Parameters": [ + { + "Name": "CollectionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PrivateStoreId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.IMarketplaceIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.IMarketplaceIdentity, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "AdminRequestApprovalId": "System.String", + "CollectionId": "System.String", + "Id": "System.String", + "OfferId": "System.String", + "PrivateStoreId": "System.String", + "RequestApprovalId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Payload", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.ITransferOffersProperties", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.ITransferOffersProperties, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Operation": "System.String", + "OfferIdsList": "System.String[]", + "TargetCollection": "System.String[]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "OfferIdList", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Operation", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "TargetCollection", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "TransferExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "CollectionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PrivateStoreId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "OfferIdList", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Operation", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TargetCollection", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "Transfer", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "CollectionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PrivateStoreId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Payload", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.ITransferOffersProperties", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.ITransferOffersProperties, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Operation": "System.String", + "OfferIdsList": "System.String[]", + "TargetCollection": "System.String[]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "TransferViaIdentityExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.IMarketplaceIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.IMarketplaceIdentity, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "AdminRequestApprovalId": "System.String", + "CollectionId": "System.String", + "Id": "System.String", + "OfferId": "System.String", + "PrivateStoreId": "System.String", + "RequestApprovalId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "OfferIdList", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Operation", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TargetCollection", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "TransferViaIdentity", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.IMarketplaceIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.IMarketplaceIdentity, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "AdminRequestApprovalId": "System.String", + "CollectionId": "System.String", + "Id": "System.String", + "OfferId": "System.String", + "PrivateStoreId": "System.String", + "RequestApprovalId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Payload", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.ITransferOffersProperties", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.ITransferOffersProperties, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Operation": "System.String", + "OfferIdsList": "System.String[]", + "TargetCollection": "System.String[]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Get", + "NounName": "AzMarketplaceBillingPrivateStoreAccount", + "Name": "Get-AzMarketplaceBillingPrivateStoreAccount", + "ClassName": "Get-AzMarketplaceBillingPrivateStoreAccount", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "HasForceSwitch": true, + "SupportsPaging": false, + "DefaultParameterSetName": "Billing", + "OutputTypes": [ + { + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "PrivateStoreId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.IMarketplaceIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.IMarketplaceIdentity, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "AdminRequestApprovalId": "System.String", + "CollectionId": "System.String", + "Id": "System.String", + "OfferId": "System.String", + "PrivateStoreId": "System.String", + "RequestApprovalId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "Billing", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "PrivateStoreId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "BillingViaIdentity", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.IMarketplaceIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.IMarketplaceIdentity, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "AdminRequestApprovalId": "System.String", + "CollectionId": "System.String", + "Id": "System.String", + "OfferId": "System.String", + "PrivateStoreId": "System.String", + "RequestApprovalId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Get", + "NounName": "AzMarketplaceCollectionToSubscriptionMapping", + "Name": "Get-AzMarketplaceCollectionToSubscriptionMapping", + "ClassName": "Get-AzMarketplaceCollectionToSubscriptionMapping", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "HasForceSwitch": true, + "SupportsPaging": false, + "DefaultParameterSetName": "CollectionsExpanded", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.ICollectionsToSubscriptionsMappingResponseProperties", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.ICollectionsToSubscriptionsMappingResponseProperties, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "PrivateStoreId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.IMarketplaceIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.IMarketplaceIdentity, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "AdminRequestApprovalId": "System.String", + "CollectionId": "System.String", + "Id": "System.String", + "OfferId": "System.String", + "PrivateStoreId": "System.String", + "RequestApprovalId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Payload", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.ICollectionsToSubscriptionsMappingPayload", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.ICollectionsToSubscriptionsMappingPayload, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "SubscriptionId": "System.String[]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "CollectionsExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "PrivateStoreId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "Collections", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "PrivateStoreId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Payload", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.ICollectionsToSubscriptionsMappingPayload", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.ICollectionsToSubscriptionsMappingPayload, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "SubscriptionId": "System.String[]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "CollectionsViaIdentityExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.IMarketplaceIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.IMarketplaceIdentity, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "AdminRequestApprovalId": "System.String", + "CollectionId": "System.String", + "Id": "System.String", + "OfferId": "System.String", + "PrivateStoreId": "System.String", + "RequestApprovalId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SubscriptionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "CollectionsViaIdentity", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.IMarketplaceIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.IMarketplaceIdentity, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "AdminRequestApprovalId": "System.String", + "CollectionId": "System.String", + "Id": "System.String", + "OfferId": "System.String", + "PrivateStoreId": "System.String", + "RequestApprovalId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Payload", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.ICollectionsToSubscriptionsMappingPayload", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.ICollectionsToSubscriptionsMappingPayload, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "SubscriptionId": "System.String[]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Get", + "NounName": "AzMarketplacePrivateStoreCollection", + "Name": "Get-AzMarketplacePrivateStoreCollection", + "ClassName": "Get-AzMarketplacePrivateStoreCollection", + "SupportsShouldProcess": false, + "ConfirmImpact": 0, + "HasForceSwitch": true, + "SupportsPaging": false, + "DefaultParameterSetName": "List", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.ICollection", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.ICollection, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "AllSubscription": "System.Nullable`1[System.Boolean]", + "Enabled": "System.Nullable`1[System.Boolean]", + "NumberOfOffer": "System.Nullable`1[System.Int64]", + "Claim": "System.String", + "CollectionId": "System.String", + "CollectionName": "System.String", + "SubscriptionsList": "System.String[]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + }, + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.ICollectionsList", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.ICollectionsList, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Value": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.ICollection[]", + "NextLink": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "CollectionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PrivateStoreId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.IMarketplaceIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.IMarketplaceIdentity, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "AdminRequestApprovalId": "System.String", + "CollectionId": "System.String", + "Id": "System.String", + "OfferId": "System.String", + "PrivateStoreId": "System.String", + "RequestApprovalId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "Get", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "CollectionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PrivateStoreId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "List", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "PrivateStoreId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "GetViaIdentity", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.IMarketplaceIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.IMarketplaceIdentity, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "AdminRequestApprovalId": "System.String", + "CollectionId": "System.String", + "Id": "System.String", + "OfferId": "System.String", + "PrivateStoreId": "System.String", + "RequestApprovalId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Get", + "NounName": "AzMarketplacePrivateStoreCollectionOffer", + "Name": "Get-AzMarketplacePrivateStoreCollectionOffer", + "ClassName": "Get-AzMarketplacePrivateStoreCollectionOffer", + "SupportsShouldProcess": false, + "ConfirmImpact": 0, + "HasForceSwitch": true, + "SupportsPaging": false, + "DefaultParameterSetName": "List", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IOffer", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IOffer, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "IconFileUri": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IOfferPropertiesIconFileUris", + "Plan": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IPlan[]", + "UpdateSuppressedDueIdempotence": "System.Nullable`1[System.Boolean]", + "CreatedAt": "System.String", + "DisplayName": "System.String", + "ETag": "System.String", + "ModifiedAt": "System.String", + "PrivateStoreId": "System.String", + "PublisherDisplayName": "System.String", + "UniqueOfferId": "System.String", + "SpecificPlanIdsLimitation": "System.String[]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "CollectionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "OfferId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PrivateStoreId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.IMarketplaceIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.IMarketplaceIdentity, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "AdminRequestApprovalId": "System.String", + "CollectionId": "System.String", + "Id": "System.String", + "OfferId": "System.String", + "PrivateStoreId": "System.String", + "RequestApprovalId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "List", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "CollectionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PrivateStoreId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "Get", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "CollectionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "OfferId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PrivateStoreId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "GetViaIdentity", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.IMarketplaceIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.IMarketplaceIdentity, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "AdminRequestApprovalId": "System.String", + "CollectionId": "System.String", + "Id": "System.String", + "OfferId": "System.String", + "PrivateStoreId": "System.String", + "RequestApprovalId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Get", + "NounName": "AzMarketplacePrivateStoreV1", + "Name": "Get-AzMarketplacePrivateStoreV1", + "ClassName": "Get-AzMarketplacePrivateStoreV1", + "SupportsShouldProcess": false, + "ConfirmImpact": 0, + "HasForceSwitch": true, + "SupportsPaging": false, + "DefaultParameterSetName": "List", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IPrivateStore", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IPrivateStore, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Branding": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IPrivateStorePropertiesBranding", + "NotificationSettingRecipient": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IRecipient[]", + "Availability": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Support.Availability]", + "IsGov": "System.Nullable`1[System.Boolean]", + "NotificationSettingSendToAllMarketplaceAdmin": "System.Nullable`1[System.Boolean]", + "ETag": "System.String", + "PrivateStoreId": "System.String", + "PrivateStoreName": "System.String", + "TenantId": "System.String", + "CollectionId": "System.String[]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Id", + "AliasList": [ + "PrivateStoreId" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.IMarketplaceIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.IMarketplaceIdentity, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "AdminRequestApprovalId": "System.String", + "CollectionId": "System.String", + "Id": "System.String", + "OfferId": "System.String", + "PrivateStoreId": "System.String", + "RequestApprovalId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UseCache", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "Get", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Id", + "AliasList": [ + "PrivateStoreId" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "GetViaIdentity", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.IMarketplaceIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.IMarketplaceIdentity, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "AdminRequestApprovalId": "System.String", + "CollectionId": "System.String", + "Id": "System.String", + "OfferId": "System.String", + "PrivateStoreId": "System.String", + "RequestApprovalId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "List", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "UseCache", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Get", + "NounName": "AzMarketplaceQueryPrivateStoreOffer", + "Name": "Get-AzMarketplaceQueryPrivateStoreOffer", + "ClassName": "Get-AzMarketplaceQueryPrivateStoreOffer", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "HasForceSwitch": true, + "SupportsPaging": false, + "DefaultParameterSetName": "Query", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IQueryOffers", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IQueryOffers, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Value": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IOfferProperties[]", + "NextLink": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "PrivateStoreId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.IMarketplaceIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.IMarketplaceIdentity, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "AdminRequestApprovalId": "System.String", + "CollectionId": "System.String", + "Id": "System.String", + "OfferId": "System.String", + "PrivateStoreId": "System.String", + "RequestApprovalId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "Query", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "PrivateStoreId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "QueryViaIdentity", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.IMarketplaceIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.IMarketplaceIdentity, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "AdminRequestApprovalId": "System.String", + "CollectionId": "System.String", + "Id": "System.String", + "OfferId": "System.String", + "PrivateStoreId": "System.String", + "RequestApprovalId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "New", + "NounName": "AzMarketplacePrivateStore", + "Name": "New-AzMarketplacePrivateStore", + "ClassName": "New-AzMarketplacePrivateStore", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "HasForceSwitch": true, + "SupportsPaging": false, + "DefaultParameterSetName": "CreateExpanded", + "OutputTypes": [ + { + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Id", + "AliasList": [ + "PrivateStoreId" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Availability", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Support.Availability", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Support.Availability, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Branding", + "AliasList": [], + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ETag", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "IsGov", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "NotificationSettingRecipient", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IRecipient[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IRecipient[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IRecipient", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "NotificationSettingSendToAllMarketplaceAdmin", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PrivateStoreName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "TenantId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Id", + "AliasList": [ + "PrivateStoreId" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Availability", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Support.Availability", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Support.Availability, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Branding", + "AliasList": [], + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ETag", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IsGov", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "NotificationSettingRecipient", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IRecipient[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IRecipient[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IRecipient", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "NotificationSettingSendToAllMarketplaceAdmin", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PrivateStoreName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TenantId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "New", + "NounName": "AzMarketplacePrivateStoreCollection", + "Name": "New-AzMarketplacePrivateStoreCollection", + "ClassName": "New-AzMarketplacePrivateStoreCollection", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "HasForceSwitch": true, + "SupportsPaging": false, + "DefaultParameterSetName": "CreateExpanded", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.ICollection", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.ICollection, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "AllSubscription": "System.Nullable`1[System.Boolean]", + "Enabled": "System.Nullable`1[System.Boolean]", + "NumberOfOffer": "System.Nullable`1[System.Int64]", + "Claim": "System.String", + "CollectionId": "System.String", + "CollectionName": "System.String", + "SubscriptionsList": "System.String[]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "CollectionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PrivateStoreId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AllSubscription", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Claim", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "CollectionName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Enabled", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubscriptionsList", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "CollectionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PrivateStoreId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AllSubscription", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Claim", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "CollectionName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Enabled", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SubscriptionsList", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "New", + "NounName": "AzMarketplacePrivateStoreCollectionOffer", + "Name": "New-AzMarketplacePrivateStoreCollectionOffer", + "ClassName": "New-AzMarketplacePrivateStoreCollectionOffer", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "HasForceSwitch": true, + "SupportsPaging": false, + "DefaultParameterSetName": "CreateExpanded", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IOffer", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IOffer, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "IconFileUri": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IOfferPropertiesIconFileUris", + "Plan": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IPlan[]", + "UpdateSuppressedDueIdempotence": "System.Nullable`1[System.Boolean]", + "CreatedAt": "System.String", + "DisplayName": "System.String", + "ETag": "System.String", + "ModifiedAt": "System.String", + "PrivateStoreId": "System.String", + "PublisherDisplayName": "System.String", + "UniqueOfferId": "System.String", + "SpecificPlanIdsLimitation": "System.String[]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "CollectionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "OfferId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PrivateStoreId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ETag", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "IconFileUri", + "AliasList": [], + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Plan", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IPlan[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IPlan[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IPlan", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SpecificPlanIdLimitation", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UpdateSuppressedDueIdempotence", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "CollectionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "OfferId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PrivateStoreId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ETag", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IconFileUri", + "AliasList": [], + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Plan", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IPlan[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IPlan[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IPlan", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SpecificPlanIdLimitation", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UpdateSuppressedDueIdempotence", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Remove", + "NounName": "AzMarketplacePrivateStoreCollection", + "Name": "Remove-AzMarketplacePrivateStoreCollection", + "ClassName": "Remove-AzMarketplacePrivateStoreCollection", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "HasForceSwitch": true, + "SupportsPaging": false, + "DefaultParameterSetName": "Delete", + "OutputTypes": [ + { + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "CollectionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PrivateStoreId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.IMarketplaceIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.IMarketplaceIdentity, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "AdminRequestApprovalId": "System.String", + "CollectionId": "System.String", + "Id": "System.String", + "OfferId": "System.String", + "PrivateStoreId": "System.String", + "RequestApprovalId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "Delete", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "CollectionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PrivateStoreId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "DeleteViaIdentity", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.IMarketplaceIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.IMarketplaceIdentity, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "AdminRequestApprovalId": "System.String", + "CollectionId": "System.String", + "Id": "System.String", + "OfferId": "System.String", + "PrivateStoreId": "System.String", + "RequestApprovalId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Remove", + "NounName": "AzMarketplacePrivateStoreCollectionOffer", + "Name": "Remove-AzMarketplacePrivateStoreCollectionOffer", + "ClassName": "Remove-AzMarketplacePrivateStoreCollectionOffer", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "HasForceSwitch": true, + "SupportsPaging": false, + "DefaultParameterSetName": "Delete", + "OutputTypes": [ + { + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "CollectionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "OfferId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PrivateStoreId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.IMarketplaceIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.IMarketplaceIdentity, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "AdminRequestApprovalId": "System.String", + "CollectionId": "System.String", + "Id": "System.String", + "OfferId": "System.String", + "PrivateStoreId": "System.String", + "RequestApprovalId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "Delete", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "CollectionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "OfferId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PrivateStoreId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "DeleteViaIdentity", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.IMarketplaceIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.IMarketplaceIdentity, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "AdminRequestApprovalId": "System.String", + "CollectionId": "System.String", + "Id": "System.String", + "OfferId": "System.String", + "PrivateStoreId": "System.String", + "RequestApprovalId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Set", + "NounName": "AzMarketplaceBulkPrivateStoreCollectionAction", + "Name": "Set-AzMarketplaceBulkPrivateStoreCollectionAction", + "ClassName": "Set-AzMarketplaceBulkPrivateStoreCollectionAction", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "HasForceSwitch": true, + "SupportsPaging": false, + "DefaultParameterSetName": "BulkExpanded", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IBulkCollectionsResponse", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IBulkCollectionsResponse, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Failed": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.ICollectionsDetails[]", + "Succeeded": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.ICollectionsDetails[]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "PrivateStoreId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Payload", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IBulkCollectionsPayload", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IBulkCollectionsPayload, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Action": "System.String", + "CollectionId": "System.String[]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Action", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "CollectionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "PrivateStoreId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "Bulk", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Payload", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IBulkCollectionsPayload", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IBulkCollectionsPayload, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Action": "System.String", + "CollectionId": "System.String[]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PrivateStoreId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "BulkExpanded", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Action", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "CollectionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PrivateStoreId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Set", + "NounName": "AzMarketplacePrivateStore", + "Name": "Set-AzMarketplacePrivateStore", + "ClassName": "Set-AzMarketplacePrivateStore", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "HasForceSwitch": true, + "SupportsPaging": false, + "DefaultParameterSetName": "UpdateExpanded", + "OutputTypes": [ + { + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Id", + "AliasList": [ + "PrivateStoreId" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Availability", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Support.Availability", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Support.Availability, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Branding", + "AliasList": [], + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ETag", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "IsGov", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "NotificationSettingRecipient", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IRecipient[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IRecipient[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IRecipient", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "NotificationSettingSendToAllMarketplaceAdmin", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PrivateStoreName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "TenantId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Id", + "AliasList": [ + "PrivateStoreId" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Availability", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Support.Availability", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Support.Availability, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Branding", + "AliasList": [], + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ETag", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IsGov", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "NotificationSettingRecipient", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IRecipient[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IRecipient[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IRecipient", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "NotificationSettingSendToAllMarketplaceAdmin", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PrivateStoreName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TenantId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Set", + "NounName": "AzMarketplacePrivateStoreCollection", + "Name": "Set-AzMarketplacePrivateStoreCollection", + "ClassName": "Set-AzMarketplacePrivateStoreCollection", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "HasForceSwitch": true, + "SupportsPaging": false, + "DefaultParameterSetName": "UpdateExpanded", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.ICollection", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.ICollection, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "AllSubscription": "System.Nullable`1[System.Boolean]", + "Enabled": "System.Nullable`1[System.Boolean]", + "NumberOfOffer": "System.Nullable`1[System.Int64]", + "Claim": "System.String", + "CollectionId": "System.String", + "CollectionName": "System.String", + "SubscriptionsList": "System.String[]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "CollectionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PrivateStoreId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AllSubscription", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Claim", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "CollectionName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Enabled", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubscriptionsList", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "CollectionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PrivateStoreId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AllSubscription", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Claim", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "CollectionName", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Enabled", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SubscriptionsList", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + }, + { + "VerbName": "Set", + "NounName": "AzMarketplacePrivateStoreCollectionOffer", + "Name": "Set-AzMarketplacePrivateStoreCollectionOffer", + "ClassName": "Set-AzMarketplacePrivateStoreCollectionOffer", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "HasForceSwitch": true, + "SupportsPaging": false, + "DefaultParameterSetName": "UpdateExpanded", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IOffer", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IOffer, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "IconFileUri": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IOfferPropertiesIconFileUris", + "Plan": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IPlan[]", + "UpdateSuppressedDueIdempotence": "System.Nullable`1[System.Boolean]", + "CreatedAt": "System.String", + "DisplayName": "System.String", + "ETag": "System.String", + "ModifiedAt": "System.String", + "PrivateStoreId": "System.String", + "PublisherDisplayName": "System.String", + "UniqueOfferId": "System.String", + "SpecificPlanIdsLimitation": "System.String[]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "CollectionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "OfferId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PrivateStoreId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ETag", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "IconFileUri", + "AliasList": [], + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Plan", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IPlan[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IPlan[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IPlan", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SpecificPlanIdLimitation", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UpdateSuppressedDueIdempotence", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "CollectionId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "OfferId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PrivateStoreId", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ETag", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IconFileUri", + "AliasList": [], + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Plan", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IPlan[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IPlan[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IPlan", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SpecificPlanIdLimitation", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UpdateSuppressedDueIdempotence", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzureRMContext", + "AzureCredential" + ], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSObject", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Break", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelineAppend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpPipelinePrepend", + "AliasList": [], + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Proxy", + "AliasList": [], + "Type": { + "Namespace": "System", + "Name": "System.Uri", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyCredential", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.PSCredential", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProxyUseDefaultCredentials", + "AliasList": [], + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "ValidateSet": [], + "ValidateRangeMin": null, + "ValidateRangeMax": null, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [] + } + ], + "TypeDictionary": { + "System.String": { + "Namespace": null, + "Name": "System.String", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Boolean": { + "Namespace": null, + "Name": "System.Boolean", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Byte": { + "Namespace": null, + "Name": "System.Byte", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.SByte": { + "Namespace": null, + "Name": "System.SByte", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Int16": { + "Namespace": null, + "Name": "System.Int16", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.UInt16": { + "Namespace": null, + "Name": "System.UInt16", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Int32": { + "Namespace": null, + "Name": "System.Int32", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.UInt32": { + "Namespace": null, + "Name": "System.UInt32", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Int64": { + "Namespace": null, + "Name": "System.Int64", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.UInt64": { + "Namespace": null, + "Name": "System.UInt64", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Single": { + "Namespace": null, + "Name": "System.Single", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Double": { + "Namespace": null, + "Name": "System.Double", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Decimal": { + "Namespace": null, + "Name": "System.Decimal", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Char": { + "Namespace": null, + "Name": "System.Char", + "AssemblyQualifiedName": null, + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Type": { + "Namespace": "System", + "Name": "System.Type", + "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Account": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount", + "Environment": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment", + "Subscription": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription", + "Tenant": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTenant", + "TokenCache": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTokenCache", + "VersionProfile": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "TenantMap": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "Id": "System.String", + "Credential": "System.String", + "Type": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Collections.Generic.IDictionary`2[System.String,System.String]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IDictionary`2[[System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String", + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "OnPremise": "System.Boolean", + "VersionProfiles": "System.Collections.Generic.IList`1[System.String]", + "Name": "System.String", + "AdTenant": "System.String", + "AzureDataLakeStoreFileSystemEndpointSuffix": "System.String", + "AzureDataLakeAnalyticsCatalogAndJobEndpointSuffix": "System.String", + "BatchEndpointResourceId": "System.String", + "DataLakeEndpointResourceId": "System.String", + "GraphEndpointResourceId": "System.String", + "AzureKeyVaultServiceEndpointResourceId": "System.String", + "AzureKeyVaultDnsSuffix": "System.String", + "TrafficManagerDnsSuffix": "System.String", + "SqlDatabaseDnsSuffix": "System.String", + "ActiveDirectoryServiceEndpointResourceId": "System.String", + "GraphUrl": "System.String", + "GalleryUrl": "System.String", + "ActiveDirectoryAuthority": "System.String", + "PublishSettingsFileUrl": "System.String", + "ManagementPortalUrl": "System.String", + "ResourceManagerUrl": "System.String", + "ServiceManagementUrl": "System.String", + "StorageEndpointSuffix": "System.String", + "ContainerRegistryEndpointSuffix": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Collections.Generic.IList`1[System.String]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.String" + ], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Id": "System.String", + "Name": "System.String", + "State": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTenant": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTenant", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTenant, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Id": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTokenCache": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTokenCache", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureTokenCache, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "CacheData": "System.Byte[]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Clear", + "Parameters": [], + "ReturnType": "System.Void" + } + ], + "Constructors": [] + }, + "System.Byte[]": { + "Namespace": "System", + "Name": "System.Byte[]", + "AssemblyQualifiedName": "System.Byte[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.Byte", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Void": { + "Namespace": "System", + "Name": "System.Void", + "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount" + ], + "Methods": [], + "Constructors": [] + }, + "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment" + ], + "Methods": [], + "Constructors": [] + }, + "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]", + "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription" + ], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.ICollectionsDetails[]": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.ICollectionsDetails[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.ICollectionsDetails[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.ICollectionsDetails", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.ICollectionsDetails": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.ICollectionsDetails", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.ICollectionsDetails, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "CollectionId": "System.String", + "CollectionName": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.String[]": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.String", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.SendAsyncStep, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Target": "System.Object", + "Method": "System.Reflection.MethodInfo" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "Invoke", + "Parameters": [ + { + "Name": "request", + "Type": "System.Net.Http.HttpRequestMessage" + }, + { + "Name": "callback", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.IEventListener" + }, + { + "Name": "next", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.ISendAsync" + } + ], + "ReturnType": "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]" + }, + { + "Name": "BeginInvoke", + "Parameters": [ + { + "Name": "request", + "Type": "System.Net.Http.HttpRequestMessage" + }, + { + "Name": "callback", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.IEventListener" + }, + { + "Name": "next", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Runtime.ISendAsync" + }, + { + "Name": "__callback", + "Type": "System.AsyncCallback" + }, + { + "Name": "object", + "Type": "System.Object" + } + ], + "ReturnType": "System.IAsyncResult" + }, + { + "Name": "EndInvoke", + "Parameters": [ + { + "Name": "result", + "Type": "System.IAsyncResult" + } + ], + "ReturnType": "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]" + }, + { + "Name": "GetObjectData", + "Parameters": [ + { + "Name": "info", + "Type": "System.Runtime.Serialization.SerializationInfo" + }, + { + "Name": "context", + "Type": "System.Runtime.Serialization.StreamingContext" + } + ], + "ReturnType": "System.Void" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetInvocationList", + "Parameters": [], + "ReturnType": "System.Delegate[]" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "Clone", + "Parameters": [], + "ReturnType": "System.Object" + }, + { + "Name": "DynamicInvoke", + "Parameters": [ + { + "Name": "args", + "Type": "System.Object[]" + } + ], + "ReturnType": "System.Object" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + } + ], + "Constructors": [ + { + "Name": "", + "Parameters": [ + { + "Name": "object", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "method", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ], + "ReturnType": null + } + ] + }, + "System.Object": { + "Namespace": "System", + "Name": "System.Object", + "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Reflection.MethodInfo": { + "Namespace": "System.Reflection", + "Name": "System.Reflection.MethodInfo", + "AssemblyQualifiedName": "System.Reflection.MethodInfo, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]": { + "Namespace": "System.Threading.Tasks", + "Name": "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]", + "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[System.Net.Http.HttpResponseMessage, System.Net.Http, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.Net.Http.HttpResponseMessage" + ], + "Methods": [], + "Constructors": [] + }, + "System.Net.Http.HttpResponseMessage": { + "Namespace": "System.Net.Http", + "Name": "System.Net.Http.HttpResponseMessage", + "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.IAsyncResult": { + "Namespace": "System", + "Name": "System.IAsyncResult", + "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Delegate[]": { + "Namespace": "System", + "Name": "System.Delegate[]", + "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": "System.Delegate", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Delegate": { + "Namespace": "System", + "Name": "System.Delegate", + "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Nullable`1[System.Boolean]": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.Boolean" + ], + "Methods": [], + "Constructors": [] + }, + "System.Nullable`1[System.Int64]": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int64]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.Int64" + ], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.ICollection[]": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.ICollection[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.ICollection[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.ICollection", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.ICollection": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.ICollection", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.ICollection, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "AllSubscription": "System.Nullable`1[System.Boolean]", + "Enabled": "System.Nullable`1[System.Boolean]", + "NumberOfOffer": "System.Nullable`1[System.Int64]", + "Claim": "System.String", + "CollectionId": "System.String", + "CollectionName": "System.String", + "SubscriptionsList": "System.String[]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IOfferPropertiesIconFileUris": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IOfferPropertiesIconFileUris", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IOfferPropertiesIconFileUris, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IPlan[]": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IPlan[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IPlan[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IPlan", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IPlan": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IPlan", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IPlan, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "Accessibility": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Support.Accessibility]", + "AltStackReference": "System.String", + "DisplayName": "System.String", + "Id": "System.String", + "SkuId": "System.String", + "StackType": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Support.Accessibility]": { + "Namespace": "System", + "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Support.Accessibility]", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Support.Accessibility, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Support.Accessibility" + ], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Support.Accessibility": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Support.Accessibility", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Support.Accessibility, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "CompleteArgument", + "Parameters": [ + { + "Name": "commandName", + "Type": "System.String" + }, + { + "Name": "parameterName", + "Type": "System.String" + }, + { + "Name": "wordToComplete", + "Type": "System.String" + }, + { + "Name": "commandAst", + "Type": "System.Management.Automation.Language.CommandAst" + }, + { + "Name": "fakeBoundParameters", + "Type": "System.Collections.IDictionary" + } + ], + "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "e", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Support.Accessibility" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]", + "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "System.Management.Automation.CompletionResult" + ], + "Methods": [], + "Constructors": [] + }, + "System.Management.Automation.CompletionResult": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.CompletionResult", + "AssemblyQualifiedName": "System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IPrivateStorePropertiesBranding": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IPrivateStorePropertiesBranding", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IPrivateStorePropertiesBranding, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IRecipient[]": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IRecipient[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IRecipient[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IRecipient", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IRecipient": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IRecipient", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IRecipient, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "DisplayName": "System.String", + "EmailAddress": "System.String", + "PrincipalId": "System.String" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Support.Availability]": { + "Namespace": "System", + "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Support.Availability]", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Support.Availability, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [ + "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Support.Availability" + ], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Support.Availability": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Support.Availability", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Support.Availability, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [ + { + "Name": "CompleteArgument", + "Parameters": [ + { + "Name": "commandName", + "Type": "System.String" + }, + { + "Name": "parameterName", + "Type": "System.String" + }, + { + "Name": "wordToComplete", + "Type": "System.String" + }, + { + "Name": "commandAst", + "Type": "System.Management.Automation.Language.CommandAst" + }, + { + "Name": "fakeBoundParameters", + "Type": "System.Collections.IDictionary" + } + ], + "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "e", + "Type": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Support.Availability" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "Parameters": [], + "ReturnType": "System.Int32" + }, + { + "Name": "ToString", + "Parameters": [], + "ReturnType": "System.String" + }, + { + "Name": "GetType", + "Parameters": [], + "ReturnType": "System.Type" + } + ], + "Constructors": [] + }, + "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IOfferProperties[]": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IOfferProperties[]", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IOfferProperties[], Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IOfferProperties", + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] + }, + "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IOfferProperties": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IOfferProperties", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IOfferProperties, Az.Marketplace.private, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": { + "IconFileUri": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IOfferPropertiesIconFileUris", + "Plan": "Microsoft.Azure.PowerShell.Cmdlets.Marketplace.Models.Api20210601.IPlan[]", + "UpdateSuppressedDueIdempotence": "System.Nullable`1[System.Boolean]", + "CreatedAt": "System.String", + "ETag": "System.String", + "ModifiedAt": "System.String", + "OfferDisplayName": "System.String", + "PrivateStoreId": "System.String", + "PublisherDisplayName": "System.String", + "UniqueOfferId": "System.String", + "SpecificPlanIdsLimitation": "System.String[]" + }, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], + "Constructors": [] } } -} \ No newline at end of file +} diff --git a/tools/Tools.Common/SerializedCmdlets/Az.MonitoringSolutions.json b/tools/Tools.Common/SerializedCmdlets/Az.MonitoringSolutions.json index ee88267c9fa1..f4cede40fb33 100644 --- a/tools/Tools.Common/SerializedCmdlets/Az.MonitoringSolutions.json +++ b/tools/Tools.Common/SerializedCmdlets/Az.MonitoringSolutions.json @@ -7,7 +7,7 @@ "Name": "Get-AzMonitorLogAnalyticsSolution", "ClassName": "Get-AzMonitorLogAnalyticsSolution", "SupportsShouldProcess": false, - "ConfirmImpact": 2, + "ConfirmImpact": 0, "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "List1", @@ -16,7 +16,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Models.Api20151101Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Models.Api20151101Preview.ISolution", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Models.Api20151101Preview.ISolution, Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Models.Api20151101Preview.ISolution, Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Models.Api20151101Preview.ISolutionTags", "Id": "System.String", @@ -51,7 +51,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -69,7 +69,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -87,7 +87,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -105,7 +105,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Models.IMonitoringSolutionsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Models.IMonitoringSolutionsIdentity, Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Models.IMonitoringSolutionsIdentity, Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Id": "System.String", "ManagementAssociationName": "System.String", @@ -136,7 +136,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -154,7 +154,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -172,7 +172,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -190,7 +190,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -208,7 +208,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -226,7 +226,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -244,7 +244,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -270,7 +270,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -294,7 +294,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -318,7 +318,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -345,7 +345,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -369,7 +369,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -393,7 +393,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -417,7 +417,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -441,7 +441,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -465,7 +465,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -489,7 +489,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -518,7 +518,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -542,7 +542,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -569,7 +569,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -593,7 +593,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -617,7 +617,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -641,7 +641,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -665,7 +665,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -689,7 +689,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -713,7 +713,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -742,7 +742,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -769,7 +769,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -793,7 +793,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -817,7 +817,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -841,7 +841,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -865,7 +865,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -889,7 +889,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -913,7 +913,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -942,7 +942,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Models.IMonitoringSolutionsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Models.IMonitoringSolutionsIdentity, Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Models.IMonitoringSolutionsIdentity, Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Id": "System.String", "ManagementAssociationName": "System.String", @@ -979,7 +979,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1003,7 +1003,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1027,7 +1027,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1051,7 +1051,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1075,7 +1075,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1099,7 +1099,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1123,7 +1123,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1155,7 +1155,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1179,7 +1179,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1203,7 +1203,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1227,7 +1227,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1251,7 +1251,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1275,7 +1275,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1299,7 +1299,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1326,7 +1326,7 @@ "NounName": "AzMonitorLogAnalyticsSolution", "Name": "New-AzMonitorLogAnalyticsSolution", "ClassName": "New-AzMonitorLogAnalyticsSolution", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -1336,7 +1336,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Models.Api20151101Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Models.Api20151101Preview.ISolution", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Models.Api20151101Preview.ISolution, Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Models.Api20151101Preview.ISolution, Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Models.Api20151101Preview.ISolutionTags", "Id": "System.String", @@ -1369,7 +1369,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1387,7 +1387,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1407,7 +1407,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1425,7 +1425,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1443,7 +1443,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1461,7 +1461,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1482,7 +1482,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1500,7 +1500,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1518,7 +1518,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1536,7 +1536,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1554,7 +1554,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1572,7 +1572,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1590,7 +1590,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1614,7 +1614,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1638,7 +1638,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1664,7 +1664,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1688,7 +1688,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1712,7 +1712,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1736,7 +1736,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1763,7 +1763,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1787,7 +1787,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1811,7 +1811,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1835,7 +1835,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1859,7 +1859,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1883,7 +1883,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1907,7 +1907,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1934,7 +1934,7 @@ "NounName": "AzMonitorLogAnalyticsSolution", "Name": "Remove-AzMonitorLogAnalyticsSolution", "ClassName": "Remove-AzMonitorLogAnalyticsSolution", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -1944,7 +1944,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1965,7 +1965,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1983,7 +1983,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2001,7 +2001,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2019,7 +2019,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Models.IMonitoringSolutionsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Models.IMonitoringSolutionsIdentity, Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Models.IMonitoringSolutionsIdentity, Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Id": "System.String", "ManagementAssociationName": "System.String", @@ -2050,7 +2050,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2068,7 +2068,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2086,7 +2086,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2104,7 +2104,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2122,7 +2122,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2140,7 +2140,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2158,7 +2158,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2176,7 +2176,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2202,7 +2202,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2226,7 +2226,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2250,7 +2250,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2277,7 +2277,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2301,7 +2301,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2325,7 +2325,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2349,7 +2349,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2373,7 +2373,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2397,7 +2397,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2421,7 +2421,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2445,7 +2445,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2474,7 +2474,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Models.IMonitoringSolutionsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Models.IMonitoringSolutionsIdentity, Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Models.IMonitoringSolutionsIdentity, Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Id": "System.String", "ManagementAssociationName": "System.String", @@ -2511,7 +2511,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2535,7 +2535,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2559,7 +2559,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2583,7 +2583,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2607,7 +2607,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2631,7 +2631,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2655,7 +2655,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2679,7 +2679,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2711,7 +2711,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2735,7 +2735,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2759,7 +2759,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2783,7 +2783,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2807,7 +2807,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2831,7 +2831,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2855,7 +2855,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2879,7 +2879,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2906,7 +2906,7 @@ "NounName": "AzMonitorLogAnalyticsSolution", "Name": "Update-AzMonitorLogAnalyticsSolution", "ClassName": "Update-AzMonitorLogAnalyticsSolution", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -2916,7 +2916,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Models.Api20151101Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Models.Api20151101Preview.ISolution", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Models.Api20151101Preview.ISolution, Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Models.Api20151101Preview.ISolution, Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Tag": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Models.Api20151101Preview.ISolutionTags", "Id": "System.String", @@ -2951,7 +2951,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2969,7 +2969,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2987,7 +2987,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3005,7 +3005,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Models.IMonitoringSolutionsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Models.IMonitoringSolutionsIdentity, Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Models.IMonitoringSolutionsIdentity, Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Id": "System.String", "ManagementAssociationName": "System.String", @@ -3033,7 +3033,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3054,7 +3054,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3072,7 +3072,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3090,7 +3090,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3108,7 +3108,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3126,7 +3126,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3144,7 +3144,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3162,7 +3162,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3188,7 +3188,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3212,7 +3212,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3236,7 +3236,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3260,7 +3260,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3287,7 +3287,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3311,7 +3311,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3335,7 +3335,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3359,7 +3359,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3383,7 +3383,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3407,7 +3407,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3431,7 +3431,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3460,7 +3460,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Models.IMonitoringSolutionsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Models.IMonitoringSolutionsIdentity, Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Models.IMonitoringSolutionsIdentity, Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Id": "System.String", "ManagementAssociationName": "System.String", @@ -3494,7 +3494,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3521,7 +3521,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3545,7 +3545,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3569,7 +3569,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3593,7 +3593,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3617,7 +3617,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3641,7 +3641,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3665,7 +3665,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3694,7 +3694,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3721,7 +3721,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3745,7 +3745,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3769,7 +3769,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3793,7 +3793,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep[], Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3817,7 +3817,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3841,7 +3841,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3865,7 +3865,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4032,7 +4032,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Models.Api20151101Preview.ISolutionTags": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Models.Api20151101Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Models.Api20151101Preview.ISolutionTags", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Models.Api20151101Preview.ISolutionTags, Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Models.Api20151101Preview.ISolutionTags, Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4042,7 +4042,7 @@ "System.String[]": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -4052,7 +4052,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep, Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.MonitoringSolutions.Runtime.SendAsyncStep, Az.MonitoringSolutions.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Target": "System.Object", "Method": "System.Reflection.MethodInfo" @@ -4194,7 +4194,7 @@ "System.Object": { "Namespace": "System", "Name": "System.Object", - "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4204,7 +4204,7 @@ "System.Reflection.MethodInfo": { "Namespace": "System.Reflection", "Name": "System.Reflection.MethodInfo", - "AssemblyQualifiedName": "System.Reflection.MethodInfo, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Reflection.MethodInfo, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4214,7 +4214,7 @@ "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]": { "Namespace": "System.Threading.Tasks", "Name": "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]", - "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[System.Net.Http.HttpResponseMessage, System.Net.Http, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[System.Net.Http.HttpResponseMessage, System.Net.Http, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -4226,7 +4226,7 @@ "System.Net.Http.HttpResponseMessage": { "Namespace": "System.Net.Http", "Name": "System.Net.Http.HttpResponseMessage", - "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4236,7 +4236,7 @@ "System.IAsyncResult": { "Namespace": "System", "Name": "System.IAsyncResult", - "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4246,7 +4246,7 @@ "System.Void": { "Namespace": "System", "Name": "System.Void", - "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4256,7 +4256,7 @@ "System.Delegate[]": { "Namespace": "System", "Name": "System.Delegate[]", - "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.Delegate", "GenericTypeArguments": [], @@ -4266,7 +4266,7 @@ "System.Delegate": { "Namespace": "System", "Name": "System.Delegate", - "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4276,7 +4276,7 @@ "System.Type": { "Namespace": "System", "Name": "System.Type", - "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], diff --git a/tools/Tools.Common/SerializedCmdlets/Az.Portal.json b/tools/Tools.Common/SerializedCmdlets/Az.Portal.json index 69a8a66516d9..5628ec916584 100644 --- a/tools/Tools.Common/SerializedCmdlets/Az.Portal.json +++ b/tools/Tools.Common/SerializedCmdlets/Az.Portal.json @@ -7,7 +7,7 @@ "Name": "Get-AzPortalDashboard", "ClassName": "Get-AzPortalDashboard", "SupportsShouldProcess": false, - "ConfirmImpact": 2, + "ConfirmImpact": 0, "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "List1", @@ -16,7 +16,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview.IDashboard", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview.IDashboard, Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview.IDashboard, Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Lens": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview.IDashboardPropertiesLenses", "Metadata": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview.IDashboardPropertiesMetadata", @@ -45,7 +45,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -63,7 +63,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -81,7 +81,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -99,7 +99,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.IPortalIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.IPortalIdentity, Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.IPortalIdentity, Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DashboardName": "System.String", "Id": "System.String", @@ -125,7 +125,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -143,7 +143,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -161,7 +161,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -179,7 +179,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -197,7 +197,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -215,7 +215,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -233,7 +233,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -259,7 +259,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -283,7 +283,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -307,7 +307,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -334,7 +334,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -358,7 +358,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -382,7 +382,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -406,7 +406,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -430,7 +430,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -454,7 +454,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -478,7 +478,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -507,7 +507,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -531,7 +531,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -558,7 +558,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -582,7 +582,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -606,7 +606,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -630,7 +630,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -654,7 +654,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -678,7 +678,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -702,7 +702,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -731,7 +731,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -758,7 +758,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -782,7 +782,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -806,7 +806,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -830,7 +830,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -854,7 +854,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -878,7 +878,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -902,7 +902,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -931,7 +931,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.IPortalIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.IPortalIdentity, Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.IPortalIdentity, Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DashboardName": "System.String", "Id": "System.String", @@ -963,7 +963,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -987,7 +987,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1011,7 +1011,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1035,7 +1035,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1059,7 +1059,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1083,7 +1083,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1107,7 +1107,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1139,7 +1139,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1163,7 +1163,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1187,7 +1187,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1211,7 +1211,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1235,7 +1235,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1259,7 +1259,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1283,7 +1283,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1310,7 +1310,7 @@ "NounName": "AzPortalDashboard", "Name": "New-AzPortalDashboard", "ClassName": "New-AzPortalDashboard", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -1320,7 +1320,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview.IDashboard", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview.IDashboard, Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview.IDashboard, Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Lens": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview.IDashboardPropertiesLenses", "Metadata": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview.IDashboardPropertiesMetadata", @@ -1349,7 +1349,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1367,7 +1367,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1385,7 +1385,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1403,7 +1403,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview.IDashboard", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview.IDashboard, Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview.IDashboard, Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Lens": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview.IDashboardPropertiesLenses", "Metadata": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview.IDashboardPropertiesMetadata", @@ -1429,7 +1429,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1447,7 +1447,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1465,7 +1465,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1483,7 +1483,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1501,7 +1501,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1522,7 +1522,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1540,7 +1540,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1558,7 +1558,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1576,7 +1576,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1594,7 +1594,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1612,7 +1612,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1630,7 +1630,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1656,7 +1656,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1680,7 +1680,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1704,7 +1704,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1731,7 +1731,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1755,7 +1755,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1779,7 +1779,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1803,7 +1803,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1827,7 +1827,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1851,7 +1851,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1875,7 +1875,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1904,7 +1904,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview.IDashboard", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview.IDashboard, Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview.IDashboard, Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Lens": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview.IDashboardPropertiesLenses", "Metadata": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview.IDashboardPropertiesMetadata", @@ -1938,7 +1938,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1962,7 +1962,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1986,7 +1986,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2013,7 +2013,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2037,7 +2037,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2061,7 +2061,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2085,7 +2085,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2109,7 +2109,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2133,7 +2133,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2157,7 +2157,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2186,7 +2186,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2210,7 +2210,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2234,7 +2234,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2258,7 +2258,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2284,7 +2284,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2308,7 +2308,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2332,7 +2332,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2359,7 +2359,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2383,7 +2383,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2407,7 +2407,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2431,7 +2431,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2455,7 +2455,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2479,7 +2479,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2503,7 +2503,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2532,7 +2532,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2558,7 +2558,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2582,7 +2582,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2606,7 +2606,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2633,7 +2633,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2657,7 +2657,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2681,7 +2681,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2705,7 +2705,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2729,7 +2729,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2753,7 +2753,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2777,7 +2777,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2804,7 +2804,7 @@ "NounName": "AzPortalDashboard", "Name": "Remove-AzPortalDashboard", "ClassName": "Remove-AzPortalDashboard", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -2814,7 +2814,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2835,7 +2835,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2853,7 +2853,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2871,7 +2871,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2889,7 +2889,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.IPortalIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.IPortalIdentity, Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.IPortalIdentity, Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DashboardName": "System.String", "Id": "System.String", @@ -2915,7 +2915,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2933,7 +2933,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2951,7 +2951,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2969,7 +2969,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2987,7 +2987,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3005,7 +3005,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3023,7 +3023,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3041,7 +3041,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3067,7 +3067,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3091,7 +3091,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3115,7 +3115,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3142,7 +3142,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3166,7 +3166,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3190,7 +3190,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3214,7 +3214,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3238,7 +3238,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3262,7 +3262,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3286,7 +3286,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3310,7 +3310,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3339,7 +3339,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.IPortalIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.IPortalIdentity, Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.IPortalIdentity, Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DashboardName": "System.String", "Id": "System.String", @@ -3371,7 +3371,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3395,7 +3395,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3419,7 +3419,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3443,7 +3443,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3467,7 +3467,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3491,7 +3491,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3515,7 +3515,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3539,7 +3539,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3571,7 +3571,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3595,7 +3595,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3619,7 +3619,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3643,7 +3643,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3667,7 +3667,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3691,7 +3691,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3715,7 +3715,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3739,7 +3739,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3766,7 +3766,7 @@ "NounName": "AzPortalDashboard", "Name": "Set-AzPortalDashboard", "ClassName": "Set-AzPortalDashboard", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -3776,7 +3776,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview.IDashboard", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview.IDashboard, Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview.IDashboard, Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Lens": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview.IDashboardPropertiesLenses", "Metadata": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview.IDashboardPropertiesMetadata", @@ -3805,7 +3805,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3823,7 +3823,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3841,7 +3841,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3859,7 +3859,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3880,7 +3880,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3898,7 +3898,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3916,7 +3916,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3934,7 +3934,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3952,7 +3952,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3970,7 +3970,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3988,7 +3988,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4014,7 +4014,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4038,7 +4038,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4062,7 +4062,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4086,7 +4086,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4113,7 +4113,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4137,7 +4137,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4161,7 +4161,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4185,7 +4185,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4209,7 +4209,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4233,7 +4233,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4257,7 +4257,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4284,7 +4284,7 @@ "NounName": "AzPortalDashboard", "Name": "Update-AzPortalDashboard", "ClassName": "Update-AzPortalDashboard", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -4294,7 +4294,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview.IDashboard", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview.IDashboard, Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview.IDashboard, Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Lens": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview.IDashboardPropertiesLenses", "Metadata": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview.IDashboardPropertiesMetadata", @@ -4323,7 +4323,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4341,7 +4341,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4359,7 +4359,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4377,7 +4377,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.IPortalIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.IPortalIdentity, Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.IPortalIdentity, Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DashboardName": "System.String", "Id": "System.String", @@ -4400,7 +4400,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4418,7 +4418,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4436,7 +4436,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4457,7 +4457,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4475,7 +4475,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4493,7 +4493,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4511,7 +4511,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4529,7 +4529,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4547,7 +4547,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4565,7 +4565,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4591,7 +4591,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4615,7 +4615,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4639,7 +4639,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4663,7 +4663,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4687,7 +4687,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4711,7 +4711,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4738,7 +4738,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4762,7 +4762,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4786,7 +4786,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4810,7 +4810,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4834,7 +4834,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4858,7 +4858,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4882,7 +4882,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4911,7 +4911,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.IPortalIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.IPortalIdentity, Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.IPortalIdentity, Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DashboardName": "System.String", "Id": "System.String", @@ -4940,7 +4940,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4964,7 +4964,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4988,7 +4988,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5015,7 +5015,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5039,7 +5039,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5063,7 +5063,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -5087,7 +5087,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -5111,7 +5111,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5135,7 +5135,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5159,7 +5159,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5188,7 +5188,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5212,7 +5212,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5236,7 +5236,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5263,7 +5263,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5287,7 +5287,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5311,7 +5311,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -5335,7 +5335,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep[], Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -5359,7 +5359,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5383,7 +5383,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5407,7 +5407,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5574,7 +5574,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview.IDashboardPropertiesLenses": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview.IDashboardPropertiesLenses", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview.IDashboardPropertiesLenses, Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview.IDashboardPropertiesLenses, Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5584,7 +5584,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview.IDashboardPropertiesMetadata": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview.IDashboardPropertiesMetadata", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview.IDashboardPropertiesMetadata, Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview.IDashboardPropertiesMetadata, Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5594,7 +5594,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview.IDashboardTags": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview.IDashboardTags", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview.IDashboardTags, Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Models.Api201901Preview.IDashboardTags, Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5604,7 +5604,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep, Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.Portal.Runtime.SendAsyncStep, Az.Portal.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Target": "System.Object", "Method": "System.Reflection.MethodInfo" @@ -5746,7 +5746,7 @@ "System.Object": { "Namespace": "System", "Name": "System.Object", - "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5756,7 +5756,7 @@ "System.Reflection.MethodInfo": { "Namespace": "System.Reflection", "Name": "System.Reflection.MethodInfo", - "AssemblyQualifiedName": "System.Reflection.MethodInfo, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Reflection.MethodInfo, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5766,7 +5766,7 @@ "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]": { "Namespace": "System.Threading.Tasks", "Name": "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]", - "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[System.Net.Http.HttpResponseMessage, System.Net.Http, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[System.Net.Http.HttpResponseMessage, System.Net.Http, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -5778,7 +5778,7 @@ "System.Net.Http.HttpResponseMessage": { "Namespace": "System.Net.Http", "Name": "System.Net.Http.HttpResponseMessage", - "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5788,7 +5788,7 @@ "System.IAsyncResult": { "Namespace": "System", "Name": "System.IAsyncResult", - "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5798,7 +5798,7 @@ "System.Void": { "Namespace": "System", "Name": "System.Void", - "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5808,7 +5808,7 @@ "System.Delegate[]": { "Namespace": "System", "Name": "System.Delegate[]", - "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.Delegate", "GenericTypeArguments": [], @@ -5818,7 +5818,7 @@ "System.Delegate": { "Namespace": "System", "Name": "System.Delegate", - "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5828,7 +5828,7 @@ "System.Type": { "Namespace": "System", "Name": "System.Type", - "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], diff --git a/tools/Tools.Common/SerializedCmdlets/Az.StreamAnalytics.json b/tools/Tools.Common/SerializedCmdlets/Az.StreamAnalytics.json index 7377eb4df74a..0fff549f3c1d 100644 --- a/tools/Tools.Common/SerializedCmdlets/Az.StreamAnalytics.json +++ b/tools/Tools.Common/SerializedCmdlets/Az.StreamAnalytics.json @@ -1,4 +1,5 @@ { + "ProcessedTypes": {}, "Cmdlets": [ { "VerbName": "Get", @@ -6,7 +7,8 @@ "Name": "Get-AzStreamAnalyticsCluster", "ClassName": "Get-AzStreamAnalyticsCluster", "SupportsShouldProcess": false, - "ConfirmImpact": 2, + "ConfirmImpact": 0, + "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "List", "OutputTypes": [ @@ -14,7 +16,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20200301Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20200301Preview.ICluster", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20200301Preview.ICluster, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20200301Preview.ICluster, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterProvisioningState]", "SkuName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterSkuName]", @@ -44,7 +46,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -62,7 +64,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -80,7 +82,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -98,7 +100,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClusterName": "System.String", "FunctionName": "System.String", @@ -130,7 +132,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -148,7 +150,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -166,7 +168,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -184,7 +186,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -202,7 +204,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -220,7 +222,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -238,7 +240,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -264,7 +266,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -288,7 +290,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -312,7 +314,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -339,7 +341,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -363,7 +365,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -387,7 +389,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -411,7 +413,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -435,7 +437,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -459,7 +461,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -483,7 +485,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -512,7 +514,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -536,7 +538,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -563,7 +565,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -587,7 +589,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -611,7 +613,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -635,7 +637,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -659,7 +661,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -683,7 +685,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -707,7 +709,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -736,7 +738,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -763,7 +765,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -787,7 +789,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -811,7 +813,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -835,7 +837,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -859,7 +861,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -883,7 +885,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -907,7 +909,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -936,7 +938,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClusterName": "System.String", "FunctionName": "System.String", @@ -974,7 +976,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -998,7 +1000,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1022,7 +1024,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1046,7 +1048,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1070,7 +1072,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1094,7 +1096,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1118,7 +1120,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1150,7 +1152,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1174,7 +1176,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1198,7 +1200,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1222,7 +1224,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1246,7 +1248,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1270,7 +1272,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1294,7 +1296,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1321,8 +1323,9 @@ "NounName": "AzStreamAnalyticsClusterStreamingJob", "Name": "Get-AzStreamAnalyticsClusterStreamingJob", "ClassName": "Get-AzStreamAnalyticsClusterStreamingJob", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, + "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "List", "OutputTypes": [ @@ -1330,7 +1333,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20200301Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20200301Preview.IClusterJob", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20200301Preview.IClusterJob, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20200301Preview.IClusterJob, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "JobState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.JobState]", "StreamingUnit": "System.Nullable`1[System.Int32]", @@ -1353,7 +1356,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1371,7 +1374,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1389,7 +1392,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -1410,7 +1413,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1428,7 +1431,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1446,7 +1449,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1464,7 +1467,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1482,7 +1485,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1500,7 +1503,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1518,7 +1521,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1542,7 +1545,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1566,7 +1569,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1590,7 +1593,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -1617,7 +1620,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1641,7 +1644,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1665,7 +1668,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1689,7 +1692,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1713,7 +1716,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1737,7 +1740,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1761,7 +1764,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1788,8 +1791,9 @@ "NounName": "AzStreamAnalyticsDefaultFunctionDefinition", "Name": "Get-AzStreamAnalyticsDefaultFunctionDefinition", "ClassName": "Get-AzStreamAnalyticsDefaultFunctionDefinition", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, + "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "RetrieveExpanded", "OutputTypes": [ @@ -1797,7 +1801,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunction", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunction, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunction, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConfigurationProperty": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunctionConfiguration", "ETag": "System.String", @@ -1820,7 +1824,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1838,7 +1842,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1856,7 +1860,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1874,7 +1878,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1892,7 +1896,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1910,7 +1914,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1928,7 +1932,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -1949,7 +1953,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1967,7 +1971,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1985,7 +1989,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2003,7 +2007,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2021,7 +2025,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2039,7 +2043,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2057,7 +2061,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2081,7 +2085,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2105,7 +2109,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2129,7 +2133,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2153,7 +2157,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2177,7 +2181,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2201,7 +2205,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2225,7 +2229,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -2252,7 +2256,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2276,7 +2280,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2300,7 +2304,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2324,7 +2328,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2348,7 +2352,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2372,7 +2376,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2396,7 +2400,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2424,7 +2428,8 @@ "Name": "Get-AzStreamAnalyticsFunction", "ClassName": "Get-AzStreamAnalyticsFunction", "SupportsShouldProcess": false, - "ConfirmImpact": 2, + "ConfirmImpact": 0, + "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "List", "OutputTypes": [ @@ -2432,7 +2437,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunction", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunction, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunction, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConfigurationProperty": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunctionConfiguration", "ETag": "System.String", @@ -2455,7 +2460,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2475,7 +2480,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2493,7 +2498,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2511,7 +2516,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -2529,7 +2534,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClusterName": "System.String", "FunctionName": "System.String", @@ -2558,7 +2563,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2579,7 +2584,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2597,7 +2602,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2615,7 +2620,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2633,7 +2638,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2651,7 +2656,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2669,7 +2674,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2687,7 +2692,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2711,7 +2716,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2735,7 +2740,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2759,7 +2764,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -2783,7 +2788,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2810,7 +2815,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2834,7 +2839,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2858,7 +2863,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2882,7 +2887,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2906,7 +2911,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2930,7 +2935,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2954,7 +2959,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2983,7 +2988,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3009,7 +3014,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3033,7 +3038,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3057,7 +3062,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -3084,7 +3089,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3108,7 +3113,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3132,7 +3137,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3156,7 +3161,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3180,7 +3185,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3204,7 +3209,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3228,7 +3233,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3257,7 +3262,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClusterName": "System.String", "FunctionName": "System.String", @@ -3295,7 +3300,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3319,7 +3324,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3343,7 +3348,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3367,7 +3372,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3391,7 +3396,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3415,7 +3420,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3439,7 +3444,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3471,7 +3476,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3495,7 +3500,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3519,7 +3524,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3543,7 +3548,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3567,7 +3572,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3591,7 +3596,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3615,7 +3620,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3643,7 +3648,8 @@ "Name": "Get-AzStreamAnalyticsInput", "ClassName": "Get-AzStreamAnalyticsInput", "SupportsShouldProcess": false, - "ConfirmImpact": 2, + "ConfirmImpact": 0, + "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "List", "OutputTypes": [ @@ -3651,7 +3657,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IInput", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IInput, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IInput, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Property": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IInputProperties", "ETag": "System.String" @@ -3673,7 +3679,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3693,7 +3699,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3711,7 +3717,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3729,7 +3735,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -3747,7 +3753,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClusterName": "System.String", "FunctionName": "System.String", @@ -3776,7 +3782,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3797,7 +3803,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3815,7 +3821,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3833,7 +3839,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3851,7 +3857,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3869,7 +3875,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3887,7 +3893,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3905,7 +3911,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3929,7 +3935,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3953,7 +3959,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3977,7 +3983,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -4001,7 +4007,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4028,7 +4034,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4052,7 +4058,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4076,7 +4082,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4100,7 +4106,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4124,7 +4130,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4148,7 +4154,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4172,7 +4178,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4201,7 +4207,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4227,7 +4233,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4251,7 +4257,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4275,7 +4281,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -4302,7 +4308,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4326,7 +4332,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4350,7 +4356,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4374,7 +4380,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4398,7 +4404,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4422,7 +4428,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4446,7 +4452,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4475,7 +4481,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClusterName": "System.String", "FunctionName": "System.String", @@ -4513,7 +4519,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4537,7 +4543,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4561,7 +4567,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4585,7 +4591,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4609,7 +4615,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4633,7 +4639,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4657,7 +4663,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4689,7 +4695,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4713,7 +4719,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4737,7 +4743,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4761,7 +4767,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4785,7 +4791,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4809,7 +4815,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4833,7 +4839,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4861,7 +4867,8 @@ "Name": "Get-AzStreamAnalyticsJob", "ClassName": "Get-AzStreamAnalyticsJob", "SupportsShouldProcess": false, - "ConfirmImpact": 2, + "ConfirmImpact": 0, + "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "List1", "OutputTypes": [ @@ -4869,7 +4876,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IStreamingJob", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IStreamingJob, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IStreamingJob, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Function": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunction[]", "Input": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IInput[]", @@ -4926,7 +4933,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4944,7 +4951,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4962,7 +4969,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -4980,7 +4987,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClusterName": "System.String", "FunctionName": "System.String", @@ -5009,7 +5016,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5030,7 +5037,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5048,7 +5055,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5066,7 +5073,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -5084,7 +5091,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -5102,7 +5109,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5120,7 +5127,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5138,7 +5145,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5162,7 +5169,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5186,7 +5193,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5210,7 +5217,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -5234,7 +5241,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5261,7 +5268,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5285,7 +5292,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5309,7 +5316,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -5333,7 +5340,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -5357,7 +5364,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5381,7 +5388,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5405,7 +5412,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5434,7 +5441,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5458,7 +5465,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -5482,7 +5489,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5509,7 +5516,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5533,7 +5540,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5557,7 +5564,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -5581,7 +5588,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -5605,7 +5612,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5629,7 +5636,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5653,7 +5660,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5682,7 +5689,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -5706,7 +5713,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5733,7 +5740,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5757,7 +5764,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5781,7 +5788,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -5805,7 +5812,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -5829,7 +5836,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5853,7 +5860,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5877,7 +5884,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5906,7 +5913,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClusterName": "System.String", "FunctionName": "System.String", @@ -5941,7 +5948,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5968,7 +5975,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5992,7 +5999,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6016,7 +6023,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -6040,7 +6047,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -6064,7 +6071,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6088,7 +6095,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6112,7 +6119,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6141,7 +6148,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6168,7 +6175,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6192,7 +6199,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6216,7 +6223,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -6240,7 +6247,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -6264,7 +6271,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6288,7 +6295,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6312,7 +6319,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6340,7 +6347,8 @@ "Name": "Get-AzStreamAnalyticsOutput", "ClassName": "Get-AzStreamAnalyticsOutput", "SupportsShouldProcess": false, - "ConfirmImpact": 2, + "ConfirmImpact": 0, + "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "List", "OutputTypes": [ @@ -6348,7 +6356,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IOutput", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IOutput, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IOutput, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DiagnosticCondition": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IDiagnosticCondition[]", "Datasource": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IOutputDataSource", @@ -6374,7 +6382,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6394,7 +6402,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6412,7 +6420,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6430,7 +6438,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -6448,7 +6456,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClusterName": "System.String", "FunctionName": "System.String", @@ -6477,7 +6485,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6498,7 +6506,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6516,7 +6524,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6534,7 +6542,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -6552,7 +6560,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -6570,7 +6578,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6588,7 +6596,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6606,7 +6614,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6630,7 +6638,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6654,7 +6662,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6678,7 +6686,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -6702,7 +6710,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6729,7 +6737,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6753,7 +6761,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6777,7 +6785,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -6801,7 +6809,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -6825,7 +6833,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6849,7 +6857,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6873,7 +6881,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6902,7 +6910,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6928,7 +6936,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6952,7 +6960,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6976,7 +6984,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -7003,7 +7011,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7027,7 +7035,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7051,7 +7059,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -7075,7 +7083,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -7099,7 +7107,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7123,7 +7131,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7147,7 +7155,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7176,7 +7184,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClusterName": "System.String", "FunctionName": "System.String", @@ -7214,7 +7222,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7238,7 +7246,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7262,7 +7270,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -7286,7 +7294,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -7310,7 +7318,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7334,7 +7342,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7358,7 +7366,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7390,7 +7398,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7414,7 +7422,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7438,7 +7446,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -7462,7 +7470,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -7486,7 +7494,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7510,7 +7518,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7534,7 +7542,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7562,7 +7570,8 @@ "Name": "Get-AzStreamAnalyticsQuota", "ClassName": "Get-AzStreamAnalyticsQuota", "SupportsShouldProcess": false, - "ConfirmImpact": 2, + "ConfirmImpact": 0, + "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "List", "OutputTypes": [ @@ -7570,7 +7579,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.ISubscriptionQuota", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.ISubscriptionQuota, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.ISubscriptionQuota, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "CurrentCount": "System.Nullable`1[System.Int32]", "MaxCount": "System.Nullable`1[System.Int32]" @@ -7592,7 +7601,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7610,7 +7619,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -7631,7 +7640,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7649,7 +7658,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7667,7 +7676,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -7685,7 +7694,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -7703,7 +7712,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7721,7 +7730,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7739,7 +7748,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7763,7 +7772,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7787,7 +7796,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -7814,7 +7823,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7838,7 +7847,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7862,7 +7871,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -7886,7 +7895,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -7910,7 +7919,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7934,7 +7943,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7958,7 +7967,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7986,7 +7995,8 @@ "Name": "Get-AzStreamAnalyticsTransformation", "ClassName": "Get-AzStreamAnalyticsTransformation", "SupportsShouldProcess": false, - "ConfirmImpact": 2, + "ConfirmImpact": 0, + "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "Get", "OutputTypes": [ @@ -7994,7 +8004,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.ITransformation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.ITransformation, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.ITransformation, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StreamingUnit": "System.Nullable`1[System.Int32]", "Query": "System.String", @@ -8017,7 +8027,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8037,7 +8047,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8055,7 +8065,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8073,7 +8083,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -8091,7 +8101,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClusterName": "System.String", "FunctionName": "System.String", @@ -8123,7 +8133,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8141,7 +8151,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8159,7 +8169,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -8177,7 +8187,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -8195,7 +8205,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8213,7 +8223,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8231,7 +8241,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8255,7 +8265,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8281,7 +8291,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8305,7 +8315,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8329,7 +8339,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -8356,7 +8366,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8380,7 +8390,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8404,7 +8414,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -8428,7 +8438,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -8452,7 +8462,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8476,7 +8486,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8500,7 +8510,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8529,7 +8539,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClusterName": "System.String", "FunctionName": "System.String", @@ -8567,7 +8577,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8591,7 +8601,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8615,7 +8625,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -8639,7 +8649,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -8663,7 +8673,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8687,7 +8697,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8711,7 +8721,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8743,7 +8753,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8767,7 +8777,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8791,7 +8801,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -8815,7 +8825,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -8839,7 +8849,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8863,7 +8873,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8887,7 +8897,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8914,8 +8924,9 @@ "NounName": "AzStreamAnalyticsCluster", "Name": "New-AzStreamAnalyticsCluster", "ClassName": "New-AzStreamAnalyticsCluster", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, + "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "CreateExpanded", "OutputTypes": [ @@ -8923,7 +8934,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20200301Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20200301Preview.ICluster", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20200301Preview.ICluster, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20200301Preview.ICluster, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterProvisioningState]", "SkuName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterSkuName]", @@ -8953,7 +8964,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8971,7 +8982,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8989,7 +9000,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9007,7 +9018,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9025,7 +9036,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9043,7 +9054,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9061,7 +9072,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9079,73 +9090,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterSkuName", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterSkuName, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterSkuName, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterSkuName" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -9159,7 +9108,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9180,7 +9129,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9198,7 +9147,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9216,7 +9165,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9234,7 +9183,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -9252,7 +9201,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -9270,7 +9219,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9288,7 +9237,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9306,7 +9255,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9324,7 +9273,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9350,7 +9299,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9374,7 +9323,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9398,7 +9347,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9422,7 +9371,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9446,7 +9395,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9470,7 +9419,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9494,7 +9443,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9518,73 +9467,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterSkuName", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterSkuName, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterSkuName" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterSkuName, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -9604,7 +9491,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9631,7 +9518,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9655,7 +9542,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9679,7 +9566,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9703,7 +9590,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -9727,7 +9614,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -9751,7 +9638,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9775,7 +9662,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9799,7 +9686,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9823,7 +9710,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9850,8 +9737,9 @@ "NounName": "AzStreamAnalyticsFunction", "Name": "New-AzStreamAnalyticsFunction", "ClassName": "New-AzStreamAnalyticsFunction", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, + "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "Create", "OutputTypes": [ @@ -9859,7 +9747,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunction", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunction, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunction, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConfigurationProperty": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunctionConfiguration", "ETag": "System.String", @@ -9882,7 +9770,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9902,7 +9790,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9920,7 +9808,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9938,7 +9826,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9956,7 +9844,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9974,7 +9862,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9992,7 +9880,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10013,7 +9901,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10031,7 +9919,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10049,7 +9937,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -10067,7 +9955,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -10085,7 +9973,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10103,7 +9991,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10121,7 +10009,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10145,7 +10033,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10171,7 +10059,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10195,7 +10083,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10219,7 +10107,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10243,7 +10131,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10267,7 +10155,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10291,7 +10179,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10318,7 +10206,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10342,7 +10230,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10366,7 +10254,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -10390,7 +10278,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -10414,7 +10302,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10438,7 +10326,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10462,7 +10350,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10489,8 +10377,9 @@ "NounName": "AzStreamAnalyticsInput", "Name": "New-AzStreamAnalyticsInput", "ClassName": "New-AzStreamAnalyticsInput", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, + "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "Create", "OutputTypes": [ @@ -10498,7 +10387,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IInput", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IInput, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IInput, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Property": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IInputProperties", "ETag": "System.String" @@ -10520,7 +10409,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10540,7 +10429,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10558,7 +10447,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10576,7 +10465,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10594,7 +10483,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10612,7 +10501,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10630,7 +10519,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10651,7 +10540,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10669,7 +10558,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10687,7 +10576,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -10705,7 +10594,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -10723,7 +10612,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10741,7 +10630,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10759,7 +10648,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10783,7 +10672,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10809,7 +10698,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10833,7 +10722,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10857,7 +10746,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10881,7 +10770,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10905,7 +10794,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10929,7 +10818,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10956,7 +10845,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10980,7 +10869,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11004,7 +10893,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -11028,7 +10917,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -11052,7 +10941,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11076,7 +10965,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11100,7 +10989,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11127,8 +11016,9 @@ "NounName": "AzStreamAnalyticsJob", "Name": "New-AzStreamAnalyticsJob", "ClassName": "New-AzStreamAnalyticsJob", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, + "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "CreateExpanded", "OutputTypes": [ @@ -11136,7 +11026,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IStreamingJob", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IStreamingJob, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IStreamingJob, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Function": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunction[]", "Input": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IInput[]", @@ -11193,7 +11083,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11211,7 +11101,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11229,7 +11119,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11247,7 +11137,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11265,7 +11155,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11283,7 +11173,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11301,73 +11191,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.StreamingJobSkuName", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.StreamingJobSkuName, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.StreamingJobSkuName, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.StreamingJobSkuName" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -11381,73 +11209,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.CompatibilityLevel", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.CompatibilityLevel, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.CompatibilityLevel, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.CompatibilityLevel" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -11461,7 +11227,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11479,7 +11245,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11497,7 +11263,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11515,73 +11281,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.EventsOutOfOrderPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.EventsOutOfOrderPolicy, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.EventsOutOfOrderPolicy, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.EventsOutOfOrderPolicy" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -11595,73 +11299,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputErrorPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputErrorPolicy, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputErrorPolicy, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputErrorPolicy" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -11675,7 +11317,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11693,7 +11335,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11714,7 +11356,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11732,7 +11374,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11750,7 +11392,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11768,7 +11410,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -11786,7 +11428,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -11804,7 +11446,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11822,7 +11464,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11840,7 +11482,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11858,7 +11500,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11882,7 +11524,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11906,7 +11548,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11930,7 +11572,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11954,7 +11596,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11978,7 +11620,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12002,7 +11644,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12026,73 +11668,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.StreamingJobSkuName", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.StreamingJobSkuName, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.StreamingJobSkuName" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.StreamingJobSkuName, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -12112,73 +11692,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.CompatibilityLevel", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.CompatibilityLevel, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.CompatibilityLevel" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.CompatibilityLevel, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -12198,7 +11716,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12222,7 +11740,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12246,7 +11764,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12270,73 +11788,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.EventsOutOfOrderPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.EventsOutOfOrderPolicy, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.EventsOutOfOrderPolicy" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.EventsOutOfOrderPolicy, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -12356,73 +11812,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputErrorPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputErrorPolicy, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputErrorPolicy" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputErrorPolicy, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -12442,7 +11836,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12466,7 +11860,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12493,7 +11887,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12517,7 +11911,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12541,7 +11935,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12565,7 +11959,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -12589,7 +11983,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -12613,7 +12007,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12637,7 +12031,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12661,7 +12055,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12685,7 +12079,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12712,8 +12106,9 @@ "NounName": "AzStreamAnalyticsOutput", "Name": "New-AzStreamAnalyticsOutput", "ClassName": "New-AzStreamAnalyticsOutput", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, + "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "Create", "OutputTypes": [ @@ -12721,7 +12116,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IOutput", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IOutput, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IOutput, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DiagnosticCondition": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IDiagnosticCondition[]", "Datasource": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IOutputDataSource", @@ -12747,7 +12142,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12767,7 +12162,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12785,7 +12180,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12803,7 +12198,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12821,7 +12216,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12839,7 +12234,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12857,7 +12252,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12878,7 +12273,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12896,7 +12291,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12914,7 +12309,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -12932,7 +12327,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -12950,7 +12345,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12968,7 +12363,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12986,7 +12381,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13010,7 +12405,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13036,7 +12431,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13060,7 +12455,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13084,7 +12479,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13108,7 +12503,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13132,7 +12527,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13156,7 +12551,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13183,7 +12578,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13207,7 +12602,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13231,7 +12626,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -13255,7 +12650,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -13279,7 +12674,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13303,7 +12698,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13327,7 +12722,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13354,8 +12749,9 @@ "NounName": "AzStreamAnalyticsTransformation", "Name": "New-AzStreamAnalyticsTransformation", "ClassName": "New-AzStreamAnalyticsTransformation", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, + "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "CreateExpanded", "OutputTypes": [ @@ -13363,7 +12759,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.ITransformation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.ITransformation, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.ITransformation, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StreamingUnit": "System.Nullable`1[System.Int32]", "Query": "System.String", @@ -13386,7 +12782,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13406,7 +12802,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13424,7 +12820,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13442,7 +12838,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13460,7 +12856,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13478,7 +12874,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13496,7 +12892,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13514,7 +12910,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13535,7 +12931,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13553,7 +12949,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13571,7 +12967,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -13589,7 +12985,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -13607,7 +13003,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13625,7 +13021,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13643,7 +13039,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13667,7 +13063,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13693,7 +13089,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13717,7 +13113,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13741,7 +13137,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13765,7 +13161,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13789,7 +13185,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13813,7 +13209,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13837,7 +13233,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13864,7 +13260,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13888,7 +13284,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13912,7 +13308,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -13936,7 +13332,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -13960,7 +13356,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13984,7 +13380,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14008,7 +13404,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14035,8 +13431,9 @@ "NounName": "AzStreamAnalyticsCluster", "Name": "Remove-AzStreamAnalyticsCluster", "ClassName": "Remove-AzStreamAnalyticsCluster", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, + "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "Delete", "OutputTypes": [ @@ -14044,7 +13441,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14065,7 +13462,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14083,7 +13480,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14101,7 +13498,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14119,7 +13516,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClusterName": "System.String", "FunctionName": "System.String", @@ -14151,7 +13548,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14169,7 +13566,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14187,7 +13584,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14205,7 +13602,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -14223,7 +13620,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -14241,7 +13638,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14259,7 +13656,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14277,7 +13674,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14295,7 +13692,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14313,7 +13710,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14339,7 +13736,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14363,7 +13760,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14387,7 +13784,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14414,7 +13811,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14438,7 +13835,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14462,7 +13859,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14486,7 +13883,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -14510,7 +13907,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -14534,7 +13931,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14558,7 +13955,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14582,7 +13979,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14606,7 +14003,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14630,7 +14027,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14659,7 +14056,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClusterName": "System.String", "FunctionName": "System.String", @@ -14697,7 +14094,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14721,7 +14118,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14745,7 +14142,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14769,7 +14166,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -14793,7 +14190,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -14817,7 +14214,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14841,7 +14238,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14865,7 +14262,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14889,7 +14286,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14913,7 +14310,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14945,7 +14342,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14969,7 +14366,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14993,7 +14390,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15017,7 +14414,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -15041,7 +14438,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -15065,7 +14462,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15089,7 +14486,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15113,7 +14510,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15137,7 +14534,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15161,7 +14558,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15188,8 +14585,9 @@ "NounName": "AzStreamAnalyticsFunction", "Name": "Remove-AzStreamAnalyticsFunction", "ClassName": "Remove-AzStreamAnalyticsFunction", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, + "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "Delete", "OutputTypes": [ @@ -15197,7 +14595,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15216,7 +14614,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15236,7 +14634,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15254,7 +14652,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15272,7 +14670,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15290,7 +14688,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClusterName": "System.String", "FunctionName": "System.String", @@ -15322,7 +14720,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15340,7 +14738,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15358,7 +14756,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -15376,7 +14774,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -15394,7 +14792,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15412,7 +14810,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15430,7 +14828,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15448,7 +14846,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15472,7 +14870,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15498,7 +14896,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15522,7 +14920,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15546,7 +14944,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15573,7 +14971,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15597,7 +14995,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15621,7 +15019,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -15645,7 +15043,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -15669,7 +15067,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15693,7 +15091,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15717,7 +15115,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15741,7 +15139,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15770,7 +15168,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClusterName": "System.String", "FunctionName": "System.String", @@ -15808,7 +15206,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15832,7 +15230,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15856,7 +15254,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -15880,7 +15278,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -15904,7 +15302,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15928,7 +15326,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15952,7 +15350,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15976,7 +15374,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16008,7 +15406,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16032,7 +15430,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16056,7 +15454,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -16080,7 +15478,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -16104,7 +15502,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16128,7 +15526,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16152,7 +15550,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16176,7 +15574,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16203,8 +15601,9 @@ "NounName": "AzStreamAnalyticsInput", "Name": "Remove-AzStreamAnalyticsInput", "ClassName": "Remove-AzStreamAnalyticsInput", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, + "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "Delete", "OutputTypes": [ @@ -16212,7 +15611,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16231,7 +15630,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16251,7 +15650,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16269,7 +15668,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16287,7 +15686,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16305,7 +15704,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClusterName": "System.String", "FunctionName": "System.String", @@ -16337,7 +15736,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16355,7 +15754,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16373,7 +15772,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -16391,7 +15790,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -16409,7 +15808,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16427,7 +15826,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16445,7 +15844,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16463,7 +15862,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16487,7 +15886,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16513,7 +15912,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16537,7 +15936,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16561,7 +15960,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16588,7 +15987,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16612,7 +16011,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16636,7 +16035,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -16660,7 +16059,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -16684,7 +16083,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16708,7 +16107,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16732,7 +16131,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16756,7 +16155,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16785,7 +16184,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClusterName": "System.String", "FunctionName": "System.String", @@ -16823,7 +16222,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16847,7 +16246,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16871,7 +16270,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -16895,7 +16294,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -16919,7 +16318,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16943,7 +16342,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16967,7 +16366,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16991,7 +16390,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17023,7 +16422,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17047,7 +16446,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17071,7 +16470,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -17095,7 +16494,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -17119,7 +16518,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17143,7 +16542,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17167,7 +16566,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17191,7 +16590,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17218,8 +16617,9 @@ "NounName": "AzStreamAnalyticsJob", "Name": "Remove-AzStreamAnalyticsJob", "ClassName": "Remove-AzStreamAnalyticsJob", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, + "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "Delete", "OutputTypes": [ @@ -17227,7 +16627,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17246,7 +16646,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17264,7 +16664,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17282,7 +16682,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17300,7 +16700,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClusterName": "System.String", "FunctionName": "System.String", @@ -17332,7 +16732,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17350,7 +16750,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17368,7 +16768,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17386,7 +16786,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -17404,7 +16804,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -17422,7 +16822,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17440,7 +16840,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17458,7 +16858,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17476,7 +16876,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17494,7 +16894,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17518,7 +16918,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17542,7 +16942,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17566,7 +16966,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17593,7 +16993,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17617,7 +17017,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17641,7 +17041,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17665,7 +17065,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -17689,7 +17089,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -17713,7 +17113,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17737,7 +17137,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17761,7 +17161,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17785,7 +17185,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17809,7 +17209,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17838,7 +17238,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClusterName": "System.String", "FunctionName": "System.String", @@ -17876,7 +17276,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17900,7 +17300,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17924,7 +17324,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17948,7 +17348,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -17972,7 +17372,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -17996,7 +17396,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18020,7 +17420,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18044,7 +17444,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18068,7 +17468,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18092,7 +17492,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18124,7 +17524,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18148,7 +17548,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18172,7 +17572,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18196,7 +17596,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -18220,7 +17620,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -18244,7 +17644,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18268,7 +17668,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18292,7 +17692,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18316,7 +17716,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18340,7 +17740,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18367,8 +17767,9 @@ "NounName": "AzStreamAnalyticsOutput", "Name": "Remove-AzStreamAnalyticsOutput", "ClassName": "Remove-AzStreamAnalyticsOutput", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, + "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "Delete", "OutputTypes": [ @@ -18376,7 +17777,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18395,7 +17796,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18415,7 +17816,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18433,7 +17834,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18451,7 +17852,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18469,7 +17870,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClusterName": "System.String", "FunctionName": "System.String", @@ -18501,7 +17902,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18519,7 +17920,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18537,7 +17938,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -18555,7 +17956,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -18573,7 +17974,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18591,7 +17992,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18609,7 +18010,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18627,7 +18028,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18651,7 +18052,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18677,7 +18078,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18701,7 +18102,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18725,7 +18126,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18752,7 +18153,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18776,7 +18177,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18800,7 +18201,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -18824,7 +18225,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -18848,7 +18249,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18872,7 +18273,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18896,7 +18297,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18920,7 +18321,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18949,7 +18350,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClusterName": "System.String", "FunctionName": "System.String", @@ -18987,7 +18388,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19011,7 +18412,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19035,7 +18436,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -19059,7 +18460,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -19083,7 +18484,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19107,7 +18508,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19131,7 +18532,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19155,7 +18556,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19187,7 +18588,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19211,7 +18612,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19235,7 +18636,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -19259,7 +18660,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -19283,7 +18684,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19307,7 +18708,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19331,7 +18732,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19355,7 +18756,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19382,8 +18783,9 @@ "NounName": "AzStreamAnalyticsJob", "Name": "Start-AzStreamAnalyticsJob", "ClassName": "Start-AzStreamAnalyticsJob", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, + "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "StartExpanded", "OutputTypes": [ @@ -19391,7 +18793,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19410,7 +18812,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19428,7 +18830,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19446,7 +18848,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19464,7 +18866,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClusterName": "System.String", "FunctionName": "System.String", @@ -19493,73 +18895,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputStartMode", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputStartMode, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputStartMode, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputStartMode" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -19573,7 +18913,7 @@ "Type": { "Namespace": "System", "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19594,7 +18934,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19612,7 +18952,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19630,7 +18970,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19648,7 +18988,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -19666,7 +19006,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -19684,7 +19024,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19702,7 +19042,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19720,7 +19060,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19738,7 +19078,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19756,7 +19096,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19780,7 +19120,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19804,7 +19144,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19828,7 +19168,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19852,73 +19192,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputStartMode", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputStartMode, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputStartMode" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputStartMode, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -19938,7 +19216,7 @@ "Type": { "Namespace": "System", "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19965,7 +19243,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19989,7 +19267,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20013,7 +19291,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20037,7 +19315,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -20061,7 +19339,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -20085,7 +19363,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20109,7 +19387,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20133,7 +19411,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20157,7 +19435,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20181,7 +19459,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20210,7 +19488,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClusterName": "System.String", "FunctionName": "System.String", @@ -20245,73 +19523,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputStartMode", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputStartMode, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputStartMode" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputStartMode, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -20331,7 +19547,7 @@ "Type": { "Namespace": "System", "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20358,7 +19574,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20382,7 +19598,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20406,7 +19622,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20430,7 +19646,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -20454,7 +19670,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -20478,7 +19694,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20502,7 +19718,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20526,7 +19742,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20550,7 +19766,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20574,7 +19790,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20603,73 +19819,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputStartMode", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputStartMode, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputStartMode" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputStartMode, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -20689,7 +19843,7 @@ "Type": { "Namespace": "System", "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20716,7 +19870,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20740,7 +19894,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20764,7 +19918,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20788,7 +19942,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -20812,7 +19966,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -20836,7 +19990,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20860,7 +20014,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20884,7 +20038,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20908,7 +20062,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20932,7 +20086,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20959,8 +20113,9 @@ "NounName": "AzStreamAnalyticsJob", "Name": "Stop-AzStreamAnalyticsJob", "ClassName": "Stop-AzStreamAnalyticsJob", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, + "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "Stop", "OutputTypes": [ @@ -20968,7 +20123,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -20987,7 +20142,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21005,7 +20160,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21023,7 +20178,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21041,7 +20196,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClusterName": "System.String", "FunctionName": "System.String", @@ -21073,7 +20228,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21091,7 +20246,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21109,7 +20264,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21127,7 +20282,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -21145,7 +20300,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -21163,7 +20318,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21181,7 +20336,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21199,7 +20354,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21217,7 +20372,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21235,7 +20390,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21259,7 +20414,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21283,7 +20438,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21307,7 +20462,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21334,7 +20489,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21358,7 +20513,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21382,7 +20537,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21406,7 +20561,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -21430,7 +20585,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -21454,7 +20609,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21478,7 +20633,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21502,7 +20657,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21526,7 +20681,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21550,7 +20705,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21579,7 +20734,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClusterName": "System.String", "FunctionName": "System.String", @@ -21617,7 +20772,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21641,7 +20796,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21665,7 +20820,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21689,7 +20844,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -21713,7 +20868,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -21737,7 +20892,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21761,7 +20916,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21785,7 +20940,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21809,7 +20964,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21833,7 +20988,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21865,7 +21020,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21889,7 +21044,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21913,7 +21068,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -21937,7 +21092,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -21961,7 +21116,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -21985,7 +21140,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22009,7 +21164,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22033,7 +21188,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22057,7 +21212,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22081,7 +21236,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22108,8 +21263,9 @@ "NounName": "AzStreamAnalyticsFunction", "Name": "Test-AzStreamAnalyticsFunction", "ClassName": "Test-AzStreamAnalyticsFunction", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, + "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "TestExpanded", "OutputTypes": [ @@ -22117,7 +21273,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IResourceTestStatus", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IResourceTestStatus, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IResourceTestStatus, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Code": "System.String", "Message": "System.String", @@ -22140,7 +21296,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22160,7 +21316,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22178,7 +21334,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22196,7 +21352,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22217,7 +21373,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22235,7 +21391,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22253,7 +21409,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22271,7 +21427,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -22289,7 +21445,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -22307,7 +21463,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22325,7 +21481,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22343,7 +21499,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22367,7 +21523,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22393,7 +21549,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22417,7 +21573,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22441,7 +21597,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22468,7 +21624,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22492,7 +21648,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22516,7 +21672,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22540,7 +21696,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -22564,7 +21720,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -22588,7 +21744,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22612,7 +21768,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22636,7 +21792,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22663,8 +21819,9 @@ "NounName": "AzStreamAnalyticsInput", "Name": "Test-AzStreamAnalyticsInput", "ClassName": "Test-AzStreamAnalyticsInput", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, + "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "TestExpanded", "OutputTypes": [ @@ -22672,7 +21829,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IResourceTestStatus", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IResourceTestStatus, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IResourceTestStatus, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Code": "System.String", "Message": "System.String", @@ -22695,7 +21852,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22715,7 +21872,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22733,7 +21890,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22751,7 +21908,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22772,7 +21929,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22790,7 +21947,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22808,7 +21965,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22826,7 +21983,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -22844,7 +22001,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -22862,7 +22019,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22880,7 +22037,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22898,7 +22055,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22922,7 +22079,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22948,7 +22105,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22972,7 +22129,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -22996,7 +22153,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23023,7 +22180,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23047,7 +22204,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23071,7 +22228,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23095,7 +22252,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -23119,7 +22276,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -23143,7 +22300,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23167,7 +22324,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23191,7 +22348,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23218,8 +22375,9 @@ "NounName": "AzStreamAnalyticsOutput", "Name": "Test-AzStreamAnalyticsOutput", "ClassName": "Test-AzStreamAnalyticsOutput", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, + "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "TestExpanded", "OutputTypes": [ @@ -23227,7 +22385,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IResourceTestStatus", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IResourceTestStatus, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IResourceTestStatus, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Code": "System.String", "Message": "System.String", @@ -23250,7 +22408,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23270,7 +22428,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23288,7 +22446,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23306,7 +22464,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23327,7 +22485,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23345,7 +22503,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23363,7 +22521,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23381,7 +22539,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -23399,7 +22557,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -23417,7 +22575,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23435,7 +22593,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23453,7 +22611,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23477,7 +22635,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23503,7 +22661,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23527,7 +22685,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23551,7 +22709,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23578,7 +22736,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23602,7 +22760,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23626,7 +22784,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23650,7 +22808,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -23674,7 +22832,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -23698,7 +22856,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23722,7 +22880,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23746,7 +22904,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23773,8 +22931,9 @@ "NounName": "AzStreamAnalyticsCluster", "Name": "Update-AzStreamAnalyticsCluster", "ClassName": "Update-AzStreamAnalyticsCluster", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, + "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "UpdateExpanded", "OutputTypes": [ @@ -23782,7 +22941,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20200301Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20200301Preview.ICluster", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20200301Preview.ICluster, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20200301Preview.ICluster, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterProvisioningState]", "SkuName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterSkuName]", @@ -23812,7 +22971,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23830,7 +22989,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23848,7 +23007,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23866,7 +23025,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClusterName": "System.String", "FunctionName": "System.String", @@ -23895,7 +23054,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23913,7 +23072,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23931,7 +23090,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -23949,73 +23108,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterSkuName", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterSkuName, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterSkuName, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterSkuName" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -24029,7 +23126,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24050,7 +23147,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24068,7 +23165,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24086,7 +23183,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24104,7 +23201,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -24122,7 +23219,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -24140,7 +23237,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24158,7 +23255,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24176,7 +23273,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24194,7 +23291,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24220,7 +23317,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24244,7 +23341,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24268,7 +23365,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24292,7 +23389,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24316,7 +23413,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24340,7 +23437,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24364,73 +23461,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterSkuName", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterSkuName, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterSkuName" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterSkuName, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -24450,7 +23485,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24477,7 +23512,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24501,7 +23536,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24525,7 +23560,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24549,7 +23584,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -24573,7 +23608,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -24597,7 +23632,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24621,7 +23656,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24645,7 +23680,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24669,7 +23704,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24698,7 +23733,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClusterName": "System.String", "FunctionName": "System.String", @@ -24733,7 +23768,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24757,7 +23792,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24781,7 +23816,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24805,73 +23840,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterSkuName", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterSkuName, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterSkuName" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterSkuName, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -24891,7 +23864,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24918,7 +23891,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24942,7 +23915,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24966,7 +23939,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -24990,7 +23963,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -25014,7 +23987,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -25038,7 +24011,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25062,7 +24035,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25086,7 +24059,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25110,7 +24083,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25139,7 +24112,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25163,7 +24136,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25187,7 +24160,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25211,73 +24184,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterSkuName", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterSkuName, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterSkuName" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterSkuName, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -25297,7 +24208,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25324,7 +24235,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25348,7 +24259,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25372,7 +24283,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25396,7 +24307,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -25420,7 +24331,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -25444,7 +24355,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25468,7 +24379,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25492,7 +24403,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25516,7 +24427,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25543,8 +24454,9 @@ "NounName": "AzStreamAnalyticsFunction", "Name": "Update-AzStreamAnalyticsFunction", "ClassName": "Update-AzStreamAnalyticsFunction", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, + "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "Update", "OutputTypes": [ @@ -25552,7 +24464,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunction", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunction, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunction, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConfigurationProperty": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunctionConfiguration", "ETag": "System.String", @@ -25575,7 +24487,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25593,7 +24505,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25613,7 +24525,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25631,7 +24543,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25649,7 +24561,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25667,7 +24579,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClusterName": "System.String", "FunctionName": "System.String", @@ -25696,7 +24608,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25717,7 +24629,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25735,7 +24647,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25753,7 +24665,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -25771,7 +24683,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -25789,7 +24701,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25807,7 +24719,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25825,7 +24737,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25849,7 +24761,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25873,7 +24785,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25900,7 +24812,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25924,7 +24836,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -25948,7 +24860,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -25972,7 +24884,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -25996,7 +24908,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26020,7 +24932,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26044,7 +24956,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26073,7 +24985,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26099,7 +25011,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26123,7 +25035,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26147,7 +25059,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26171,7 +25083,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26195,7 +25107,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26222,7 +25134,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26246,7 +25158,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26270,7 +25182,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -26294,7 +25206,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -26318,7 +25230,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26342,7 +25254,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26366,7 +25278,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26395,7 +25307,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClusterName": "System.String", "FunctionName": "System.String", @@ -26430,7 +25342,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26454,7 +25366,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26481,7 +25393,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26505,7 +25417,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26529,7 +25441,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -26553,7 +25465,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -26577,7 +25489,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26601,7 +25513,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26625,7 +25537,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26652,8 +25564,9 @@ "NounName": "AzStreamAnalyticsInput", "Name": "Update-AzStreamAnalyticsInput", "ClassName": "Update-AzStreamAnalyticsInput", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, + "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "Update", "OutputTypes": [ @@ -26661,7 +25574,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IInput", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IInput, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IInput, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Property": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IInputProperties", "ETag": "System.String" @@ -26683,7 +25596,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26701,7 +25614,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26721,7 +25634,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26739,7 +25652,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26757,7 +25670,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26775,7 +25688,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClusterName": "System.String", "FunctionName": "System.String", @@ -26804,7 +25717,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26825,7 +25738,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26843,7 +25756,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26861,7 +25774,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -26879,7 +25792,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -26897,7 +25810,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26915,7 +25828,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26933,7 +25846,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26957,7 +25870,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -26981,7 +25894,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27008,7 +25921,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27032,7 +25945,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27056,7 +25969,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -27080,7 +25993,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -27104,7 +26017,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27128,7 +26041,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27152,7 +26065,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27181,7 +26094,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27207,7 +26120,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27231,7 +26144,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27255,7 +26168,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27279,7 +26192,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27303,7 +26216,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27330,7 +26243,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27354,7 +26267,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27378,7 +26291,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -27402,7 +26315,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -27426,7 +26339,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27450,7 +26363,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27474,7 +26387,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27503,7 +26416,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClusterName": "System.String", "FunctionName": "System.String", @@ -27538,7 +26451,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27562,7 +26475,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27589,7 +26502,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27613,7 +26526,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27637,7 +26550,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -27661,7 +26574,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -27685,7 +26598,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27709,7 +26622,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27733,7 +26646,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27760,8 +26673,9 @@ "NounName": "AzStreamAnalyticsJob", "Name": "Update-AzStreamAnalyticsJob", "ClassName": "Update-AzStreamAnalyticsJob", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, + "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "UpdateExpanded", "OutputTypes": [ @@ -27769,7 +26683,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IStreamingJob", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IStreamingJob, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IStreamingJob, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Function": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunction[]", "Input": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IInput[]", @@ -27826,7 +26740,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27844,7 +26758,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27862,7 +26776,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27880,7 +26794,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClusterName": "System.String", "FunctionName": "System.String", @@ -27909,7 +26823,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27927,7 +26841,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27945,7 +26859,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27963,7 +26877,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27981,7 +26895,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -27999,73 +26913,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.EventsOutOfOrderPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.EventsOutOfOrderPolicy, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.EventsOutOfOrderPolicy, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.EventsOutOfOrderPolicy" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -28079,73 +26931,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputErrorPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputErrorPolicy, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputErrorPolicy, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputErrorPolicy" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -28159,7 +26949,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28177,7 +26967,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28198,7 +26988,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28216,7 +27006,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28234,7 +27024,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28252,7 +27042,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -28270,7 +27060,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -28288,7 +27078,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28306,7 +27096,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28324,7 +27114,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28342,7 +27132,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28366,7 +27156,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28390,7 +27180,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28414,7 +27204,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28438,7 +27228,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28462,7 +27252,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28486,7 +27276,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28510,7 +27300,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28534,7 +27324,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28558,73 +27348,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.EventsOutOfOrderPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.EventsOutOfOrderPolicy, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.EventsOutOfOrderPolicy" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.EventsOutOfOrderPolicy, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -28644,73 +27372,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputErrorPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputErrorPolicy, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputErrorPolicy" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputErrorPolicy, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -28730,7 +27396,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28754,7 +27420,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28781,7 +27447,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28805,7 +27471,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28829,7 +27495,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28853,7 +27519,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -28877,7 +27543,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -28901,7 +27567,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28925,7 +27591,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28949,7 +27615,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -28973,7 +27639,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -29002,7 +27668,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClusterName": "System.String", "FunctionName": "System.String", @@ -29037,7 +27703,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -29061,7 +27727,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -29085,7 +27751,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -29109,7 +27775,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -29133,7 +27799,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -29157,73 +27823,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.EventsOutOfOrderPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.EventsOutOfOrderPolicy, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.EventsOutOfOrderPolicy" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.EventsOutOfOrderPolicy, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -29243,73 +27847,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputErrorPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputErrorPolicy, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputErrorPolicy" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputErrorPolicy, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -29329,7 +27871,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -29353,7 +27895,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -29380,7 +27922,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -29404,7 +27946,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -29428,7 +27970,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -29452,7 +27994,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -29476,7 +28018,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -29500,7 +28042,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -29524,7 +28066,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -29548,7 +28090,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -29572,7 +28114,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -29601,7 +28143,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -29625,7 +28167,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -29649,7 +28191,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -29673,7 +28215,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -29697,7 +28239,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -29721,73 +28263,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.EventsOutOfOrderPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.EventsOutOfOrderPolicy, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.EventsOutOfOrderPolicy" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.EventsOutOfOrderPolicy, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -29807,73 +28287,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputErrorPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputErrorPolicy, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputErrorPolicy" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputErrorPolicy, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -29893,7 +28311,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Runtime.Extensions, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -29917,7 +28335,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -29944,7 +28362,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -29968,7 +28386,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -29992,7 +28410,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -30016,7 +28434,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -30040,7 +28458,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -30064,7 +28482,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -30088,7 +28506,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -30112,7 +28530,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -30136,7 +28554,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -30163,8 +28581,9 @@ "NounName": "AzStreamAnalyticsOutput", "Name": "Update-AzStreamAnalyticsOutput", "ClassName": "Update-AzStreamAnalyticsOutput", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, + "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "Update", "OutputTypes": [ @@ -30172,7 +28591,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IOutput", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IOutput, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IOutput, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DiagnosticCondition": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IDiagnosticCondition[]", "Datasource": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IOutputDataSource", @@ -30198,7 +28617,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -30216,7 +28635,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -30236,7 +28655,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -30254,7 +28673,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -30272,7 +28691,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -30290,7 +28709,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClusterName": "System.String", "FunctionName": "System.String", @@ -30319,7 +28738,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -30340,7 +28759,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -30358,7 +28777,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -30376,7 +28795,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -30394,7 +28813,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -30412,7 +28831,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -30430,7 +28849,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -30448,7 +28867,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -30472,7 +28891,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -30496,7 +28915,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -30523,7 +28942,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -30547,7 +28966,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -30571,7 +28990,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -30595,7 +29014,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -30619,7 +29038,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -30643,7 +29062,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -30667,7 +29086,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -30696,7 +29115,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -30722,7 +29141,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -30746,7 +29165,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -30770,7 +29189,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -30794,7 +29213,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -30818,7 +29237,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -30845,7 +29264,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -30869,7 +29288,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -30893,7 +29312,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -30917,7 +29336,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -30941,7 +29360,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -30965,7 +29384,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -30989,7 +29408,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -31018,7 +29437,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClusterName": "System.String", "FunctionName": "System.String", @@ -31053,7 +29472,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -31077,7 +29496,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -31104,7 +29523,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -31128,7 +29547,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -31152,7 +29571,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -31176,7 +29595,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -31200,7 +29619,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -31224,7 +29643,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -31248,7 +29667,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -31275,8 +29694,9 @@ "NounName": "AzStreamAnalyticsTransformation", "Name": "Update-AzStreamAnalyticsTransformation", "ClassName": "Update-AzStreamAnalyticsTransformation", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, + "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "UpdateExpanded", "OutputTypes": [ @@ -31284,7 +29704,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.ITransformation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.ITransformation, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.ITransformation, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StreamingUnit": "System.Nullable`1[System.Int32]", "Query": "System.String", @@ -31307,7 +29727,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -31327,7 +29747,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -31345,7 +29765,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -31363,7 +29783,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -31381,7 +29801,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClusterName": "System.String", "FunctionName": "System.String", @@ -31410,7 +29830,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -31428,7 +29848,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -31446,7 +29866,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -31467,7 +29887,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -31485,7 +29905,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -31503,7 +29923,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -31521,7 +29941,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -31539,7 +29959,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -31557,7 +29977,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -31575,7 +29995,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -31599,7 +30019,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -31625,7 +30045,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -31649,7 +30069,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -31673,7 +30093,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -31697,7 +30117,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -31721,7 +30141,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -31745,7 +30165,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -31772,7 +30192,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -31796,7 +30216,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -31820,7 +30240,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -31844,7 +30264,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -31868,7 +30288,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -31892,7 +30312,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -31916,7 +30336,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -31945,7 +30365,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.IStreamAnalyticsIdentity, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ClusterName": "System.String", "FunctionName": "System.String", @@ -31980,7 +30400,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -32004,7 +30424,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -32028,7 +30448,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -32055,7 +30475,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -32079,7 +30499,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -32103,7 +30523,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -32127,7 +30547,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -32151,7 +30571,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -32175,7 +30595,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -32199,7 +30619,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -32228,7 +30648,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -32252,7 +30672,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -32276,7 +30696,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -32303,7 +30723,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -32327,7 +30747,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -32351,7 +30771,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -32375,7 +30795,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -32399,7 +30819,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -32423,7 +30843,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -32447,7 +30867,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -32614,7 +31034,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterProvisioningState]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterProvisioningState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterProvisioningState, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterProvisioningState, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -32626,7 +31046,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterProvisioningState": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterProvisioningState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterProvisioningState, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterProvisioningState, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -32698,7 +31118,7 @@ "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]", - "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[System.Management.Automation.CompletionResult, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -32710,7 +31130,7 @@ "System.Management.Automation.CompletionResult": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.CompletionResult", - "AssemblyQualifiedName": "System.Management.Automation.CompletionResult, System.Management.Automation, Version=6.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -32720,7 +31140,7 @@ "System.Type": { "Namespace": "System", "Name": "System.Type", - "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -32730,7 +31150,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterSkuName]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterSkuName]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterSkuName, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterSkuName, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -32742,7 +31162,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterSkuName": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterSkuName", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterSkuName, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ClusterSkuName, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -32814,7 +31234,7 @@ "System.Nullable`1[System.DateTime]": { "Namespace": "System", "Name": "System.Nullable`1[System.DateTime]", - "AssemblyQualifiedName": "System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -32826,7 +31246,7 @@ "System.DateTime": { "Namespace": "System", "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -32836,7 +31256,7 @@ "System.Nullable`1[System.Int32]": { "Namespace": "System", "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -32848,7 +31268,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Runtime.SendAsyncStep, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Target": "System.Object", "Method": "System.Reflection.MethodInfo" @@ -32944,6 +31364,11 @@ "Parameters": [], "ReturnType": "System.Int32" }, + { + "Name": "Clone", + "Parameters": [], + "ReturnType": "System.Object" + }, { "Name": "DynamicInvoke", "Parameters": [ @@ -32955,19 +31380,14 @@ "ReturnType": "System.Object" }, { - "Name": "Clone", + "Name": "GetType", "Parameters": [], - "ReturnType": "System.Object" + "ReturnType": "System.Type" }, { "Name": "ToString", "Parameters": [], "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" } ], "Constructors": [ @@ -32990,7 +31410,7 @@ "System.Object": { "Namespace": "System", "Name": "System.Object", - "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -33000,7 +31420,7 @@ "System.Reflection.MethodInfo": { "Namespace": "System.Reflection", "Name": "System.Reflection.MethodInfo", - "AssemblyQualifiedName": "System.Reflection.MethodInfo, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Reflection.MethodInfo, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -33010,7 +31430,7 @@ "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]": { "Namespace": "System.Threading.Tasks", "Name": "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]", - "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[System.Net.Http.HttpResponseMessage, System.Net.Http, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[System.Net.Http.HttpResponseMessage, System.Net.Http, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -33022,7 +31442,7 @@ "System.Net.Http.HttpResponseMessage": { "Namespace": "System.Net.Http", "Name": "System.Net.Http.HttpResponseMessage", - "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -33032,7 +31452,7 @@ "System.IAsyncResult": { "Namespace": "System", "Name": "System.IAsyncResult", - "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -33042,7 +31462,7 @@ "System.Void": { "Namespace": "System", "Name": "System.Void", - "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -33052,7 +31472,7 @@ "System.Delegate[]": { "Namespace": "System", "Name": "System.Delegate[]", - "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.Delegate", "GenericTypeArguments": [], @@ -33062,7 +31482,7 @@ "System.Delegate": { "Namespace": "System", "Name": "System.Delegate", - "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -33072,7 +31492,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.JobState]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.JobState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.JobState, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.JobState, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -33084,7 +31504,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.JobState": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.JobState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.JobState, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.JobState, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -33156,7 +31576,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunctionConfiguration": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunctionConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunctionConfiguration, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunctionConfiguration, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Binding": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunctionBinding", "Input": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunctionInput[]", @@ -33170,7 +31590,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunctionBinding": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunctionBinding", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunctionBinding, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunctionBinding, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Type": "System.String" }, @@ -33182,7 +31602,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunctionInput[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunctionInput[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunctionInput[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunctionInput[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunctionInput", "GenericTypeArguments": [], @@ -33192,7 +31612,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunctionInput": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunctionInput", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunctionInput, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunctionInput, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "IsConfigurationParameter": "System.Nullable`1[System.Boolean]", "DataType": "System.String" @@ -33205,7 +31625,7 @@ "System.Nullable`1[System.Boolean]": { "Namespace": "System", "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -33217,7 +31637,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunctionOutput": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunctionOutput", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunctionOutput, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunctionOutput, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DataType": "System.String" }, @@ -33229,7 +31649,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IInputProperties": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IInputProperties", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IInputProperties, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IInputProperties, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Compression": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.ICompression", "Diagnostic": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IDiagnostics", @@ -33245,7 +31665,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.ICompression": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.ICompression", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.ICompression, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.ICompression, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Type": "System.String" }, @@ -33257,7 +31677,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IDiagnostics": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IDiagnostics", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IDiagnostics, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IDiagnostics, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Condition": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IDiagnosticCondition[]" }, @@ -33269,7 +31689,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IDiagnosticCondition[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IDiagnosticCondition[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IDiagnosticCondition[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IDiagnosticCondition[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IDiagnosticCondition", "GenericTypeArguments": [], @@ -33279,7 +31699,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IDiagnosticCondition": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IDiagnosticCondition", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IDiagnosticCondition, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IDiagnosticCondition, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Code": "System.String", "Message": "System.String", @@ -33293,7 +31713,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.ISerialization": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.ISerialization", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.ISerialization, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.ISerialization, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Type": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.EventSerializationType" }, @@ -33305,7 +31725,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.EventSerializationType": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.EventSerializationType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.EventSerializationType, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.EventSerializationType, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -33377,7 +31797,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunction[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunction[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunction[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunction[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunction", "GenericTypeArguments": [], @@ -33387,7 +31807,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunction": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunction", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunction, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunction, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "ConfigurationProperty": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IFunctionConfiguration", "ETag": "System.String", @@ -33401,7 +31821,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IInput[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IInput[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IInput[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IInput[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IInput", "GenericTypeArguments": [], @@ -33411,7 +31831,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IInput": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IInput", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IInput, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IInput, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Property": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IInputProperties", "ETag": "System.String" @@ -33424,7 +31844,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IOutput[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IOutput[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IOutput[], Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IOutput[], Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IOutput", "GenericTypeArguments": [], @@ -33434,7 +31854,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IOutput": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IOutput", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IOutput, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IOutput, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DiagnosticCondition": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IDiagnosticCondition[]", "Datasource": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IOutputDataSource", @@ -33451,7 +31871,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IOutputDataSource": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IOutputDataSource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IOutputDataSource, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Models.Api20170401Preview.IOutputDataSource, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Type": "System.String" }, @@ -33463,7 +31883,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.EventSerializationType]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.EventSerializationType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.EventSerializationType, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.EventSerializationType, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -33475,7 +31895,7 @@ "System.Nullable`1[System.Single]": { "Namespace": "System", "Name": "System.Nullable`1[System.Single]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Single, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Single, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -33487,7 +31907,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.AuthenticationMode]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.AuthenticationMode]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.AuthenticationMode, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.AuthenticationMode, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -33499,7 +31919,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.AuthenticationMode": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.AuthenticationMode", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.AuthenticationMode, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.AuthenticationMode, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -33571,7 +31991,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.CompatibilityLevel]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.CompatibilityLevel]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.CompatibilityLevel, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.CompatibilityLevel, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -33583,7 +32003,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.CompatibilityLevel": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.CompatibilityLevel", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.CompatibilityLevel, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.CompatibilityLevel, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -33655,7 +32075,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ContentStoragePolicy]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ContentStoragePolicy]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ContentStoragePolicy, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ContentStoragePolicy, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -33667,7 +32087,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ContentStoragePolicy": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ContentStoragePolicy", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ContentStoragePolicy, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.ContentStoragePolicy, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -33739,7 +32159,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.EventsOutOfOrderPolicy]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.EventsOutOfOrderPolicy]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.EventsOutOfOrderPolicy, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.EventsOutOfOrderPolicy, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -33751,7 +32171,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.EventsOutOfOrderPolicy": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.EventsOutOfOrderPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.EventsOutOfOrderPolicy, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.EventsOutOfOrderPolicy, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -33823,7 +32243,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.JobType]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.JobType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.JobType, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.JobType, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -33835,7 +32255,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.JobType": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.JobType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.JobType, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.JobType, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -33907,7 +32327,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputErrorPolicy]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputErrorPolicy]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputErrorPolicy, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputErrorPolicy, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -33919,7 +32339,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputErrorPolicy": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputErrorPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputErrorPolicy, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputErrorPolicy, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -33991,7 +32411,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputStartMode]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputStartMode]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputStartMode, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputStartMode, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -34003,7 +32423,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputStartMode": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputStartMode", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputStartMode, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.OutputStartMode, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -34075,7 +32495,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.StreamingJobSkuName]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.StreamingJobSkuName]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.StreamingJobSkuName, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.StreamingJobSkuName, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -34087,7 +32507,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.StreamingJobSkuName": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.StreamingJobSkuName", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.StreamingJobSkuName, Az.StreamAnalytics.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StreamAnalytics.Support.StreamingJobSkuName, Az.StreamAnalytics.private, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -34157,4 +32577,4 @@ "Constructors": [] } } -} \ No newline at end of file +} diff --git a/tools/Tools.Common/SerializedCmdlets/Az.TimeSeriesInsights.json b/tools/Tools.Common/SerializedCmdlets/Az.TimeSeriesInsights.json index 1313b030de63..975381c6e227 100644 --- a/tools/Tools.Common/SerializedCmdlets/Az.TimeSeriesInsights.json +++ b/tools/Tools.Common/SerializedCmdlets/Az.TimeSeriesInsights.json @@ -7,7 +7,7 @@ "Name": "Get-AzTimeSeriesInsightsAccessPolicy", "ClassName": "Get-AzTimeSeriesInsightsAccessPolicy", "SupportsShouldProcess": false, - "ConfirmImpact": 2, + "ConfirmImpact": 0, "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "List", @@ -16,7 +16,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IAccessPolicyResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IAccessPolicyResource, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IAccessPolicyResource, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Role": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.AccessPolicyRole[]", "PrincipalObjectId": "System.String", @@ -39,7 +39,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -59,7 +59,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -77,7 +77,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -95,7 +95,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -113,7 +113,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AccessPolicyName": "System.String", "EnvironmentName": "System.String", @@ -142,7 +142,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -160,7 +160,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -178,7 +178,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -196,7 +196,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -214,7 +214,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -232,7 +232,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -250,7 +250,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -274,7 +274,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -298,7 +298,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -322,7 +322,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -349,7 +349,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -373,7 +373,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -397,7 +397,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -421,7 +421,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -445,7 +445,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -469,7 +469,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -493,7 +493,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -522,7 +522,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -548,7 +548,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -572,7 +572,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -596,7 +596,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -623,7 +623,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -647,7 +647,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -671,7 +671,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -695,7 +695,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -719,7 +719,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -743,7 +743,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -767,7 +767,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -796,7 +796,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AccessPolicyName": "System.String", "EnvironmentName": "System.String", @@ -831,7 +831,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -855,7 +855,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -879,7 +879,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -903,7 +903,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -927,7 +927,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -951,7 +951,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -975,7 +975,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1007,7 +1007,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1031,7 +1031,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1055,7 +1055,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1079,7 +1079,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1103,7 +1103,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1127,7 +1127,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1151,7 +1151,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1179,7 +1179,7 @@ "Name": "Get-AzTimeSeriesInsightsEnvironment", "ClassName": "Get-AzTimeSeriesInsightsEnvironment", "SupportsShouldProcess": false, - "ConfirmImpact": 2, + "ConfirmImpact": 0, "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "List1", @@ -1188,7 +1188,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IEnvironmentResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IEnvironmentResource, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IEnvironmentResource, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SkuName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.SkuName", "SkuCapacity": "System.Int32", @@ -1213,7 +1213,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1231,7 +1231,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1249,7 +1249,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -1267,7 +1267,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AccessPolicyName": "System.String", "EnvironmentName": "System.String", @@ -1293,7 +1293,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1314,7 +1314,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1332,7 +1332,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1350,7 +1350,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1368,7 +1368,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1386,7 +1386,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1404,7 +1404,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1422,7 +1422,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1448,7 +1448,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1472,7 +1472,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1496,7 +1496,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -1520,7 +1520,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1547,7 +1547,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1571,7 +1571,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1595,7 +1595,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1619,7 +1619,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1643,7 +1643,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1667,7 +1667,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1691,7 +1691,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1720,7 +1720,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1744,7 +1744,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -1771,7 +1771,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1795,7 +1795,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1819,7 +1819,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1843,7 +1843,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1867,7 +1867,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1891,7 +1891,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1915,7 +1915,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1944,7 +1944,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -1971,7 +1971,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1995,7 +1995,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2019,7 +2019,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2043,7 +2043,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2067,7 +2067,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2091,7 +2091,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2115,7 +2115,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2144,7 +2144,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AccessPolicyName": "System.String", "EnvironmentName": "System.String", @@ -2176,7 +2176,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2203,7 +2203,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2227,7 +2227,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2251,7 +2251,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2275,7 +2275,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2299,7 +2299,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2323,7 +2323,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2347,7 +2347,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2379,7 +2379,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2403,7 +2403,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2427,7 +2427,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2451,7 +2451,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2475,7 +2475,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2499,7 +2499,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2523,7 +2523,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2551,7 +2551,7 @@ "Name": "Get-AzTimeSeriesInsightsEventSource", "ClassName": "Get-AzTimeSeriesInsightsEventSource", "SupportsShouldProcess": false, - "ConfirmImpact": 2, + "ConfirmImpact": 0, "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "List", @@ -2560,7 +2560,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IEventSourceResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IEventSourceResource, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IEventSourceResource, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Kind": "System.String" }, @@ -2581,7 +2581,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2601,7 +2601,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2619,7 +2619,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2637,7 +2637,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -2655,7 +2655,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AccessPolicyName": "System.String", "EnvironmentName": "System.String", @@ -2684,7 +2684,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2702,7 +2702,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2720,7 +2720,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2738,7 +2738,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2756,7 +2756,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2774,7 +2774,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2792,7 +2792,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2816,7 +2816,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2840,7 +2840,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2864,7 +2864,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -2891,7 +2891,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2915,7 +2915,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2939,7 +2939,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2963,7 +2963,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2987,7 +2987,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3011,7 +3011,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3035,7 +3035,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3064,7 +3064,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3090,7 +3090,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3114,7 +3114,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3138,7 +3138,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -3165,7 +3165,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3189,7 +3189,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3213,7 +3213,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3237,7 +3237,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3261,7 +3261,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3285,7 +3285,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3309,7 +3309,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3338,7 +3338,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AccessPolicyName": "System.String", "EnvironmentName": "System.String", @@ -3373,7 +3373,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3397,7 +3397,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3421,7 +3421,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3445,7 +3445,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3469,7 +3469,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3493,7 +3493,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3517,7 +3517,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3549,7 +3549,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3573,7 +3573,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3597,7 +3597,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3621,7 +3621,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3645,7 +3645,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3669,7 +3669,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3693,7 +3693,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3721,7 +3721,7 @@ "Name": "Get-AzTimeSeriesInsightsReferenceDataSet", "ClassName": "Get-AzTimeSeriesInsightsReferenceDataSet", "SupportsShouldProcess": false, - "ConfirmImpact": 2, + "ConfirmImpact": 0, "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "List", @@ -3730,7 +3730,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IReferenceDataSetResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IReferenceDataSetResource, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IReferenceDataSetResource, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "KeyProperty": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IReferenceDataSetKeyProperty[]", "DataStringComparisonBehavior": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.DataStringComparisonBehavior]" @@ -3752,7 +3752,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3772,7 +3772,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3790,7 +3790,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3808,7 +3808,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -3826,7 +3826,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AccessPolicyName": "System.String", "EnvironmentName": "System.String", @@ -3855,7 +3855,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3873,7 +3873,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3891,7 +3891,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3909,7 +3909,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3927,7 +3927,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3945,7 +3945,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3963,7 +3963,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3987,7 +3987,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4011,7 +4011,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4035,7 +4035,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -4062,7 +4062,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4086,7 +4086,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4110,7 +4110,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4134,7 +4134,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4158,7 +4158,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4182,7 +4182,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4206,7 +4206,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4235,7 +4235,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4261,7 +4261,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4285,7 +4285,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4309,7 +4309,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -4336,7 +4336,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4360,7 +4360,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4384,7 +4384,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4408,7 +4408,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4432,7 +4432,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4456,7 +4456,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4480,7 +4480,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4509,7 +4509,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AccessPolicyName": "System.String", "EnvironmentName": "System.String", @@ -4544,7 +4544,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4568,7 +4568,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4592,7 +4592,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4616,7 +4616,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4640,7 +4640,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4664,7 +4664,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4688,7 +4688,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4720,7 +4720,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4744,7 +4744,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4768,7 +4768,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4792,7 +4792,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4816,7 +4816,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4840,7 +4840,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4864,7 +4864,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4891,7 +4891,7 @@ "NounName": "AzTimeSeriesInsightsAccessPolicy", "Name": "New-AzTimeSeriesInsightsAccessPolicy", "ClassName": "New-AzTimeSeriesInsightsAccessPolicy", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -4901,7 +4901,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IAccessPolicyResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IAccessPolicyResource, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IAccessPolicyResource, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Role": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.AccessPolicyRole[]", "PrincipalObjectId": "System.String", @@ -4924,7 +4924,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4944,7 +4944,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4962,7 +4962,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4980,7 +4980,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4998,7 +4998,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5016,7 +5016,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5034,7 +5034,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.AccessPolicyRole[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.AccessPolicyRole[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.AccessPolicyRole[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.AccessPolicyRole", "GenericTypeArguments": [], @@ -5055,7 +5055,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5073,7 +5073,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5091,7 +5091,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -5109,7 +5109,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -5127,7 +5127,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5145,7 +5145,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5163,7 +5163,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5187,7 +5187,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5213,7 +5213,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5237,7 +5237,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5261,7 +5261,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5285,7 +5285,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5309,7 +5309,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5333,7 +5333,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.AccessPolicyRole[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.AccessPolicyRole[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.AccessPolicyRole[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.AccessPolicyRole", "GenericTypeArguments": [], @@ -5360,7 +5360,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5384,7 +5384,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5408,7 +5408,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -5432,7 +5432,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -5456,7 +5456,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5480,7 +5480,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5504,7 +5504,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5531,7 +5531,7 @@ "NounName": "AzTimeSeriesInsightsEnvironment", "Name": "New-AzTimeSeriesInsightsEnvironment", "ClassName": "New-AzTimeSeriesInsightsEnvironment", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -5541,7 +5541,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IEnvironmentResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IEnvironmentResource, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IEnvironmentResource, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SkuName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.SkuName", "SkuCapacity": "System.Int32", @@ -5566,7 +5566,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5584,7 +5584,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5602,7 +5602,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5620,73 +5620,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.Kind", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.Kind, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.Kind, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.Kind" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -5700,7 +5638,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5718,73 +5656,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.SkuName", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.SkuName, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.SkuName, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.SkuName" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -5798,7 +5674,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5816,7 +5692,7 @@ "Type": { "Namespace": "System", "Name": "System.TimeSpan", - "AssemblyQualifiedName": "System.TimeSpan, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.TimeSpan, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5834,7 +5710,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.ITimeSeriesIdProperty[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.ITimeSeriesIdProperty[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.ITimeSeriesIdProperty[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.ITimeSeriesIdProperty", "GenericTypeArguments": [], @@ -5852,7 +5728,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5870,7 +5746,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5888,7 +5764,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.ITimeSeriesIdProperty[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.ITimeSeriesIdProperty[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.ITimeSeriesIdProperty[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.ITimeSeriesIdProperty", "GenericTypeArguments": [], @@ -5906,7 +5782,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5924,7 +5800,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5942,7 +5818,7 @@ "Type": { "Namespace": "System", "Name": "System.TimeSpan", - "AssemblyQualifiedName": "System.TimeSpan, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.TimeSpan, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5963,7 +5839,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5981,7 +5857,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -5999,7 +5875,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6017,7 +5893,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -6035,7 +5911,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -6053,7 +5929,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6071,7 +5947,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6089,7 +5965,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6107,7 +5983,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6133,7 +6009,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6157,7 +6033,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6181,7 +6057,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6205,73 +6081,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.Kind", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.Kind, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.Kind" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.Kind, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -6291,7 +6105,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6315,73 +6129,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.SkuName", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.SkuName, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.SkuName" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.SkuName, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -6401,7 +6153,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6428,7 +6180,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6452,7 +6204,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6476,7 +6228,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6500,7 +6252,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -6524,7 +6276,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -6548,7 +6300,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6572,7 +6324,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6596,7 +6348,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6620,7 +6372,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6649,7 +6401,7 @@ "Type": { "Namespace": "System", "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6673,7 +6425,7 @@ "Type": { "Namespace": "System", "Name": "System.TimeSpan", - "AssemblyQualifiedName": "System.TimeSpan, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.TimeSpan, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6697,7 +6449,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.ITimeSeriesIdProperty[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.ITimeSeriesIdProperty[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.ITimeSeriesIdProperty[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.ITimeSeriesIdProperty", "GenericTypeArguments": [], @@ -6721,7 +6473,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6747,7 +6499,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6771,7 +6523,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6795,7 +6547,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6819,73 +6571,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.Kind", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.Kind, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.Kind" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.Kind, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -6905,7 +6595,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -6929,73 +6619,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.SkuName", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.SkuName, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.SkuName" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.SkuName, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -7015,7 +6643,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7042,7 +6670,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7066,7 +6694,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7090,7 +6718,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7114,7 +6742,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -7138,7 +6766,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -7162,7 +6790,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7186,7 +6814,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7210,7 +6838,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7234,7 +6862,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7263,7 +6891,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.ITimeSeriesIdProperty[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.ITimeSeriesIdProperty[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.ITimeSeriesIdProperty[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.ITimeSeriesIdProperty", "GenericTypeArguments": [], @@ -7287,7 +6915,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7311,7 +6939,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7335,7 +6963,7 @@ "Type": { "Namespace": "System", "Name": "System.TimeSpan", - "AssemblyQualifiedName": "System.TimeSpan, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.TimeSpan, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7361,7 +6989,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7385,7 +7013,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7409,7 +7037,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7433,73 +7061,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.Kind", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.Kind, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.Kind" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.Kind, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -7519,7 +7085,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7543,73 +7109,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.SkuName", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.SkuName, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.SkuName" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.SkuName, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -7629,7 +7133,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7656,7 +7160,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7680,7 +7184,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7704,7 +7208,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7728,7 +7232,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -7752,7 +7256,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -7776,7 +7280,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7800,7 +7304,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7824,7 +7328,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7848,7 +7352,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7875,7 +7379,7 @@ "NounName": "AzTimeSeriesInsightsEventSource", "Name": "New-AzTimeSeriesInsightsEventSource", "ClassName": "New-AzTimeSeriesInsightsEventSource", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -7885,7 +7389,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IEventSourceResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IEventSourceResource, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IEventSourceResource, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Kind": "System.String" }, @@ -7906,7 +7410,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7926,7 +7430,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7944,7 +7448,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7962,7 +7466,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -7980,73 +7484,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.Kind", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.Kind, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.Kind, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.Kind" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -8060,7 +7502,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8078,7 +7520,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8096,7 +7538,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8114,7 +7556,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8132,7 +7574,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8150,7 +7592,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8168,7 +7610,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8186,7 +7628,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8204,7 +7646,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8222,7 +7664,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8243,7 +7685,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8261,7 +7703,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8279,7 +7721,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -8297,7 +7739,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -8315,7 +7757,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8333,7 +7775,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8351,7 +7793,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8375,7 +7817,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8401,7 +7843,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8425,7 +7867,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8449,7 +7891,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8473,73 +7915,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.Kind", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.Kind, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.Kind" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.Kind, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -8559,7 +7939,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8583,7 +7963,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8607,7 +7987,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8631,7 +8011,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8655,7 +8035,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8679,7 +8059,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8703,7 +8083,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8730,7 +8110,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8754,7 +8134,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8778,7 +8158,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -8802,7 +8182,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -8826,7 +8206,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8850,7 +8230,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8874,7 +8254,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8903,7 +8283,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8927,7 +8307,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8951,7 +8331,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -8977,7 +8357,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9001,7 +8381,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9025,7 +8405,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9049,73 +8429,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.Kind", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.Kind, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.Kind" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.Kind, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -9135,7 +8453,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9159,7 +8477,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9183,7 +8501,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9207,7 +8525,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9231,7 +8549,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9255,7 +8573,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9279,7 +8597,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9306,7 +8624,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9330,7 +8648,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9354,7 +8672,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -9378,7 +8696,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -9402,7 +8720,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9426,7 +8744,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9450,7 +8768,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9479,7 +8797,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9503,7 +8821,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9529,7 +8847,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9553,7 +8871,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9577,7 +8895,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9601,73 +8919,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.Kind", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.Kind, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.Kind" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.Kind, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -9687,7 +8943,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9711,7 +8967,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9735,7 +8991,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9759,7 +9015,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9783,7 +9039,7 @@ "Type": { "Namespace": "System.Security", "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9807,7 +9063,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9831,7 +9087,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9858,7 +9114,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9882,7 +9138,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9906,7 +9162,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -9930,7 +9186,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -9954,7 +9210,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -9978,7 +9234,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10002,7 +9258,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10029,7 +9285,7 @@ "NounName": "AzTimeSeriesInsightsReferenceDataSet", "Name": "New-AzTimeSeriesInsightsReferenceDataSet", "ClassName": "New-AzTimeSeriesInsightsReferenceDataSet", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -10039,7 +9295,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IReferenceDataSetResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IReferenceDataSetResource, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IReferenceDataSetResource, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "KeyProperty": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IReferenceDataSetKeyProperty[]", "DataStringComparisonBehavior": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.DataStringComparisonBehavior]" @@ -10061,7 +9317,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10081,7 +9337,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10099,7 +9355,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10117,7 +9373,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10135,7 +9391,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IReferenceDataSetKeyProperty[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IReferenceDataSetKeyProperty[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IReferenceDataSetKeyProperty[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IReferenceDataSetKeyProperty", "GenericTypeArguments": [], @@ -10153,7 +9409,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10171,73 +9427,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.DataStringComparisonBehavior", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.DataStringComparisonBehavior, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.DataStringComparisonBehavior, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.DataStringComparisonBehavior" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -10251,7 +9445,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10272,7 +9466,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10290,7 +9484,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10308,7 +9502,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -10326,7 +9520,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -10344,7 +9538,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10362,7 +9556,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10380,7 +9574,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10404,7 +9598,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10430,7 +9624,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10454,7 +9648,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10478,7 +9672,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10502,7 +9696,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IReferenceDataSetKeyProperty[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IReferenceDataSetKeyProperty[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IReferenceDataSetKeyProperty[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IReferenceDataSetKeyProperty", "GenericTypeArguments": [], @@ -10526,7 +9720,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10550,73 +9744,11 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.DataStringComparisonBehavior", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.DataStringComparisonBehavior, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": {}, - "ElementType": null, - "GenericTypeArguments": [], - "Methods": [ - { - "Name": "CompleteArgument", - "Parameters": [ - { - "Name": "commandName", - "Type": "System.String" - }, - { - "Name": "parameterName", - "Type": "System.String" - }, - { - "Name": "wordToComplete", - "Type": "System.String" - }, - { - "Name": "commandAst", - "Type": "System.Management.Automation.Language.CommandAst" - }, - { - "Name": "fakeBoundParameters", - "Type": "System.Collections.IDictionary" - } - ], - "ReturnType": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "e", - "Type": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.DataStringComparisonBehavior" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "Parameters": [], - "ReturnType": "System.Int32" - }, - { - "Name": "ToString", - "Parameters": [], - "ReturnType": "System.String" - }, - { - "Name": "GetType", - "Parameters": [], - "ReturnType": "System.Type" - } - ], + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.DataStringComparisonBehavior, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", + "Properties": {}, + "ElementType": null, + "GenericTypeArguments": [], + "Methods": [], "Constructors": [] }, "ValidateSet": [], @@ -10636,7 +9768,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10663,7 +9795,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10687,7 +9819,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10711,7 +9843,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -10735,7 +9867,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -10759,7 +9891,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10783,7 +9915,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10807,7 +9939,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10834,7 +9966,7 @@ "NounName": "AzTimeSeriesInsightsAccessPolicy", "Name": "Remove-AzTimeSeriesInsightsAccessPolicy", "ClassName": "Remove-AzTimeSeriesInsightsAccessPolicy", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -10844,7 +9976,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10863,7 +9995,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10883,7 +10015,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10901,7 +10033,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10919,7 +10051,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10937,7 +10069,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AccessPolicyName": "System.String", "EnvironmentName": "System.String", @@ -10966,7 +10098,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -10984,7 +10116,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11002,7 +10134,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -11020,7 +10152,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -11038,7 +10170,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11056,7 +10188,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11074,7 +10206,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11092,7 +10224,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11116,7 +10248,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11142,7 +10274,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11166,7 +10298,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11190,7 +10322,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11217,7 +10349,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11241,7 +10373,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11265,7 +10397,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -11289,7 +10421,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -11313,7 +10445,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11337,7 +10469,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11361,7 +10493,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11385,7 +10517,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11414,7 +10546,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AccessPolicyName": "System.String", "EnvironmentName": "System.String", @@ -11449,7 +10581,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11473,7 +10605,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11497,7 +10629,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -11521,7 +10653,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -11545,7 +10677,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11569,7 +10701,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11593,7 +10725,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11617,7 +10749,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11649,7 +10781,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11673,7 +10805,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11697,7 +10829,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -11721,7 +10853,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -11745,7 +10877,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11769,7 +10901,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11793,7 +10925,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11817,7 +10949,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11844,7 +10976,7 @@ "NounName": "AzTimeSeriesInsightsEnvironment", "Name": "Remove-AzTimeSeriesInsightsEnvironment", "ClassName": "Remove-AzTimeSeriesInsightsEnvironment", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -11854,7 +10986,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11875,7 +11007,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11893,7 +11025,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11911,7 +11043,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11929,7 +11061,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AccessPolicyName": "System.String", "EnvironmentName": "System.String", @@ -11958,7 +11090,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11976,7 +11108,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -11994,7 +11126,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -12012,7 +11144,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -12030,7 +11162,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12048,7 +11180,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12066,7 +11198,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12084,7 +11216,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12110,7 +11242,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12134,7 +11266,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12158,7 +11290,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12185,7 +11317,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12209,7 +11341,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12233,7 +11365,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -12257,7 +11389,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -12281,7 +11413,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12305,7 +11437,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12329,7 +11461,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12353,7 +11485,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12382,7 +11514,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AccessPolicyName": "System.String", "EnvironmentName": "System.String", @@ -12417,7 +11549,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12441,7 +11573,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12465,7 +11597,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -12489,7 +11621,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -12513,7 +11645,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12537,7 +11669,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12561,7 +11693,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12585,7 +11717,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12617,7 +11749,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12641,7 +11773,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12665,7 +11797,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -12689,7 +11821,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -12713,7 +11845,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12737,7 +11869,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12761,7 +11893,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12785,7 +11917,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12812,7 +11944,7 @@ "NounName": "AzTimeSeriesInsightsEventSource", "Name": "Remove-AzTimeSeriesInsightsEventSource", "ClassName": "Remove-AzTimeSeriesInsightsEventSource", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -12822,7 +11954,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12841,7 +11973,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12861,7 +11993,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12879,7 +12011,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12897,7 +12029,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12915,7 +12047,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AccessPolicyName": "System.String", "EnvironmentName": "System.String", @@ -12944,7 +12076,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12962,7 +12094,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -12980,7 +12112,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -12998,7 +12130,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -13016,7 +12148,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13034,7 +12166,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13052,7 +12184,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13070,7 +12202,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13094,7 +12226,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13120,7 +12252,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13144,7 +12276,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13168,7 +12300,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13195,7 +12327,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13219,7 +12351,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13243,7 +12375,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -13267,7 +12399,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -13291,7 +12423,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13315,7 +12447,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13339,7 +12471,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13363,7 +12495,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13392,7 +12524,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AccessPolicyName": "System.String", "EnvironmentName": "System.String", @@ -13427,7 +12559,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13451,7 +12583,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13475,7 +12607,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -13499,7 +12631,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -13523,7 +12655,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13547,7 +12679,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13571,7 +12703,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13595,7 +12727,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13627,7 +12759,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13651,7 +12783,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13675,7 +12807,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -13699,7 +12831,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -13723,7 +12855,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13747,7 +12879,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13771,7 +12903,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13795,7 +12927,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13822,7 +12954,7 @@ "NounName": "AzTimeSeriesInsightsReferenceDataSet", "Name": "Remove-AzTimeSeriesInsightsReferenceDataSet", "ClassName": "Remove-AzTimeSeriesInsightsReferenceDataSet", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -13832,7 +12964,7 @@ "Type": { "Namespace": "System", "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13851,7 +12983,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13871,7 +13003,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13889,7 +13021,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13907,7 +13039,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13925,7 +13057,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AccessPolicyName": "System.String", "EnvironmentName": "System.String", @@ -13954,7 +13086,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13972,7 +13104,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -13990,7 +13122,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -14008,7 +13140,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -14026,7 +13158,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14044,7 +13176,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14062,7 +13194,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14080,7 +13212,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14104,7 +13236,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14130,7 +13262,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14154,7 +13286,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14178,7 +13310,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14205,7 +13337,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14229,7 +13361,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14253,7 +13385,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -14277,7 +13409,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -14301,7 +13433,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14325,7 +13457,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14349,7 +13481,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14373,7 +13505,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14402,7 +13534,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AccessPolicyName": "System.String", "EnvironmentName": "System.String", @@ -14437,7 +13569,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14461,7 +13593,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14485,7 +13617,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -14509,7 +13641,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -14533,7 +13665,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14557,7 +13689,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14581,7 +13713,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14605,7 +13737,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14637,7 +13769,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14661,7 +13793,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14685,7 +13817,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -14709,7 +13841,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -14733,7 +13865,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14757,7 +13889,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14781,7 +13913,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14805,7 +13937,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14832,7 +13964,7 @@ "NounName": "AzTimeSeriesInsightsAccessPolicy", "Name": "Update-AzTimeSeriesInsightsAccessPolicy", "ClassName": "Update-AzTimeSeriesInsightsAccessPolicy", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -14842,7 +13974,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IAccessPolicyResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IAccessPolicyResource, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IAccessPolicyResource, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Role": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.AccessPolicyRole[]", "PrincipalObjectId": "System.String", @@ -14865,7 +13997,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14885,7 +14017,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14903,7 +14035,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14921,7 +14053,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14939,7 +14071,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AccessPolicyName": "System.String", "EnvironmentName": "System.String", @@ -14965,7 +14097,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -14983,7 +14115,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.AccessPolicyRole[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.AccessPolicyRole[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.AccessPolicyRole[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.AccessPolicyRole", "GenericTypeArguments": [], @@ -15004,7 +14136,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15022,7 +14154,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15040,7 +14172,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -15058,7 +14190,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -15076,7 +14208,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15094,7 +14226,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15112,7 +14244,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15136,7 +14268,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15162,7 +14294,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15186,7 +14318,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15210,7 +14342,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15234,7 +14366,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15258,7 +14390,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.AccessPolicyRole[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.AccessPolicyRole[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.AccessPolicyRole[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.AccessPolicyRole", "GenericTypeArguments": [], @@ -15285,7 +14417,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15309,7 +14441,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15333,7 +14465,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -15357,7 +14489,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -15381,7 +14513,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15405,7 +14537,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15429,7 +14561,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15458,7 +14590,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AccessPolicyName": "System.String", "EnvironmentName": "System.String", @@ -15490,7 +14622,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15514,7 +14646,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.AccessPolicyRole[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.AccessPolicyRole[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.AccessPolicyRole[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.AccessPolicyRole", "GenericTypeArguments": [], @@ -15541,7 +14673,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15565,7 +14697,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15589,7 +14721,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -15613,7 +14745,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -15637,7 +14769,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15661,7 +14793,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15685,7 +14817,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15714,7 +14846,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15738,7 +14870,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.AccessPolicyRole[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.AccessPolicyRole[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.AccessPolicyRole[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.AccessPolicyRole", "GenericTypeArguments": [], @@ -15765,7 +14897,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15789,7 +14921,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15813,7 +14945,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -15837,7 +14969,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -15861,7 +14993,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15885,7 +15017,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15909,7 +15041,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15936,7 +15068,7 @@ "NounName": "AzTimeSeriesInsightsEnvironment", "Name": "Update-AzTimeSeriesInsightsEnvironment", "ClassName": "Update-AzTimeSeriesInsightsEnvironment", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -15946,7 +15078,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IEnvironmentResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IEnvironmentResource, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IEnvironmentResource, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "SkuName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.SkuName", "SkuCapacity": "System.Int32", @@ -15971,7 +15103,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -15989,7 +15121,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16007,7 +15139,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16025,7 +15157,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AccessPolicyName": "System.String", "EnvironmentName": "System.String", @@ -16051,7 +15183,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16072,7 +15204,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16090,7 +15222,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16108,7 +15240,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16126,7 +15258,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -16144,7 +15276,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -16162,7 +15294,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16180,7 +15312,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16198,7 +15330,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16216,7 +15348,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16242,7 +15374,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16266,7 +15398,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16290,7 +15422,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16314,7 +15446,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16341,7 +15473,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16365,7 +15497,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16389,7 +15521,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16413,7 +15545,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -16437,7 +15569,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -16461,7 +15593,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16485,7 +15617,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16509,7 +15641,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16533,7 +15665,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16562,7 +15694,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AccessPolicyName": "System.String", "EnvironmentName": "System.String", @@ -16594,7 +15726,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16621,7 +15753,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16645,7 +15777,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16669,7 +15801,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16693,7 +15825,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -16717,7 +15849,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -16741,7 +15873,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16765,7 +15897,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16789,7 +15921,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16813,7 +15945,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16842,7 +15974,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16869,7 +16001,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16893,7 +16025,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16917,7 +16049,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -16941,7 +16073,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -16965,7 +16097,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -16989,7 +16121,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17013,7 +16145,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17037,7 +16169,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17061,7 +16193,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17088,7 +16220,7 @@ "NounName": "AzTimeSeriesInsightsEventSource", "Name": "Update-AzTimeSeriesInsightsEventSource", "ClassName": "Update-AzTimeSeriesInsightsEventSource", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -17098,7 +16230,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IEventSourceResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IEventSourceResource, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IEventSourceResource, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Kind": "System.String" }, @@ -17119,7 +16251,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17139,7 +16271,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17157,7 +16289,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17175,7 +16307,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17193,7 +16325,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AccessPolicyName": "System.String", "EnvironmentName": "System.String", @@ -17219,7 +16351,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17240,7 +16372,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17258,7 +16390,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17276,7 +16408,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -17294,7 +16426,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -17312,7 +16444,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17330,7 +16462,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17348,7 +16480,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17372,7 +16504,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17398,7 +16530,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17422,7 +16554,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17446,7 +16578,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17470,7 +16602,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17497,7 +16629,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17521,7 +16653,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17545,7 +16677,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -17569,7 +16701,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -17593,7 +16725,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17617,7 +16749,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17641,7 +16773,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17670,7 +16802,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AccessPolicyName": "System.String", "EnvironmentName": "System.String", @@ -17702,7 +16834,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17729,7 +16861,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17753,7 +16885,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17777,7 +16909,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -17801,7 +16933,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -17825,7 +16957,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17849,7 +16981,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17873,7 +17005,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17902,7 +17034,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17929,7 +17061,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17953,7 +17085,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -17977,7 +17109,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -18001,7 +17133,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -18025,7 +17157,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18049,7 +17181,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18073,7 +17205,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18100,7 +17232,7 @@ "NounName": "AzTimeSeriesInsightsReferenceDataSet", "Name": "Update-AzTimeSeriesInsightsReferenceDataSet", "ClassName": "Update-AzTimeSeriesInsightsReferenceDataSet", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -18110,7 +17242,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IReferenceDataSetResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IReferenceDataSetResource, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IReferenceDataSetResource, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "KeyProperty": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IReferenceDataSetKeyProperty[]", "DataStringComparisonBehavior": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.DataStringComparisonBehavior]" @@ -18132,7 +17264,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18152,7 +17284,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18170,7 +17302,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18188,7 +17320,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18206,7 +17338,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AccessPolicyName": "System.String", "EnvironmentName": "System.String", @@ -18232,7 +17364,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18253,7 +17385,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18271,7 +17403,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18289,7 +17421,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -18307,7 +17439,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -18325,7 +17457,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18343,7 +17475,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18361,7 +17493,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18385,7 +17517,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18411,7 +17543,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18435,7 +17567,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18459,7 +17591,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18483,7 +17615,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18510,7 +17642,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18534,7 +17666,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18558,7 +17690,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -18582,7 +17714,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -18606,7 +17738,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18630,7 +17762,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18654,7 +17786,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18683,7 +17815,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.ITimeSeriesInsightsIdentity, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "AccessPolicyName": "System.String", "EnvironmentName": "System.String", @@ -18715,7 +17847,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18742,7 +17874,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18766,7 +17898,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18790,7 +17922,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -18814,7 +17946,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -18838,7 +17970,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18862,7 +17994,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18886,7 +18018,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18915,7 +18047,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18942,7 +18074,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18966,7 +18098,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -18990,7 +18122,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -19014,7 +18146,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -19038,7 +18170,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19062,7 +18194,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19086,7 +18218,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19253,7 +18385,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.AccessPolicyRole[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.AccessPolicyRole[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.AccessPolicyRole[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.AccessPolicyRole[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.AccessPolicyRole", "GenericTypeArguments": [], @@ -19263,7 +18395,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.AccessPolicyRole": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.AccessPolicyRole", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.AccessPolicyRole, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.AccessPolicyRole, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19335,7 +18467,7 @@ "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]", - "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -19347,7 +18479,7 @@ "System.Management.Automation.CompletionResult": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.CompletionResult", - "AssemblyQualifiedName": "System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19357,7 +18489,7 @@ "System.Type": { "Namespace": "System", "Name": "System.Type", - "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19367,7 +18499,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Runtime.SendAsyncStep, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Target": "System.Object", "Method": "System.Reflection.MethodInfo" @@ -19509,7 +18641,7 @@ "System.Object": { "Namespace": "System", "Name": "System.Object", - "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19519,7 +18651,7 @@ "System.Reflection.MethodInfo": { "Namespace": "System.Reflection", "Name": "System.Reflection.MethodInfo", - "AssemblyQualifiedName": "System.Reflection.MethodInfo, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Reflection.MethodInfo, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19529,7 +18661,7 @@ "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]": { "Namespace": "System.Threading.Tasks", "Name": "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]", - "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[System.Net.Http.HttpResponseMessage, System.Net.Http, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[System.Net.Http.HttpResponseMessage, System.Net.Http, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -19541,7 +18673,7 @@ "System.Net.Http.HttpResponseMessage": { "Namespace": "System.Net.Http", "Name": "System.Net.Http.HttpResponseMessage", - "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19551,7 +18683,7 @@ "System.IAsyncResult": { "Namespace": "System", "Name": "System.IAsyncResult", - "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19561,7 +18693,7 @@ "System.Void": { "Namespace": "System", "Name": "System.Void", - "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19571,7 +18703,7 @@ "System.Delegate[]": { "Namespace": "System", "Name": "System.Delegate[]", - "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.Delegate", "GenericTypeArguments": [], @@ -19581,7 +18713,7 @@ "System.Delegate": { "Namespace": "System", "Name": "System.Delegate", - "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19591,7 +18723,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.SkuName": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.SkuName", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.SkuName, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.SkuName, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19663,7 +18795,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IReferenceDataSetKeyProperty[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IReferenceDataSetKeyProperty[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IReferenceDataSetKeyProperty[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IReferenceDataSetKeyProperty[], Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IReferenceDataSetKeyProperty", "GenericTypeArguments": [], @@ -19673,7 +18805,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IReferenceDataSetKeyProperty": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IReferenceDataSetKeyProperty", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IReferenceDataSetKeyProperty, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.IReferenceDataSetKeyProperty, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Type": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.ReferenceDataKeyPropertyType]", "Name": "System.String" @@ -19686,7 +18818,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.ReferenceDataKeyPropertyType]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.ReferenceDataKeyPropertyType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.ReferenceDataKeyPropertyType, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.ReferenceDataKeyPropertyType, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -19698,7 +18830,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.ReferenceDataKeyPropertyType": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.ReferenceDataKeyPropertyType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.ReferenceDataKeyPropertyType, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.ReferenceDataKeyPropertyType, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19770,7 +18902,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.DataStringComparisonBehavior]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.DataStringComparisonBehavior]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.DataStringComparisonBehavior, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.DataStringComparisonBehavior, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -19782,7 +18914,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.DataStringComparisonBehavior": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.DataStringComparisonBehavior", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.DataStringComparisonBehavior, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.DataStringComparisonBehavior, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -19854,7 +18986,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.ITimeSeriesIdProperty": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.ITimeSeriesIdProperty", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.ITimeSeriesIdProperty, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Models.Api20200515.ITimeSeriesIdProperty, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Type": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.PropertyType]", "Name": "System.String" @@ -19867,7 +18999,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.PropertyType]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.PropertyType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.PropertyType, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.PropertyType, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -19879,7 +19011,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.PropertyType": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.PropertyType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.PropertyType, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.TimeSeriesInsights.Support.PropertyType, Az.TimeSeriesInsights.private, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], diff --git a/tools/Tools.Common/SerializedCmdlets/Az.WindowsIotServices.json b/tools/Tools.Common/SerializedCmdlets/Az.WindowsIotServices.json index c628fa06bb59..17c503f964f0 100644 --- a/tools/Tools.Common/SerializedCmdlets/Az.WindowsIotServices.json +++ b/tools/Tools.Common/SerializedCmdlets/Az.WindowsIotServices.json @@ -7,7 +7,7 @@ "Name": "Get-AzWindowsIotServicesDevice", "ClassName": "Get-AzWindowsIotServicesDevice", "SupportsShouldProcess": false, - "ConfirmImpact": 2, + "ConfirmImpact": 0, "HasForceSwitch": true, "SupportsPaging": false, "DefaultParameterSetName": "List1", @@ -16,7 +16,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Models.Api20190601", "Name": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Models.Api20190601.IDeviceService", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Models.Api20190601.IDeviceService, Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Models.Api20190601.IDeviceService, Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StartDate": "System.Nullable`1[System.DateTime]", "Quantity": "System.Nullable`1[System.Int64]", @@ -42,7 +42,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -60,7 +60,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -78,7 +78,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -96,7 +96,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Models.IWindowsIotServicesIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Models.IWindowsIotServicesIdentity, Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Models.IWindowsIotServicesIdentity, Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DeviceName": "System.String", "Id": "System.String", @@ -122,7 +122,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -140,7 +140,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -158,7 +158,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -176,7 +176,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -194,7 +194,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -212,7 +212,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -230,7 +230,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -254,7 +254,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -278,7 +278,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -302,7 +302,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -329,7 +329,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -353,7 +353,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -377,7 +377,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -401,7 +401,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -425,7 +425,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -449,7 +449,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -473,7 +473,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -502,7 +502,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -526,7 +526,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -553,7 +553,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -577,7 +577,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -601,7 +601,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -625,7 +625,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -649,7 +649,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -673,7 +673,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -697,7 +697,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -726,7 +726,7 @@ "Type": { "Namespace": "System", "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.String", "GenericTypeArguments": [], @@ -753,7 +753,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -777,7 +777,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -801,7 +801,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -825,7 +825,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -849,7 +849,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -873,7 +873,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -897,7 +897,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -926,7 +926,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Models.IWindowsIotServicesIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Models.IWindowsIotServicesIdentity, Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Models.IWindowsIotServicesIdentity, Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DeviceName": "System.String", "Id": "System.String", @@ -958,7 +958,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -982,7 +982,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1006,7 +1006,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1030,7 +1030,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1054,7 +1054,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1078,7 +1078,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1102,7 +1102,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1134,7 +1134,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1158,7 +1158,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1182,7 +1182,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1206,7 +1206,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1230,7 +1230,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1254,7 +1254,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1278,7 +1278,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1305,7 +1305,7 @@ "NounName": "AzWindowsIotServicesDevice", "Name": "New-AzWindowsIotServicesDevice", "ClassName": "New-AzWindowsIotServicesDevice", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -1315,7 +1315,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Models.Api20190601", "Name": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Models.Api20190601.IDeviceService", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Models.Api20190601.IDeviceService, Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Models.Api20190601.IDeviceService, Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StartDate": "System.Nullable`1[System.DateTime]", "Quantity": "System.Nullable`1[System.Int64]", @@ -1341,7 +1341,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1359,7 +1359,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1377,7 +1377,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1395,7 +1395,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1413,7 +1413,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1431,7 +1431,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1449,7 +1449,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1467,7 +1467,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1485,7 +1485,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1503,7 +1503,7 @@ "Type": { "Namespace": "System", "Name": "System.Int64", - "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1521,7 +1521,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1542,7 +1542,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1560,7 +1560,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1578,7 +1578,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1596,7 +1596,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -1614,7 +1614,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1632,7 +1632,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1650,7 +1650,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1674,7 +1674,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1698,7 +1698,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1722,7 +1722,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1746,7 +1746,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1770,7 +1770,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1794,7 +1794,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1818,7 +1818,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1842,7 +1842,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1866,7 +1866,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1890,7 +1890,7 @@ "Type": { "Namespace": "System", "Name": "System.Int64", - "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1914,7 +1914,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1941,7 +1941,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1965,7 +1965,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -1989,7 +1989,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2013,7 +2013,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2037,7 +2037,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2061,7 +2061,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2085,7 +2085,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2112,7 +2112,7 @@ "NounName": "AzWindowsIotServicesDevice", "Name": "Remove-AzWindowsIotServicesDevice", "ClassName": "Remove-AzWindowsIotServicesDevice", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -2122,7 +2122,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Models.Api20190601", "Name": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Models.Api20190601.IDeviceService", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Models.Api20190601.IDeviceService, Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Models.Api20190601.IDeviceService, Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StartDate": "System.Nullable`1[System.DateTime]", "Quantity": "System.Nullable`1[System.Int64]", @@ -2148,7 +2148,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2166,7 +2166,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2184,7 +2184,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2202,7 +2202,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Models.IWindowsIotServicesIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Models.IWindowsIotServicesIdentity, Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Models.IWindowsIotServicesIdentity, Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DeviceName": "System.String", "Id": "System.String", @@ -2228,7 +2228,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2246,7 +2246,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2264,7 +2264,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2282,7 +2282,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2300,7 +2300,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2318,7 +2318,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2336,7 +2336,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2360,7 +2360,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2384,7 +2384,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2408,7 +2408,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2435,7 +2435,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2459,7 +2459,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2483,7 +2483,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2507,7 +2507,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2531,7 +2531,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2555,7 +2555,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2579,7 +2579,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2608,7 +2608,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Models.IWindowsIotServicesIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Models.IWindowsIotServicesIdentity, Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Models.IWindowsIotServicesIdentity, Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DeviceName": "System.String", "Id": "System.String", @@ -2640,7 +2640,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2664,7 +2664,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2688,7 +2688,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2712,7 +2712,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2736,7 +2736,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2760,7 +2760,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2784,7 +2784,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2816,7 +2816,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2840,7 +2840,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2864,7 +2864,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2888,7 +2888,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -2912,7 +2912,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2936,7 +2936,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2960,7 +2960,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -2987,7 +2987,7 @@ "NounName": "AzWindowsIotServicesDevice", "Name": "Update-AzWindowsIotServicesDevice", "ClassName": "Update-AzWindowsIotServicesDevice", - "SupportsShouldProcess": false, + "SupportsShouldProcess": true, "ConfirmImpact": 2, "HasForceSwitch": true, "SupportsPaging": false, @@ -2997,7 +2997,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Models.Api20190601", "Name": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Models.Api20190601.IDeviceService", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Models.Api20190601.IDeviceService, Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Models.Api20190601.IDeviceService, Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "StartDate": "System.Nullable`1[System.DateTime]", "Quantity": "System.Nullable`1[System.Int64]", @@ -3023,7 +3023,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3041,7 +3041,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3059,7 +3059,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3077,7 +3077,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Models.IWindowsIotServicesIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Models.IWindowsIotServicesIdentity, Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Models.IWindowsIotServicesIdentity, Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DeviceName": "System.String", "Id": "System.String", @@ -3100,7 +3100,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3118,7 +3118,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3136,7 +3136,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3154,7 +3154,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3172,7 +3172,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3190,7 +3190,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3208,7 +3208,7 @@ "Type": { "Namespace": "System", "Name": "System.Int64", - "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3226,7 +3226,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3247,7 +3247,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3265,7 +3265,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3283,7 +3283,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3301,7 +3301,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3319,7 +3319,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3337,7 +3337,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3355,7 +3355,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3379,7 +3379,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3403,7 +3403,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3427,7 +3427,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3451,7 +3451,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3475,7 +3475,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3499,7 +3499,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3523,7 +3523,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3547,7 +3547,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3571,7 +3571,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3595,7 +3595,7 @@ "Type": { "Namespace": "System", "Name": "System.Int64", - "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3619,7 +3619,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3646,7 +3646,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3670,7 +3670,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3694,7 +3694,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3718,7 +3718,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -3742,7 +3742,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3766,7 +3766,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3790,7 +3790,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3819,7 +3819,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Models.IWindowsIotServicesIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Models.IWindowsIotServicesIdentity, Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Models.IWindowsIotServicesIdentity, Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "DeviceName": "System.String", "Id": "System.String", @@ -3848,7 +3848,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3872,7 +3872,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3896,7 +3896,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3920,7 +3920,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3944,7 +3944,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3968,7 +3968,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -3992,7 +3992,7 @@ "Type": { "Namespace": "System", "Name": "System.Int64", - "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4016,7 +4016,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4043,7 +4043,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4067,7 +4067,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4091,7 +4091,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4115,7 +4115,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4139,7 +4139,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4163,7 +4163,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4187,7 +4187,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4216,7 +4216,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4240,7 +4240,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4264,7 +4264,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4288,7 +4288,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4312,7 +4312,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4336,7 +4336,7 @@ "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4360,7 +4360,7 @@ "Type": { "Namespace": "System", "Name": "System.Int64", - "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Int64, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4384,7 +4384,7 @@ "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4411,7 +4411,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4435,7 +4435,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4459,7 +4459,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4483,7 +4483,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep[], Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": {}, "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep", "GenericTypeArguments": [], @@ -4507,7 +4507,7 @@ "Type": { "Namespace": "System", "Name": "System.Uri", - "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Uri, System.Private.Uri, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4531,7 +4531,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4555,7 +4555,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.3.2.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4722,7 +4722,7 @@ "System.Nullable`1[System.DateTime]": { "Namespace": "System", "Name": "System.Nullable`1[System.DateTime]", - "AssemblyQualifiedName": "System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -4734,7 +4734,7 @@ "System.DateTime": { "Namespace": "System", "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4744,7 +4744,7 @@ "System.Nullable`1[System.Int64]": { "Namespace": "System", "Name": "System.Nullable`1[System.Int64]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -4756,7 +4756,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep, Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.WindowsIotServices.Runtime.SendAsyncStep, Az.WindowsIotServices.private, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null", "Properties": { "Target": "System.Object", "Method": "System.Reflection.MethodInfo" @@ -4898,7 +4898,7 @@ "System.Object": { "Namespace": "System", "Name": "System.Object", - "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Object, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4908,7 +4908,7 @@ "System.Reflection.MethodInfo": { "Namespace": "System.Reflection", "Name": "System.Reflection.MethodInfo", - "AssemblyQualifiedName": "System.Reflection.MethodInfo, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Reflection.MethodInfo, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4918,7 +4918,7 @@ "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]": { "Namespace": "System.Threading.Tasks", "Name": "System.Threading.Tasks.Task`1[System.Net.Http.HttpResponseMessage]", - "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[System.Net.Http.HttpResponseMessage, System.Net.Http, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Threading.Tasks.Task`1[[System.Net.Http.HttpResponseMessage, System.Net.Http, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a]], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [ @@ -4930,7 +4930,7 @@ "System.Net.Http.HttpResponseMessage": { "Namespace": "System.Net.Http", "Name": "System.Net.Http.HttpResponseMessage", - "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", + "AssemblyQualifiedName": "System.Net.Http.HttpResponseMessage, System.Net.Http, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4940,7 +4940,7 @@ "System.IAsyncResult": { "Namespace": "System", "Name": "System.IAsyncResult", - "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.IAsyncResult, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4950,7 +4950,7 @@ "System.Void": { "Namespace": "System", "Name": "System.Void", - "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Void, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4960,7 +4960,7 @@ "System.Delegate[]": { "Namespace": "System", "Name": "System.Delegate[]", - "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Delegate[], System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": "System.Delegate", "GenericTypeArguments": [], @@ -4970,7 +4970,7 @@ "System.Delegate": { "Namespace": "System", "Name": "System.Delegate", - "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Delegate, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [], @@ -4980,7 +4980,7 @@ "System.Type": { "Namespace": "System", "Name": "System.Type", - "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=5.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Type, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "Properties": {}, "ElementType": null, "GenericTypeArguments": [],